{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/iQ3cZYMYZqpRyBXTs9o5/5SLASCV7PMuTi2KPfe6h/cLvm5tXte.js", "ssg:https://framerusercontent.com/modules/ziCMRA1kqyFmluxRQJIB/w7WMVQ5VOrNEAmjsoK4X/CnQdZ8QF0.js", "ssg:https://framerusercontent.com/modules/8xqGK8jXNyuYbFNY0FBH/xVKg0t9G2ZmKHdhNfwY5/HjbChiWLN.js", "ssg:https://framerusercontent.com/modules/68qQGGwWCxptMNtB96Xu/8gFeHWZpwKvZkPS33Q5Z/hKJ_pQ9RJ.js", "ssg:https://framerusercontent.com/modules/oyGy9vCNNEVIEJ54JWVJ/QjmghFAWrsQ3uF0K7BVQ/a78ymcduq.js", "ssg:https://framerusercontent.com/modules/gZJjrM4HQXmtY2MFEYa3/cTvaDDbedg0VdbcBWIIl/K0f1G3sw4.js", "ssg:https://framerusercontent.com/modules/xuApWwdbKRK70a3ioRX7/RT7LF0tCt10C5wk3R1Sd/KI2yaJTfK.js", "ssg:https://framerusercontent.com/modules/SMW3juEOMbmYo03ZCu6k/0ESoVL9jF8GgXnf6d9jm/XiDwtfdpj.js", "ssg:https://framerusercontent.com/modules/zFohiBgNEe0YARk3Dd8C/mFNp4X4nsRyPmijYJCfs/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={Zkk0d03jH:{hover:true}};const serializationHash=\"framer-ikO2j\";const variantClassNames={Zkk0d03jH:\"framer-v-cfvmm8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({heading,height,icon,id,link,newTab,paragraph,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,C2TFygOB0:(_ref=paragraph!==null&&paragraph!==void 0?paragraph:props.C2TFygOB0)!==null&&_ref!==void 0?_ref:\"Effortlessly integrate email communication with SAP.\",NgZL_u_q8:(_ref1=newTab!==null&&newTab!==void 0?newTab:props.NgZL_u_q8)!==null&&_ref1!==void 0?_ref1:true,NP4MxDDJs:link!==null&&link!==void 0?link:props.NP4MxDDJs,yA0Mh0FH_:(_ref2=icon!==null&&icon!==void 0?icon:props.yA0Mh0FH_)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/8QYfbcSf91GpqEZNHBhW0kwgY4.svg\"},zx0eaZdMx:(_ref3=heading!==null&&heading!==void 0?heading:props.zx0eaZdMx)!==null&&_ref3!==void 0?_ref3:\"Gmail\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,NP4MxDDJs,NgZL_u_q8,yA0Mh0FH_,zx0eaZdMx,C2TFygOB0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Zkk0d03jH\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:NP4MxDDJs,nodeId:\"Zkk0d03jH\",openInNewTab:NgZL_u_q8,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-cfvmm8\",className,classNames)} framer-6r46uj`,\"data-border\":true,\"data-framer-name\":\"Integration Card\",layoutDependency:layoutDependency,layoutId:\"Zkk0d03jH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d5d168c9-3ce6-4662-8579-797f485ea94f, rgb(230, 233, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e5836977-6585-4624-94b0-ce9992b7ed68, rgb(255, 255, 255))\",borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18,...style},variants:{\"Zkk0d03jH-hover\":{backgroundColor:\"var(--token-34356539-d235-4245-9e6f-03b11cbe7258, rgb(248, 249, 250))\"}},...addPropertyOverrides({\"Zkk0d03jH-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i2cegj\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"A2yK5LX0i\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-umix8s\",\"data-border\":true,\"data-framer-name\":\"Icon Wrap\",layoutDependency:layoutDependency,layoutId:\"wGS7BC_sX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-10944aee-e22d-4fe5-8c24-f68c0efeb7bd, rgb(237, 239, 243))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-34356539-d235-4245-9e6f-03b11cbe7258, rgb(248, 249, 250))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+10),pixelHeight:28,pixelWidth:28,sizes:\"28px\",...toResponsiveImage(yA0Mh0FH_),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-vywegn\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Ml0VyUlce\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9n18qh\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"bdp9qaEFn\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-10944aee-e22d-4fe5-8c24-f68c0efeb7bd, rgb(237, 239, 243))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-34356539-d235-4245-9e6f-03b11cbe7258, rgb(248, 249, 250))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56)))\"},children:\"Learn More\"})}),className:\"framer-4jrrim\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Figtree-500\"],layoutDependency:layoutDependency,layoutId:\"FfN1FfvLp\",style:{\"--extracted-r6o4lv\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+3.5+11.5),pixelHeight:18,pixelWidth:19,src:\"https://framerusercontent.com/images/4F3BfpzSlM1ncEiFcKbCMDqKAwo.svg\"},className:\"framer-ur2rhv\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"JTHcBu0aI\",style:{rotate:0},variants:{\"Zkk0d03jH-hover\":{rotate:-45}}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-st4zr0\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"zukOAz5Rm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56)))\"},children:\"Gmail\"})}),className:\"framer-1sqrvr1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Figtree-500\"],layoutDependency:layoutDependency,layoutId:\"kykMVPRqA\",style:{\"--extracted-a0htzi\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56))\",\"--framer-paragraph-spacing\":\"0px\"},text:zx0eaZdMx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-22949dc7-4bf5-4f46-99e4-20c79812e714, rgb(84, 84, 84)))\"},children:\"Effortlessly integrate email communication with SAP.\"})}),className:\"framer-1tw9f2d\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Figtree-regular\"],layoutDependency:layoutDependency,layoutId:\"XOSpJOs4T\",style:{\"--extracted-r6o4lv\":\"var(--token-22949dc7-4bf5-4f46-99e4-20c79812e714, rgb(84, 84, 84))\",\"--framer-paragraph-spacing\":\"0px\"},text:C2TFygOB0,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ikO2j.framer-6r46uj, .framer-ikO2j .framer-6r46uj { display: block; }\",\".framer-ikO2j.framer-cfvmm8 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: 259px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ikO2j .framer-1i2cegj { 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: 0px; position: relative; width: 100%; }\",\".framer-ikO2j .framer-umix8s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: min-content; }\",\".framer-ikO2j .framer-vywegn { flex: none; height: 28px; overflow: visible; position: relative; width: 28px; }\",\".framer-ikO2j .framer-9n18qh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 12px 10px 12px; position: relative; width: min-content; }\",\".framer-ikO2j .framer-4jrrim { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ikO2j .framer-ur2rhv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-ikO2j .framer-st4zr0 { 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-ikO2j .framer-1sqrvr1, .framer-ikO2j .framer-1tw9f2d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ikO2j.framer-cfvmm8, .framer-ikO2j .framer-umix8s, .framer-ikO2j .framer-9n18qh, .framer-ikO2j .framer-st4zr0 { gap: 0px; } .framer-ikO2j.framer-cfvmm8 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ikO2j.framer-cfvmm8 > :first-child, .framer-ikO2j .framer-st4zr0 > :first-child { margin-top: 0px; } .framer-ikO2j.framer-cfvmm8 > :last-child, .framer-ikO2j .framer-st4zr0 > :last-child { margin-bottom: 0px; } .framer-ikO2j .framer-umix8s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ikO2j .framer-umix8s > :first-child, .framer-ikO2j .framer-9n18qh > :first-child { margin-left: 0px; } .framer-ikO2j .framer-umix8s > :last-child, .framer-ikO2j .framer-9n18qh > :last-child { margin-right: 0px; } .framer-ikO2j .framer-9n18qh > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-ikO2j .framer-st4zr0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",'.framer-ikO2j[data-border=\"true\"]::after, .framer-ikO2j [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 186\n * @framerIntrinsicWidth 259\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tP9NlyrLi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NP4MxDDJs\":\"link\",\"NgZL_u_q8\":\"newTab\",\"yA0Mh0FH_\":\"icon\",\"zx0eaZdMx\":\"heading\",\"C2TFygOB0\":\"paragraph\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercLvm5tXte=withCSS(Component,css,\"framer-ikO2j\");export default FramercLvm5tXte;FramercLvm5tXte.displayName=\"Cards/ Integration\";FramercLvm5tXte.defaultProps={height:186,width:259};addPropertyControls(FramercLvm5tXte,{NP4MxDDJs:{title:\"Link\",type:ControlType.Link},NgZL_u_q8:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean},yA0Mh0FH_:{__defaultAssetReference:\"data:framer/asset-reference,8QYfbcSf91GpqEZNHBhW0kwgY4.svg?originalFilename=gmail-svgrepo-com+1+%281%29.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},zx0eaZdMx:{defaultValue:\"Gmail\",displayTextArea:false,title:\"Heading\",type:ControlType.String},C2TFygOB0:{defaultValue:\"Effortlessly integrate email communication with SAP.\",displayTextArea:true,title:\"Paragraph\",type:ControlType.String}});addFonts(FramercLvm5tXte,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercLvm5tXte\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"259\",\"framerIntrinsicHeight\":\"186\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tP9NlyrLi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"NP4MxDDJs\\\":\\\"link\\\",\\\"NgZL_u_q8\\\":\\\"newTab\\\",\\\"yA0Mh0FH_\\\":\\\"icon\\\",\\\"zx0eaZdMx\\\":\\\"heading\\\",\\\"C2TFygOB0\\\":\\\"paragraph\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cLvm5tXte.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"mgj1a7SoQ\",\"mHhd5Q1ko\"];const serializationHash=\"framer-qKe9N\";const variantClassNames={mgj1a7SoQ:\"framer-v-1qtli5x\",mHhd5Q1ko:\"framer-v-dqivn1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Large:\"mgj1a7SoQ\",Small:\"mHhd5Q1ko\"};const getProps=({content,contentTitle,height,icon,id,jobRole,name1,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,DzvKl0u04:(_ref=contentTitle!==null&&contentTitle!==void 0?contentTitle:props.DzvKl0u04)!==null&&_ref!==void 0?_ref:\"text\",g2IJU75wC:(_ref1=content!==null&&content!==void 0?content:props.g2IJU75wC)!==null&&_ref1!==void 0?_ref1:\"text\",JlXqlvWgM:(_ref2=jobRole!==null&&jobRole!==void 0?jobRole:props.JlXqlvWgM)!==null&&_ref2!==void 0?_ref2:\"text\",rztfZotJp:(_ref3=name1!==null&&name1!==void 0?name1:props.rztfZotJp)!==null&&_ref3!==void 0?_ref3:\"text\",t32gC6pas:(_ref4=icon!==null&&icon!==void 0?icon:props.t32gC6pas)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/14gZDl09yMMVq1rrQMgjekorAWc.svg\"},variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"mgj1a7SoQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DzvKl0u04,g2IJU75wC,rztfZotJp,JlXqlvWgM,t32gC6pas,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mgj1a7SoQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(t32gC6pas);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qtli5x\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"mgj1a7SoQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-10944aee-e22d-4fe5-8c24-f68c0efeb7bd, rgb(237, 239, 243))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e5836977-6585-4624-94b0-ce9992b7ed68, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({mHhd5Q1ko:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fw1s1v\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"wVqqKPkHR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d5d168c9-3ce6-4662-8579-797f485ea94f, rgb(230, 233, 238))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x3st5n\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"qnahKqzCe\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(8+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||333)-16-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||333)-16)*1)/2)+20+(0+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||333)-16)*1-40-211.5)/1*0)+0+0),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/1pCNSuV3r3SzB2zXC32sYRA.svg\"},className:\"framer-1skjbi9\",\"data-framer-name\":\"Quote Icon\",layoutDependency:layoutDependency,layoutId:\"pHMLBOm6d\",...addPropertyOverrides({mHhd5Q1ko:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+20+0+0+0),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/1pCNSuV3r3SzB2zXC32sYRA.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g881o7\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"fCNf78YbW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56)))\"},children:\"text\"})}),className:\"framer-if9run\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Instrument Sans-500\"],layoutDependency:layoutDependency,layoutId:\"ZgKaBczsT\",style:{\"--extracted-a0htzi\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56))\",\"--framer-paragraph-spacing\":\"0px\"},text:DzvKl0u04,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-22949dc7-4bf5-4f46-99e4-20c79812e714, rgb(84, 84, 84)))\"},children:\"text\"})}),className:\"framer-uvxg4u\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"QrEMP6EbD\",style:{\"--extracted-r6o4lv\":\"var(--token-22949dc7-4bf5-4f46-99e4-20c79812e714, rgb(84, 84, 84))\",\"--framer-paragraph-spacing\":\"0px\"},text:g2IJU75wC,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e2sn44\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"zIwtBEJPo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g0w745\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"CB00ZsNWP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56)))\"},children:\"text\"})}),className:\"framer-1wf1s53\",\"data-framer-name\":\"Name\",fonts:[\"GF;Instrument Sans-500\"],layoutDependency:layoutDependency,layoutId:\"vcclEaag6\",style:{\"--extracted-r6o4lv\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56))\",\"--framer-paragraph-spacing\":\"0px\"},text:rztfZotJp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-22949dc7-4bf5-4f46-99e4-20c79812e714, rgb(84, 84, 84)))\"},children:\"text\"})}),className:\"framer-egw6l6\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"FmebkBhUk\",style:{\"--extracted-r6o4lv\":\"var(--token-22949dc7-4bf5-4f46-99e4-20c79812e714, rgb(84, 84, 84))\",\"--framer-paragraph-spacing\":\"0px\"},text:JlXqlvWgM,verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(8+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||333)-16-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||333)-16)*1)/2)+20+(0+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||333)-16)*1-40-211.5)/1*0)+96),pixelHeight:24,pixelWidth:24,sizes:\"48px\",...toResponsiveImage(t32gC6pas)},className:\"framer-eb6pl0\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"diiRKxxPd\",...addPropertyOverrides({mHhd5Q1ko:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+20+227.5+96),pixelHeight:24,pixelWidth:24,sizes:\"48px\",...toResponsiveImage(t32gC6pas)}}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qKe9N.framer-1aochxp, .framer-qKe9N .framer-1aochxp { display: block; }\",\".framer-qKe9N.framer-1qtli5x { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 333px; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 532px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qKe9N .framer-fw1s1v { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; height: 100%; justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-qKe9N .framer-1x3st5n { 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-qKe9N .framer-1skjbi9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-qKe9N .framer-g881o7 { 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-qKe9N .framer-if9run, .framer-qKe9N .framer-uvxg4u, .framer-qKe9N .framer-1wf1s53, .framer-qKe9N .framer-egw6l6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-qKe9N .framer-1e2sn44 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qKe9N .framer-g0w745 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qKe9N .framer-eb6pl0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qKe9N.framer-1qtli5x, .framer-qKe9N .framer-1x3st5n, .framer-qKe9N .framer-g881o7, .framer-qKe9N .framer-1e2sn44, .framer-qKe9N .framer-g0w745 { gap: 0px; } .framer-qKe9N.framer-1qtli5x > *, .framer-qKe9N .framer-1e2sn44 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-qKe9N.framer-1qtli5x > :first-child, .framer-qKe9N .framer-1e2sn44 > :first-child { margin-left: 0px; } .framer-qKe9N.framer-1qtli5x > :last-child, .framer-qKe9N .framer-1e2sn44 > :last-child { margin-right: 0px; } .framer-qKe9N .framer-1x3st5n > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qKe9N .framer-1x3st5n > :first-child, .framer-qKe9N .framer-g881o7 > :first-child, .framer-qKe9N .framer-g0w745 > :first-child { margin-top: 0px; } .framer-qKe9N .framer-1x3st5n > :last-child, .framer-qKe9N .framer-g881o7 > :last-child, .framer-qKe9N .framer-g0w745 > :last-child { margin-bottom: 0px; } .framer-qKe9N .framer-g881o7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-qKe9N .framer-g0w745 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-qKe9N.framer-v-dqivn1.framer-1qtli5x { flex-direction: column; height: min-content; width: 358px; }\",\".framer-qKe9N.framer-v-dqivn1 .framer-fw1s1v { flex: none; gap: 16px; height: min-content; justify-content: center; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qKe9N.framer-v-dqivn1.framer-1qtli5x, .framer-qKe9N.framer-v-dqivn1 .framer-fw1s1v { gap: 0px; } .framer-qKe9N.framer-v-dqivn1.framer-1qtli5x > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-qKe9N.framer-v-dqivn1.framer-1qtli5x > :first-child, .framer-qKe9N.framer-v-dqivn1 .framer-fw1s1v > :first-child { margin-top: 0px; } .framer-qKe9N.framer-v-dqivn1.framer-1qtli5x > :last-child, .framer-qKe9N.framer-v-dqivn1 .framer-fw1s1v > :last-child { margin-bottom: 0px; } .framer-qKe9N.framer-v-dqivn1 .framer-fw1s1v > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",'.framer-qKe9N[data-border=\"true\"]::after, .framer-qKe9N [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 333\n * @framerIntrinsicWidth 532\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mHhd5Q1ko\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DzvKl0u04\":\"contentTitle\",\"g2IJU75wC\":\"content\",\"rztfZotJp\":\"name1\",\"JlXqlvWgM\":\"jobRole\",\"t32gC6pas\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCnQdZ8QF0=withCSS(Component,css,\"framer-qKe9N\");export default FramerCnQdZ8QF0;FramerCnQdZ8QF0.displayName=\"CardCustomer\";FramerCnQdZ8QF0.defaultProps={height:333,width:532};addPropertyControls(FramerCnQdZ8QF0,{variant:{options:[\"mgj1a7SoQ\",\"mHhd5Q1ko\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},DzvKl0u04:{defaultValue:\"text\",displayTextArea:false,title:\"Content Title\",type:ControlType.String},g2IJU75wC:{defaultValue:\"text\",displayTextArea:false,title:\"Content\",type:ControlType.String},rztfZotJp:{defaultValue:\"text\",displayTextArea:false,title:\"Name\",type:ControlType.String},JlXqlvWgM:{defaultValue:\"text\",displayTextArea:false,title:\"Job Role\",type:ControlType.String},t32gC6pas:{__defaultAssetReference:\"data:framer/asset-reference,14gZDl09yMMVq1rrQMgjekorAWc.svg?originalFilename=Icon+%288%29.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage}});addFonts(FramerCnQdZ8QF0,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCnQdZ8QF0\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"532\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mHhd5Q1ko\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"333\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"DzvKl0u04\\\":\\\"contentTitle\\\",\\\"g2IJU75wC\\\":\\\"content\\\",\\\"rztfZotJp\\\":\\\"name1\\\",\\\"JlXqlvWgM\\\":\\\"jobRole\\\",\\\"t32gC6pas\\\":\\\"icon\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CnQdZ8QF0.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"NTfp2FToB\",\"fyQVSjszv\",\"yrAYV4aS3\"];const serializationHash=\"framer-U5kcd\";const variantClassNames={fyQVSjszv:\"framer-v-1xkqeew\",NTfp2FToB:\"framer-v-zdpw1b\",yrAYV4aS3:\"framer-v-16z848b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"NTfp2FToB\",\"Variant 2\":\"fyQVSjszv\",\"Variant 3\":\"yrAYV4aS3\"};const getProps=({height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,jb8Mxsp1i:(_ref=text!==null&&text!==void 0?text:props.jb8Mxsp1i)!==null&&_ref!==void 0?_ref:\"Smart Task Prioritization with AI Insights\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"NTfp2FToB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jb8Mxsp1i,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NTfp2FToB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zdpw1b\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NTfp2FToB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({fyQVSjszv:{\"data-framer-name\":\"Variant 2\"},yrAYV4aS3:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ezghkw\",\"data-border\":true,\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"yxRmitwsS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-09920af5-e3bc-4f2c-8ef0-faf72c25158d, rgb(51, 51, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2cfb2c8d-54c4-43ad-8abd-a02cba626afb, rgb(38, 38, 38))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12c0fgq\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"mfXTnsW1s\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"#fff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-message-square-reply\"><path d=\"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z\"/><path d=\"m10 7-3 3 3 3\"/><path d=\"M17 13v-1a2 2 0 0 0-2-2H7\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),className:\"framer-10yx4iu\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"K6A5Z92JG\",style:{\"--extracted-r6o4lv\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:jb8Mxsp1i,variants:{yrAYV4aS3:{\"--extracted-r6o4lv\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(12, 12, 12))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fyQVSjszv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),fonts:[\"GF;Figtree-600\"]},yrAYV4aS3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(12, 12, 12)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),fonts:[\"GF;Figtree-regular\"]}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-U5kcd.framer-h0y3wf, .framer-U5kcd .framer-h0y3wf { display: block; }\",\".framer-U5kcd.framer-zdpw1b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 256px; }\",\".framer-U5kcd .framer-1ezghkw { 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: 14px; position: relative; width: min-content; }\",\".framer-U5kcd .framer-12c0fgq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-U5kcd .framer-10yx4iu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-U5kcd.framer-zdpw1b, .framer-U5kcd .framer-1ezghkw { gap: 0px; } .framer-U5kcd.framer-zdpw1b > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-U5kcd.framer-zdpw1b > :first-child, .framer-U5kcd .framer-1ezghkw > :first-child { margin-top: 0px; } .framer-U5kcd.framer-zdpw1b > :last-child, .framer-U5kcd .framer-1ezghkw > :last-child { margin-bottom: 0px; } .framer-U5kcd .framer-1ezghkw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-U5kcd.framer-v-1xkqeew.framer-zdpw1b { flex-direction: row; gap: 12px; padding: 0px 20px 0px 20px; width: 320px; }\",\".framer-U5kcd.framer-v-1xkqeew .framer-10yx4iu { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-U5kcd.framer-v-1xkqeew.framer-zdpw1b { gap: 0px; } .framer-U5kcd.framer-v-1xkqeew.framer-zdpw1b > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-U5kcd.framer-v-1xkqeew.framer-zdpw1b > :first-child { margin-left: 0px; } .framer-U5kcd.framer-v-1xkqeew.framer-zdpw1b > :last-child { margin-right: 0px; } }\",'.framer-U5kcd[data-border=\"true\"]::after, .framer-U5kcd [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 125\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fyQVSjszv\":{\"layout\":[\"fixed\",\"auto\"]},\"yrAYV4aS3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"jb8Mxsp1i\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHjbChiWLN=withCSS(Component,css,\"framer-U5kcd\");export default FramerHjbChiWLN;FramerHjbChiWLN.displayName=\"Cards/ Benefit Card 2\";FramerHjbChiWLN.defaultProps={height:125,width:256};addPropertyControls(FramerHjbChiWLN,{variant:{options:[\"NTfp2FToB\",\"fyQVSjszv\",\"yrAYV4aS3\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},jb8Mxsp1i:{defaultValue:\"Smart Task Prioritization with AI Insights\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerHjbChiWLN,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHjbChiWLN\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"125\",\"framerVariables\":\"{\\\"jb8Mxsp1i\\\":\\\"text\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"256\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fyQVSjszv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yrAYV4aS3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HjbChiWLN.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"N91pRldFF\",\"nYIkbDhyC\",\"MGPkgMDeN\"];const serializationHash=\"framer-6IZId\";const variantClassNames={MGPkgMDeN:\"framer-v-1moqdtz\",N91pRldFF:\"framer-v-12t2syf\",nYIkbDhyC:\"framer-v-o459gp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"N91pRldFF\",\"Variant 2\":\"nYIkbDhyC\",\"Variant 3\":\"MGPkgMDeN\"};const getProps=({height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,jb8Mxsp1i:(_ref=text!==null&&text!==void 0?text:props.jb8Mxsp1i)!==null&&_ref!==void 0?_ref:\"Smart Task Prioritization with AI Insights\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"N91pRldFF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jb8Mxsp1i,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"N91pRldFF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12t2syf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"N91pRldFF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({MGPkgMDeN:{\"data-framer-name\":\"Variant 3\"},nYIkbDhyC:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6k84f\",\"data-border\":true,\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"MiBUfLTae\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-09920af5-e3bc-4f2c-8ef0-faf72c25158d, rgb(51, 51, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2cfb2c8d-54c4-43ad-8abd-a02cba626afb, rgb(38, 38, 38))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7muv70\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"Xx6U0FrQw\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"#fff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-globe\"><circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20M2 12h20\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),className:\"framer-sjfxjc\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"gquh0NL_l\",style:{\"--extracted-r6o4lv\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:jb8Mxsp1i,variants:{MGPkgMDeN:{\"--extracted-r6o4lv\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(12, 12, 12))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({MGPkgMDeN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(12, 12, 12)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),fonts:[\"GF;Figtree-regular\"]},nYIkbDhyC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),fonts:[\"GF;Figtree-600\"]}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6IZId.framer-1em8ua6, .framer-6IZId .framer-1em8ua6 { display: block; }\",\".framer-6IZId.framer-12t2syf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 256px; }\",\".framer-6IZId .framer-6k84f { 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: 14px; position: relative; width: min-content; }\",\".framer-6IZId .framer-7muv70 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-6IZId .framer-sjfxjc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6IZId.framer-12t2syf, .framer-6IZId .framer-6k84f { gap: 0px; } .framer-6IZId.framer-12t2syf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-6IZId.framer-12t2syf > :first-child, .framer-6IZId .framer-6k84f > :first-child { margin-top: 0px; } .framer-6IZId.framer-12t2syf > :last-child, .framer-6IZId .framer-6k84f > :last-child { margin-bottom: 0px; } .framer-6IZId .framer-6k84f > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-6IZId.framer-v-o459gp.framer-12t2syf { flex-direction: row; gap: 12px; padding: 0px 20px 0px 20px; width: 320px; }\",\".framer-6IZId.framer-v-o459gp .framer-sjfxjc { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6IZId.framer-v-o459gp.framer-12t2syf { gap: 0px; } .framer-6IZId.framer-v-o459gp.framer-12t2syf > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-6IZId.framer-v-o459gp.framer-12t2syf > :first-child { margin-left: 0px; } .framer-6IZId.framer-v-o459gp.framer-12t2syf > :last-child { margin-right: 0px; } }\",'.framer-6IZId[data-border=\"true\"]::after, .framer-6IZId [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 125\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nYIkbDhyC\":{\"layout\":[\"fixed\",\"auto\"]},\"MGPkgMDeN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"jb8Mxsp1i\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhKJ_pQ9RJ=withCSS(Component,css,\"framer-6IZId\");export default FramerhKJ_pQ9RJ;FramerhKJ_pQ9RJ.displayName=\"Cards/ Benefit Card 3\";FramerhKJ_pQ9RJ.defaultProps={height:125,width:256};addPropertyControls(FramerhKJ_pQ9RJ,{variant:{options:[\"N91pRldFF\",\"nYIkbDhyC\",\"MGPkgMDeN\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},jb8Mxsp1i:{defaultValue:\"Smart Task Prioritization with AI Insights\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerhKJ_pQ9RJ,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhKJ_pQ9RJ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"125\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nYIkbDhyC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MGPkgMDeN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"jb8Mxsp1i\\\":\\\"text\\\"}\",\"framerIntrinsicWidth\":\"256\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hKJ_pQ9RJ.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Ir6nygS0L\",\"ExlLGOf9o\"];const serializationHash=\"framer-WDSBF\";const variantClassNames={ExlLGOf9o:\"framer-v-1ltxalo\",Ir6nygS0L:\"framer-v-pkukcy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"Ir6nygS0L\",Open:\"ExlLGOf9o\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Ir6nygS0L\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ir6nygS0L\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapb2xht4=activeVariantCallback(async(...args)=>{setVariant(\"ExlLGOf9o\");});const onTap1rdb6md=activeVariantCallback(async(...args)=>{setVariant(\"Ir6nygS0L\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"ExlLGOf9o\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-pkukcy\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"Ir6nygS0L\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ExlLGOf9o:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jkaucr\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"JHh4t4jOa\",onTap:onTapb2xht4,...addPropertyOverrides({ExlLGOf9o:{onTap:onTap1rdb6md}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1msp6y7\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"tHDQjZbgB\",style:{rotate:0},variants:{ExlLGOf9o:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yzdlpt\",layoutDependency:layoutDependency,layoutId:\"R9NWSpFeU\",style:{backgroundColor:\"var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-105o4e6\",layoutDependency:layoutDependency,layoutId:\"jT534KlNh\",style:{backgroundColor:\"var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1nwoi0a\",fonts:[\"GF;Figtree-600\"],layoutDependency:layoutDependency,layoutId:\"aGZGPfXHW\",style:{\"--extracted-r6o4lv\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r36sop\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"rmreoe2QQ\",style:{backgroundColor:\"var(--token-e23e9fe4-f9ac-4a61-ade5-073c1d61b52f, rgb(241, 245, 249))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,opacity:0},variants:{ExlLGOf9o:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXVsaXNoLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-mxwi84\",fonts:[\"GF;Mulish-regular\"],layoutDependency:layoutDependency,layoutId:\"aubcjp3f2\",style:{\"--extracted-r6o4lv\":\"var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{ExlLGOf9o:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WDSBF.framer-17ls4co, .framer-WDSBF .framer-17ls4co { display: block; }\",\".framer-WDSBF.framer-pkukcy { 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: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-WDSBF .framer-jkaucr { -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 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-WDSBF .framer-1msp6y7 { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-WDSBF .framer-1yzdlpt { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-WDSBF .framer-105o4e6 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-WDSBF .framer-1nwoi0a { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-WDSBF .framer-1r36sop { 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: 16px; position: relative; width: 100%; }\",\".framer-WDSBF .framer-mxwi84 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WDSBF.framer-pkukcy, .framer-WDSBF .framer-jkaucr, .framer-WDSBF .framer-1r36sop { gap: 0px; } .framer-WDSBF.framer-pkukcy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WDSBF.framer-pkukcy > :first-child, .framer-WDSBF .framer-1r36sop > :first-child { margin-top: 0px; } .framer-WDSBF.framer-pkukcy > :last-child, .framer-WDSBF .framer-1r36sop > :last-child { margin-bottom: 0px; } .framer-WDSBF .framer-jkaucr > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-WDSBF .framer-jkaucr > :first-child { margin-left: 0px; } .framer-WDSBF .framer-jkaucr > :last-child { margin-right: 0px; } .framer-WDSBF .framer-1r36sop > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-WDSBF.framer-v-1ltxalo.framer-pkukcy { padding: 0px 0px 20px 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 98\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ExlLGOf9o\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framera78ymcduq=withCSS(Component,css,\"framer-WDSBF\");export default Framera78ymcduq;Framera78ymcduq.displayName=\"Row\";Framera78ymcduq.defaultProps={height:98,width:400};addPropertyControls(Framera78ymcduq,{variant:{options:[\"Ir6nygS0L\",\"ExlLGOf9o\"],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},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(Framera78ymcduq,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaWlGrw-PTY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framera78ymcduq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"98\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ExlLGOf9o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./a78ymcduq.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/oyGy9vCNNEVIEJ54JWVJ/QjmghFAWrsQ3uF0K7BVQ/a78ymcduq.js\";const RowFonts=getFonts(Row);const serializationHash=\"framer-DJXNf\";const variantClassNames={D6qFaD2Ct:\"framer-v-jesucw\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"D6qFaD2Ct\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jesucw\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D6qFaD2Ct\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-f4c021da-8bb9-40e6-af16-0c56225819b4, rgb(226, 232, 240))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1zuhqg-container\",layoutDependency:layoutDependency,layoutId:\"LTFL7e_ne-container\",nodeId:\"LTFL7e_ne\",rendersWithMotion:true,scopeId:\"K0f1G3sw4\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"LTFL7e_ne\",layoutId:\"LTFL7e_ne\",style:{width:\"100%\"},T8rQFvSBR:\"Sticklight, unlike any other product analytics tool, is designed to enrich your AI usage data and learn who are your users.\",variant:\"Ir6nygS0L\",W88zB8mIG:\"How is Sticklight different from Ampltiude / Mixpanel / Fullstory ?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m97mth\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"KLorG5MRF\",style:{backgroundColor:\"var(--token-f4c021da-8bb9-40e6-af16-0c56225819b4, rgb(226, 232, 240))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+99,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xd00h-container\",layoutDependency:layoutDependency,layoutId:\"F4FDsLnHg-container\",nodeId:\"F4FDsLnHg\",rendersWithMotion:true,scopeId:\"K0f1G3sw4\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"F4FDsLnHg\",layoutId:\"F4FDsLnHg\",style:{width:\"100%\"},T8rQFvSBR:\"You can find which user profiles lead to the highest revenue, when you lose users due to poor user experience, and which AI failures you should address first.\",variant:\"Ir6nygS0L\",W88zB8mIG:\"What insights can I get from Sticklight ?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1id5vyt\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"UfMUrN1ji\",style:{backgroundColor:\"var(--token-f4c021da-8bb9-40e6-af16-0c56225819b4, rgb(226, 232, 240))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+198,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19nl110-container\",layoutDependency:layoutDependency,layoutId:\"LzRS8Qo5n-container\",nodeId:\"LzRS8Qo5n\",rendersWithMotion:true,scopeId:\"K0f1G3sw4\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"LzRS8Qo5n\",layoutId:\"LzRS8Qo5n\",style:{width:\"100%\"},T8rQFvSBR:\"We are fully dedicated to helping you onboard in a matter of hours. Connect through integration or send product events directly\",variant:\"Ir6nygS0L\",W88zB8mIG:\"How long does it take to set up a Sticklight?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jgibxa\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"j__GJvDPK\",style:{backgroundColor:\"var(--token-f4c021da-8bb9-40e6-af16-0c56225819b4, rgb(226, 232, 240))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6dqpni\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ar5ZfbwX1\",style:{backgroundColor:\"var(--token-f4c021da-8bb9-40e6-af16-0c56225819b4, rgb(226, 232, 240))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7hnrdm\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"L7bH7NEjf\",style:{backgroundColor:\"var(--token-f4c021da-8bb9-40e6-af16-0c56225819b4, rgb(226, 232, 240))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+299,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ta5fd1-container\",layoutDependency:layoutDependency,layoutId:\"d__1R26KU-container\",nodeId:\"d__1R26KU\",rendersWithMotion:true,scopeId:\"K0f1G3sw4\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"d__1R26KU\",layoutId:\"d__1R26KU\",style:{width:\"100%\"},T8rQFvSBR:\"We're in the process of SOC 2 & ISO certification and support custom data retention and deletion.\",variant:\"Ir6nygS0L\",W88zB8mIG:\"How do you handle data privacy and security?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fd8kdw\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"jVmWcneRj\",style:{backgroundColor:\"var(--token-f4c021da-8bb9-40e6-af16-0c56225819b4, rgb(226, 232, 240))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+398,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12njma9-container\",layoutDependency:layoutDependency,layoutId:\"y7DryopXv-container\",nodeId:\"y7DryopXv\",rendersWithMotion:true,scopeId:\"K0f1G3sw4\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"y7DryopXv\",layoutId:\"y7DryopXv\",style:{width:\"100%\"},T8rQFvSBR:\"We offer pay-as-you-go plans. No public pricing available yet.\",variant:\"Ir6nygS0L\",W88zB8mIG:\"How does pricing work?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ohibe\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"eWXF0JCfY\",style:{backgroundColor:\"var(--token-f4c021da-8bb9-40e6-af16-0c56225819b4, rgb(226, 232, 240))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+497,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4glc8n-container\",layoutDependency:layoutDependency,layoutId:\"kf4IzYesT-container\",nodeId:\"kf4IzYesT\",rendersWithMotion:true,scopeId:\"K0f1G3sw4\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"kf4IzYesT\",layoutId:\"kf4IzYesT\",style:{width:\"100%\"},T8rQFvSBR:\"Our infrastructure is built by top talent in the data space. We handle billions of events daily with real-time processing capabilities. This includes large language models - we run LLMs on billions of datapoints.\",variant:\"Ir6nygS0L\",W88zB8mIG:\"How do you handle high volumes of data ?\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DJXNf.framer-195e00o, .framer-DJXNf .framer-195e00o { display: block; }\",\".framer-DJXNf.framer-jesucw { 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: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DJXNf .framer-1zuhqg-container, .framer-DJXNf .framer-1xd00h-container, .framer-DJXNf .framer-19nl110-container, .framer-DJXNf .framer-ta5fd1-container, .framer-DJXNf .framer-12njma9-container, .framer-DJXNf .framer-4glc8n-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-DJXNf .framer-1m97mth, .framer-DJXNf .framer-1id5vyt, .framer-DJXNf .framer-1jgibxa, .framer-DJXNf .framer-6dqpni, .framer-DJXNf .framer-7hnrdm, .framer-DJXNf .framer-1fd8kdw, .framer-DJXNf .framer-12ohibe { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DJXNf.framer-jesucw { gap: 0px; } .framer-DJXNf.framer-jesucw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DJXNf.framer-jesucw > :first-child { margin-top: 0px; } .framer-DJXNf.framer-jesucw > :last-child { margin-bottom: 0px; } }\",'.framer-DJXNf[data-border=\"true\"]::after, .framer-DJXNf [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 420\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK0f1G3sw4=withCSS(Component,css,\"framer-DJXNf\");export default FramerK0f1G3sw4;FramerK0f1G3sw4.displayName=\"Accordion\";FramerK0f1G3sw4.defaultProps={height:420,width:1e3};addFonts(FramerK0f1G3sw4,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK0f1G3sw4\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"420\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./K0f1G3sw4.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Qk_2yBDpR\",\"YSqUJqVtn\",\"znXKAjkeZ\"];const serializationHash=\"framer-DbRAo\";const variantClassNames={Qk_2yBDpR:\"framer-v-1k62smr\",YSqUJqVtn:\"framer-v-u194n6\",znXKAjkeZ:\"framer-v-1sf9lzt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Qk_2yBDpR\",\"Variant 2\":\"YSqUJqVtn\",\"Variant 3\":\"znXKAjkeZ\"};const getProps=({height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,jb8Mxsp1i:(_ref=text!==null&&text!==void 0?text:props.jb8Mxsp1i)!==null&&_ref!==void 0?_ref:\"Smart Task Prioritization with AI Insights\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Qk_2yBDpR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jb8Mxsp1i,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Qk_2yBDpR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1k62smr\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Qk_2yBDpR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({YSqUJqVtn:{\"data-framer-name\":\"Variant 2\"},znXKAjkeZ:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nyq7eu\",\"data-border\":true,\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"U1O3oMjKc\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-09920af5-e3bc-4f2c-8ef0-faf72c25158d, rgb(51, 51, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2cfb2c8d-54c4-43ad-8abd-a02cba626afb, rgb(38, 38, 38))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ybuhg5\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"hbOOZXpme\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"#fff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-smile-plus\"><path d=\"M22 11v1a10 10 0 1 1-9-10\"/><path d=\"M8 14s1.5 2 4 2 4-2 4-2M9 9h.01M15 9h.01M16 5h6m-3-3v6\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),className:\"framer-s6upkm\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"oykJnRxHX\",style:{\"--extracted-r6o4lv\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:jb8Mxsp1i,variants:{znXKAjkeZ:{\"--extracted-r6o4lv\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(12, 12, 12))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({YSqUJqVtn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),fonts:[\"GF;Figtree-600\"]},znXKAjkeZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(12, 12, 12)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),fonts:[\"GF;Figtree-regular\"]}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DbRAo.framer-oas56p, .framer-DbRAo .framer-oas56p { display: block; }\",\".framer-DbRAo.framer-1k62smr { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 256px; }\",\".framer-DbRAo .framer-1nyq7eu { 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: 14px; position: relative; width: min-content; }\",\".framer-DbRAo .framer-1ybuhg5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-DbRAo .framer-s6upkm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DbRAo.framer-1k62smr, .framer-DbRAo .framer-1nyq7eu { gap: 0px; } .framer-DbRAo.framer-1k62smr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-DbRAo.framer-1k62smr > :first-child, .framer-DbRAo .framer-1nyq7eu > :first-child { margin-top: 0px; } .framer-DbRAo.framer-1k62smr > :last-child, .framer-DbRAo .framer-1nyq7eu > :last-child { margin-bottom: 0px; } .framer-DbRAo .framer-1nyq7eu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-DbRAo.framer-v-u194n6.framer-1k62smr { flex-direction: row; gap: 12px; padding: 0px 20px 0px 20px; width: 320px; }\",\".framer-DbRAo.framer-v-u194n6 .framer-s6upkm { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DbRAo.framer-v-u194n6.framer-1k62smr { gap: 0px; } .framer-DbRAo.framer-v-u194n6.framer-1k62smr > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-DbRAo.framer-v-u194n6.framer-1k62smr > :first-child { margin-left: 0px; } .framer-DbRAo.framer-v-u194n6.framer-1k62smr > :last-child { margin-right: 0px; } }\",'.framer-DbRAo[data-border=\"true\"]::after, .framer-DbRAo [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 125\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YSqUJqVtn\":{\"layout\":[\"fixed\",\"auto\"]},\"znXKAjkeZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"jb8Mxsp1i\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKI2yaJTfK=withCSS(Component,css,\"framer-DbRAo\");export default FramerKI2yaJTfK;FramerKI2yaJTfK.displayName=\"Cards/ Benefit Card 4\";FramerKI2yaJTfK.defaultProps={height:125,width:256};addPropertyControls(FramerKI2yaJTfK,{variant:{options:[\"Qk_2yBDpR\",\"YSqUJqVtn\",\"znXKAjkeZ\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},jb8Mxsp1i:{defaultValue:\"Smart Task Prioritization with AI Insights\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerKI2yaJTfK,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKI2yaJTfK\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"256\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"jb8Mxsp1i\\\":\\\"text\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YSqUJqVtn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"znXKAjkeZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"125\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KI2yaJTfK.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"clgz99F_T\",\"QzO4NbquM\",\"AQQp1HxOk\"];const serializationHash=\"framer-gtk3s\";const variantClassNames={AQQp1HxOk:\"framer-v-6o2i6c\",clgz99F_T:\"framer-v-4ss92g\",QzO4NbquM:\"framer-v-1i50zf2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"clgz99F_T\",\"Variant 2\":\"QzO4NbquM\",Dark:\"AQQp1HxOk\"};const getProps=({height,icon,id,text,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,jb8Mxsp1i:(_ref=text!==null&&text!==void 0?text:props.jb8Mxsp1i)!==null&&_ref!==void 0?_ref:\"Smart Task Prioritization with AI Insights\",Sp0LUw54y:(_ref1=icon!==null&&icon!==void 0?icon:props.Sp0LUw54y)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/sh29Ss025KGjtLmfxytiazc4EeI.svg\"},variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"clgz99F_T\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Sp0LUw54y,jb8Mxsp1i,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"clgz99F_T\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4ss92g\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"clgz99F_T\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AQQp1HxOk:{\"data-framer-name\":\"Dark\"},QzO4NbquM:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rfoua8\",\"data-border\":true,\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"o2BOQmlWO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-09920af5-e3bc-4f2c-8ef0-faf72c25158d, rgb(51, 51, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2cfb2c8d-54c4-43ad-8abd-a02cba626afb, rgb(38, 38, 38))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+14+0),pixelHeight:30,pixelWidth:30,sizes:\"30px\",...toResponsiveImage(Sp0LUw54y),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1hhxrh1\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"sdBohK8pL\",...addPropertyOverrides({QzO4NbquM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||58)-0-58)/2)+14+0),pixelHeight:30,pixelWidth:30,sizes:\"30px\",...toResponsiveImage(Sp0LUw54y),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),className:\"framer-1mzv4az\",\"data-framer-name\":\"Text\",fonts:[\"FS;Poppins-semibold\"],layoutDependency:layoutDependency,layoutId:\"Lf4dF62Jl\",style:{\"--extracted-r6o4lv\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:jb8Mxsp1i,variants:{AQQp1HxOk:{\"--extracted-r6o4lv\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AQQp1HxOk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),fonts:[\"GF;Figtree-regular\"]},QzO4NbquM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:\"Smart Task Prioritization with AI Insights\"})}),fonts:[\"GF;Figtree-600\"]}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gtk3s.framer-brsr6a, .framer-gtk3s .framer-brsr6a { display: block; }\",\".framer-gtk3s.framer-4ss92g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 256px; }\",\".framer-gtk3s .framer-rfoua8 { 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: 14px; position: relative; width: min-content; }\",\".framer-gtk3s .framer-1hhxrh1 { flex: none; height: 30px; overflow: visible; position: relative; width: 30px; }\",\".framer-gtk3s .framer-1mzv4az { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gtk3s.framer-4ss92g, .framer-gtk3s .framer-rfoua8 { gap: 0px; } .framer-gtk3s.framer-4ss92g > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-gtk3s.framer-4ss92g > :first-child, .framer-gtk3s .framer-rfoua8 > :first-child { margin-top: 0px; } .framer-gtk3s.framer-4ss92g > :last-child, .framer-gtk3s .framer-rfoua8 > :last-child { margin-bottom: 0px; } .framer-gtk3s .framer-rfoua8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-gtk3s.framer-v-1i50zf2.framer-4ss92g { flex-direction: row; gap: 12px; padding: 0px 20px 0px 20px; width: 320px; }\",\".framer-gtk3s.framer-v-1i50zf2 .framer-1mzv4az { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gtk3s.framer-v-1i50zf2.framer-4ss92g { gap: 0px; } .framer-gtk3s.framer-v-1i50zf2.framer-4ss92g > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-gtk3s.framer-v-1i50zf2.framer-4ss92g > :first-child { margin-left: 0px; } .framer-gtk3s.framer-v-1i50zf2.framer-4ss92g > :last-child { margin-right: 0px; } }\",\".framer-gtk3s.framer-v-6o2i6c.framer-4ss92g { gap: 12px; padding: 0px 20px 0px 20px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gtk3s.framer-v-6o2i6c.framer-4ss92g { gap: 0px; } .framer-gtk3s.framer-v-6o2i6c.framer-4ss92g > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-gtk3s.framer-v-6o2i6c.framer-4ss92g > :first-child { margin-top: 0px; } .framer-gtk3s.framer-v-6o2i6c.framer-4ss92g > :last-child { margin-bottom: 0px; } }\",'.framer-gtk3s[data-border=\"true\"]::after, .framer-gtk3s [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 125\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QzO4NbquM\":{\"layout\":[\"fixed\",\"auto\"]},\"AQQp1HxOk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Sp0LUw54y\":\"icon\",\"jb8Mxsp1i\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXiDwtfdpj=withCSS(Component,css,\"framer-gtk3s\");export default FramerXiDwtfdpj;FramerXiDwtfdpj.displayName=\"Cards/ Benefit Card\";FramerXiDwtfdpj.defaultProps={height:125,width:256};addPropertyControls(FramerXiDwtfdpj,{variant:{options:[\"clgz99F_T\",\"QzO4NbquM\",\"AQQp1HxOk\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Dark\"],title:\"Variant\",type:ControlType.Enum},Sp0LUw54y:{__defaultAssetReference:\"data:framer/asset-reference,sh29Ss025KGjtLmfxytiazc4EeI.svg?originalFilename=api-app+%283%29.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},jb8Mxsp1i:{defaultValue:\"Smart Task Prioritization with AI Insights\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerXiDwtfdpj,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v6/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXiDwtfdpj\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"256\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Sp0LUw54y\\\":\\\"icon\\\",\\\"jb8Mxsp1i\\\":\\\"text\\\"}\",\"framerIntrinsicHeight\":\"125\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QzO4NbquM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AQQp1HxOk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XiDwtfdpj.map", "// Generated by Framer (fb31e5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,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/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import CodeBlock from\"https://framerusercontent.com/modules/pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Button2 from\"#framer/local/canvasComponent/aj9lG42lT/aj9lG42lT.js\";import HelperSectionHeader from\"#framer/local/canvasComponent/C9Zr0BI8m/C9Zr0BI8m.js\";import CardsIntegration from\"#framer/local/canvasComponent/cLvm5tXte/cLvm5tXte.js\";import CardCustomer from\"#framer/local/canvasComponent/CnQdZ8QF0/CnQdZ8QF0.js\";import CardsBenefitCard2 from\"#framer/local/canvasComponent/HjbChiWLN/HjbChiWLN.js\";import CardsBenefitCard3 from\"#framer/local/canvasComponent/hKJ_pQ9RJ/hKJ_pQ9RJ.js\";import Accordion from\"#framer/local/canvasComponent/K0f1G3sw4/K0f1G3sw4.js\";import CardsBenefitCard4 from\"#framer/local/canvasComponent/KI2yaJTfK/KI2yaJTfK.js\";import Footer from\"#framer/local/canvasComponent/T8wCGyhjg/T8wCGyhjg.js\";import CardsBenefitCard from\"#framer/local/canvasComponent/XiDwtfdpj/XiDwtfdpj.js\";import Navbar from\"#framer/local/canvasComponent/xSXZtUjKT/xSXZtUjKT.js\";import*as sharedStyle4 from\"#framer/local/css/AaJ2VKnBH/AaJ2VKnBH.js\";import*as sharedStyle6 from\"#framer/local/css/alnaaYLdd/alnaaYLdd.js\";import*as sharedStyle1 from\"#framer/local/css/CmDOwVDBz/CmDOwVDBz.js\";import*as sharedStyle5 from\"#framer/local/css/gl_OSxSYB/gl_OSxSYB.js\";import*as sharedStyle from\"#framer/local/css/iaBy7WzBo/iaBy7WzBo.js\";import*as sharedStyle2 from\"#framer/local/css/N3dnRsAxx/N3dnRsAxx.js\";import*as sharedStyle3 from\"#framer/local/css/N8Au19Xkt/N8Au19Xkt.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ImageWithFX=withFX(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const Button2Fonts=getFonts(Button2);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const EmbedFonts=getFonts(Embed);const MotionDivWithFX=withFX(motion.div);const HelperSectionHeaderFonts=getFonts(HelperSectionHeader);const CardsBenefitCardFonts=getFonts(CardsBenefitCard);const CardsBenefitCard2Fonts=getFonts(CardsBenefitCard2);const CardsBenefitCard3Fonts=getFonts(CardsBenefitCard3);const CardsBenefitCard4Fonts=getFonts(CardsBenefitCard4);const PhosphorFonts=getFonts(Phosphor);const CardCustomerFonts=getFonts(CardCustomer);const CardsIntegrationFonts=getFonts(CardsIntegration);const CodeBlockFonts=getFonts(CodeBlock);const AccordionFonts=getFonts(Accordion);const ContainerWithFX=withFX(Container);const FooterFonts=getFonts(Footer);const NavbarFonts=getFonts(Navbar);const breakpoints={vWi3wLJHX:\"(min-width: 810px) and (max-width: 1359px)\",w01tF5ohw:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1360px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-RkXzm\";const variantClassNames={vWi3wLJHX:\"framer-v-1eapo48\",w01tF5ohw:\"framer-v-bv3nhy\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={delay:.8,duration:.6,ease:[.5,0,.88,.77],type:\"tween\"};const transition2={damping:20,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={delay:0,duration:1.5,ease:[.53,.27,.4,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.15,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,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:\"WQLkyLRf1\",Phone:\"w01tF5ohw\",Tablet:\"vWi3wLJHX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vWi3wLJHX\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"w01tF5ohw\")return false;return true;};const elementId=useRouteElementId(\"zBaLYKIdE\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"jWYdli4Sm\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"w01tF5ohw\")return true;return false;};const elementId2=useRouteElementId(\"ZAkg3ybBg\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"Q8sFKoEU8\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"mc6YexAfp\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"GtLjm5SL3\");const ref6=React.useRef(null);const router=useRouter();const elementId6=useRouteElementId(\"syjVerTuK\");const ref7=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15747kd hidden-1eapo48\",\"data-framer-name\":\"Container\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:542,intrinsicWidth:2146,svg:'<svg width=\"2146\" height=\"542\" viewBox=\"0 0 2146 542\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.847344\" y1=\"1.63354e-08\" x2=\"0.847318\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"30.6403\" y1=\"1.63354e-08\" x2=\"30.6403\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"60.4338\" y1=\"1.63354e-08\" x2=\"60.4337\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"90.2267\" y1=\"1.63354e-08\" x2=\"90.2267\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"120.02\" y1=\"1.63354e-08\" x2=\"120.02\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"149.813\" y1=\"1.63354e-08\" x2=\"149.813\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"179.606\" y1=\"1.63354e-08\" x2=\"179.606\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"209.399\" y1=\"1.63354e-08\" x2=\"209.399\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"239.192\" y1=\"1.63354e-08\" x2=\"239.192\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"268.986\" y1=\"1.63354e-08\" x2=\"268.986\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"298.778\" y1=\"1.63354e-08\" x2=\"298.778\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"328.571\" y1=\"1.63354e-08\" x2=\"328.571\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"358.365\" y1=\"1.63354e-08\" x2=\"358.365\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"388.158\" y1=\"1.63354e-08\" x2=\"388.158\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"417.951\" y1=\"1.63354e-08\" x2=\"417.951\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"447.744\" y1=\"1.63354e-08\" x2=\"447.744\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"477.537\" y1=\"1.63354e-08\" x2=\"477.537\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"507.33\" y1=\"1.63354e-08\" x2=\"507.33\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"537.123\" y1=\"1.63354e-08\" x2=\"537.123\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"566.916\" y1=\"1.63354e-08\" x2=\"566.916\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"596.709\" y1=\"1.63354e-08\" x2=\"596.709\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"626.503\" y1=\"1.63354e-08\" x2=\"626.503\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"656.295\" y1=\"1.63354e-08\" x2=\"656.295\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"686.088\" y1=\"1.63354e-08\" x2=\"686.088\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"715.882\" y1=\"1.63354e-08\" x2=\"715.881\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"745.675\" y1=\"1.63354e-08\" x2=\"745.675\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"775.468\" y1=\"1.63354e-08\" x2=\"775.468\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"805.261\" y1=\"1.63354e-08\" x2=\"805.261\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"835.054\" y1=\"1.63354e-08\" x2=\"835.054\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"864.847\" y1=\"1.63354e-08\" x2=\"864.847\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"894.64\" y1=\"1.63354e-08\" x2=\"894.64\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"924.433\" y1=\"1.63354e-08\" x2=\"924.433\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"954.226\" y1=\"1.63354e-08\" x2=\"954.226\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"984.02\" y1=\"1.63354e-08\" x2=\"984.02\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1013.81\" y1=\"1.63354e-08\" x2=\"1013.81\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1043.61\" y1=\"1.63354e-08\" x2=\"1043.61\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.4\" y1=\"1.63354e-08\" x2=\"1073.4\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"0.373711\" x2=\"0.474976\" y2=\"0.373618\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"30.1677\" x2=\"0.474976\" y2=\"30.1676\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"59.9626\" x2=\"0.474976\" y2=\"59.9625\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"89.7565\" x2=\"0.47522\" y2=\"89.7564\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"119.55\" x2=\"0.47522\" y2=\"119.55\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"149.344\" x2=\"0.474976\" y2=\"149.344\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"179.139\" x2=\"0.47522\" y2=\"179.139\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"208.933\" x2=\"0.47522\" y2=\"208.933\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"238.727\" x2=\"0.474976\" y2=\"238.727\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"268.521\" x2=\"0.474976\" y2=\"268.521\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"298.315\" x2=\"0.47522\" y2=\"298.315\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"328.11\" x2=\"0.474976\" y2=\"328.11\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"357.904\" x2=\"0.474976\" y2=\"357.904\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"387.698\" x2=\"0.47522\" y2=\"387.698\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"417.492\" x2=\"0.47522\" y2=\"417.492\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"447.286\" x2=\"0.474976\" y2=\"447.286\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"477.081\" x2=\"0.474976\" y2=\"477.081\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"506.875\" x2=\"0.47522\" y2=\"506.875\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"536.669\" x2=\"0.474976\" y2=\"536.669\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<rect x=\"89.854\" y=\"30.166\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"179.233\" y=\"149.157\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"268.612\" y=\"208.932\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"954.041\" y=\"59.7734\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"864.66\" y=\"118.989\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<path d=\"M923.874 208.93H953.481V238.538H923.874V208.93Z\" fill=\"#F6F7F9\"/>\\n<rect x=\"804.888\" y=\"268.147\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"894.267\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"983.645\" y=\"387.696\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"864.66\" y=\"536.294\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"89.854\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"179.233\" y=\"387.696\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"60.2461\" y=\"476.519\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"268.612\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<line x1=\"1073.4\" y1=\"1.63354e-08\" x2=\"1073.4\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1103.19\" y1=\"1.63354e-08\" x2=\"1103.19\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1132.99\" y1=\"1.63354e-08\" x2=\"1132.99\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1162.78\" y1=\"1.63354e-08\" x2=\"1162.78\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1192.57\" y1=\"1.63354e-08\" x2=\"1192.57\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1222.37\" y1=\"1.63354e-08\" x2=\"1222.37\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1252.16\" y1=\"1.63354e-08\" x2=\"1252.16\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1281.95\" y1=\"1.63354e-08\" x2=\"1281.95\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1311.75\" y1=\"1.63354e-08\" x2=\"1311.75\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1341.54\" y1=\"1.63354e-08\" x2=\"1341.54\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1371.33\" y1=\"1.63354e-08\" x2=\"1371.33\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1401.13\" y1=\"1.63354e-08\" x2=\"1401.13\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1430.92\" y1=\"1.63354e-08\" x2=\"1430.92\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1460.71\" y1=\"1.63354e-08\" x2=\"1460.71\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1490.5\" y1=\"1.63354e-08\" x2=\"1490.5\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1520.3\" y1=\"1.63354e-08\" x2=\"1520.3\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1550.09\" y1=\"1.63354e-08\" x2=\"1550.09\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1579.88\" y1=\"1.63354e-08\" x2=\"1579.88\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1609.68\" y1=\"1.63354e-08\" x2=\"1609.68\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1639.47\" y1=\"1.63354e-08\" x2=\"1639.47\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1669.26\" y1=\"1.63354e-08\" x2=\"1669.26\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1699.06\" y1=\"1.63354e-08\" x2=\"1699.06\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1728.85\" y1=\"1.63354e-08\" x2=\"1728.85\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1758.64\" y1=\"1.63354e-08\" x2=\"1758.64\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1788.44\" y1=\"1.63354e-08\" x2=\"1788.44\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1818.23\" y1=\"1.63354e-08\" x2=\"1818.23\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1848.02\" y1=\"1.63354e-08\" x2=\"1848.02\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1877.81\" y1=\"1.63354e-08\" x2=\"1877.81\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1907.61\" y1=\"1.63354e-08\" x2=\"1907.61\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1937.4\" y1=\"1.63354e-08\" x2=\"1937.4\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1967.19\" y1=\"1.63354e-08\" x2=\"1967.19\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1996.99\" y1=\"1.63354e-08\" x2=\"1996.99\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2026.78\" y1=\"1.63354e-08\" x2=\"2026.78\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2056.57\" y1=\"1.63354e-08\" x2=\"2056.57\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2086.37\" y1=\"1.63354e-08\" x2=\"2086.37\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2116.16\" y1=\"1.63354e-08\" x2=\"2116.16\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.95\" y1=\"1.63354e-08\" x2=\"2145.95\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"0.373711\" x2=\"1073.03\" y2=\"0.373618\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"30.1677\" x2=\"1073.03\" y2=\"30.1676\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"59.9626\" x2=\"1073.03\" y2=\"59.9625\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"89.7565\" x2=\"1073.03\" y2=\"89.7564\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"119.55\" x2=\"1073.03\" y2=\"119.55\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"149.344\" x2=\"1073.03\" y2=\"149.344\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"179.138\" x2=\"1073.03\" y2=\"179.138\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"208.933\" x2=\"1073.03\" y2=\"208.933\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"238.727\" x2=\"1073.03\" y2=\"238.727\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"268.521\" x2=\"1073.03\" y2=\"268.521\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"298.315\" x2=\"1073.03\" y2=\"298.315\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"328.11\" x2=\"1073.03\" y2=\"328.11\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"357.904\" x2=\"1073.03\" y2=\"357.904\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"387.698\" x2=\"1073.03\" y2=\"387.698\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"417.492\" x2=\"1073.03\" y2=\"417.492\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"447.286\" x2=\"1073.03\" y2=\"447.286\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"477.081\" x2=\"1073.03\" y2=\"477.081\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"506.875\" x2=\"1073.03\" y2=\"506.875\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"536.669\" x2=\"1073.03\" y2=\"536.669\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<rect x=\"1162.41\" y=\"30.166\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1251.78\" y=\"149.157\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1341.16\" y=\"208.932\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"2026.59\" y=\"59.7734\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1937.21\" y=\"118.989\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<path d=\"M1996.43 208.93H2026.03V238.538H1996.43V208.93Z\" fill=\"#F6F7F9\"/>\\n<rect x=\"1877.44\" y=\"268.147\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1966.82\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"2056.2\" y=\"387.696\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1937.21\" y=\"536.294\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1162.41\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1251.78\" y=\"387.696\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1132.8\" y=\"476.519\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1341.16\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-l3f3kj hidden-bv3nhy\",\"data-framer-name\":\"Container\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:542,intrinsicWidth:2146,svg:'<svg width=\"2146\" height=\"542\" viewBox=\"0 0 2146 542\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.847344\" y1=\"1.63354e-08\" x2=\"0.847318\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"30.6403\" y1=\"1.63354e-08\" x2=\"30.6403\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"60.4338\" y1=\"1.63354e-08\" x2=\"60.4337\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"90.2267\" y1=\"1.63354e-08\" x2=\"90.2267\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"120.02\" y1=\"1.63354e-08\" x2=\"120.02\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"149.813\" y1=\"1.63354e-08\" x2=\"149.813\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"179.606\" y1=\"1.63354e-08\" x2=\"179.606\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"209.399\" y1=\"1.63354e-08\" x2=\"209.399\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"239.192\" y1=\"1.63354e-08\" x2=\"239.192\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"268.986\" y1=\"1.63354e-08\" x2=\"268.986\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"298.778\" y1=\"1.63354e-08\" x2=\"298.778\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"328.571\" y1=\"1.63354e-08\" x2=\"328.571\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"358.365\" y1=\"1.63354e-08\" x2=\"358.365\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"388.158\" y1=\"1.63354e-08\" x2=\"388.158\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"417.951\" y1=\"1.63354e-08\" x2=\"417.951\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"447.744\" y1=\"1.63354e-08\" x2=\"447.744\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"477.537\" y1=\"1.63354e-08\" x2=\"477.537\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"507.33\" y1=\"1.63354e-08\" x2=\"507.33\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"537.123\" y1=\"1.63354e-08\" x2=\"537.123\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"566.916\" y1=\"1.63354e-08\" x2=\"566.916\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"596.709\" y1=\"1.63354e-08\" x2=\"596.709\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"626.503\" y1=\"1.63354e-08\" x2=\"626.503\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"656.295\" y1=\"1.63354e-08\" x2=\"656.295\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"686.088\" y1=\"1.63354e-08\" x2=\"686.088\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"715.882\" y1=\"1.63354e-08\" x2=\"715.881\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"745.675\" y1=\"1.63354e-08\" x2=\"745.675\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"775.468\" y1=\"1.63354e-08\" x2=\"775.468\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"805.261\" y1=\"1.63354e-08\" x2=\"805.261\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"835.054\" y1=\"1.63354e-08\" x2=\"835.054\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"864.847\" y1=\"1.63354e-08\" x2=\"864.847\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"894.64\" y1=\"1.63354e-08\" x2=\"894.64\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"924.433\" y1=\"1.63354e-08\" x2=\"924.433\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"954.226\" y1=\"1.63354e-08\" x2=\"954.226\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"984.02\" y1=\"1.63354e-08\" x2=\"984.02\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1013.81\" y1=\"1.63354e-08\" x2=\"1013.81\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1043.61\" y1=\"1.63354e-08\" x2=\"1043.61\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.4\" y1=\"1.63354e-08\" x2=\"1073.4\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"0.373711\" x2=\"0.474976\" y2=\"0.373618\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"30.1677\" x2=\"0.474976\" y2=\"30.1676\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"59.9626\" x2=\"0.474976\" y2=\"59.9625\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"89.7565\" x2=\"0.47522\" y2=\"89.7564\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"119.55\" x2=\"0.47522\" y2=\"119.55\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"149.344\" x2=\"0.474976\" y2=\"149.344\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"179.139\" x2=\"0.47522\" y2=\"179.139\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"208.933\" x2=\"0.47522\" y2=\"208.933\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"238.727\" x2=\"0.474976\" y2=\"238.727\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"268.521\" x2=\"0.474976\" y2=\"268.521\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"298.315\" x2=\"0.47522\" y2=\"298.315\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"328.11\" x2=\"0.474976\" y2=\"328.11\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"357.904\" x2=\"0.474976\" y2=\"357.904\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"387.698\" x2=\"0.47522\" y2=\"387.698\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"417.492\" x2=\"0.47522\" y2=\"417.492\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"447.286\" x2=\"0.474976\" y2=\"447.286\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"477.081\" x2=\"0.474976\" y2=\"477.081\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"506.875\" x2=\"0.47522\" y2=\"506.875\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1073.03\" y1=\"536.669\" x2=\"0.474976\" y2=\"536.669\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<rect x=\"89.854\" y=\"30.166\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"179.233\" y=\"149.157\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"268.612\" y=\"208.932\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"954.041\" y=\"59.7734\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"864.66\" y=\"118.989\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<path d=\"M923.874 208.93H953.481V238.538H923.874V208.93Z\" fill=\"#F6F7F9\"/>\\n<rect x=\"804.888\" y=\"268.147\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"894.267\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"983.645\" y=\"387.696\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"864.66\" y=\"536.294\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"89.854\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"179.233\" y=\"387.696\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"60.2461\" y=\"476.519\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"268.612\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<line x1=\"1073.4\" y1=\"1.63354e-08\" x2=\"1073.4\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1103.19\" y1=\"1.63354e-08\" x2=\"1103.19\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1132.99\" y1=\"1.63354e-08\" x2=\"1132.99\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1162.78\" y1=\"1.63354e-08\" x2=\"1162.78\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1192.57\" y1=\"1.63354e-08\" x2=\"1192.57\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1222.37\" y1=\"1.63354e-08\" x2=\"1222.37\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1252.16\" y1=\"1.63354e-08\" x2=\"1252.16\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1281.95\" y1=\"1.63354e-08\" x2=\"1281.95\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1311.75\" y1=\"1.63354e-08\" x2=\"1311.75\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1341.54\" y1=\"1.63354e-08\" x2=\"1341.54\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1371.33\" y1=\"1.63354e-08\" x2=\"1371.33\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1401.13\" y1=\"1.63354e-08\" x2=\"1401.13\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1430.92\" y1=\"1.63354e-08\" x2=\"1430.92\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1460.71\" y1=\"1.63354e-08\" x2=\"1460.71\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1490.5\" y1=\"1.63354e-08\" x2=\"1490.5\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1520.3\" y1=\"1.63354e-08\" x2=\"1520.3\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1550.09\" y1=\"1.63354e-08\" x2=\"1550.09\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1579.88\" y1=\"1.63354e-08\" x2=\"1579.88\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1609.68\" y1=\"1.63354e-08\" x2=\"1609.68\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1639.47\" y1=\"1.63354e-08\" x2=\"1639.47\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1669.26\" y1=\"1.63354e-08\" x2=\"1669.26\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1699.06\" y1=\"1.63354e-08\" x2=\"1699.06\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1728.85\" y1=\"1.63354e-08\" x2=\"1728.85\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1758.64\" y1=\"1.63354e-08\" x2=\"1758.64\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1788.44\" y1=\"1.63354e-08\" x2=\"1788.44\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1818.23\" y1=\"1.63354e-08\" x2=\"1818.23\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1848.02\" y1=\"1.63354e-08\" x2=\"1848.02\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1877.81\" y1=\"1.63354e-08\" x2=\"1877.81\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1907.61\" y1=\"1.63354e-08\" x2=\"1907.61\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1937.4\" y1=\"1.63354e-08\" x2=\"1937.4\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1967.19\" y1=\"1.63354e-08\" x2=\"1967.19\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"1996.99\" y1=\"1.63354e-08\" x2=\"1996.99\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2026.78\" y1=\"1.63354e-08\" x2=\"2026.78\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2056.57\" y1=\"1.63354e-08\" x2=\"2056.57\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2086.37\" y1=\"1.63354e-08\" x2=\"2086.37\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2116.16\" y1=\"1.63354e-08\" x2=\"2116.16\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.95\" y1=\"1.63354e-08\" x2=\"2145.95\" y2=\"602.215\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"0.373711\" x2=\"1073.03\" y2=\"0.373618\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"30.1677\" x2=\"1073.03\" y2=\"30.1676\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"59.9626\" x2=\"1073.03\" y2=\"59.9625\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"89.7565\" x2=\"1073.03\" y2=\"89.7564\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"119.55\" x2=\"1073.03\" y2=\"119.55\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"149.344\" x2=\"1073.03\" y2=\"149.344\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"179.138\" x2=\"1073.03\" y2=\"179.138\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"208.933\" x2=\"1073.03\" y2=\"208.933\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"238.727\" x2=\"1073.03\" y2=\"238.727\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"268.521\" x2=\"1073.03\" y2=\"268.521\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"298.315\" x2=\"1073.03\" y2=\"298.315\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"328.11\" x2=\"1073.03\" y2=\"328.11\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"357.904\" x2=\"1073.03\" y2=\"357.904\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"387.698\" x2=\"1073.03\" y2=\"387.698\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"417.492\" x2=\"1073.03\" y2=\"417.492\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"447.286\" x2=\"1073.03\" y2=\"447.286\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"477.081\" x2=\"1073.03\" y2=\"477.081\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"506.875\" x2=\"1073.03\" y2=\"506.875\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<line x1=\"2145.58\" y1=\"536.669\" x2=\"1073.03\" y2=\"536.669\" stroke=\"#F3F4F7\" stroke-width=\"0.747423\"/>\\n<rect x=\"1162.41\" y=\"30.166\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1251.78\" y=\"149.157\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1341.16\" y=\"208.932\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"2026.59\" y=\"59.7734\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1937.21\" y=\"118.989\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<path d=\"M1996.43 208.93H2026.03V238.538H1996.43V208.93Z\" fill=\"#F6F7F9\"/>\\n<rect x=\"1877.44\" y=\"268.147\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1966.82\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"2056.2\" y=\"387.696\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1937.21\" y=\"536.294\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1162.41\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1251.78\" y=\"387.696\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1132.8\" y=\"476.519\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n<rect x=\"1341.16\" y=\"327.922\" width=\"29.6069\" height=\"29.608\" fill=\"#F6F7F9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{background:undefined}},children:/*#__PURE__*/_jsxs(\"header\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2580,intrinsicWidth:2880,positionX:\"center\",positionY:\"top\"},className:\"framer-1dobzkw\",\"data-framer-name\":\"Hero section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4nmpyp\",\"data-framer-name\":\"Abstract Backgroung\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-eni00o\",\"data-framer-name\":\"Fade Out Bottom\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fm27rs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o1tzj0\",\"data-framer-name\":\"Tittle section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k8emox\",\"data-framer-name\":\"Tittle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{background:{alt:\"\",fit:\"fit\",pixelHeight:12,pixelWidth:380,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NF8p4aZlPVgB3iD2M7iB4r2LakI.png\"}},w01tF5ohw:{background:{alt:\"\",fit:\"fit\",pixelHeight:12,pixelWidth:380,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NF8p4aZlPVgB3iD2M7iB4r2LakI.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:12,pixelWidth:380,src:\"https://framerusercontent.com/images/NF8p4aZlPVgB3iD2M7iB4r2LakI.png\"},className:\"framer-1li826g\",\"data-framer-name\":\"Brushes\"})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-nm80lz\",\"data-styles-preset\":\"iaBy7WzBo\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ddc38dc3-98c7-4d8f-98c1-b8bafe0b2a2f, rgb(1, 108, 227))\"},children:\"Your AI Product, \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ddc38dc3-98c7-4d8f-98c1-b8bafe0b2a2f, rgb(1, 108, 227))\"},children:\"Now Measurable.\"})]})}),className:\"framer-19r9khx\",\"data-framer-appear-id\":\"19r9khx\",fonts:[\"Inter\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56))\"},children:\"Product leaders use Sticklight to see how well their AI performs for users.\"})}),className:\"framer-zkxbnw\",\"data-framer-appear-id\":\"zkxbnw\",\"data-framer-name\":\"Subtitle\",fonts:[\"GF;Figtree-regular\"],initial:animation4,optimized:true,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-dwmbtz\",\"data-framer-appear-id\":\"dwmbtz\",\"data-framer-name\":\"Action buttons\",initial:animation6,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-thgo57-container\",nodeId:\"XWIMG7pS4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{ghnjr0KjJ:\"https://platform.sticklight.io/signup\",height:\"100%\",id:\"XWIMG7pS4\",JhnwCLiwV:\"Get started\",layoutId:\"XWIMG7pS4\",OF2JWcoGK:false,variant:\"y5vw5d6Dz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rgrsfj-container\",nodeId:\"UCSttfAjn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{ghnjr0KjJ:\"https://calendly.com/matan-sticklight/30min\",height:\"100%\",id:\"UCSttfAjn\",JhnwCLiwV:\"Talk to a human\",layoutId:\"UCSttfAjn\",OF2JWcoGK:true,variant:\"pD1Srkdgu\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o0kh1g\",\"data-framer-name\":\"Logos wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w5m0lj\",\"data-styles-preset\":\"CmDOwVDBz\",children:\"Loved by AI companies that choose Stickllight to make their AI work better.\"})}),className:\"framer-w6ri0y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1baczh2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"G0XqPr7BV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:.5,id:\"G0XqPr7BV\",layoutId:\"G0XqPr7BV\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://kypso.io/\",motionChild:true,nodeId:\"MkZaQa8mX\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:159,intrinsicWidth:512,pixelHeight:159,pixelWidth:512,src:\"https://framerusercontent.com/images/BPYKMOiaSQr1eVgMb9cSVVTBCY4.png\"},className:\"framer-1ohij56 framer-lux5qc\",\"data-framer-name\":\"Kypso logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.decart.ai/\",motionChild:true,nodeId:\"lc_utBU5S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1gcxvwt framer-lux5qc\",\"data-framer-name\":\"Decart-ai Logo\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 104 24\"><path d=\"M 22.656 11.026 L 19.152 11.026 C 18.557 11.026 18.075 10.538 18.075 9.937 L 18.075 3.883 C 18.075 3.282 17.592 2.794 16.997 2.794 L 14.006 2.794 C 13.41 2.793 12.928 2.306 12.928 1.704 L 12.928 1.09 C 12.937 0.695 12.734 0.325 12.397 0.125 C 12.06 -0.075 11.642 -0.075 11.305 0.125 C 10.967 0.325 10.764 0.695 10.773 1.09 L 10.773 7.561 C 10.773 8.163 10.29 8.651 9.695 8.651 L 3.808 8.651 C 3.213 8.651 2.731 9.139 2.731 9.741 L 2.731 9.937 C 2.731 10.538 2.248 11.026 1.653 11.026 L 1.078 11.026 C 0.483 11.026 0 11.514 0 12.116 C 0 12.718 0.483 13.206 1.078 13.206 L 6.021 13.206 C 6.615 13.206 7.098 13.693 7.098 14.295 L 7.098 18.669 C 7.098 19.27 7.58 19.758 8.176 19.758 L 9.695 19.758 C 10.29 19.758 10.773 20.246 10.773 20.848 L 10.773 22.91 C 10.764 23.305 10.967 23.675 11.305 23.875 C 11.642 24.075 12.06 24.075 12.397 23.875 C 12.734 23.675 12.937 23.305 12.928 22.91 L 12.928 14.297 C 12.928 13.695 13.41 13.207 14.006 13.207 L 22.655 13.207 C 23.25 13.207 23.733 12.719 23.733 12.117 C 23.733 11.515 23.25 11.027 22.655 11.027\" fill=\"rgb(0,55,255)\"></path><path d=\"M 31.689 17.634 L 34.041 17.634 C 37.555 17.634 40.096 15.119 40.096 11.647 C 40.096 8.175 37.555 5.661 34.04 5.661 L 31.689 5.661 L 31.689 17.634 Z M 29.203 19.984 L 29.203 3.311 L 34.041 3.311 C 38.988 3.311 42.582 6.865 42.582 11.647 C 42.582 16.43 38.988 19.984 34.04 19.984 Z M 46.392 12.194 L 54.582 12.194 C 54.311 9.789 52.717 8.094 50.581 8.094 C 48.445 8.094 46.743 9.707 46.392 12.194 Z M 56.744 14.134 L 46.419 14.134 C 46.769 16.622 48.392 18.126 50.636 18.126 C 52.258 18.126 53.311 17.387 53.987 16.294 L 56.392 16.294 C 55.581 18.372 53.419 20.285 50.608 20.285 C 46.932 20.285 44.039 17.279 44.039 13.097 C 44.039 8.914 47.013 5.935 50.581 5.935 C 54.15 5.935 56.852 8.914 56.852 12.769 C 56.852 13.343 56.825 13.807 56.743 14.136 M 58.312 13.097 C 58.312 9.023 61.285 5.935 64.881 5.935 C 68.125 5.935 70.449 8.504 70.962 11.21 L 68.638 11.21 C 68.179 9.598 66.962 8.149 64.881 8.149 C 62.583 8.149 60.638 10.145 60.638 13.098 C 60.638 16.05 62.584 18.072 64.881 18.072 C 66.962 18.072 68.179 16.623 68.638 15.011 L 70.962 15.011 C 70.449 17.717 68.123 20.286 64.881 20.286 C 61.287 20.286 58.312 17.198 58.312 13.098 M 82.8 13.097 C 82.8 10.143 80.908 8.148 78.691 8.148 C 76.474 8.148 74.61 10.143 74.61 13.097 C 74.61 16.049 76.502 18.071 78.691 18.071 C 80.88 18.071 82.8 16.075 82.8 13.097 Z M 72.285 13.097 C 72.285 8.886 75.151 5.935 78.556 5.935 C 80.772 5.935 82.34 7.411 82.745 7.958 L 82.88 7.958 L 83.393 6.236 L 85.123 6.236 L 85.123 19.985 L 83.393 19.985 L 82.88 18.262 L 82.745 18.262 C 82.34 18.809 80.772 20.285 78.556 20.285 C 75.15 20.285 72.285 17.306 72.285 13.097 Z M 87.718 19.984 L 87.718 6.234 L 89.447 6.234 L 89.961 7.956 L 90.096 7.956 C 90.583 7.218 91.907 5.933 93.611 5.933 C 94.016 5.933 94.368 5.961 94.664 6.043 L 94.664 8.42 C 94.314 8.311 93.989 8.283 93.611 8.283 C 91.529 8.283 90.043 9.76 90.043 12.247 L 90.043 19.983 L 87.719 19.983 Z M 98.178 15.691 L 98.178 8.394 L 95.854 8.394 L 95.854 6.317 L 96.881 6.317 C 97.935 6.317 98.529 5.742 98.529 4.676 L 98.529 2.625 L 100.502 2.625 L 100.502 6.234 L 103.583 6.234 L 103.583 8.394 L 100.502 8.394 L 100.502 15.61 C 100.502 17.304 101.368 18.07 102.638 18.07 C 102.989 18.07 103.287 18.015 103.583 17.878 L 103.583 20.038 C 103.26 20.147 102.827 20.283 102.178 20.283 C 99.908 20.283 98.177 18.617 98.177 15.692\" fill=\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56)) /* {&quot;name&quot;:&quot;primary-text-color&quot;} */\"></path></svg>',svgContentId:10196379564,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://truly.ws/\",motionChild:true,nodeId:\"PGJugFITA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:76,intrinsicWidth:200,pixelHeight:76,pixelWidth:200,src:\"https://framerusercontent.com/images/on3ey29rysyiLJMVs7pYNqKLsx4.png\"},className:\"framer-lh1u6f framer-lux5qc\",\"data-framer-name\":\"Truly logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://casixty.com/\",motionChild:true,nodeId:\"MvQ9zkzqr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-h7dr16 framer-lux5qc\",\"data-framer-name\":\"Casixty Logo\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 104 38\"><path d=\"M 103.514 13.072 L 98.558 20.66 L 98.558 25.84 L 96.484 25.84 L 96.484 20.623 L 91.492 13.072 L 93.97 13.072 L 97.531 18.79 L 101.1 13.072 Z M 87.131 13.072 L 87.131 15.024 L 82.974 15.024 L 82.974 25.84 L 80.9 25.84 L 80.9 15.024 L 76.743 15.024 L 76.743 13.072 Z M 80.508 0.76 L 67.745 19.328 L 72.315 25.84 L 69.81 25.84 L 66.488 20.924 L 55.059 38 L 52.551 38 L 65.26 19.328 L 60.88 13.072 L 63.386 13.072 L 66.525 17.723 L 78 0.76 Z M 54.875 13.072 L 54.875 25.84 L 52.803 25.84 L 52.803 13.072 L 54.877 13.072 Z M 46.199 14.23 L 45.144 15.899 C 44.052 15.206 42.84 14.805 41.537 14.805 C 39.821 14.805 38.647 15.544 38.647 16.711 C 38.647 17.769 39.647 18.179 41.317 18.416 L 42.207 18.535 C 44.29 18.818 46.346 19.675 46.346 22.046 C 46.346 24.645 43.978 26.068 41.198 26.068 C 39.454 26.068 37.362 25.493 36.031 24.353 L 37.16 22.712 C 38.041 23.514 39.702 24.116 41.189 24.116 C 42.868 24.116 44.189 23.405 44.189 22.228 C 44.189 21.225 43.18 20.76 41.299 20.505 L 40.298 20.368 C 38.39 20.104 36.49 19.21 36.49 16.839 C 36.49 14.276 38.775 12.853 41.556 12.853 C 43.428 12.853 44.905 13.373 46.199 14.23 Z M 26.061 13.072 L 31.136 25.84 L 28.906 25.84 L 27.64 22.584 L 21.822 22.584 L 20.555 25.84 L 18.399 25.84 L 23.473 13.072 Z M 24.731 15.124 L 22.583 20.632 L 26.878 20.632 Z M 8.175 12.835 C 10.46 12.835 12.488 13.847 13.497 15.507 L 11.763 16.656 C 10.983 15.525 9.707 14.814 8.175 14.814 C 5.55 14.814 3.623 16.702 3.623 19.456 C 3.623 22.21 5.55 24.098 8.175 24.098 C 9.698 24.098 10.955 23.414 11.754 22.265 L 13.442 23.496 C 12.35 25.092 10.423 26.077 8.175 26.077 C 4.229 26.077 1.448 23.268 1.448 19.456 C 1.448 15.644 4.229 12.835 8.175 12.835 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:9555306709,withExternalLayout:true})})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bksb1y\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hqzqbh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ivsf4L3yC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!--ARCADE EMBED START--><div style=\"position: relative; padding-bottom: calc(52.57309941520468% + 41px); height: 0; width: 100%;\"><iframe src=\"https://demo.arcade.software/oc5UY4bFGaQbGYgrL41U?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true\" title=\"Landing page arcade\" frameborder=\"0\" loading=\"lazy\" webkitallowfullscreen mozallowfullscreen allowfullscreen allow=\"clipboard-write\" style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%; color-scheme: light;\" ></iframe></div><!--ARCADE EMBED END-->',id:\"ivsf4L3yC\",layoutId:\"ivsf4L3yC\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-db59ba\",\"data-framer-name\":\"Sticky-section\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{animate:animation3,initial:animation7,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{className:\"framer-1f4n65y\",\"data-framer-appear-id\":\"1f4n65y\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-pj9v21 hidden-72rtr7 hidden-1eapo48\",\"data-framer-name\":\"PainStatement - Mobile\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-11l5waw\",\"data-styles-preset\":\"N3dnRsAxx\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Forget about offline evals or manually reading users' prompt.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ddc38dc3-98c7-4d8f-98c1-b8bafe0b2a2f, rgb(242, 27, 108))\"},children:\"spotting issues \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"and tracking what \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 223, 162)\"},children:\"creates value for your users.\"})]})}),className:\"framer-xwe5g8\",\"data-framer-name\":\"AI products generate massive unstructured data that traditional tools can\u2019t analyze effectively - Sticklight bridges this gap. Our advanced AI engine turns textual communications into metrics you can easily query and act on.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation9}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__scrollDirection:{direction:\"down\",target:animation8},__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7gyhal hidden-bv3nhy\",\"data-framer-name\":\"PainStatement\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3bi4ri\",\"data-styles-preset\":\"N8Au19Xkt\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Forget about offline evals or manually reading users' prompt.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ddc38dc3-98c7-4d8f-98c1-b8bafe0b2a2f, rgb(242, 27, 108))\"},children:\"spotting issues \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"and tracking what \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 223, 162)\"},children:\"creates value for your users.\"})]})}),className:\"framer-1uhmyvi\",\"data-framer-name\":\"AI products generate massive unstructured data that traditional tools can\u2019t analyze effectively - Sticklight bridges this gap. Our advanced AI engine turns textual communications into metrics you can easily query and act on.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e8zcs6\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ojg5l\",\"data-framer-name\":\"Playbook\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1366px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:191,width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-stpvca-container\",nodeId:\"dSbPMLY_S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{variant:\"DF1iSuMUi\"},w01tF5ohw:{variant:\"j6rrGKRzL\"}},children:/*#__PURE__*/_jsx(HelperSectionHeader,{DlT0oUVFa:addImageAlt({src:\"https://framerusercontent.com/images/V0SmoVPU1tdoEEhuGxu24JRAj5k.svg\"},\"\"),height:\"100%\",id:\"dSbPMLY_S\",kMk_Ij5z8:\"Analyze your agent workflows\",layoutId:\"dSbPMLY_S\",M2TxwEkew:\"Flexible and Powerful\",MuhNgrAO6:false,Po3LTyKq2:\"rgba(251, 254, 156, 0.4)\",style:{width:\"100%\"},variant:\"MRUNw3DU5\",width:\"100%\",Xt7jBhG5L:\"Enrich your agent logs with any question on your mind\",yFU2gpFED:true,YmCP0VZub:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:759,intrinsicWidth:1698,pixelHeight:1518,pixelWidth:3396,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/ypdcMwGsMXt2Y2c5sJaWjKCo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:759,intrinsicWidth:1698,pixelHeight:1518,pixelWidth:3396,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ypdcMwGsMXt2Y2c5sJaWjKCo.png\"},className:\"framer-4zvqzc\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l7mtq6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pvDfc4qdX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{direction:\"top\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:18,height:\"100%\",hoverFactor:1,id:\"pvDfc4qdX\",layoutId:\"pvDfc4qdX\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:125,width:\"262px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lgocxq-container\",inComponentSlot:true,nodeId:\"Yj8crxwPz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsBenefitCard,{height:\"100%\",id:\"Yj8crxwPz\",jb8Mxsp1i:\"Track user complaints\",layoutId:\"Yj8crxwPz\",style:{width:\"100%\"},variant:\"AQQp1HxOk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:125,width:\"263px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-20ul2o-container\",inComponentSlot:true,nodeId:\"YjlpFtP1X\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsBenefitCard2,{height:\"100%\",id:\"YjlpFtP1X\",jb8Mxsp1i:\"Detect AI bad responses\",layoutId:\"YjlpFtP1X\",style:{width:\"100%\"},variant:\"yrAYV4aS3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:125,width:\"262px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u5zhzp-container\",inComponentSlot:true,nodeId:\"Tu9FLX3Cs\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsBenefitCard3,{height:\"100%\",id:\"Tu9FLX3Cs\",jb8Mxsp1i:\"Translate Communications\",layoutId:\"Tu9FLX3Cs\",style:{width:\"100%\"},variant:\"MGPkgMDeN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:125,width:\"262px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-x5aqvi-container\",inComponentSlot:true,nodeId:\"l724XyoHw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsBenefitCard4,{height:\"100%\",id:\"l724XyoHw\",jb8Mxsp1i:\"Track satisfaction levels\\n\",layoutId:\"l724XyoHw\",style:{width:\"100%\"},variant:\"znXKAjkeZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:125,width:\"262px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-otm466-container\",inComponentSlot:true,nodeId:\"fa7wtewQ5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsBenefitCard,{height:\"100%\",id:\"fa7wtewQ5\",jb8Mxsp1i:\"Identify if workflow is resolved\",layoutId:\"fa7wtewQ5\",style:{width:\"100%\"},variant:\"AQQp1HxOk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:125,width:\"263px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5jd02u-container\",inComponentSlot:true,nodeId:\"pBkkm3G3Z\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsBenefitCard2,{height:\"100%\",id:\"pBkkm3G3Z\",jb8Mxsp1i:\"Create alerts for specific content\",layoutId:\"pBkkm3G3Z\",style:{width:\"100%\"},variant:\"yrAYV4aS3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:125,width:\"262px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m20yvn-container\",inComponentSlot:true,nodeId:\"LE1Yso_mB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsBenefitCard3,{height:\"100%\",id:\"LE1Yso_mB\",jb8Mxsp1i:\"Detect the user intent in the prompt\",layoutId:\"LE1Yso_mB\",style:{width:\"100%\"},variant:\"MGPkgMDeN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:125,width:\"262px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2tbflc-container\",inComponentSlot:true,nodeId:\"EpyUVrskc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsBenefitCard4,{height:\"100%\",id:\"EpyUVrskc\",jb8Mxsp1i:\"Classify the agent response to topics\",layoutId:\"EpyUVrskc\",style:{width:\"100%\"},variant:\"znXKAjkeZ\",width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-qt8khu\",\"data-framer-name\":\"Content 2 Section\",children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1yctig8\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14o39dp\",\"data-framer-name\":\"Insight\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k127cf\",\"data-border\":true,\"data-framer-name\":\"Image wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r7s35s\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b62d61\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3sc3ay\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{background:{alt:\"\",fit:\"fit\",pixelHeight:828,pixelWidth:912,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"} * 0.85, 1366px) - 64px, 1200px) - 32px) / 2, 1px) - 123px)`,src:\"https://framerusercontent.com/images/BmSO5RljZa3eKXY3mhNKEAYkxU.png\",srcSet:\"https://framerusercontent.com/images/BmSO5RljZa3eKXY3mhNKEAYkxU.png?scale-down-to=512 512w,https://framerusercontent.com/images/BmSO5RljZa3eKXY3mhNKEAYkxU.png 912w\"}},w01tF5ohw:{background:{alt:\"\",fit:\"fit\",pixelHeight:828,pixelWidth:912,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) - 64px, 1200px) - 54px)`,src:\"https://framerusercontent.com/images/BmSO5RljZa3eKXY3mhNKEAYkxU.png\",srcSet:\"https://framerusercontent.com/images/BmSO5RljZa3eKXY3mhNKEAYkxU.png?scale-down-to=512 512w,https://framerusercontent.com/images/BmSO5RljZa3eKXY3mhNKEAYkxU.png 912w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:828,pixelWidth:912,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) - 64px, 1200px) - 32px) / 2, 1px) - 123px)`,src:\"https://framerusercontent.com/images/BmSO5RljZa3eKXY3mhNKEAYkxU.png\",srcSet:\"https://framerusercontent.com/images/BmSO5RljZa3eKXY3mhNKEAYkxU.png?scale-down-to=512 512w,https://framerusercontent.com/images/BmSO5RljZa3eKXY3mhNKEAYkxU.png 912w\"},className:\"framer-ns4vfj\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tagloa\",\"data-framer-name\":\"Content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lvx8wy\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-61xp5b\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bns1y5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SCJFBbwAf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowSquareRight\",id:\"SCJFBbwAf\",layoutId:\"SCJFBbwAf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w5m0lj\",\"data-styles-preset\":\"CmDOwVDBz\",children:\"Insights\"})}),className:\"framer-yicxjr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23))\"},children:\"Gain insights\"})})},w01tF5ohw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23))\"},children:\"Gain insights\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23))\"},children:\"Gain insights\"})}),className:\"framer-1fbanxl\",fonts:[\"GF;Figtree-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23))\"},children:\"Use enrichments to tell your data story. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVsaXNoLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Mulish\", \"Mulish Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--token-86400f27-49ec-4582-bf97-4d203a7558e6, rgb(2, 6, 23))\"},children:\"Understand your users as if you've analyzed each prompt personally and track that over time.\"})]}),className:\"framer-17fg9lg\",fonts:[\"GF;Mulish-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z01nyp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x0hd2v-container\",nodeId:\"bp5kD0LvW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{ghnjr0KjJ:\"https://platform.sticklight.io/signup\",height:\"100%\",id:\"bp5kD0LvW\",JhnwCLiwV:\"Get started\",layoutId:\"bp5kD0LvW\",OF2JWcoGK:false,variant:\"y5vw5d6Dz\",width:\"100%\"})})})})]})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w4k6tn\",\"data-framer-name\":\"Customer Voice\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfara3\",\"data-framer-name\":\"quote-container-dynamic 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1elayqs\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:59,intrinsicWidth:702,svg:'<svg width=\"702\" height=\"59\" viewBox=\"-1 -1 702 59\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_511_10996)\">\\n<path d=\"M0 20C200 60 300 -40 450 20C600 80 600 60 700 0\" stroke=\"url(#paint0_linear_511_10996)\" stroke-width=\"2\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_511_10996\" x=\"-8.19612\" y=\"-8.85754\" width=\"716.711\" height=\"74.0847\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"4\" result=\"effect1_foregroundBlur_511_10996\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_511_10996\" x1=\"0\" y1=\"0\" x2=\"70000\" y2=\"0\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD4FFF\" stop-opacity=\"0.5\"/>\\n<stop offset=\"0.5\" stop-color=\"#FF4FD8\" stop-opacity=\"0.7\"/>\\n<stop offset=\"1\" stop-color=\"#BD4FFF\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v8zrcq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_511_10997)\">\\n<path d=\"M5 10C7.76142 10 10 7.76142 10 5C10 2.23858 7.76142 0 5 0C2.23858 0 0 2.23858 0 5C0 7.76142 2.23858 10 5 10Z\" fill=\"#00F0FF\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_511_10997\" x=\"-8\" y=\"-8\" width=\"26\" height=\"26\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"4\" result=\"effect1_foregroundBlur_511_10997\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u6ialj\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_511_10998)\">\\n<path d=\"M4 8C6.20914 8 8 6.20914 8 4C8 1.79086 6.20914 0 4 0C1.79086 0 0 1.79086 0 4C0 6.20914 1.79086 8 4 8Z\" fill=\"#FF4FD8\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_511_10998\" x=\"-8\" y=\"-8\" width=\"24\" height=\"24\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"4\" result=\"effect1_foregroundBlur_511_10998\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2mbg32\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_511_10999)\">\\n<path d=\"M6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z\" fill=\"#4CA5FF\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_511_10999\" x=\"-8\" y=\"-8\" width=\"28\" height=\"28\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"4\" result=\"effect1_foregroundBlur_511_10999\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bcd16q\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:816,svg:'<svg width=\"816\" height=\"56\" viewBox=\"-8 -8 816 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.1\" d=\"M0 40C266.667 -13.3333 533.333 -13.3333 800 40\" stroke=\"url(#paint0_linear_511_11001)\" stroke-width=\"15\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_511_11001\" x1=\"0\" y1=\"0\" x2=\"80000\" y2=\"0\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD4FFF\" stop-opacity=\"0.5\"/>\\n<stop offset=\"0.5\" stop-color=\"#FF4FD8\" stop-opacity=\"0.7\"/>\\n<stop offset=\"1\" stop-color=\"#BD4FFF\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.85, 1366px) * 0.9984)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:191,width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.9984)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gn1pzt-container\",nodeId:\"che0w08zJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{iRZ8mtejK:undefined,variant:\"j6rrGKRzL\"}},children:/*#__PURE__*/_jsx(HelperSectionHeader,{DlT0oUVFa:addImageAlt({src:\"https://framerusercontent.com/images/GcKFR69T6mHLOzpCMNfgpu0kkxQ.png\"},\"\"),height:\"100%\",id:\"che0w08zJ\",iRZ8mtejK:addImageAlt({src:\"https://framerusercontent.com/images/7dh02zIGJYP3mMuJddyQ9MR804.png\"},\"\"),kMk_Ij5z8:\"A Tribe of AI Companies\",layoutId:\"che0w08zJ\",M2TxwEkew:\"We love our customers\",MuhNgrAO6:false,Po3LTyKq2:\"rgba(1, 220, 160, 0.2)\",style:{width:\"100%\"},variant:\"MRUNw3DU5\",width:\"100%\",Xt7jBhG5L:\" Top AI companies analyze their AI workflows\",yFU2gpFED:true,YmCP0VZub:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b1gv1a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{height:333,width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:285,width:\"507px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ywewa4-container\",nodeId:\"YDWQ5m94a\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{g2IJU75wC:\"We had 500k+ AI chat users but couldn't track what makes them return. Sticklight reveals our top use cases, helping us target the right users and boosting our engagement.\",style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardCustomer,{DzvKl0u04:\"\",g2IJU75wC:\"We had 500k+ AI chat users but couldn't track activity. Sticklight reveal our top use cases, helping us target the right users and boosting our engagement.\",height:\"100%\",id:\"YDWQ5m94a\",JlXqlvWgM:\"VP Product @ Decart AI\",layoutId:\"YDWQ5m94a\",rztfZotJp:\"Sagiv Harel\",style:{height:\"100%\",width:\"100%\"},t32gC6pas:addImageAlt({src:\"https://framerusercontent.com/images/POqAVXschpKABjmIVWG92bkqxg.png\"},\"\"),variant:\"mgj1a7SoQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{height:333,width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:285,width:\"507px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8lsqi9-container\",nodeId:\"gLXfwjbzP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardCustomer,{DzvKl0u04:\"\",g2IJU75wC:\"Working with Sticklight, we now trust our AI agents' accuracy and can focus on addressing detected issues.\",height:\"100%\",id:\"gLXfwjbzP\",JlXqlvWgM:\"CEO @ Kypso\",layoutId:\"gLXfwjbzP\",rztfZotJp:\"Adam Gold\",style:{height:\"100%\",width:\"100%\"},t32gC6pas:addImageAlt({src:\"https://framerusercontent.com/images/iL6oTrnAOp0L1nk0dqsd3bS104.png\"},\"\"),variant:\"mgj1a7SoQ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1dytlgo\",\"data-framer-appear-id\":\"1dytlgo\",\"data-framer-name\":\"Action buttons\",initial:animation6,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p0s5df-container\",nodeId:\"aKDHw9PWM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{ghnjr0KjJ:\"https://platform.sticklight.io/login\",height:\"100%\",id:\"aKDHw9PWM\",JhnwCLiwV:\"Get started\",layoutId:\"aKDHw9PWM\",OF2JWcoGK:false,variant:\"y5vw5d6Dz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a8h5h8-container\",nodeId:\"qM7GIQfhU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{ghnjr0KjJ:\"https://calendly.com/matan-sticklight/30min\",height:\"100%\",id:\"qM7GIQfhU\",JhnwCLiwV:\"Talk to human\",layoutId:\"qM7GIQfhU\",OF2JWcoGK:false,variant:\"pD1Srkdgu\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-loz098\",\"data-framer-name\":\"Integrations\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8lqwc3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dgasp1\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cnlnqc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2eze2j\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:19,pixelWidth:18,src:\"https://framerusercontent.com/images/GEgBpwiPMrP2cuOJGrgsgKb6Aac.svg\"},className:\"framer-1kd192u\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w5m0lj\",\"data-styles-preset\":\"CmDOwVDBz\",children:\"Integrations\"})}),className:\"framer-1ee00th\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-dduks7\",\"data-styles-preset\":\"AaJ2VKnBH\",children:\"Capture events from the data tools you use\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3bi4ri\",\"data-styles-preset\":\"N8Au19Xkt\",style:{\"--framer-text-alignment\":\"left\"},children:\"Capture events from the data tools you use\"})}),className:\"framer-cs5l4b\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t697j2\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{width:undefined},w01tF5ohw:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:186,width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px) - 32px) / 3, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gix2fk-container\",nodeId:\"l06Az95HC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsIntegration,{C2TFygOB0:\"Connect your product analytics events. Analyze the textual user prompts.\",height:\"100%\",id:\"l06Az95HC\",layoutId:\"l06Az95HC\",NgZL_u_q8:true,NP4MxDDJs:\"https://calendly.com/matan-sticklight/30min\",style:{width:\"100%\"},width:\"100%\",yA0Mh0FH_:addImageAlt({src:\"https://framerusercontent.com/images/R6ccFPVBJ1nFdkKDFMS8c9CnrU.png\"},\"\"),zx0eaZdMx:\"Amplitude\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{width:undefined},w01tF5ohw:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:186,width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px) - 32px) / 3, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j52pj3-container\",nodeId:\"cG_j5qMUu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsIntegration,{C2TFygOB0:\"Power your CDP with Sticklight's llm-based enrichments.\",height:\"100%\",id:\"cG_j5qMUu\",layoutId:\"cG_j5qMUu\",NgZL_u_q8:true,NP4MxDDJs:\"https://calendly.com/matan-sticklight/30min\",style:{width:\"100%\"},width:\"100%\",yA0Mh0FH_:addImageAlt({src:\"https://framerusercontent.com/images/rHZF3ZLMEwyqVhlkLAbR5McnJk.png\"},\"\"),zx0eaZdMx:\"Segment Twillio\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{width:undefined},w01tF5ohw:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:186,width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px) - 32px) / 3, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yrqt4m-container\",nodeId:\"NjJNyq8qO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsIntegration,{C2TFygOB0:\"Directly capture events from your application into our API.\",height:\"100%\",id:\"NjJNyq8qO\",layoutId:\"NjJNyq8qO\",NgZL_u_q8:true,NP4MxDDJs:\"https://calendly.com/matan-sticklight/30min\",style:{width:\"100%\"},width:\"100%\",yA0Mh0FH_:addImageAlt({src:\"https://framerusercontent.com/images/k7TbqYr34q2JUJANtDHqz86w.png\"},\"\"),zx0eaZdMx:\"Python / JS SDK\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{width:undefined},w01tF5ohw:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:186,width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px) - 32px) / 3, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h9yigs-container\",nodeId:\"GuORG5XYg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsIntegration,{C2TFygOB0:\"Enrich your Langsmith traces to gain clear quality and user experience perspective\",height:\"100%\",id:\"GuORG5XYg\",layoutId:\"GuORG5XYg\",NgZL_u_q8:true,NP4MxDDJs:\"https://calendly.com/matan-sticklight/30min\",style:{width:\"100%\"},width:\"100%\",yA0Mh0FH_:addImageAlt({src:\"https://framerusercontent.com/images/lC8nRvK5BhBcLwSJwRubAmzQ8.png\"},\"\"),zx0eaZdMx:\"Langsmith\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{width:undefined},w01tF5ohw:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:186,width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px) - 32px) / 3, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15mxtow-container\",nodeId:\"PoCXFmxRy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsIntegration,{C2TFygOB0:\"Enrich your Langfuse traces to gain clear quality and user experience perpective.\",height:\"100%\",id:\"PoCXFmxRy\",layoutId:\"PoCXFmxRy\",NgZL_u_q8:true,NP4MxDDJs:\"https://calendly.com/matan-sticklight/30min\",style:{width:\"100%\"},width:\"100%\",yA0Mh0FH_:addImageAlt({src:\"https://framerusercontent.com/images/TkPuZiDOA6dvlUKv3WAJSiOn98.png\"},\"\"),zx0eaZdMx:\"Langfuse\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kibrdo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1usiqop\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-dduks7\",\"data-styles-preset\":\"AaJ2VKnBH\",style:{\"--framer-text-color\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56))\"},children:\"Not sure how to get started?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3bi4ri\",\"data-styles-preset\":\"N8Au19Xkt\",style:{\"--framer-text-color\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(50, 51, 56))\"},children:\"Not sure how to get started?\"})}),className:\"framer-shl2r1\",\"data-framer-name\":\"Get Started\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-22949dc7-4bf5-4f46-99e4-20c79812e714, rgb(84, 84, 84))\"},children:\"Start capturing events with one of our SDK's\"})}),className:\"framer-l6ou6m\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tjlygo-container\",nodeId:\"BdoyLrNpJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{ghnjr0KjJ:\"https://platform.sticklight.io/signup\",height:\"100%\",id:\"BdoyLrNpJ\",JhnwCLiwV:\"Get started\",layoutId:\"BdoyLrNpJ\",OF2JWcoGK:false,variant:\"y5vw5d6Dz\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g3136n\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iax9x4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qq0hURAqk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CodeBlock,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,code:\"import { Sticklight } from '@sticklight/sdk';\\n\\nconst sticklight = new Sticklight({\\n    apiKey: 'your-api-key',\\n    projectId: 'your-project'\\n});\\n\\nawait sticklight.track({\\n    name: 'user_message',\\n    userId: 'user-123',\\n    properties: {\\n        role: 'user',\\n        content: 'The blog is not good enough, I want it to contain real world examples'\\n    }\\n});\",darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",id:\"qq0hURAqk\",isMixedBorderRadius:false,language:\"JSX\",layoutId:\"qq0hURAqk\",lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,style:{width:\"100%\"},theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15,width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ox4ql5\",\"data-framer-name\":\"About Us\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k97n7y\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-175y2q7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xdg12e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1791onw\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dr4a3n\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12lz1wh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dx026x\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fsx92g\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/soHh1zzD8MJCTWMIB0Fv943LWs.svg\"},className:\"framer-1h1fq1k\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1z0nnm4\",\"data-styles-preset\":\"gl_OSxSYB\",children:\"About Us\"})}),className:\"framer-170l4r3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-dduks7\",\"data-styles-preset\":\"AaJ2VKnBH\",children:\"Building for the AI-First World\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--token-d73f7475-7c04-4500-a802-44974b8ed5b0, rgb(12, 12, 12))\"},children:\"Building for the AI-First World\"})}),className:\"framer-10mpq1j\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-n9wfb8\",\"data-styles-preset\":\"alnaaYLdd\",children:[\"Sticklight was founded by Aviv and Matan in 2024 to build the missing layer of analytics for AI products.\",/*#__PURE__*/_jsx(\"br\",{}),\"Think Google Analytics, but for AI products.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Backed by amazing VCs and angels, we're building for agentic economy future, where AI is the foundation of how companies deliver value.\"]})}),className:\"framer-1mws3bn\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Rp8RKH_Sa:\"opening\"},unresolvedPathSlugs:{Rp8RKH_Sa:{collectionId:\"zpHEH_Jjc\",collectionItemId:\"Plj7aREgB\"}},webPageId:\"tOxYSUeq7\"},implicitPathVariables:undefined},{href:{pathVariables:{Rp8RKH_Sa:\"opening\"},unresolvedPathSlugs:{Rp8RKH_Sa:{collectionId:\"zpHEH_Jjc\",collectionItemId:\"Plj7aREgB\"}},webPageId:\"tOxYSUeq7\"},implicitPathVariables:undefined},{href:{pathVariables:{Rp8RKH_Sa:\"opening\"},unresolvedPathSlugs:{Rp8RKH_Sa:{collectionId:\"zpHEH_Jjc\",collectionItemId:\"Plj7aREgB\"}},webPageId:\"tOxYSUeq7\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10bs18f-container\",nodeId:\"U2HN2xga7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{ghnjr0KjJ:resolvedLinks[1]},w01tF5ohw:{ghnjr0KjJ:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button2,{ghnjr0KjJ:resolvedLinks[0],height:\"100%\",id:\"U2HN2xga7\",JhnwCLiwV:\"Read more\",layoutId:\"U2HN2xga7\",OF2JWcoGK:false,variant:\"y5vw5d6Dz\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{background:{alt:\"\",fit:\"fill\",pixelHeight:801,pixelWidth:1399,sizes:`min(min(min(${componentViewport?.width||\"100vw\"} * 0.85, 1366px) * 0.85, 1366px), min(min(${componentViewport?.width||\"100vw\"} * 0.85, 1366px) * 0.85, 1366px) * 0.8)`,src:\"https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg\",srcSet:\"https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg 1399w\"}},w01tF5ohw:{background:{alt:\"\",fit:\"fill\",pixelHeight:801,pixelWidth:1399,sizes:`min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px)`,src:\"https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg\",srcSet:\"https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg 1399w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:801,pixelWidth:1399,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px) * 0.85, 1366px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg\",srcSet:\"https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jYbTPVMVvrQxj59DYXN6u4Ol9M.jpeg 1399w\"},className:\"framer-qtb8yd\",\"data-framer-name\":\"Video\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jau1hq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, rgb(12, 12, 12))\"},children:\"Built by product & AI experts from\"})}),className:\"framer-184vwnz\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5zcd9w\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u0q9mk\",\"data-framer-name\":\"Hewlett Packard Enterprise\",fill:\"rgb(39, 72, 115)\",intrinsicHeight:48,intrinsicWidth:119,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" aria-label=\"Hewlett Packard Enterprise\" class=\"gn-icon gn-logo-desktop\" data-path=\"/content/dam/hpe/shared-publishing/homepage-v3/globalNav/vertical-logo-with-padding.svg\" height=\"48\" width=\"119\"><path d=\"M0 .954v10.577h36.824V.954H0ZM34.523 9.23H2.301V3.255h32.222V9.23Z\" fill=\"#00B388\"/><path d=\"M6.702 33.622v1.287H1.474v3.234h4.754v1.254H1.474v3.52h5.228v1.288H0V33.629h6.702v-.007Zm3.641 10.576h-1.44V36.41h1.353v1.454c.56-.98 1.454-1.627 2.608-1.627 1.814 0 2.88 1.187 2.88 2.96v4.995h-1.44v-4.96c0-1.035-.54-1.641-1.74-1.641a2.343 2.343 0 0 0-2.214 1.627v4.974l-.007.007Zm11.29.167c-1.947 0-2.727-.847-2.727-2.387v-4.302h-1.641V36.41h1.64v-2.014h1.44v2.014h2.215v1.267h-2.214v4.161c0 .934.527 1.18 1.42 1.18.234 0 .474-.033.674-.1h.12v1.268a2.51 2.51 0 0 1-.934.167l.007.013Zm6.328 0c-2.587 0-4.234-1.52-4.234-3.975 0-2.454 1.527-4.147 3.754-4.147 2.228 0 3.468 1.54 3.468 3.827v.76h-5.735c.2 1.521 1.287 2.235 2.76 2.235.914 0 1.608-.154 2.288-.64h.154v1.233c-.694.527-1.594.707-2.455.707Zm-2.727-4.675h4.315c-.054-1.42-.794-2.18-2.048-2.18-1.253 0-2.08.913-2.267 2.18Zm12.017-1.814c-.2-.1-.507-.166-.827-.166-.914 0-1.64.646-1.947 1.694v4.787h-1.44v-7.788h1.353v1.673c.46-1.267 1.287-1.793 2.214-1.793.34 0 .64.053.76.12v1.473h-.12.007Zm2.994 5.042v4.128h-1.44V36.403h1.353v1.34c.46-.794 1.354-1.507 2.554-1.507 2.354 0 3.588 1.86 3.588 3.974s-1.234 4.062-3.588 4.062a2.937 2.937 0 0 1-2.474-1.354h.007Zm4.588-2.708c0-1.573-.88-2.62-2.454-2.62-.934 0-1.674.493-2.134 1.34v2.674c.46.827 1.2 1.34 2.134 1.34 1.574 0 2.454-1.087 2.454-2.727v-.007Zm7.856-2.334c-.2-.1-.507-.166-.827-.166-.914 0-1.64.646-1.948 1.694v4.787h-1.44v-7.788h1.354v1.673c.453-1.267 1.287-1.793 2.214-1.793.34 0 .64.053.76.12v1.473h-.12.007Zm2.454-2.254c-.54 0-1.034-.46-1.034-1.013 0-.554.493-1 1.034-1 .54 0 1.033.44 1.033 1s-.473 1.013-1.033 1.013Zm.713 8.563h-1.44v-7.79h1.44v7.79Zm2.334-1.847h.134c.64.526 1.593.793 2.487.793.847 0 1.594-.32 1.594-1.013 0-.694-.627-.847-1.86-1.254-1.101-.373-2.335-.76-2.335-2.234s1.254-2.4 2.861-2.4c.914 0 1.727.186 2.4.64v1.32h-.153a3.601 3.601 0 0 0-2.234-.747c-.893 0-1.42.407-1.42.98 0 .64.54.814 1.814 1.2 1.133.374 2.387.814 2.387 2.288 0 1.607-1.32 2.434-3.027 2.434-1.034 0-2.068-.253-2.641-.714v-1.307l-.007.014Zm11.524 2.014c-2.588 0-4.235-1.52-4.235-3.975 0-2.454 1.52-4.148 3.754-4.148s3.468 1.54 3.468 3.828v.76h-5.735c.2 1.52 1.287 2.234 2.76 2.234.915 0 1.608-.153 2.288-.64h.154v1.234c-.694.526-1.594.707-2.454.707Zm-2.728-4.675h4.315c-.054-1.42-.794-2.18-2.048-2.18-1.253 0-2.08.913-2.267 2.18ZM8.89 18.53v10.576h-2.3v-4.381H2.3v4.381H0V18.531h2.3v4.181h4.282v-4.181h2.307Zm6.242 10.763c-2.914 0-4.468-1.574-4.468-4.115 0-2.54 1.627-4.214 3.975-4.214 2.54 0 3.807 1.594 3.807 3.974v.894H13.03c.167 1.307 1.2 1.64 2.214 1.64.914 0 1.628-.12 2.368-.52h.253v1.66c-.68.494-1.76.68-2.74.68h.006Zm-2.114-4.908h3.168c-.067-1.187-.574-1.707-1.507-1.707-.794 0-1.508.373-1.66 1.707Zm8.143 4.721L19.5 21.424v-.274h2.134l.9 4.842.22 1.554.307-1.554 1.08-4.841h2.421l1.067 4.84.32 1.555.253-1.554.9-4.841h2.035v.273l-1.674 7.682h-2.948l-.947-4.248-.273-1.594-.273 1.594-.934 4.248H21.16Zm14.03.187c-1.694 0-2.54-.78-2.54-2.588V18.53h2.3v8.022c0 .56.233.747.78.747.167 0 .44-.053.607-.1h.034v1.914a4.172 4.172 0 0 1-1.188.187l.007-.007Zm6.329 0c-2.914 0-4.468-1.574-4.468-4.115 0-2.54 1.627-4.214 3.974-4.214 2.541 0 3.808 1.594 3.808 3.974v.894h-5.415c.167 1.307 1.2 1.64 2.214 1.64.914 0 1.627-.12 2.367-.52h.254v1.66c-.68.494-1.76.68-2.74.68h.006Zm-2.114-4.908h3.167c-.066-1.187-.573-1.707-1.507-1.707-.793 0-1.507.373-1.66 1.707Zm13.237 1.827v-3.168h-3.368v3.061c0 .814.274 1.187 1.034 1.187.22 0 .507-.066.66-.133h.22v1.894c-.307.1-.76.233-1.44.233-1.947 0-2.774-.933-2.774-3.08v-3.168H45.6v-1.894h1.374v-1.927h2.3v1.927h3.368v-1.927h2.3v1.927h1.914v1.894h-1.913v3.06c0 .814.273 1.188 1.033 1.188.22 0 .507-.067.66-.134h.22v1.894c-.306.1-.76.233-1.44.233-1.947 0-2.774-.926-2.774-3.08v.013Zm10.983-.373v3.267h-2.287V18.531h4.114c2.334 0 3.875 1.287 3.875 3.674 0 2.388-1.54 3.641-3.875 3.641h-1.827v-.006Zm1.64-5.362h-1.64v3.421h1.64c1.168 0 1.728-.694 1.728-1.694 0-1.033-.56-1.727-1.727-1.727Zm9.917 7.449c-.474.88-1.34 1.267-2.4 1.267-1.475 0-2.695-.847-2.695-2.42 0-1.575 1.067-2.488 3.08-2.488.661 0 1.321.066 1.948.186v-.46c0-.847-.593-1.22-1.78-1.22-.88 0-1.607.187-2.214.493h-.254v-1.727c.607-.32 1.694-.593 2.741-.593 2.487 0 3.774 1.134 3.774 3.1v5.042h-2.2V27.92v.007Zm-.067-1.3v-1.014c-.393-.12-.9-.154-1.307-.154-.934 0-1.407.354-1.407 1.08 0 .728.474 1.014 1.167 1.014.694 0 1.32-.34 1.54-.927h.007Zm3.961-1.474c0-2.574 1.814-4.181 4.168-4.181.967 0 1.707.22 2.214.56v1.994h-.233c-.494-.374-1.034-.54-1.727-.54-1.134 0-2.048.793-2.048 2.167 0 1.373.914 2.134 2.048 2.134.693 0 1.233-.167 1.727-.54h.233v1.993c-.507.34-1.254.56-2.214.56-2.354 0-4.168-1.587-4.168-4.147Zm10.457.1v3.86h-2.301V18.538h2.3v6.029l.54-.814 2.115-2.587h2.434v.273l-2.948 3.335 2.948 4.08v.274h-2.588l-1.967-2.914-.54-.947.007-.013Zm10.729 2.674c-.473.88-1.34 1.267-2.4 1.267-1.474 0-2.694-.847-2.694-2.42 0-1.575 1.067-2.488 3.08-2.488.66 0 1.32.066 1.948.186v-.46c0-.847-.594-1.22-1.78-1.22-.881 0-1.608.187-2.215.493h-.253v-1.727c.607-.32 1.694-.593 2.74-.593 2.488 0 3.775 1.134 3.775 3.1v5.042h-2.201V27.92v.007Zm-.066-1.3v-1.014c-.387-.12-.9-.154-1.3-.154-.934 0-1.408.354-1.408 1.08 0 .728.474 1.014 1.167 1.014.694 0 1.32-.34 1.541-.927Zm6.568-3.862c.427-1.187 1.321-1.694 2.234-1.694.307 0 .56.087.66.134v2.18h-.24a1.64 1.64 0 0 0-.793-.186c-.914 0-1.574.42-1.761 1.32v4.588h-2.3V21.15h2.2v1.614Zm9.55 5.229c-.527.826-1.354 1.3-2.388 1.3-2.167 0-3.501-1.747-3.501-4.148 0-2.4 1.341-4.181 3.501-4.181.967 0 1.761.42 2.288 1.154V18.53h2.3v10.576h-2.2v-1.113Zm-.1-1.474v-2.774c-.427-.607-1.001-.9-1.661-.9-1.047 0-1.76.813-1.76 2.3 0 1.487.713 2.267 1.76 2.267.66 0 1.234-.286 1.661-.893Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pz4ozy\",\"data-framer-name\":\"Svgexport-1 (4)\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:125,svg:'<svg width=\"125\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#FFF\"><path d=\"M53.32 12.419a.196.196 0 0 1 .196-.197h3.327a.196.196 0 0 1 .197.197v6.473l.298-.41c.916-1.154 2.247-1.732 3.992-1.732 1.486 0 2.65.436 3.493 1.309.843.872 1.264 2.082 1.264 3.63v9.193a.196.196 0 0 1-.196.196h-3.327a.196.196 0 0 1-.197-.196v-8.526c0-.864-.188-1.503-.564-1.918-.376-.415-.953-.622-1.73-.622-.977 0-1.727.291-2.25.873-.522.582-.783 1.42-.783 2.514v7.68a.196.196 0 0 1-.197.196h-3.327a.196.196 0 0 1-.197-.196V12.419Zm21.25 19.019c-2.133 0-3.778-.655-4.935-1.963-1.158-1.308-1.736-3.173-1.736-5.593 0-2.232.59-3.978 1.768-5.24 1.178-1.261 2.813-1.892 4.904-1.892 2.142 0 3.792.644 4.949 1.93 1.157 1.288 1.736 3.12 1.736 5.497 0 0-.005.552-.066.834h-9.56c.085 1.103.33 1.929.735 2.476.516.684 1.376 1.026 2.581 1.026a2.76 2.76 0 0 0 1.555-.475c.427-.282.7-.616.822-1.001a.198.198 0 0 1 .188-.14h3.367a.198.198 0 0 1 .192.157c.006.03.005.06-.002.089-.346 1.302-1.064 2.331-2.153 3.088-1.158.804-2.606 1.207-4.343 1.206Zm2.827-8.774c-.086-.838-.31-1.493-.67-1.963-.474-.624-1.21-.936-2.208-.936-.955 0-1.682.363-2.18 1.09-.31.462-.534 1.065-.672 1.809h5.73Zm9.488 8.774c-1.292 0-2.331-.37-3.118-1.11-.786-.74-1.18-1.712-1.18-2.918 0-1.274.355-2.294 1.065-3.06.71-.765 1.744-1.246 3.104-1.443l2.425-.333c.633-.086 1.159-.231 1.578-.437.18-.085.318-.239.417-.461a1.3 1.3 0 0 0 .109-.68c-.051-.393-.252-.7-.603-.924-.42-.265-1.022-.397-1.809-.397-.701 0-1.248.17-1.642.513-.356.31-.561.734-.616 1.275a.196.196 0 0 1-.195.174h-3.136a.197.197 0 0 1-.197-.212c.114-1.527.665-2.68 1.655-3.456 1.034-.813 2.552-1.219 4.553-1.219 1.736 0 3.107.366 4.112 1.098 1.004.732 1.507 1.731 1.507 2.998v7.806c0 .626.052 1.065.154 1.316.091.224.263.406.516.546a.195.195 0 0 1 .1.171v.197a.196.196 0 0 1-.196.196h-3.624a.197.197 0 0 1-.192-.153c-.075-.327-.245-1.098-.285-1.515l-.013-.026c-1.155 1.37-2.651 2.054-4.49 2.053Zm4.425-5.516v-1.604c-.428.24-.992.432-1.693.578l-1.36.256c-.641.12-1.129.34-1.462.66-.334.322-.5.726-.5 1.213 0 .556.149.993.448 1.31.3.317.719.475 1.257.474 1.18 0 2.121-.415 2.822-1.244.137-.162.253-.402.347-.718.091-.3.139-.612.14-.925Zm5.617-13.503a.196.196 0 0 1 .196-.197h3.289a.197.197 0 0 1 .196.197v18.464a.197.197 0 0 1-.196.197h-3.289a.196.196 0 0 1-.196-.197V12.419Zm13.101 18.554a.197.197 0 0 1-.183.197c-.58.041-1.276.062-2.088.062-1.3 0-2.234-.232-2.802-.698-.569-.466-.853-1.229-.853-2.29V19.49h-1.741a.195.195 0 0 1-.196-.196v-2.186a.195.195 0 0 1 .196-.196h1.741V13.56a.195.195 0 0 1 .196-.196h3.289a.196.196 0 0 1 .196.196v3.352h2.048a.197.197 0 0 1 .197.196v2.186a.196.196 0 0 1-.197.196h-2.048v8.138c0 .325.096.539.289.641.192.103.592.154 1.199.154h.56a.197.197 0 0 1 .197.197v2.353Zm1.74-18.554a.197.197 0 0 1 .196-.196h3.328a.196.196 0 0 1 .196.196v6.473l.298-.41c.917-1.154 2.248-1.732 3.992-1.732 1.487 0 2.651.436 3.494 1.309.842.872 1.264 2.082 1.264 3.63v9.193a.196.196 0 0 1-.197.196h-3.327a.195.195 0 0 1-.196-.196v-8.526c0-.864-.188-1.503-.564-1.918-.376-.415-.953-.622-1.731-.622-.976 0-1.726.291-2.248.873-.522.582-.784 1.42-.785 2.514v7.68a.196.196 0 0 1-.196.196h-3.328a.197.197 0 0 1-.139-.057.2.2 0 0 1-.057-.14V12.42Z\"/><g clip-path=\"url(#b)\"><path d=\"M29.506 31.429a.198.198 0 0 0 .196-.202.197.197 0 0 0-.03-.099l-5.856-9.372 5.706-5.707a.197.197 0 0 0-.03-.302.196.196 0 0 0-.11-.033h-5.265a.197.197 0 0 0-.139.058l-5.375 5.374a.197.197 0 0 1-.302-.03.196.196 0 0 1-.033-.108v-8.24a.196.196 0 0 0-.197-.197H14.34a.196.196 0 0 0-.196.197v18.456a.196.196 0 0 0 .196.196h3.732a.196.196 0 0 0 .197-.196v-3.84c0-.052.02-.102.057-.139l2.328-2.327a.196.196 0 0 1 .306.035l3.989 6.383a.197.197 0 0 0 .166.093h4.392Z\"/><path d=\"M22 0C9.85 0 0 9.85 0 22v21.804A.197.197 0 0 0 .196 44H22c12.15 0 22-9.85 22-22C44 9.86 34.14 0 22 0Zm0 39.875H4.321a.197.197 0 0 1-.196-.196V22.077c0-9.852 8.06-17.972 17.912-17.952 9.855.02 17.838 8.015 17.838 17.875 0 9.872-8.003 17.875-17.875 17.875Z\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h124.536v44H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" d=\"M0 0h44v44H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y62jl0\",\"data-framer-name\":\"Svgexport-4\",fill:\"black\",intrinsicHeight:46,intrinsicWidth:150,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" class=\"is-logo\" width=\"150\" height=\"46\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M142.78 19.39c-.304.327-.511.772-.623 1.334l3.643.005c-.082-.576-.278-1.025-.588-1.346a1.558 1.558 0 0 0-1.169-.484c-.538 0-.959.163-1.263.49Zm-1.045 7.418a5.44 5.44 0 0 1-1.82-1.128 4.943 4.943 0 0 1-1.176-1.718 5.614 5.614 0 0 1-.411-2.18c.001-.776.14-1.495.416-2.157a5.201 5.201 0 0 1 1.162-1.725 5.292 5.292 0 0 1 1.781-1.142c.69-.274 1.45-.41 2.277-.41.828.002 1.562.127 2.204.376a5.48 5.48 0 0 1 1.684 1.016c.648.576 1.123 1.3 1.425 2.17.302.87.44 1.815.41 2.832l-7.532-.01c.109.602.333 1.071.67 1.406.338.335.803.503 1.396.504.69.001 1.18-.252 1.471-.76l3.786.004c-.11.469-.342.917-.694 1.345a5.23 5.23 0 0 1-1.316 1.123 5.139 5.139 0 0 1-1.542.66c-.546.134-1.157.2-1.833.198-.868-.001-1.655-.136-2.358-.404Zm-11.557.014a5.545 5.545 0 0 1-1.83-1.137 4.947 4.947 0 0 1-1.176-1.719 5.562 5.562 0 0 1-.411-2.16c.001-.775.14-1.495.416-2.157a5.038 5.038 0 0 1 1.183-1.725 5.452 5.452 0 0 1 1.833-1.142c.71-.274 1.5-.41 2.369-.409a6.542 6.542 0 0 1 2.039.304 4.97 4.97 0 0 1 1.591.846c.449.361.81.794 1.085 1.296.275.503.447 1.055.515 1.657l-3.766-.004c-.11-.47-.282-.828-.516-1.075-.234-.249-.565-.373-.993-.373-.607 0-1.055.246-1.345.74-.291.496-.437 1.178-.438 2.048-.001.857.149 1.53.452 2.02.303.488.758.733 1.365.734.482 0 .845-.15 1.087-.45.242-.302.391-.747.447-1.335l3.766.005a4.073 4.073 0 0 1-.385 1.756 4.276 4.276 0 0 1-1.078 1.415 5.05 5.05 0 0 1-1.678.94 6.558 6.558 0 0 1-2.162.34c-.87-.002-1.66-.14-2.37-.415Zm-7.654-8.615c.428-.642.901-1.096 1.419-1.363.518-.267 1.114-.4 1.79-.4.29.001.504.035.642.102l-.005 3.233h-.082c-1.159-.19-2.056-.04-2.691.448-.636.488-.954 1.314-.956 2.478l-.006 4.197-3.911-.006.015-10.24 3.725.005-.002 1.546h.062Zm-8.929 7.357h-.062a4.198 4.198 0 0 1-1.399 1.223c-.531.28-1.163.42-1.894.42-.634-.001-1.186-.1-1.656-.294a3.161 3.161 0 0 1-1.167-.815 3.485 3.485 0 0 1-.702-1.246 5.142 5.142 0 0 1-.236-1.607l.009-6.606 3.911.006-.007 5.702c-.002 1.085.466 1.628 1.404 1.629.511 0 .908-.16 1.191-.48.283-.322.426-.763.426-1.325l.008-5.523 3.911.006-.014 10.24-3.725-.004.002-1.326Zm-12.434-1.693c.304-.528.457-1.227.458-2.097.002-.87-.15-1.57-.452-2.1-.303-.529-.758-.794-1.365-.794-.607-.001-1.056.262-1.346.79-.29.529-.436 1.228-.437 2.098-.002.87.142 1.57.431 2.1.29.528.737.794 1.344.794.607.001 1.063-.263 1.367-.791Zm-3.719 2.906a5.411 5.411 0 0 1-1.819-1.137 5.015 5.015 0 0 1-1.167-1.718 5.557 5.557 0 0 1-.41-2.16c0-.775.14-1.495.416-2.157a5.12 5.12 0 0 1 1.172-1.725 5.35 5.35 0 0 1 1.822-1.142c.711-.274 1.508-.41 2.391-.409.883.001 1.679.14 2.39.415a5.25 5.25 0 0 1 1.809 1.147 5.09 5.09 0 0 1 1.146 1.729c.268.663.402 1.382.401 2.159a5.702 5.702 0 0 1-.407 2.158 4.97 4.97 0 0 1-1.151 1.715 5.3 5.3 0 0 1-1.813 1.132c-.71.273-1.507.41-2.39.408-.883 0-1.68-.14-2.39-.415Zm-13.12.113c-.82-.202-1.537-.508-2.15-.916a4.543 4.543 0 0 1-1.447-1.538c-.35-.617-.532-1.34-.545-2.17l4.429.006c.068.576.32 1.001.754 1.276.433.275 1.01.413 1.727.414.207 0 .424-.02.652-.059.227-.04.431-.107.61-.2.18-.093.328-.217.446-.371a.879.879 0 0 0 .176-.552.81.81 0 0 0-.185-.542 1.515 1.515 0 0 0-.538-.383 5.68 5.68 0 0 0-.879-.302 42.606 42.606 0 0 0-1.21-.303 29.51 29.51 0 0 1-1.903-.524 7.688 7.688 0 0 1-1.768-.796 4.18 4.18 0 0 1-1.302-1.257c-.337-.51-.505-1.145-.504-1.908.001-.817.164-1.513.49-2.088a4.012 4.012 0 0 1 1.315-1.404c.552-.36 1.2-.624 1.947-.79a10.73 10.73 0 0 1 2.359-.248c.758 0 1.493.083 2.203.244.71.162 1.342.42 1.892.776.552.356.993.811 1.323 1.367.33.556.502 1.223.515 1.999l-4.284-.006c-.069-.388-.25-.7-.547-.935-.296-.234-.741-.352-1.334-.353-.483 0-.873.093-1.17.28-.297.187-.445.427-.445.722 0 .214.074.388.226.523.152.133.376.251.672.352.297.1.662.194 1.097.282.434.088.927.2 1.479.334.62.148 1.227.326 1.82.534a5.944 5.944 0 0 1 1.592.836c.469.349.845.78 1.126 1.296.282.516.422 1.156.422 1.919-.001.79-.171 1.482-.51 2.077a4.522 4.522 0 0 1-1.379 1.494 6.459 6.459 0 0 1-2.029.911 9.453 9.453 0 0 1-2.463.308 11.27 11.27 0 0 1-2.68-.305ZM72.345 18c.428-.562.916-.99 1.46-1.283.546-.294 1.191-.44 1.936-.44 1.228.002 2.152.365 2.771 1.089.62.724.93 1.674.928 2.852l-.01 6.626-3.91-.005.008-5.703c0-.535-.116-.964-.35-1.285-.235-.322-.607-.483-1.118-.484-.496 0-.886.183-1.17.55-.283.369-.425.834-.426 1.396l-.007 5.522-3.911-.006.014-10.24 3.725.005L72.283 18h.062Zm-9.195 5.82c.304-.528.456-1.227.458-2.097 0-.87-.15-1.57-.453-2.099-.302-.53-.757-.794-1.364-.795-.607-.001-1.056.263-1.346.791-.29.529-.437 1.228-.438 2.098-.001.87.143 1.57.431 2.099.29.53.737.794 1.344.795.608 0 1.063-.263 1.368-.792Zm-3.72 2.907a5.42 5.42 0 0 1-1.818-1.138 5.002 5.002 0 0 1-1.167-1.718 5.556 5.556 0 0 1-.41-2.159c0-.776.14-1.496.416-2.158a5.11 5.11 0 0 1 1.172-1.725 5.342 5.342 0 0 1 1.822-1.142c.71-.274 1.508-.41 2.391-.409.883.002 1.68.14 2.39.415a5.255 5.255 0 0 1 1.809 1.147 5.077 5.077 0 0 1 1.145 1.729 5.69 5.69 0 0 1 .401 2.159 5.678 5.678 0 0 1-.407 2.157 4.954 4.954 0 0 1-1.15 1.716 5.317 5.317 0 0 1-1.813 1.132c-.71.274-1.508.41-2.39.409-.884-.001-1.68-.14-2.39-.415Zm-7.633-8.614c.429-.643.902-1.097 1.42-1.364.517-.267 1.114-.4 1.79-.4.29 0 .504.035.641.102l-.004 3.233h-.083c-1.159-.189-2.055-.04-2.69.447-.636.488-.955 1.315-.956 2.48l-.006 4.196-3.912-.006.015-10.24 3.725.005-.002 1.546h.062Zm-5.192-1.554L46.591 26.8l-3.911-.005.014-10.24 3.911.004Zm.007-4.116-.005 2.872-3.91-.006.003-2.871 3.912.005ZM22.146 29.222c-4.276-.006-6.32-2.288-6.316-5.165v-.871l4.79.006v.38c0 .94.486 1.584 1.417 1.585.858.002 1.28-.395 1.28-1.064.004-1.902-7.323-1.592-7.316-6.92.004-2.871 1.825-5.373 6.356-5.367 4.07.006 6.09 2.292 6.086 5.162l-.001.936-4.789-.006v-.536c.002-.773-.396-1.544-1.302-1.546-.72 0-1.138.4-1.139 1.043-.003 2.102 7.32 1.574 7.313 6.897-.004 2.875-1.913 5.472-6.38 5.466ZM15.01 15.304l-4.715-.007.004-3.736 4.716.007-.005 3.736Zm0 4.16c-.002 1.57-.53 2.453-1.691 2.774 1.215.486 1.686 1.353 1.683 3.207l-.004 2.718-4.746-.039.006-3.552c0-.71-.782-.795-1.428-1.015l.003-2.545c.646-.21 1.43-.414 1.431-.975l.005-3.756 4.746.007-.005 3.175Zm3.8-18.23C8.593 1.234.309 9.517.309 19.736S8.593 38.238 18.81 38.238c10.219 0 18.502-8.283 18.502-18.502S29.03 1.234 18.811 1.234Z\" fill=\"#0D148C\"/><path d=\"M85.888 39.328h3.55v.935h-2.416v1.278h2.18v.935h-2.18v2.215H85.89v-5.363h-.002Zm6.304 0h2.115c1.217 0 1.92.687 1.92 1.752 0 .734-.338 1.265-.947 1.526l1.139 2.085h-1.251l-1.015-1.9h-.828v1.9h-1.133v-5.363Zm1.903 2.551c.649 0 .966-.268.966-.799 0-.534-.316-.825-.97-.825h-.765v1.623h.769v.001Zm7.342 2.885c-1.43 0-2.51-1.008-2.51-2.754 0-1.755 1.082-2.755 2.51-2.755 1.421 0 2.51 1 2.51 2.755 0 1.754-1.089 2.755-2.51 2.755Zm0-4.506c-.825 0-1.362.615-1.362 1.752 0 1.136.537 1.752 1.362 1.752.822 0 1.362-.616 1.362-1.752-.002-1.136-.541-1.752-1.362-1.752Zm6.738-.93 1.477 3.603h.062l1.477-3.603h1.398v5.363h-1.1V41.2h-.044l-1.387 3.463h-.749l-1.386-3.477h-.045v3.504h-1.099v-5.363h1.396Zm15.482 0v3.482c0 1.173-.89 1.956-2.222 1.956-1.339 0-2.223-.783-2.223-1.956v-3.482h1.133v3.386c0 .613.431 1.056 1.088 1.056.66 0 1.089-.443 1.089-1.056v-3.386h1.135Zm7.409 5.362h-.979l-2.333-3.374h-.039v3.375h-1.133v-5.363h.995l2.314 3.372h.047v-3.372h1.129v5.363h-.001Zm4.059 0h-1.133v-5.362h1.133v5.363Zm2.721-5.362h4.403v.935h-1.642v4.428h-1.12v-4.428h-1.642v-.935h.001Zm8.079 0 1.222 2.31h.052l1.223-2.31h1.269l-1.955 3.467v1.896h-1.126v-1.896l-1.955-3.467h1.27Z\" fill=\"#0D148C\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-reqrpy\",\"data-framer-name\":\"Svgexport-1 (5)\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106.945 23.073\"><g id=\"ss9459933742_1\"><path d=\"M 0 0 L 22.194 0 L 22.194 22.396 L 0 22.396 Z\" fill=\"transparent\"></path><path d=\"M 13.982 0 L 0 0 L 0 14.109 L 13.982 14.109 Z M 6.991 11.534 C 9.442 11.534 11.43 9.528 11.43 7.055 C 11.43 4.581 9.442 2.576 6.991 2.576 C 4.54 2.576 2.552 4.581 2.552 7.055 C 2.552 9.528 4.54 11.534 6.991 11.534 Z M 22.194 0 L 16.201 0 L 16.201 2.486 C 17.22 2.591 18.171 3.046 18.896 3.775 C 19.729 4.615 20.197 5.755 20.196 6.943 C 20.196 7.532 20.081 8.113 19.859 8.657 C 19.234 10.182 17.828 11.236 16.201 11.399 L 16.201 14.109 L 22.194 14.109 Z M 2.663 16.349 L 0 16.349 L 0 22.396 L 13.982 22.396 L 13.982 16.349 L 11.541 16.349 L 11.541 19.708 L 2.663 19.708 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 22.194 16.349 L 16.201 16.349 L 16.201 22.396 L 22.194 22.396 Z\" fill=\"rgb(0,0,0)\"></path></g><path d=\"M 93.686 20.569 L 93.686 5.943 L 96.497 5.943 L 96.773 7.89 L 96.965 7.89 C 97.294 7.446 97.684 7.053 98.123 6.721 C 98.588 6.366 99.11 6.094 99.666 5.915 C 100.288 5.706 100.939 5.602 101.595 5.609 C 102.514 5.609 103.322 5.775 104.02 6.11 C 104.737 6.443 105.297 6.981 105.701 7.722 C 106.105 8.464 106.307 9.456 106.307 10.698 L 106.307 20.57 L 102.918 20.57 L 102.918 11.309 C 102.918 10.789 102.853 10.363 102.725 10.03 C 102.614 9.678 102.44 9.399 102.201 9.196 C 101.971 8.968 101.686 8.805 101.375 8.723 C 101.015 8.626 100.644 8.58 100.272 8.584 C 99.666 8.584 99.115 8.732 98.618 9.028 C 98.136 9.33 97.738 9.751 97.462 10.252 C 97.186 10.771 97.048 11.373 97.048 12.06 L 97.048 20.568 L 93.686 20.568 Z M 82.37 20.903 C 81.897 20.896 81.426 20.84 80.965 20.737 C 80.432 20.638 79.92 20.45 79.448 20.18 C 78.971 19.903 78.576 19.494 78.263 18.957 C 77.952 18.401 77.795 17.677 77.795 16.788 C 77.795 15.786 78.016 14.961 78.457 14.313 C 78.897 13.645 79.513 13.127 80.303 12.756 C 81.111 12.366 82.066 12.097 83.169 11.95 C 84.383 11.776 85.608 11.692 86.834 11.699 L 86.834 10.504 C 86.834 10.077 86.77 9.697 86.641 9.363 C 86.512 9.029 86.273 8.77 85.925 8.584 C 85.593 8.381 85.088 8.279 84.409 8.279 C 83.729 8.279 83.196 8.362 82.811 8.529 C 82.425 8.696 82.159 8.899 82.012 9.14 C 81.869 9.365 81.793 9.625 81.79 9.892 L 81.79 10.281 L 78.539 10.281 C 78.521 10.189 78.512 10.096 78.512 10.003 L 78.512 9.669 C 78.512 8.835 78.76 8.112 79.256 7.5 C 79.752 6.888 80.441 6.425 81.322 6.11 C 82.204 5.775 83.224 5.609 84.382 5.609 C 85.704 5.609 86.787 5.794 87.633 6.165 C 88.496 6.536 89.139 7.065 89.562 7.751 C 89.984 8.436 90.195 9.27 90.195 10.253 L 90.195 17.149 C 90.195 17.501 90.297 17.752 90.499 17.9 C 90.701 18.048 90.922 18.123 91.16 18.123 L 92.042 18.123 L 92.042 20.458 C 91.781 20.557 91.514 20.641 91.243 20.709 C 90.894 20.82 90.462 20.876 89.948 20.876 C 89.504 20.882 89.063 20.797 88.653 20.625 C 88.292 20.481 87.971 20.253 87.716 19.958 C 87.454 19.653 87.266 19.292 87.165 18.901 L 86.999 18.901 C 86.672 19.304 86.292 19.66 85.869 19.958 C 85.446 20.254 84.941 20.487 84.353 20.653 C 83.783 20.82 83.122 20.903 82.369 20.903 Z M 83.389 18.123 C 83.94 18.123 84.428 18.039 84.849 17.872 C 85.291 17.705 85.648 17.474 85.925 17.177 C 86.218 16.881 86.439 16.519 86.586 16.093 C 86.754 15.649 86.839 15.177 86.834 14.702 L 86.834 14.035 C 85.823 14.035 84.887 14.1 84.023 14.229 C 83.178 14.359 82.498 14.6 81.984 14.952 C 81.488 15.304 81.24 15.805 81.24 16.454 C 81.24 16.788 81.314 17.084 81.46 17.344 C 81.626 17.585 81.865 17.78 82.176 17.927 C 82.508 18.057 82.912 18.123 83.389 18.123 Z M 69.89 20.903 C 68.384 20.903 67.125 20.635 66.115 20.097 C 65.123 19.541 64.379 18.697 63.883 17.566 C 63.387 16.436 63.139 14.999 63.139 13.257 C 63.139 11.495 63.387 10.058 63.883 8.946 C 64.398 7.815 65.15 6.981 66.142 6.443 C 67.152 5.887 68.402 5.61 69.89 5.61 C 70.864 5.61 71.728 5.73 72.481 5.971 C 73.233 6.212 73.877 6.583 74.41 7.082 C 74.966 7.572 75.392 8.193 75.65 8.89 C 75.925 9.613 76.063 10.457 76.063 11.421 L 72.646 11.421 C 72.646 10.735 72.544 10.169 72.343 9.724 C 72.153 9.293 71.822 8.939 71.405 8.724 C 71.002 8.482 70.478 8.362 69.834 8.362 C 69.081 8.362 68.467 8.538 67.989 8.89 C 67.511 9.242 67.152 9.771 66.914 10.476 C 66.693 11.161 66.583 12.033 66.583 13.089 L 66.583 13.451 C 66.583 14.489 66.693 15.36 66.914 16.065 C 67.153 16.769 67.52 17.298 68.016 17.651 C 68.512 17.984 69.164 18.15 69.973 18.15 C 70.598 18.15 71.112 18.039 71.516 17.816 C 71.939 17.575 72.277 17.205 72.481 16.759 C 72.701 16.296 72.811 15.741 72.811 15.091 L 76.063 15.091 C 76.063 16 75.925 16.816 75.65 17.539 C 75.391 18.237 74.976 18.865 74.437 19.374 C 73.904 19.874 73.252 20.255 72.481 20.514 C 71.727 20.773 70.864 20.903 69.89 20.903 Z M 54.911 20.903 C 53.368 20.903 52.083 20.635 51.054 20.097 C 50.024 19.541 49.254 18.697 48.739 17.566 C 48.224 16.436 47.967 14.999 47.967 13.257 C 47.967 11.495 48.225 10.058 48.74 8.946 C 49.254 7.815 50.025 6.981 51.054 6.443 C 52.083 5.887 53.368 5.61 54.912 5.61 C 56.308 5.61 57.474 5.878 58.412 6.416 C 59.367 6.935 60.083 7.742 60.56 8.835 C 61.038 9.929 61.277 11.347 61.277 13.09 L 61.277 14.091 L 51.412 14.091 C 51.449 14.999 51.587 15.768 51.825 16.398 C 52.064 17.01 52.432 17.473 52.928 17.789 C 53.442 18.085 54.112 18.234 54.939 18.234 C 55.361 18.234 55.756 18.178 56.124 18.067 C 56.491 17.956 56.813 17.789 57.089 17.566 C 57.364 17.325 57.575 17.029 57.723 16.677 C 57.888 16.324 57.97 15.916 57.97 15.453 L 61.277 15.453 C 61.277 16.38 61.112 17.187 60.781 17.872 C 60.481 18.543 60.016 19.127 59.432 19.569 C 58.862 20.014 58.191 20.348 57.419 20.569 C 56.648 20.792 55.812 20.903 54.911 20.903 Z M 51.467 11.699 L 57.778 11.699 C 57.778 11.087 57.704 10.568 57.557 10.142 C 57.429 9.715 57.235 9.362 56.979 9.085 C 56.739 8.807 56.446 8.613 56.096 8.501 C 55.716 8.366 55.315 8.3 54.912 8.306 C 54.195 8.306 53.589 8.427 53.092 8.668 C 52.616 8.909 52.23 9.299 51.991 9.78 C 51.734 10.281 51.559 10.92 51.468 11.699 Z M 31.071 20.568 L 31.071 1.493 L 40.55 1.493 C 41.947 1.493 43.095 1.744 43.995 2.245 C 44.914 2.745 45.602 3.45 46.061 4.358 C 46.521 5.267 46.75 6.351 46.75 7.612 C 46.75 8.854 46.511 9.938 46.034 10.865 C 45.556 11.792 44.84 12.515 43.886 13.034 C 42.948 13.534 41.773 13.785 40.358 13.785 L 34.653 13.785 L 34.653 20.57 L 31.071 20.57 Z M 34.653 10.697 L 40.248 10.697 C 41.165 10.697 41.873 10.428 42.369 9.891 C 42.884 9.335 43.141 8.574 43.141 7.611 C 43.141 6.962 43.031 6.415 42.81 5.97 C 42.6 5.536 42.263 5.177 41.845 4.941 C 41.423 4.7 40.89 4.58 40.248 4.58 L 34.653 4.58 L 34.653 10.698 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:9459933742,withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6hqzli\",\"data-framer-name\":\"Divider\"})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1n8errm\",\"data-framer-name\":\"FAQ's\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{width:`min(${componentViewport?.width||\"100vw\"} * 0.85, 1366px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:191,width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cpxu8w-container\",nodeId:\"f07MPiR9F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperSectionHeader,{height:\"100%\",id:\"f07MPiR9F\",kMk_Ij5z8:\"Still got questions?\",layoutId:\"f07MPiR9F\",M2TxwEkew:\"\",MuhNgrAO6:false,Po3LTyKq2:\"var(--token-34356539-d235-4245-9e6f-03b11cbe7258, rgb(248, 249, 250))\",style:{width:\"100%\"},variant:\"MRUNw3DU5\",width:\"100%\",Xt7jBhG5L:\"\",yFU2gpFED:false,YmCP0VZub:false})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-183cxrn\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.85, 1366px), 900px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:`min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px), 900px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cl9tyh-container\",nodeId:\"ux5QUQ385\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"ux5QUQ385\",layoutId:\"ux5QUQ385\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zyewrt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-aj6mz8\",\"data-framer-name\":\"Frame 1261161608\"})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fodqv8 hidden-72rtr7 hidden-1eapo48\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5jamg9\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-coibhj\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-dduks7\",\"data-styles-preset\":\"AaJ2VKnBH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Your Demo Now\"})}),className:\"framer-10le2f4\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1z0nnm4\",\"data-styles-preset\":\"gl_OSxSYB\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guide your AI development based on clear insights\"})}),className:\"framer-1wcwf87\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.92, 1366px), 993px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g8l7wo-container\",nodeId:\"VmKiB33P1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{ghnjr0KjJ:\"https://calendly.com/matan-sticklight/30min\",height:\"100%\",id:\"VmKiB33P1\",JhnwCLiwV:\"Talk to human\",layoutId:\"VmKiB33P1\",OF2JWcoGK:false,style:{width:\"100%\"},variant:\"y5vw5d6Dz\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bm7yen\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Ui Image\",fit:\"fill\",pixelHeight:1786,pixelWidth:3022,positionX:\"left\",positionY:\"top\",sizes:\"593px\",src:\"https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png\",srcSet:\"https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png 3022w\"},className:\"framer-1so8015\",\"data-border\":true,\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ui Image\",fit:\"fill\",pixelHeight:1808,pixelWidth:3018,positionX:\"left\",positionY:\"top\",sizes:\"476px\",src:\"https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png\",srcSet:\"https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png?scale-down-to=512 512w,https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png 3018w\"},className:\"framer-4amkht\",\"data-border\":true,\"data-framer-name\":\"Image\"})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tz1i3o hidden-bv3nhy\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3pz4hw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16m3kw7\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3bi4ri\",\"data-styles-preset\":\"N8Au19Xkt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book Your Demo Now\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3bi4ri\",\"data-styles-preset\":\"N8Au19Xkt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Chat with us\"})}),className:\"framer-1pxekt2\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1z0nnm4\",\"data-styles-preset\":\"gl_OSxSYB\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guide your AI development based on clear insights\"})}),className:\"framer-1de9cac\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15j89yy-container\",nodeId:\"Io8ERDlyH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{ghnjr0KjJ:\"https://calendly.com/matan-sticklight/30min\",height:\"100%\",id:\"Io8ERDlyH\",JhnwCLiwV:\"Talk to human\",layoutId:\"Io8ERDlyH\",OF2JWcoGK:false,variant:\"y5vw5d6Dz\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k05flm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Ui Image\",fit:\"fill\",pixelHeight:1786,pixelWidth:3022,positionX:\"left\",positionY:\"top\",sizes:\"593px\",src:\"https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png\",srcSet:\"https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/36qQm2G6lKg8zC35L19Hi9jZU.png 3022w\"},className:\"framer-v67liv\",\"data-border\":true,\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ui Image\",fit:\"fill\",pixelHeight:1808,pixelWidth:3018,positionX:\"left\",positionY:\"top\",sizes:\"476px\",src:\"https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png\",srcSet:\"https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png?scale-down-to=512 512w,https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BZvKfgmCol0IFtDAhVSSbX64P1s.png 3018w\"},className:\"framer-1uqfbt9\",\"data-border\":true,\"data-framer-name\":\"Image\"})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:466,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kylgf9-container\",nodeId:\"qVqzlMNQE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{variant:\"kQqKW9tMn\"},w01tF5ohw:{variant:\"yOCEivYxw\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qVqzlMNQE\",layoutId:\"qVqzlMNQE\",style:{width:\"100%\"},variant:\"GfwW1Ax76\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{w01tF5ohw:{height:60,width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n6z7qj-container\",layoutScroll:true,nodeId:\"HJG6rY6PF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vWi3wLJHX:{variant:\"g27uQDn7X\"},w01tF5ohw:{style:{height:\"100%\",width:\"100%\"},variant:\"EQrp_pNAD\"}},children:/*#__PURE__*/_jsx(Navbar,{GJmprxE76:\"E80khm6x9\",height:\"100%\",id:\"HJG6rY6PF\",layoutId:\"HJG6rY6PF\",style:{width:\"100%\"},variant:\"GlIHfpYaq\",WamNku8cD:\"E80khm6x9\",width:\"100%\",XmgW00mLk:\"Q3tzUrQUD\",YBGWN9WLh:\"E80khm6x9\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RkXzm.framer-lux5qc, .framer-RkXzm .framer-lux5qc { display: block; }\",\".framer-RkXzm.framer-72rtr7 { align-content: center; align-items: center; background-color: #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: 1360px; }\",\".framer-RkXzm .framer-15747kd { flex: none; height: 700px; left: -463px; position: absolute; right: -2px; top: 0px; z-index: 1; }\",\".framer-RkXzm .framer-l3f3kj { flex: none; height: 700px; left: -463px; position: absolute; right: -2px; top: 693px; z-index: 1; }\",\".framer-RkXzm .framer-1dobzkw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 3000px; overflow: hidden; padding: 160px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-4nmpyp { flex: none; height: 725px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-RkXzm .framer-eni00o { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 42.85610020160675%, rgba(255, 255, 255, 1) 100%); bottom: -458px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 10; }\",\".framer-RkXzm .framer-1fm27rs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 85%; z-index: 1; }\",\".framer-RkXzm .framer-o1tzj0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-RkXzm .framer-k8emox { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1li826g { bottom: 46px; flex: none; height: 8px; left: 527px; overflow: hidden; position: absolute; width: 253px; z-index: 1; }\",\".framer-RkXzm .framer-19r9khx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-RkXzm .framer-zkxbnw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-RkXzm .framer-dwmbtz, .framer-RkXzm .framer-1dytlgo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RkXzm .framer-thgo57-container, .framer-RkXzm .framer-1rgrsfj-container, .framer-RkXzm .framer-1x0hd2v-container, .framer-RkXzm .framer-p0s5df-container, .framer-RkXzm .framer-1a8h5h8-container, .framer-RkXzm .framer-1tjlygo-container, .framer-RkXzm .framer-10bs18f-container, .framer-RkXzm .framer-15j89yy-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-RkXzm .framer-1o0kh1g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-w6ri0y, .framer-RkXzm .framer-1fbanxl, .framer-RkXzm .framer-17fg9lg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RkXzm .framer-1baczh2-container { flex: none; height: 34px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1ohij56 { aspect-ratio: 3.220125786163522 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; text-decoration: none; width: 104px; }\",\".framer-RkXzm .framer-1gcxvwt { height: 24px; position: relative; text-decoration: none; width: 104px; }\",\".framer-RkXzm .framer-lh1u6f { aspect-ratio: 2.6315789473684212 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; text-decoration: none; width: 104px; }\",\".framer-RkXzm .framer-h7dr16 { height: 38px; position: relative; text-decoration: none; width: 104px; }\",\".framer-RkXzm .framer-1bksb1y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 170px; width: 100%; z-index: 10; }\",\".framer-RkXzm .framer-hqzqbh-container { flex: none; height: 675px; position: relative; width: 1144px; z-index: -1; }\",\".framer-RkXzm .framer-db59ba { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 714px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1f4n65y { flex: none; height: 91vh; overflow: visible; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-RkXzm .framer-pj9v21 { align-content: center; align-items: center; background-color: var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, #323338); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; left: calc(50.12345679012348% - 100% / 2); overflow: visible; padding: 32px; position: absolute; top: calc(55.60000000000003% - 100% / 2); width: 100%; z-index: 10; }\",\".framer-RkXzm .framer-xwe5g8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; z-index: 10; }\",\".framer-RkXzm .framer-7gyhal { align-content: center; align-items: center; background-color: var(--token-46f6d70f-97ce-4eaa-ad25-488c43433f2e, #323338); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 43%; justify-content: center; left: calc(49.411764705882376% - 68.97058823529412% / 2); overflow: visible; padding: 32px; position: absolute; top: 89px; width: 69%; z-index: 2; }\",\".framer-RkXzm .framer-1uhmyvi { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 748px; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-RkXzm .framer-e8zcs6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1366px; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 92%; }\",\".framer-RkXzm .framer-7ojg5l, .framer-RkXzm .framer-8lqwc3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-stpvca-container, .framer-RkXzm .framer-1gn1pzt-container, .framer-RkXzm .framer-cpxu8w-container, .framer-RkXzm .framer-1g8l7wo-container, .framer-RkXzm .framer-kylgf9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-RkXzm .framer-4zvqzc { aspect-ratio: 2.2371541501976284 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 557px); overflow: visible; position: relative; width: 1244px; }\",\".framer-RkXzm .framer-l7mtq6-container { flex: none; height: 240px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1lgocxq-container, .framer-RkXzm .framer-u5zhzp-container, .framer-RkXzm .framer-x5aqvi-container, .framer-RkXzm .framer-otm466-container, .framer-RkXzm .framer-1m20yvn-container, .framer-RkXzm .framer-2tbflc-container { height: auto; position: relative; width: 262px; }\",\".framer-RkXzm .framer-20ul2o-container, .framer-RkXzm .framer-5jd02u-container { height: auto; position: relative; width: 263px; }\",\".framer-RkXzm .framer-qt8khu { align-content: center; align-items: center; background-color: #fcfaf8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1yctig8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 62px 0px 62px 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-14o39dp { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1k127cf { --border-bottom-width: 4px; --border-color: var(--token-88f1751c-8dec-4723-b246-dd14537dcb01, #ffffff); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; background-color: var(--token-67d4a9e8-51b9-4aff-9568-198007b98cd1, #f1f5f9); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: 494px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RkXzm .framer-1r7s35s { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(243, 50, 246, 0.4); border-bottom-left-radius: 75px; border-bottom-right-radius: 75px; border-top-left-radius: 75px; border-top-right-radius: 75px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 150px); left: 48%; overflow: hidden; position: absolute; top: 13px; transform: translateX(-50%); width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RkXzm .framer-1b62d61 { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(50, 246, 128, 0.4); border-bottom-left-radius: 75px; border-bottom-right-radius: 75px; border-top-left-radius: 75px; border-top-right-radius: 75px; bottom: 14px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 150px); left: 39px; overflow: hidden; position: absolute; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RkXzm .framer-3sc3ay { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(246, 154, 50, 0.4); border-bottom-left-radius: 75px; border-bottom-right-radius: 75px; border-top-left-radius: 75px; border-top-right-radius: 75px; bottom: 89px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 150px); left: 355px; overflow: hidden; position: absolute; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RkXzm .framer-ns4vfj { flex: none; height: 456px; left: 61px; position: absolute; right: 62px; top: calc(50.00000000000002% - 456px / 2); }\",\".framer-RkXzm .framer-1tagloa { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-RkXzm .framer-1lvx8wy { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-61xp5b, .framer-RkXzm .framer-2eze2j, .framer-RkXzm .framer-fsx92g { --border-bottom-width: 1px; --border-color: var(--token-d5d168c9-3ce6-4662-8579-797f485ea94f, #e6e9ee); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-34356539-d235-4245-9e6f-03b11cbe7258, #f8f9fa); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 10px 6px 10px; position: relative; width: min-content; }\",\".framer-RkXzm .framer-1bns1y5-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-RkXzm .framer-yicxjr, .framer-RkXzm .framer-1ee00th, .framer-RkXzm .framer-cs5l4b, .framer-RkXzm .framer-shl2r1, .framer-RkXzm .framer-170l4r3, .framer-RkXzm .framer-184vwnz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RkXzm .framer-z01nyp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1w4k6tn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 150px 0px; position: relative; scroll-margin-top: 500px; width: 100%; }\",\".framer-RkXzm .framer-1pfara3 { flex: none; height: 0%; left: calc(50.00000000000002% - 63.73801916932907% / 2); overflow: visible; position: absolute; top: calc(57.66423357664235% - 0% / 2); width: 64%; z-index: 1; }\",\".framer-RkXzm .framer-1elayqs { bottom: 105px; flex: none; left: 49px; position: absolute; right: 51px; top: 139px; }\",\".framer-RkXzm .framer-v8zrcq { bottom: 145px; flex: none; left: 145px; position: absolute; right: 645px; top: 145px; }\",\".framer-RkXzm .framer-u6ialj { bottom: 136px; flex: none; left: 446px; position: absolute; right: 346px; top: 156px; }\",\".framer-RkXzm .framer-2mbg32 { bottom: 154px; flex: none; left: 644px; position: absolute; right: 144px; top: 134px; }\",\".framer-RkXzm .framer-1bcd16q { bottom: 108px; flex: none; left: -8px; position: absolute; right: 8px; top: 152px; }\",\".framer-RkXzm .framer-1b1gv1a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-ywewa4-container, .framer-RkXzm .framer-8lsqi9-container { flex: none; height: 285px; position: relative; width: 507px; }\",\".framer-RkXzm .framer-loz098 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1366px; overflow: visible; padding: 0px 0px 200px 0px; position: relative; width: 85%; }\",\".framer-RkXzm .framer-1dgasp1 { 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-RkXzm .framer-cnlnqc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 650px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RkXzm .framer-1kd192u, .framer-RkXzm .framer-1h1fq1k { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; }\",\".framer-RkXzm .framer-t697j2 { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1gix2fk-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-RkXzm .framer-1j52pj3-container, .framer-RkXzm .framer-yrqt4m-container, .framer-RkXzm .framer-1h9yigs-container, .framer-RkXzm .framer-15mxtow-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1kibrdo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1usiqop { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 650px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-l6ou6m, .framer-RkXzm .framer-10mpq1j, .framer-RkXzm .framer-1mws3bn, .framer-RkXzm .framer-10le2f4, .framer-RkXzm .framer-1wcwf87, .framer-RkXzm .framer-1pxekt2, .framer-RkXzm .framer-1de9cac { --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-RkXzm .framer-g3136n { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-iax9x4-container { flex: none; height: auto; position: relative; width: 826px; }\",\".framer-RkXzm .framer-ox4ql5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1366px; overflow: visible; padding: 0px 0px 200px 0px; position: relative; scroll-margin-top: 200px; width: 85%; }\",\".framer-RkXzm .framer-1k97n7y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-175y2q7 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-xdg12e { 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: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1791onw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RkXzm .framer-1dr4a3n { 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-RkXzm .framer-12lz1wh, .framer-RkXzm .framer-1dx026x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-qtb8yd { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 350px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RkXzm .framer-jau1hq { align-content: center; align-items: center; background-color: rgba(1, 220, 160, 0.4); 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: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 120px; overflow: hidden; padding: 25px 100px 25px 100px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RkXzm .framer-5zcd9w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-RkXzm .framer-u0q9mk { aspect-ratio: 2.4791666666666665 / 1; flex: none; height: 43px; position: relative; width: var(--framer-aspect-ratio-supported, 106px); }\",\".framer-RkXzm .framer-1pz4ozy { aspect-ratio: 2.840909090909091 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 110px; }\",\".framer-RkXzm .framer-1y62jl0 { aspect-ratio: 3.260869565217391 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); position: relative; width: 133px; }\",\".framer-RkXzm .framer-reqrpy { background-color: rgba(0, 0, 0, 0); flex: none; height: 23px; position: relative; width: 107px; }\",\".framer-RkXzm .framer-6hqzli { background-color: var(--token-f4c021da-8bb9-40e6-af16-0c56225819b4, #e2e8f0); flex: none; height: 1px; max-width: 900px; overflow: hidden; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1n8errm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-RkXzm .framer-183cxrn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-1cl9tyh-container { flex: none; height: auto; max-width: 900px; position: relative; width: 100%; z-index: 0; }\",\".framer-RkXzm .framer-zyewrt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-aj6mz8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 50px; overflow: visible; padding: 0px; position: relative; width: 62%; }\",\".framer-RkXzm .framer-fodqv8 { align-content: center; align-items: center; background-color: var(--token-ddc38dc3-98c7-4d8f-98c1-b8bafe0b2a2f, #016ce3); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 993px; overflow: hidden; padding: 20px 20px 200px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RkXzm .framer-5jamg9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RkXzm .framer-coibhj, .framer-RkXzm .framer-16m3kw7 { 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-RkXzm .framer-1bm7yen { bottom: -172px; flex: none; height: 286px; overflow: visible; position: absolute; right: -142px; width: 450px; z-index: 1; }\",\".framer-RkXzm .framer-1so8015 { --border-bottom-width: 4px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 323px; left: 59px; position: absolute; top: -44px; width: 593px; }\",\".framer-RkXzm .framer-4amkht { --border-bottom-width: 4px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px -5px 28.600000381469727px 0px rgba(0, 0, 0, 0.15); flex: none; height: 259px; left: 9px; position: absolute; top: 10px; width: 476px; }\",\".framer-RkXzm .framer-tz1i3o { align-content: center; align-items: center; background-color: var(--token-ddc38dc3-98c7-4d8f-98c1-b8bafe0b2a2f, #016ce3); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 993px; overflow: hidden; padding: 80px 470px 80px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RkXzm .framer-3pz4hw { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RkXzm .framer-k05flm { bottom: 0px; flex: none; height: 286px; overflow: visible; position: absolute; right: 0px; width: 450px; z-index: 1; }\",\".framer-RkXzm .framer-v67liv { --border-bottom-width: 4px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 323px; left: 59px; position: absolute; top: 6px; width: 593px; }\",\".framer-RkXzm .framer-1uqfbt9 { --border-bottom-width: 4px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px -5px 28.600000381469727px 0px rgba(0, 0, 0, 0.15); flex: none; height: 259px; left: 9px; position: absolute; top: 60px; width: 476px; }\",\".framer-RkXzm .framer-n6z7qj-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RkXzm.framer-72rtr7, .framer-RkXzm .framer-1dobzkw, .framer-RkXzm .framer-1fm27rs, .framer-RkXzm .framer-o1tzj0, .framer-RkXzm .framer-k8emox, .framer-RkXzm .framer-dwmbtz, .framer-RkXzm .framer-1o0kh1g, .framer-RkXzm .framer-1bksb1y, .framer-RkXzm .framer-db59ba, .framer-RkXzm .framer-pj9v21, .framer-RkXzm .framer-7gyhal, .framer-RkXzm .framer-e8zcs6, .framer-RkXzm .framer-7ojg5l, .framer-RkXzm .framer-qt8khu, .framer-RkXzm .framer-1yctig8, .framer-RkXzm .framer-14o39dp, .framer-RkXzm .framer-1tagloa, .framer-RkXzm .framer-1lvx8wy, .framer-RkXzm .framer-61xp5b, .framer-RkXzm .framer-z01nyp, .framer-RkXzm .framer-1w4k6tn, .framer-RkXzm .framer-1b1gv1a, .framer-RkXzm .framer-1dytlgo, .framer-RkXzm .framer-loz098, .framer-RkXzm .framer-8lqwc3, .framer-RkXzm .framer-1dgasp1, .framer-RkXzm .framer-cnlnqc, .framer-RkXzm .framer-2eze2j, .framer-RkXzm .framer-1kibrdo, .framer-RkXzm .framer-1usiqop, .framer-RkXzm .framer-g3136n, .framer-RkXzm .framer-ox4ql5, .framer-RkXzm .framer-1k97n7y, .framer-RkXzm .framer-175y2q7, .framer-RkXzm .framer-xdg12e, .framer-RkXzm .framer-1791onw, .framer-RkXzm .framer-1dr4a3n, .framer-RkXzm .framer-12lz1wh, .framer-RkXzm .framer-1dx026x, .framer-RkXzm .framer-fsx92g, .framer-RkXzm .framer-jau1hq, .framer-RkXzm .framer-5zcd9w, .framer-RkXzm .framer-1n8errm, .framer-RkXzm .framer-183cxrn, .framer-RkXzm .framer-zyewrt, .framer-RkXzm .framer-aj6mz8, .framer-RkXzm .framer-fodqv8, .framer-RkXzm .framer-5jamg9, .framer-RkXzm .framer-coibhj, .framer-RkXzm .framer-tz1i3o, .framer-RkXzm .framer-3pz4hw, .framer-RkXzm .framer-16m3kw7 { gap: 0px; } .framer-RkXzm.framer-72rtr7 > *, .framer-RkXzm .framer-1bksb1y > *, .framer-RkXzm .framer-db59ba > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-RkXzm.framer-72rtr7 > :first-child, .framer-RkXzm .framer-1dobzkw > :first-child, .framer-RkXzm .framer-1fm27rs > :first-child, .framer-RkXzm .framer-o1tzj0 > :first-child, .framer-RkXzm .framer-k8emox > :first-child, .framer-RkXzm .framer-1o0kh1g > :first-child, .framer-RkXzm .framer-1bksb1y > :first-child, .framer-RkXzm .framer-db59ba > :first-child, .framer-RkXzm .framer-e8zcs6 > :first-child, .framer-RkXzm .framer-7ojg5l > :first-child, .framer-RkXzm .framer-qt8khu > :first-child, .framer-RkXzm .framer-1yctig8 > :first-child, .framer-RkXzm .framer-1tagloa > :first-child, .framer-RkXzm .framer-1lvx8wy > :first-child, .framer-RkXzm .framer-1w4k6tn > :first-child, .framer-RkXzm .framer-loz098 > :first-child, .framer-RkXzm .framer-8lqwc3 > :first-child, .framer-RkXzm .framer-cnlnqc > :first-child, .framer-RkXzm .framer-1kibrdo > :first-child, .framer-RkXzm .framer-1usiqop > :first-child, .framer-RkXzm .framer-ox4ql5 > :first-child, .framer-RkXzm .framer-1k97n7y > :first-child, .framer-RkXzm .framer-175y2q7 > :first-child, .framer-RkXzm .framer-1791onw > :first-child, .framer-RkXzm .framer-1dr4a3n > :first-child, .framer-RkXzm .framer-12lz1wh > :first-child, .framer-RkXzm .framer-1dx026x > :first-child, .framer-RkXzm .framer-1n8errm > :first-child, .framer-RkXzm .framer-183cxrn > :first-child, .framer-RkXzm .framer-zyewrt > :first-child, .framer-RkXzm .framer-aj6mz8 > :first-child, .framer-RkXzm .framer-fodqv8 > :first-child, .framer-RkXzm .framer-5jamg9 > :first-child, .framer-RkXzm .framer-coibhj > :first-child, .framer-RkXzm .framer-3pz4hw > :first-child, .framer-RkXzm .framer-16m3kw7 > :first-child { margin-top: 0px; } .framer-RkXzm.framer-72rtr7 > :last-child, .framer-RkXzm .framer-1dobzkw > :last-child, .framer-RkXzm .framer-1fm27rs > :last-child, .framer-RkXzm .framer-o1tzj0 > :last-child, .framer-RkXzm .framer-k8emox > :last-child, .framer-RkXzm .framer-1o0kh1g > :last-child, .framer-RkXzm .framer-1bksb1y > :last-child, .framer-RkXzm .framer-db59ba > :last-child, .framer-RkXzm .framer-e8zcs6 > :last-child, .framer-RkXzm .framer-7ojg5l > :last-child, .framer-RkXzm .framer-qt8khu > :last-child, .framer-RkXzm .framer-1yctig8 > :last-child, .framer-RkXzm .framer-1tagloa > :last-child, .framer-RkXzm .framer-1lvx8wy > :last-child, .framer-RkXzm .framer-1w4k6tn > :last-child, .framer-RkXzm .framer-loz098 > :last-child, .framer-RkXzm .framer-8lqwc3 > :last-child, .framer-RkXzm .framer-cnlnqc > :last-child, .framer-RkXzm .framer-1kibrdo > :last-child, .framer-RkXzm .framer-1usiqop > :last-child, .framer-RkXzm .framer-ox4ql5 > :last-child, .framer-RkXzm .framer-1k97n7y > :last-child, .framer-RkXzm .framer-175y2q7 > :last-child, .framer-RkXzm .framer-1791onw > :last-child, .framer-RkXzm .framer-1dr4a3n > :last-child, .framer-RkXzm .framer-12lz1wh > :last-child, .framer-RkXzm .framer-1dx026x > :last-child, .framer-RkXzm .framer-1n8errm > :last-child, .framer-RkXzm .framer-183cxrn > :last-child, .framer-RkXzm .framer-zyewrt > :last-child, .framer-RkXzm .framer-aj6mz8 > :last-child, .framer-RkXzm .framer-fodqv8 > :last-child, .framer-RkXzm .framer-5jamg9 > :last-child, .framer-RkXzm .framer-coibhj > :last-child, .framer-RkXzm .framer-3pz4hw > :last-child, .framer-RkXzm .framer-16m3kw7 > :last-child { margin-bottom: 0px; } .framer-RkXzm .framer-1dobzkw > *, .framer-RkXzm .framer-1w4k6tn > *, .framer-RkXzm .framer-1n8errm > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-RkXzm .framer-1fm27rs > *, .framer-RkXzm .framer-loz098 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-RkXzm .framer-o1tzj0 > *, .framer-RkXzm .framer-1o0kh1g > *, .framer-RkXzm .framer-1tagloa > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-RkXzm .framer-k8emox > *, .framer-RkXzm .framer-1dr4a3n > *, .framer-RkXzm .framer-zyewrt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-RkXzm .framer-dwmbtz > *, .framer-RkXzm .framer-1dytlgo > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-RkXzm .framer-dwmbtz > :first-child, .framer-RkXzm .framer-pj9v21 > :first-child, .framer-RkXzm .framer-7gyhal > :first-child, .framer-RkXzm .framer-14o39dp > :first-child, .framer-RkXzm .framer-61xp5b > :first-child, .framer-RkXzm .framer-z01nyp > :first-child, .framer-RkXzm .framer-1b1gv1a > :first-child, .framer-RkXzm .framer-1dytlgo > :first-child, .framer-RkXzm .framer-1dgasp1 > :first-child, .framer-RkXzm .framer-2eze2j > :first-child, .framer-RkXzm .framer-g3136n > :first-child, .framer-RkXzm .framer-xdg12e > :first-child, .framer-RkXzm .framer-fsx92g > :first-child, .framer-RkXzm .framer-jau1hq > :first-child, .framer-RkXzm .framer-5zcd9w > :first-child, .framer-RkXzm .framer-tz1i3o > :first-child { margin-left: 0px; } .framer-RkXzm .framer-dwmbtz > :last-child, .framer-RkXzm .framer-pj9v21 > :last-child, .framer-RkXzm .framer-7gyhal > :last-child, .framer-RkXzm .framer-14o39dp > :last-child, .framer-RkXzm .framer-61xp5b > :last-child, .framer-RkXzm .framer-z01nyp > :last-child, .framer-RkXzm .framer-1b1gv1a > :last-child, .framer-RkXzm .framer-1dytlgo > :last-child, .framer-RkXzm .framer-1dgasp1 > :last-child, .framer-RkXzm .framer-2eze2j > :last-child, .framer-RkXzm .framer-g3136n > :last-child, .framer-RkXzm .framer-xdg12e > :last-child, .framer-RkXzm .framer-fsx92g > :last-child, .framer-RkXzm .framer-jau1hq > :last-child, .framer-RkXzm .framer-5zcd9w > :last-child, .framer-RkXzm .framer-tz1i3o > :last-child { margin-right: 0px; } .framer-RkXzm .framer-pj9v21 > *, .framer-RkXzm .framer-7gyhal > *, .framer-RkXzm .framer-1b1gv1a > *, .framer-RkXzm .framer-tz1i3o > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-RkXzm .framer-e8zcs6 > *, .framer-RkXzm .framer-qt8khu > *, .framer-RkXzm .framer-175y2q7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-RkXzm .framer-7ojg5l > *, .framer-RkXzm .framer-8lqwc3 > *, .framer-RkXzm .framer-ox4ql5 > *, .framer-RkXzm .framer-fodqv8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-RkXzm .framer-1yctig8 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-RkXzm .framer-14o39dp > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-RkXzm .framer-1lvx8wy > *, .framer-RkXzm .framer-aj6mz8 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-RkXzm .framer-61xp5b > *, .framer-RkXzm .framer-2eze2j > *, .framer-RkXzm .framer-fsx92g > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-RkXzm .framer-z01nyp > *, .framer-RkXzm .framer-g3136n > *, .framer-RkXzm .framer-xdg12e > *, .framer-RkXzm .framer-jau1hq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RkXzm .framer-1dgasp1 > *, .framer-RkXzm .framer-5zcd9w > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-RkXzm .framer-cnlnqc > *, .framer-RkXzm .framer-1kibrdo > *, .framer-RkXzm .framer-1usiqop > *, .framer-RkXzm .framer-12lz1wh > *, .framer-RkXzm .framer-1dx026x > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-RkXzm .framer-1k97n7y > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RkXzm .framer-1791onw > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-RkXzm .framer-183cxrn > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-RkXzm .framer-5jamg9 > *, .framer-RkXzm .framer-3pz4hw > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-RkXzm .framer-coibhj > *, .framer-RkXzm .framer-16m3kw7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-RkXzm[data-border=\"true\"]::after, .framer-RkXzm [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: 810px) and (max-width: 1359px) { .framer-RkXzm.framer-72rtr7 { width: 810px; } .framer-RkXzm .framer-l3f3kj { left: -1015px; order: 0; right: 0px; top: 7px; z-index: 0; } .framer-RkXzm .framer-1dobzkw { order: 3; padding: 120px 40px 0px 40px; } .framer-RkXzm .framer-1li826g { bottom: 36px; left: 369px; width: 150px; } .framer-RkXzm .framer-1bksb1y { gap: 50px; justify-content: flex-start; } .framer-RkXzm .framer-hqzqbh-container { height: 521px; order: 0; width: 665px; } .framer-RkXzm .framer-db59ba { gap: 150px; height: 647px; order: 4; } .framer-RkXzm .framer-1f4n65y { height: 500px; z-index: 9; } .framer-RkXzm .framer-7gyhal { height: 88%; left: calc(50.12345679012348% - 82.96296296296296% / 2); top: calc(55.60000000000003% - 87.6% / 2); width: 83%; z-index: 10; } .framer-RkXzm .framer-1uhmyvi { width: 75%; z-index: 10; } .framer-RkXzm .framer-e8zcs6 { order: 5; padding: 100px 0px 100px 0px; width: 85%; } .framer-RkXzm .framer-4zvqzc { height: var(--framer-aspect-ratio-supported, 556px); } .framer-RkXzm .framer-1b1gv1a { flex-direction: column; gap: 50px; } .framer-RkXzm .framer-t697j2 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); } .framer-RkXzm .framer-g3136n { height: 436px; } .framer-RkXzm .framer-iax9x4-container { order: 0; width: 584px; } .framer-RkXzm .framer-ox4ql5 { scroll-margin-top: 100px; } .framer-RkXzm .framer-xdg12e { flex-direction: column; } .framer-RkXzm .framer-1791onw { align-content: center; align-items: center; flex: none; width: 100%; } .framer-RkXzm .framer-1dr4a3n { align-content: center; align-items: center; max-width: 650px; } .framer-RkXzm .framer-1dx026x { align-content: center; align-items: center; } .framer-RkXzm .framer-qtb8yd { aspect-ratio: 1.6375545851528384 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 286px); max-width: 80%; width: 100%; } .framer-RkXzm .framer-jau1hq { flex-direction: column; gap: 20px; } .framer-RkXzm .framer-5zcd9w { flex: none; gap: 50px; width: 100%; } .framer-RkXzm .framer-183cxrn { gap: 40px; } .framer-RkXzm .framer-aj6mz8 { min-height: 75px; } .framer-RkXzm .framer-tz1i3o { flex-direction: column; padding: 80px 0px 150px 60px; } .framer-RkXzm .framer-3pz4hw { flex: none; width: 100%; } .framer-RkXzm .framer-k05flm { bottom: -130px; } .framer-RkXzm .framer-v67liv { top: -44px; } .framer-RkXzm .framer-1uqfbt9 { top: 10px; } .framer-RkXzm .framer-kylgf9-container { order: 6; } .framer-RkXzm .framer-n6z7qj-container { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RkXzm .framer-1bksb1y, .framer-RkXzm .framer-db59ba, .framer-RkXzm .framer-1b1gv1a, .framer-RkXzm .framer-xdg12e, .framer-RkXzm .framer-jau1hq, .framer-RkXzm .framer-5zcd9w, .framer-RkXzm .framer-183cxrn, .framer-RkXzm .framer-tz1i3o { gap: 0px; } .framer-RkXzm .framer-1bksb1y > *, .framer-RkXzm .framer-1b1gv1a > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-RkXzm .framer-1bksb1y > :first-child, .framer-RkXzm .framer-db59ba > :first-child, .framer-RkXzm .framer-1b1gv1a > :first-child, .framer-RkXzm .framer-xdg12e > :first-child, .framer-RkXzm .framer-jau1hq > :first-child, .framer-RkXzm .framer-183cxrn > :first-child, .framer-RkXzm .framer-tz1i3o > :first-child { margin-top: 0px; } .framer-RkXzm .framer-1bksb1y > :last-child, .framer-RkXzm .framer-db59ba > :last-child, .framer-RkXzm .framer-1b1gv1a > :last-child, .framer-RkXzm .framer-xdg12e > :last-child, .framer-RkXzm .framer-jau1hq > :last-child, .framer-RkXzm .framer-183cxrn > :last-child, .framer-RkXzm .framer-tz1i3o > :last-child { margin-bottom: 0px; } .framer-RkXzm .framer-db59ba > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-RkXzm .framer-xdg12e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-RkXzm .framer-jau1hq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RkXzm .framer-5zcd9w > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-RkXzm .framer-5zcd9w > :first-child { margin-left: 0px; } .framer-RkXzm .framer-5zcd9w > :last-child { margin-right: 0px; } .framer-RkXzm .framer-183cxrn > *, .framer-RkXzm .framer-tz1i3o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-RkXzm.framer-72rtr7 { width: 390px; } .framer-RkXzm .framer-15747kd { left: -1435px; right: 0px; top: 21px; z-index: 0; } .framer-RkXzm .framer-1dobzkw { padding: 100px 20px 0px 20px; z-index: 0; } .framer-RkXzm .framer-4nmpyp { order: 1; } .framer-RkXzm .framer-1fm27rs { order: 0; overflow: visible; width: 92%; } .framer-RkXzm .framer-1li826g { bottom: unset; left: 149px; top: calc(47.3684210526316% - 8px / 2); width: 100px; } .framer-RkXzm .framer-1bksb1y { flex-wrap: wrap; gap: 25px; justify-content: flex-start; max-width: 1500px; order: 2; padding: 50px 0px 0px 0px; width: 82%; } .framer-RkXzm .framer-hqzqbh-container { height: 274px; width: 284px; } .framer-RkXzm .framer-db59ba { align-content: center; align-items: center; height: 502px; overflow: hidden; padding: 25px 0px 0px 0px; } .framer-RkXzm .framer-1f4n65y { height: 50vh; overflow: hidden; will-change: var(--framer-will-change-effect-override, transform); } .framer-RkXzm .framer-7ojg5l { padding: 0px 0px 150px 0px; } .framer-RkXzm .framer-4zvqzc { height: var(--framer-aspect-ratio-supported, 213px); width: 475px; } .framer-RkXzm .framer-l7mtq6-container { height: 450px; } .framer-RkXzm .framer-14o39dp, .framer-RkXzm .framer-1b1gv1a, .framer-RkXzm .framer-1dgasp1, .framer-RkXzm .framer-xdg12e { flex-direction: column; } .framer-RkXzm .framer-1k127cf { flex: none; height: 258px; width: 100%; } .framer-RkXzm .framer-1r7s35s { left: 48%; top: -117px; } .framer-RkXzm .framer-3sc3ay { bottom: unset; left: unset; right: -210px; top: 53%; transform: translateY(-50%); } .framer-RkXzm .framer-ns4vfj { height: 231px; left: 27px; right: 27px; top: calc(52.71317829457367% - 231px / 2); } .framer-RkXzm .framer-1tagloa, .framer-RkXzm .framer-5zcd9w { flex: none; width: 100%; } .framer-RkXzm .framer-1w4k6tn { scroll-margin-top: 120px; } .framer-RkXzm .framer-1pfara3 { top: calc(74.57757296466976% - 0% / 2); } .framer-RkXzm .framer-ywewa4-container, .framer-RkXzm .framer-8lsqi9-container { height: auto; width: 100%; } .framer-RkXzm .framer-cnlnqc, .framer-RkXzm .framer-1791onw { align-content: center; align-items: center; flex: none; width: 100%; } .framer-RkXzm .framer-cs5l4b, .framer-RkXzm .framer-shl2r1 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-RkXzm .framer-t697j2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-RkXzm .framer-1gix2fk-container { align-self: unset; width: 100%; } .framer-RkXzm .framer-1j52pj3-container, .framer-RkXzm .framer-yrqt4m-container, .framer-RkXzm .framer-1h9yigs-container, .framer-RkXzm .framer-15mxtow-container { align-self: unset; } .framer-RkXzm .framer-iax9x4-container { max-width: 100%; } .framer-RkXzm .framer-ox4ql5 { gap: 30px; padding: 0px 0px 100px 0px; scroll-margin-top: 120px; } .framer-RkXzm .framer-1dr4a3n { align-content: center; align-items: center; max-width: 650px; } .framer-RkXzm .framer-1dx026x { align-content: center; align-items: center; } .framer-RkXzm .framer-qtb8yd { aspect-ratio: 1.371647509578544 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 223px); width: 100%; } .framer-RkXzm .framer-jau1hq { flex-direction: column; padding: 25px 0px 25px 0px; } .framer-RkXzm .framer-1n8errm, .framer-RkXzm .framer-183cxrn { gap: 40px; } .framer-RkXzm .framer-n6z7qj-container { height: 60px; right: 0px; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RkXzm .framer-1bksb1y, .framer-RkXzm .framer-14o39dp, .framer-RkXzm .framer-1b1gv1a, .framer-RkXzm .framer-1dgasp1, .framer-RkXzm .framer-t697j2, .framer-RkXzm .framer-ox4ql5, .framer-RkXzm .framer-xdg12e, .framer-RkXzm .framer-jau1hq, .framer-RkXzm .framer-1n8errm, .framer-RkXzm .framer-183cxrn { gap: 0px; } .framer-RkXzm .framer-1bksb1y > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-RkXzm .framer-1bksb1y > :first-child, .framer-RkXzm .framer-14o39dp > :first-child, .framer-RkXzm .framer-1b1gv1a > :first-child, .framer-RkXzm .framer-1dgasp1 > :first-child, .framer-RkXzm .framer-t697j2 > :first-child, .framer-RkXzm .framer-ox4ql5 > :first-child, .framer-RkXzm .framer-xdg12e > :first-child, .framer-RkXzm .framer-jau1hq > :first-child, .framer-RkXzm .framer-1n8errm > :first-child, .framer-RkXzm .framer-183cxrn > :first-child { margin-top: 0px; } .framer-RkXzm .framer-1bksb1y > :last-child, .framer-RkXzm .framer-14o39dp > :last-child, .framer-RkXzm .framer-1b1gv1a > :last-child, .framer-RkXzm .framer-1dgasp1 > :last-child, .framer-RkXzm .framer-t697j2 > :last-child, .framer-RkXzm .framer-ox4ql5 > :last-child, .framer-RkXzm .framer-xdg12e > :last-child, .framer-RkXzm .framer-jau1hq > :last-child, .framer-RkXzm .framer-1n8errm > :last-child, .framer-RkXzm .framer-183cxrn > :last-child { margin-bottom: 0px; } .framer-RkXzm .framer-14o39dp > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-RkXzm .framer-1b1gv1a > *, .framer-RkXzm .framer-1n8errm > *, .framer-RkXzm .framer-183cxrn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-RkXzm .framer-1dgasp1 > *, .framer-RkXzm .framer-ox4ql5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-RkXzm .framer-t697j2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-RkXzm .framer-xdg12e > *, .framer-RkXzm .framer-jau1hq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8604\n * @framerIntrinsicWidth 1360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vWi3wLJHX\":{\"layout\":[\"fixed\",\"auto\"]},\"w01tF5ohw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"zBaLYKIdE\":{\"pattern\":\":zBaLYKIdE\",\"name\":\"demo\"},\"jWYdli4Sm\":{\"pattern\":\":jWYdli4Sm\",\"name\":\"sticky\"},\"ZAkg3ybBg\":{\"pattern\":\":ZAkg3ybBg\",\"name\":\"pain-statement\"},\"Q8sFKoEU8\":{\"pattern\":\":Q8sFKoEU8\",\"name\":\"pain-statement\"},\"mc6YexAfp\":{\"pattern\":\":mc6YexAfp\",\"name\":\"customer-voice\"},\"GtLjm5SL3\":{\"pattern\":\":GtLjm5SL3\",\"name\":\"about-us\"},\"syjVerTuK\":{\"pattern\":\":syjVerTuK\",\"name\":\"pricing\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-RkXzm\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8604,width:1360};addFonts(FrameraugiA20Il,[{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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.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:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Mulish\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mulish/v13/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaWlGrw-PTY.woff2\",weight:\"400\"},{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"}]},...Button2Fonts,...TickerFonts,...EmbedFonts,...HelperSectionHeaderFonts,...CardsBenefitCardFonts,...CardsBenefitCard2Fonts,...CardsBenefitCard3Fonts,...CardsBenefitCard4Fonts,...PhosphorFonts,...CardCustomerFonts,...CardsIntegrationFonts,...CodeBlockFonts,...AccordionFonts,...FooterFonts,...NavbarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vWi3wLJHX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w01tF5ohw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1360\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"zBaLYKIdE\\\":{\\\"pattern\\\":\\\":zBaLYKIdE\\\",\\\"name\\\":\\\"demo\\\"},\\\"jWYdli4Sm\\\":{\\\"pattern\\\":\\\":jWYdli4Sm\\\",\\\"name\\\":\\\"sticky\\\"},\\\"ZAkg3ybBg\\\":{\\\"pattern\\\":\\\":ZAkg3ybBg\\\",\\\"name\\\":\\\"pain-statement\\\"},\\\"Q8sFKoEU8\\\":{\\\"pattern\\\":\\\":Q8sFKoEU8\\\",\\\"name\\\":\\\"pain-statement\\\"},\\\"mc6YexAfp\\\":{\\\"pattern\\\":\\\":mc6YexAfp\\\",\\\"name\\\":\\\"customer-voice\\\"},\\\"GtLjm5SL3\\\":{\\\"pattern\\\":\\\":GtLjm5SL3\\\",\\\"name\\\":\\\"about-us\\\"},\\\"syjVerTuK\\\":{\\\"pattern\\\":\\\":syjVerTuK\\\",\\\"name\\\":\\\"pricing\\\"}}\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8604\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "heading", "height", "icon", "id", "link", "newTab", "paragraph", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NP4MxDDJs", "NgZL_u_q8", "yA0Mh0FH_", "zx0eaZdMx", "C2TFygOB0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramercLvm5tXte", "withCSS", "cLvm5tXte_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "contentTitle", "height", "icon", "id", "jobRole", "name1", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DzvKl0u04", "g2IJU75wC", "rztfZotJp", "JlXqlvWgM", "t32gC6pas", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerCnQdZ8QF0", "withCSS", "CnQdZ8QF0_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jb8Mxsp1i", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "css", "FramerHjbChiWLN", "withCSS", "HjbChiWLN_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jb8Mxsp1i", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "css", "FramerhKJ_pQ9RJ", "withCSS", "hKJ_pQ9RJ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapb2xht4", "args", "onTap1rdb6md", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "Framera78ymcduq", "withCSS", "a78ymcduq_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "a78ymcduq_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "a78ymcduq_default", "css", "FramerK0f1G3sw4", "withCSS", "K0f1G3sw4_default", "addFonts", "RowFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jb8Mxsp1i", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "css", "FramerKI2yaJTfK", "withCSS", "KI2yaJTfK_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "text", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Sp0LUw54y", "jb8Mxsp1i", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerXiDwtfdpj", "withCSS", "XiDwtfdpj_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFX", "withFX", "Image2", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "Button2Fonts", "getFonts", "aj9lG42lT_default", "MotionDivWithOptimizedAppearEffect", "motion", "TickerFonts", "Ticker", "EmbedFonts", "Embed", "MotionDivWithFX", "HelperSectionHeaderFonts", "C9Zr0BI8m_default", "CardsBenefitCardFonts", "XiDwtfdpj_default", "CardsBenefitCard2Fonts", "HjbChiWLN_default", "CardsBenefitCard3Fonts", "hKJ_pQ9RJ_default", "CardsBenefitCard4Fonts", "KI2yaJTfK_default", "PhosphorFonts", "Icon", "CardCustomerFonts", "CnQdZ8QF0_default", "CardsIntegrationFonts", "cLvm5tXte_default", "CodeBlockFonts", "CodeBlock_default", "AccordionFonts", "K0f1G3sw4_default", "ContainerWithFX", "Container", "FooterFonts", "T8wCGyhjg_default", "NavbarFonts", "xSXZtUjKT_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "animation7", "animation8", "animation9", "addImageAlt", "image", "alt", "animation10", "transition5", "animation11", "animation12", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "router", "useRouter", "elementId6", "ref7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "SVG", "PropertyOverrides2", "x", "ComponentViewportProvider", "Link", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
