{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.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/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/tXrbXBE75si9V3XhlpSS/rPMWDdUIGHegQfcTaU8A/An_WrdDP7.js", "ssg:https://framerusercontent.com/modules/4U0gNMk8cFlxQgYl4PDN/DHmexHNbggFrdU5vmDMA/BFXWR6J47.js", "ssg:https://framerusercontent.com/modules/e9CQ4byHC6SiC2ngjIb8/onITnuLjtrCYp3axzZLl/sj87_smCl.js", "ssg:https://framerusercontent.com/modules/KbsnscrZyCdMjJsnO6Av/mZp7SINB6nZ48gfWJzZ0/TdJ2zQB9G.js", "ssg:https://framerusercontent.com/modules/7kd5SglcTPlyk7bPwwZ9/jMPRwDyeTsmTZ8rlPv8u/uOGvvkAru.js", "ssg:https://framerusercontent.com/modules/yRknDPPrbfhoDXdyFZSN/XFDRoGCpJbgDcksyAiDj/wHEZ6NkMH.js", "ssg:https://framerusercontent.com/modules/w3NoAzrahlhE3goLQHBU/uIze6j9G302CywZlglLp/Y1UR2y0W_.js", "ssg:https://framerusercontent.com/modules/eqLx0OQKyAAbyGHNKSp0/iJHGP5POHCXadsbBlZzy/drNwxem2Y.js", "ssg:https://framerusercontent.com/modules/e8Nzg3f7stF9vY93G95r/IbYJXhPAwJvcLM0uo4xD/EW7y2ZIXg.js", "ssg:https://framerusercontent.com/modules/kLWBYoN2cj9lAws19p9Y/OZekxF10S0zUOIpasAB4/OwUUArcJc.js", "ssg:https://framerusercontent.com/modules/iwlreINWHDG496A49ih9/lYaTzMptPImlZZ1uwHV4/Fmiqlgvwt.js", "ssg:https://framerusercontent.com/modules/mEz3NSRmoDEhdWe3eIG7/BWfYfrQReHVrHKg5JtQA/nlmTUx67C.js", "ssg:https://framerusercontent.com/modules/E8zXzHeJkOcUEnGJaJpY/nH59eViwnA5tV9bSyRKF/nOc71lskF.js", "ssg:https://framerusercontent.com/modules/Kp2VU57uu83snFUG4Nk4/sIiLcAf8cXu7MqqM3aZd/vwd9GHTJP.js", "ssg:https://framerusercontent.com/modules/eMj5gV3lNT6QSRxvMg0U/33IFMRHYBSRtbxbHddnI/wXlJ3V0RH.js", "ssg:https://framerusercontent.com/modules/3Hnb2BoI0RltXHY9zmPZ/Re5Vk9kCORf5de08xGcO/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 isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);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 r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}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,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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)})},index+\"-original\");});}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:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0623976)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1AChUjYLDZDZQCINBCkD/MAFK8FZzL6GQncc9g0wr/v4PWmgpAs.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const serializationHash=\"framer-Khm0S\";const variantClassNames={YFGocnLV5:\"framer-v-15d3eej\"};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 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=({height,icon,id,title,width,...props})=>{var _ref,_ref1;return{...props,D8OrFd5wi:(_ref=icon!==null&&icon!==void 0?icon:props.D8OrFd5wi)!==null&&_ref!==void 0?_ref:\"TextAUnderline\",I9FpWctAA:(_ref1=title!==null&&title!==void 0?title:props.I9FpWctAA)!==null&&_ref1!==void 0?_ref1:\"Text\"};};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,D8OrFd5wi,I9FpWctAA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YFGocnLV5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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-15d3eej\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YFGocnLV5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-837cf3f0-d086-4476-ba7d-8408c733c615, rgb(20, 20, 23))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mpfrup-container\",layoutDependency:layoutDependency,layoutId:\"masPMcpHW-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ff1475bf-ed84-4f1a-8ac4-a73aae2dbbed, rgb(234, 168, 121))\",height:\"100%\",iconSearch:\"House\",iconSelection:D8OrFd5wi,id:\"masPMcpHW\",layoutId:\"masPMcpHW\",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(motion.p,{className:\"framer-styles-preset-1dkk44e\",\"data-styles-preset\":\"v4PWmgpAs\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"Text\"})}),className:\"framer-3t50yo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HAn2YWgD0\",style:{\"--extracted-r6o4lv\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:I9FpWctAA,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Khm0S.framer-giimj7, .framer-Khm0S .framer-giimj7 { display: block; }\",\".framer-Khm0S.framer-15d3eej { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 16px 6px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Khm0S .framer-1mpfrup-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-Khm0S .framer-3t50yo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Khm0S.framer-15d3eej { gap: 0px; } .framer-Khm0S.framer-15d3eej > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Khm0S.framer-15d3eej > :first-child { margin-left: 0px; } .framer-Khm0S.framer-15d3eej > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33\n * @framerIntrinsicWidth 84\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"D8OrFd5wi\":\"icon\",\"I9FpWctAA\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAn_WrdDP7=withCSS(Component,css,\"framer-Khm0S\");export default FramerAn_WrdDP7;FramerAn_WrdDP7.displayName=\"Feature badge\";FramerAn_WrdDP7.defaultProps={height:33,width:84};addPropertyControls(FramerAn_WrdDP7,{D8OrFd5wi:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"TextAUnderline\",description:undefined,hidden:undefined,title:\"Icon\"},I9FpWctAA:{defaultValue:\"Text\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerAn_WrdDP7,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAn_WrdDP7\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"33\",\"framerVariables\":\"{\\\"D8OrFd5wi\\\":\\\"icon\\\",\\\"I9FpWctAA\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"84\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./An_WrdDP7.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./BFXWR6J47-0.js\";const cycleOrder=[\"W7yrKp3l7\",\"F2T69k7A6\",\"kYPHehbAd\",\"yst00cklH\",\"KvwSHdR_y\",\"RnZY_uYSn\"];const serializationHash=\"framer-jJHLf\";const variantClassNames={F2T69k7A6:\"framer-v-148n39q\",KvwSHdR_y:\"framer-v-hq31rj\",kYPHehbAd:\"framer-v-59qesi\",RnZY_uYSn:\"framer-v-11nn8pa\",W7yrKp3l7:\"framer-v-5vh0yk\",yst00cklH:\"framer-v-ms3v6p\"};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 valuesByLocaleId={cjIgMneo9:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"W7yrKp3l7\",\"Desktop 2\":\"F2T69k7A6\",\"Desktop 3\":\"kYPHehbAd\",\"Mobile 1\":\"yst00cklH\",\"Mobile 2\":\"KvwSHdR_y\",\"Mobile 3\":\"RnZY_uYSn\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"W7yrKp3l7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"W7yrKp3l7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearp032uo=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"F2T69k7A6\"),3e3);});const onAppear1y1sa1c=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kYPHehbAd\"),3e3);});const onAppear1fzdbkw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"W7yrKp3l7\"),3e3);});const onAppear1uwogty=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KvwSHdR_y\"),3e3);});const onAppearr812s8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"RnZY_uYSn\"),3e3);});const onAppearp2vdcu=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"yst00cklH\"),3e3);});useOnVariantChange(baseVariant,{default:onAppearp032uo,F2T69k7A6:onAppear1y1sa1c,KvwSHdR_y:onAppearr812s8,kYPHehbAd:onAppear1fzdbkw,RnZY_uYSn:onAppearp2vdcu,yst00cklH:onAppear1uwogty});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-5vh0yk\",className,classNames),\"data-framer-name\":\"Desktop 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"W7yrKp3l7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({F2T69k7A6:{\"data-framer-name\":\"Desktop 2\"},KvwSHdR_y:{\"data-framer-name\":\"Mobile 2\"},kYPHehbAd:{\"data-framer-name\":\"Desktop 3\"},RnZY_uYSn:{\"data-framer-name\":\"Mobile 3\"},yst00cklH:{\"data-framer-name\":\"Mobile 1\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-168)),pixelHeight:1440,pixelWidth:1280,sizes:\"302px\",src:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp\",srcSet:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp 1280w\"},className:\"framer-jrtqsg\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"kPMR1FlWi\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,filter:\"blur(2px)\",opacity:.3,WebkitFilter:\"blur(2px)\"},transformTemplate:transformTemplate1,variants:{F2T69k7A6:{filter:\"blur(0px)\",opacity:1,WebkitFilter:\"blur(0px)\"},KvwSHdR_y:{filter:\"blur(0px)\",opacity:1,WebkitFilter:\"blur(0px)\"}},...addPropertyOverrides({F2T69k7A6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-210)),pixelHeight:1440,pixelWidth:1280,sizes:\"378px\",src:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp\",srcSet:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp 1280w\"}},KvwSHdR_y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||260)*.5000000000000002-130.5)),pixelHeight:1440,pixelWidth:1280,sizes:\"235px\",src:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp\",srcSet:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp 1280w\"}},kYPHehbAd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-164.75)),pixelHeight:1440,pixelWidth:1280,sizes:\"296px\",src:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp\",srcSet:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp 1280w\"}},RnZY_uYSn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||260)*.5000000000000002-99.5)),pixelHeight:1440,pixelWidth:1280,sizes:\"179px\",src:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp\",srcSet:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp 1280w\"}},yst00cklH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||260)*.5000000000000002-101.25)),pixelHeight:1440,pixelWidth:1280,sizes:\"182px\",src:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp\",srcSet:\"https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/a3pzkQHzXU0cJDgsDVDWdbzgfE.webp 1280w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-167.5548172757475)),pixelHeight:1600,pixelWidth:1280,sizes:\"302px\",src:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp\",srcSet:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp?scale-down-to=1024 819w,https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp 1280w\"},className:\"framer-w08v7x\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"F2EJBOzQl\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,filter:\"blur(2px)\",opacity:.3,WebkitFilter:\"blur(2px)\"},transformTemplate:transformTemplate1,variants:{kYPHehbAd:{filter:\"blur(0px)\",opacity:1,WebkitFilter:\"blur(0px)\"},RnZY_uYSn:{filter:\"blur(0px)\",opacity:1,WebkitFilter:\"blur(0px)\"}},...addPropertyOverrides({F2T69k7A6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-166)),pixelHeight:1600,pixelWidth:1280,sizes:\"299px\",src:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp\",srcSet:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp?scale-down-to=1024 819w,https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp 1280w\"}},KvwSHdR_y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||260)*.5000000000000002-100.5)),pixelHeight:1600,pixelWidth:1280,sizes:\"181px\",src:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp\",srcSet:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp?scale-down-to=1024 819w,https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp 1280w\"}},kYPHehbAd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-210)),pixelHeight:1600,pixelWidth:1280,sizes:\"378px\",src:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp\",srcSet:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp?scale-down-to=1024 819w,https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp 1280w\"}},RnZY_uYSn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||260)*.5000000000000002-130.5)),pixelHeight:1600,pixelWidth:1280,sizes:\"235px\",src:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp\",srcSet:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp?scale-down-to=1024 819w,https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp 1280w\"}},yst00cklH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||260)*.5000000000000002-100.5)),pixelHeight:1600,pixelWidth:1280,sizes:\"181px\",src:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp\",srcSet:\"https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp?scale-down-to=1024 819w,https://framerusercontent.com/images/QXcqwykmqFqYoAhNvzwR4lk4Jgo.webp 1280w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-210)),pixelHeight:1440,pixelWidth:1280,sizes:\"379px\",src:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp\",srcSet:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp 1280w\"},className:\"framer-18e2kfw\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"vMM5MPTla\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,filter:\"blur(0px)\",opacity:1,WebkitFilter:\"blur(0px)\"},transformTemplate:transformTemplate1,variants:{F2T69k7A6:{filter:\"blur(2px)\",opacity:.3,WebkitFilter:\"blur(2px)\"},KvwSHdR_y:{filter:\"blur(2px)\",opacity:.3,WebkitFilter:\"blur(2px)\"},kYPHehbAd:{filter:\"blur(2px)\",opacity:.3,WebkitFilter:\"blur(2px)\"},RnZY_uYSn:{filter:\"blur(2px)\",opacity:.3,WebkitFilter:\"blur(2px)\"}},...addPropertyOverrides({F2T69k7A6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.49761904761904785-167.25)),pixelHeight:1440,pixelWidth:1280,sizes:\"302px\",src:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp\",srcSet:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp 1280w\"}},KvwSHdR_y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||260)*.4961538461538464-100.25)),pixelHeight:1440,pixelWidth:1280,sizes:\"181px\",src:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp\",srcSet:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp 1280w\"}},kYPHehbAd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.4928571428571431-167.25)),pixelHeight:1440,pixelWidth:1280,sizes:\"302px\",src:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp\",srcSet:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp 1280w\"}},RnZY_uYSn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||260)*.4961538461538464-100.25)),pixelHeight:1440,pixelWidth:1280,sizes:\"181px\",src:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp\",srcSet:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp 1280w\"}},yst00cklH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||260)*.5000000000000002-130.25)),pixelHeight:1440,pixelWidth:1280,sizes:\"235px\",src:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp\",srcSet:\"https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp?scale-down-to=1024 910w,https://framerusercontent.com/images/W5CWioaSQaNq2fo2tLcjBIAoKjs.webp 1280w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jJHLf.framer-1jgo1t0, .framer-jJHLf .framer-1jgo1t0 { display: block; }\",\".framer-jJHLf.framer-5vh0yk { height: 420px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-jJHLf .framer-jrtqsg { aspect-ratio: 0.8988095238095238 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 336px); left: 73%; overflow: hidden; position: absolute; top: 50%; width: 302px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-jJHLf .framer-w08v7x { aspect-ratio: 0.9011976047904192 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 335px); left: 27%; overflow: hidden; position: absolute; top: 50%; width: 302px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-jJHLf .framer-18e2kfw { aspect-ratio: 0.9023809523809524 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 420px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 379px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-jJHLf.framer-v-148n39q .framer-jrtqsg { height: var(--framer-aspect-ratio-supported, 421px); left: 50%; width: 378px; z-index: 1; }\",\".framer-jJHLf.framer-v-148n39q .framer-w08v7x { height: var(--framer-aspect-ratio-supported, 332px); left: 74%; width: 299px; }\",\".framer-jJHLf.framer-v-148n39q .framer-18e2kfw { height: var(--framer-aspect-ratio-supported, 335px); left: 27%; top: 50%; width: 302px; z-index: 0; }\",\".framer-jJHLf.framer-v-59qesi .framer-jrtqsg { height: var(--framer-aspect-ratio-supported, 330px); left: 26%; width: 296px; }\",\".framer-jJHLf.framer-v-59qesi .framer-w08v7x { height: var(--framer-aspect-ratio-supported, 420px); left: 50%; width: 378px; z-index: 1; }\",\".framer-jJHLf.framer-v-59qesi .framer-18e2kfw { height: var(--framer-aspect-ratio-supported, 335px); left: 73%; top: 49%; width: 302px; z-index: 0; }\",\".framer-jJHLf.framer-v-ms3v6p.framer-5vh0yk, .framer-jJHLf.framer-v-hq31rj.framer-5vh0yk, .framer-jJHLf.framer-v-11nn8pa.framer-5vh0yk { height: 260px; width: 358px; }\",\".framer-jJHLf.framer-v-ms3v6p .framer-jrtqsg { height: var(--framer-aspect-ratio-supported, 203px); left: 73%; width: 182px; }\",\".framer-jJHLf.framer-v-ms3v6p .framer-w08v7x { height: var(--framer-aspect-ratio-supported, 201px); left: 25%; width: 181px; }\",\".framer-jJHLf.framer-v-ms3v6p .framer-18e2kfw { height: var(--framer-aspect-ratio-supported, 261px); width: 235px; }\",\".framer-jJHLf.framer-v-hq31rj .framer-jrtqsg { height: var(--framer-aspect-ratio-supported, 262px); left: 50%; width: 235px; z-index: 1; }\",\".framer-jJHLf.framer-v-hq31rj .framer-w08v7x { height: var(--framer-aspect-ratio-supported, 201px); left: 75%; width: 181px; }\",\".framer-jJHLf.framer-v-hq31rj .framer-18e2kfw { height: var(--framer-aspect-ratio-supported, 201px); left: 25%; top: 50%; width: 181px; z-index: 0; }\",\".framer-jJHLf.framer-v-11nn8pa .framer-jrtqsg { height: var(--framer-aspect-ratio-supported, 199px); left: 25%; width: 179px; }\",\".framer-jJHLf.framer-v-11nn8pa .framer-w08v7x { height: var(--framer-aspect-ratio-supported, 261px); left: 50%; width: 235px; z-index: 1; }\",\".framer-jJHLf.framer-v-11nn8pa .framer-18e2kfw { height: var(--framer-aspect-ratio-supported, 201px); left: 75%; top: 50%; width: 181px; z-index: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 420\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"F2T69k7A6\":{\"layout\":[\"fixed\",\"fixed\"]},\"kYPHehbAd\":{\"layout\":[\"fixed\",\"fixed\"]},\"yst00cklH\":{\"layout\":[\"fixed\",\"fixed\"]},\"KvwSHdR_y\":{\"layout\":[\"fixed\",\"fixed\"]},\"RnZY_uYSn\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBFXWR6J47=withCSS(Component,css,\"framer-jJHLf\");export default FramerBFXWR6J47;FramerBFXWR6J47.displayName=\"Hero image\";FramerBFXWR6J47.defaultProps={height:420,width:1200};addPropertyControls(FramerBFXWR6J47,{variant:{options:[\"W7yrKp3l7\",\"F2T69k7A6\",\"kYPHehbAd\",\"yst00cklH\",\"KvwSHdR_y\",\"RnZY_uYSn\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Desktop 3\",\"Mobile 1\",\"Mobile 2\",\"Mobile 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBFXWR6J47,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBFXWR6J47\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"420\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F2T69k7A6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kYPHehbAd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yst00cklH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KvwSHdR_y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RnZY_uYSn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BFXWR6J47.map", "// Generated by Framer (e4277c8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-bold\",\"FS;Manrope-extrabold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7EWHG4AMROQSXDCQTDPGBVASATB7CED2/TJSQTK5FHJ2MYKML5IXF2G6YTGFJLTYL/K4ZMLVLHYIFVTTTWGVOTVGOFUUX7NVGI.woff2\",weight:\"800\"}]}];export const css=['.framer-czrJn .framer-styles-preset-1h7iizx:not(.rich-text-wrapper), .framer-czrJn .framer-styles-preset-1h7iizx.rich-text-wrapper h5 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-czrJn .framer-styles-preset-1h7iizx:not(.rich-text-wrapper), .framer-czrJn .framer-styles-preset-1h7iizx.rich-text-wrapper h5 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-czrJn .framer-styles-preset-1h7iizx:not(.rich-text-wrapper), .framer-czrJn .framer-styles-preset-1h7iizx.rich-text-wrapper h5 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-czrJn\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68888f7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-K1T1h .framer-styles-preset-icgf1c:not(.rich-text-wrapper), .framer-K1T1h .framer-styles-preset-icgf1c.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-K1T1h\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d31cd55)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-regular\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-8pqQx .framer-styles-preset-n8hqep:not(.rich-text-wrapper), .framer-8pqQx .framer-styles-preset-n8hqep.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, #687278); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-8pqQx\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e4277c8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-bold\",\"FS;Manrope-extrabold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7EWHG4AMROQSXDCQTDPGBVASATB7CED2/TJSQTK5FHJ2MYKML5IXF2G6YTGFJLTYL/K4ZMLVLHYIFVTTTWGVOTVGOFUUX7NVGI.woff2\",weight:\"800\"}]}];export const css=['.framer-UgnG9 .framer-styles-preset-1obc3pe:not(.rich-text-wrapper), .framer-UgnG9 .framer-styles-preset-1obc3pe.rich-text-wrapper h4 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-UgnG9 .framer-styles-preset-1obc3pe:not(.rich-text-wrapper), .framer-UgnG9 .framer-styles-preset-1obc3pe.rich-text-wrapper h4 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-UgnG9 .framer-styles-preset-1obc3pe:not(.rich-text-wrapper), .framer-UgnG9 .framer-styles-preset-1obc3pe.rich-text-wrapper h4 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-UgnG9\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e4277c8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-bold\",\"FS;Manrope-extrabold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7EWHG4AMROQSXDCQTDPGBVASATB7CED2/TJSQTK5FHJ2MYKML5IXF2G6YTGFJLTYL/K4ZMLVLHYIFVTTTWGVOTVGOFUUX7NVGI.woff2\",weight:\"800\"}]}];export const css=['.framer-CkWfB .framer-styles-preset-bhpk9h:not(.rich-text-wrapper), .framer-CkWfB .framer-styles-preset-bhpk9h.rich-text-wrapper h6 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-CkWfB .framer-styles-preset-bhpk9h:not(.rich-text-wrapper), .framer-CkWfB .framer-styles-preset-bhpk9h.rich-text-wrapper h6 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-CkWfB .framer-styles-preset-bhpk9h:not(.rich-text-wrapper), .framer-CkWfB .framer-styles-preset-bhpk9h.rich-text-wrapper h6 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-CkWfB\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/cHAjKowB56ULf7ejJAeq/UO0sNVaBrfIfzujGhw3Q/CHX4TW73y.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pkKUzgXoCAPwFVfDi3uO/oHSmsc6fARQp1wZR13OY/GUmqEicwe.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/8BexXKyK4EZu68t9YTj7/IVRjHBcNE73cuiQJjjtX/KRqmZpwbm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8TGiTLFIX3ZvNdPcykld/GFn6vJ2g7XQbUex1L8vl/NqE6zDPgU.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/e9CQ4byHC6SiC2ngjIb8/onITnuLjtrCYp3axzZLl/sj87_smCl.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/KbsnscrZyCdMjJsnO6Av/mZp7SINB6nZ48gfWJzZ0/TdJ2zQB9G.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/7kd5SglcTPlyk7bPwwZ9/jMPRwDyeTsmTZ8rlPv8u/uOGvvkAru.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/yRknDPPrbfhoDXdyFZSN/XFDRoGCpJbgDcksyAiDj/wHEZ6NkMH.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/w3NoAzrahlhE3goLQHBU/uIze6j9G302CywZlglLp/Y1UR2y0W_.js\";const cycleOrder=[\"OOmcaAKLh\",\"Zc25tN1wD\"];const serializationHash=\"framer-5Kil9\";const variantClassNames={OOmcaAKLh:\"framer-v-omnz8u\",Zc25tN1wD:\"framer-v-194dlvf\"};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 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={Desktop:\"OOmcaAKLh\",Mobile:\"Zc25tN1wD\"};const getProps=({content,height,id,image,name1,position,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,KFjlirc0G:(_ref=position!==null&&position!==void 0?position:props.KFjlirc0G)!==null&&_ref!==void 0?_ref:\"Product Owner\",qfJXoKuLm:(_ref1=content!==null&&content!==void 0?content:props.qfJXoKuLm)!==null&&_ref1!==void 0?_ref1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:'\"I recently implemented this software in our workflow, and it\u2019s been transformative. The intuitive interface and powerful automation have saved us so much time. It\\'s a must-have for any growing business.\"'})}),TbHlJSy3B:(_ref2=image!==null&&image!==void 0?image:props.TbHlJSy3B)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/mTZh1ygmWi4iqXBmDmnhOZRoVyo.png\"},variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"OOmcaAKLh\",zg0t7MC_Q:(_ref4=name1!==null&&name1!==void 0?name1:props.zg0t7MC_Q)!==null&&_ref4!==void 0?_ref4:\"Lucas\"};};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,zg0t7MC_Q,KFjlirc0G,TbHlJSy3B,qfJXoKuLm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OOmcaAKLh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];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-omnz8u\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"OOmcaAKLh\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(48, 50, 54))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4f70b3eb-e9f7-4fc2-88a0-8b6948a44720, rgb(14, 14, 16))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({Zc25tN1wD:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:qfJXoKuLm,className:\"framer-1kpxyo6\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wbQ29x6Kx\",style:{\"--extracted-r6o4lv\":\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\",\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-2wplth\",h1:\"framer-styles-preset-cuixv9\",h2:\"framer-styles-preset-1qqhcei\",h3:\"framer-styles-preset-icgf1c\",h4:\"framer-styles-preset-1obc3pe\",h5:\"framer-styles-preset-1h7iizx\",h6:\"framer-styles-preset-bhpk9h\",p:\"framer-styles-preset-pz5li8\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-urpcwt\",\"data-framer-name\":\"User profile\",layoutDependency:layoutDependency,layoutId:\"bAZAtZ4Sa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+88),pixelHeight:112,pixelWidth:112,sizes:\"42px\",...toResponsiveImage(TbHlJSy3B),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ev6cve\",\"data-framer-name\":\"Profile image\",layoutDependency:layoutDependency,layoutId:\"V1GDFI4uv\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({Zc25tN1wD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+0+88),pixelHeight:112,pixelWidth:112,sizes:\"42px\",...toResponsiveImage(TbHlJSy3B),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mjv6k1\",\"data-framer-name\":\"Name wrapper\",layoutDependency:layoutDependency,layoutId:\"DfwKPr_A4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"Lucas\"})}),className:\"framer-17c6b60\",\"data-framer-name\":\"Full name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oElXP8pAO\",style:{\"--extracted-r6o4lv\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\"},text:zg0t7MC_Q,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-n8hqep\",\"data-styles-preset\":\"uOGvvkAru\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120)))\"},children:\"Product Owner\"})}),className:\"framer-bbgl82\",\"data-framer-name\":\"Position\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vtlIbghtM\",style:{\"--extracted-r6o4lv\":\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\"},text:KFjlirc0G,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5Kil9.framer-1pum788, .framer-5Kil9 .framer-1pum788 { display: block; }\",\".framer-5Kil9.framer-omnz8u { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 24px; position: relative; width: 500px; }\",\".framer-5Kil9 .framer-1kpxyo6, .framer-5Kil9 .framer-17c6b60, .framer-5Kil9 .framer-bbgl82 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5Kil9 .framer-urpcwt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5Kil9 .framer-ev6cve { flex: none; height: 42px; position: relative; width: 42px; }\",\".framer-5Kil9 .framer-1mjv6k1 { 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; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5Kil9.framer-omnz8u, .framer-5Kil9 .framer-urpcwt, .framer-5Kil9 .framer-1mjv6k1 { gap: 0px; } .framer-5Kil9.framer-omnz8u > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-5Kil9.framer-omnz8u > :first-child, .framer-5Kil9 .framer-1mjv6k1 > :first-child { margin-top: 0px; } .framer-5Kil9.framer-omnz8u > :last-child, .framer-5Kil9 .framer-1mjv6k1 > :last-child { margin-bottom: 0px; } .framer-5Kil9 .framer-urpcwt > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-5Kil9 .framer-urpcwt > :first-child { margin-left: 0px; } .framer-5Kil9 .framer-urpcwt > :last-child { margin-right: 0px; } .framer-5Kil9 .framer-1mjv6k1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-5Kil9.framer-v-194dlvf.framer-omnz8u { padding: 16px; width: 310px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-5Kil9[data-border=\"true\"]::after, .framer-5Kil9 [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 210\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Zc25tN1wD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zg0t7MC_Q\":\"name1\",\"KFjlirc0G\":\"position\",\"TbHlJSy3B\":\"image\",\"qfJXoKuLm\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdrNwxem2Y=withCSS(Component,css,\"framer-5Kil9\");export default FramerdrNwxem2Y;FramerdrNwxem2Y.displayName=\"Testimonial item\";FramerdrNwxem2Y.defaultProps={height:210,width:500};addPropertyControls(FramerdrNwxem2Y,{variant:{options:[\"OOmcaAKLh\",\"Zc25tN1wD\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},zg0t7MC_Q:{defaultValue:\"Lucas\",displayTextArea:false,title:\"Name\",type:ControlType.String},KFjlirc0G:{defaultValue:\"Product Owner\",displayTextArea:false,title:\"Position\",type:ControlType.String},TbHlJSy3B:{__defaultAssetReference:\"data:framer/asset-reference,mTZh1ygmWi4iqXBmDmnhOZRoVyo.png?originalFilename=Ellipse-1.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},qfJXoKuLm:{defaultValue:'<p>\"I recently implemented this software in our workflow, and it\u2019s been transformative. The intuitive interface and powerful automation have saved us so much time. It\\'s a must-have for any growing business.\"</p>',title:\"Content\",type:ControlType.RichText}});addFonts(FramerdrNwxem2Y,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdrNwxem2Y\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zc25tN1wD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"500\",\"framerIntrinsicHeight\":\"210\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"zg0t7MC_Q\\\":\\\"name1\\\",\\\"KFjlirc0G\\\":\\\"position\\\",\\\"TbHlJSy3B\\\":\\\"image\\\",\\\"qfJXoKuLm\\\":\\\"content\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./drNwxem2Y.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1AChUjYLDZDZQCINBCkD/MAFK8FZzL6GQncc9g0wr/v4PWmgpAs.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/w3NoAzrahlhE3goLQHBU/uIze6j9G302CywZlglLp/Y1UR2y0W_.js\";const PhosphorFonts=getFonts(Phosphor);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"Jlqj6D1Yk\",\"LNz3RwsxZ\"];const serializationHash=\"framer-RRpEu\";const variantClassNames={Jlqj6D1Yk:\"framer-v-1u5ux0a\",LNz3RwsxZ:\"framer-v-yg8c33\"};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 transition2={delay:.1,duration:.7,ease:[.61,.01,.62,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};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={Desktop:\"Jlqj6D1Yk\",Mobile:\"LNz3RwsxZ\"};const getProps=({height,icon,id,paragraph,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,mw_JCktF7:(_ref=title!==null&&title!==void 0?title:props.mw_JCktF7)!==null&&_ref!==void 0?_ref:\"Effortless Setup\",nSoKekbEi:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.nSoKekbEi)!==null&&_ref1!==void 0?_ref1:\"Yahoo! or Google Finance can offer a wide range of data but often come with ads and frustrating delays. Fey provides a streamlined, ad-free experience with real-time data.\",uXtGFYA1z:(_ref2=icon!==null&&icon!==void 0?icon:props.uXtGFYA1z)!==null&&_ref2!==void 0?_ref2:\"Rocket\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"Jlqj6D1Yk\"};};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,uXtGFYA1z,mw_JCktF7,nSoKekbEi,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Jlqj6D1Yk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-1u5ux0a\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Jlqj6D1Yk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({LNz3RwsxZ:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mneos8-container\",layoutDependency:layoutDependency,layoutId:\"t89wbmRAv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ff1475bf-ed84-4f1a-8ac4-a73aae2dbbed, rgb(234, 168, 121))\",height:\"100%\",iconSearch:\"House\",iconSelection:uXtGFYA1z,id:\"t89wbmRAv\",layoutId:\"t89wbmRAv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-bhpk9h\",\"data-styles-preset\":\"Y1UR2y0W_\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"Effortless Setup\"})}),className:\"framer-1ab69f9\",\"data-framer-appear-id\":\"1ab69f9\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"elLR_XkM6\",optimized:true,style:{\"--extracted-1w1cjl5\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mw_JCktF7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dkk44e\",\"data-styles-preset\":\"v4PWmgpAs\",children:\"Yahoo! or Google Finance can offer a wide range of data but often come with ads and frustrating delays. Fey provides a streamlined, ad-free experience with real-time data.\"})}),className:\"framer-1ywzvt3\",\"data-framer-appear-id\":\"1ywzvt3\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"QJPu7fEhO\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:nSoKekbEi,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RRpEu.framer-12aq00p, .framer-RRpEu .framer-12aq00p { display: block; }\",\".framer-RRpEu.framer-1u5ux0a { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 32px; position: relative; width: 379px; }\",\".framer-RRpEu .framer-mneos8-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-RRpEu .framer-1ab69f9 { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RRpEu .framer-1ywzvt3 { 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-RRpEu.framer-1u5ux0a { gap: 0px; } .framer-RRpEu.framer-1u5ux0a > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-RRpEu.framer-1u5ux0a > :first-child { margin-top: 0px; } .framer-RRpEu.framer-1u5ux0a > :last-child { margin-bottom: 0px; } }\",\".framer-RRpEu.framer-v-yg8c33.framer-1u5ux0a { padding: 32px 0px 32px 0px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 225.5\n * @framerIntrinsicWidth 378.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LNz3RwsxZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"uXtGFYA1z\":\"icon\",\"mw_JCktF7\":\"title\",\"nSoKekbEi\":\"paragraph\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEW7y2ZIXg=withCSS(Component,css,\"framer-RRpEu\");export default FramerEW7y2ZIXg;FramerEW7y2ZIXg.displayName=\"Feature item\";FramerEW7y2ZIXg.defaultProps={height:225.5,width:378.5};addPropertyControls(FramerEW7y2ZIXg,{variant:{options:[\"Jlqj6D1Yk\",\"LNz3RwsxZ\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},uXtGFYA1z:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Rocket\",description:undefined,hidden:undefined,title:\"Icon\"},mw_JCktF7:{defaultValue:\"Effortless Setup\",displayTextArea:false,title:\"Title\",type:ControlType.String},nSoKekbEi:{defaultValue:\"Yahoo! or Google Finance can offer a wide range of data but often come with ads and frustrating delays. Fey provides a streamlined, ad-free experience with real-time data.\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String}});addFonts(FramerEW7y2ZIXg,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEW7y2ZIXg\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"225.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LNz3RwsxZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"uXtGFYA1z\\\":\\\"icon\\\",\\\"mw_JCktF7\\\":\\\"title\\\",\\\"nSoKekbEi\\\":\\\"paragraph\\\"}\",\"framerIntrinsicWidth\":\"378.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EW7y2ZIXg.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/8BexXKyK4EZu68t9YTj7/IVRjHBcNE73cuiQJjjtX/KRqmZpwbm.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1AChUjYLDZDZQCINBCkD/MAFK8FZzL6GQncc9g0wr/v4PWmgpAs.js\";const cycleOrder=[\"jI3r0lm0B\",\"hJ80RO746\"];const serializationHash=\"framer-5M6Cz\";const variantClassNames={hJ80RO746:\"framer-v-1ibf4t\",jI3r0lm0B:\"framer-v-1i7si7\"};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={duration:0,type:\"tween\"};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:\"jI3r0lm0B\",Open:\"hJ80RO746\"};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:\"jI3r0lm0B\",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:\"jI3r0lm0B\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapo0gb0n=activeVariantCallback(async(...args)=>{setVariant(\"hJ80RO746\");});const onTap12jrw5e=activeVariantCallback(async(...args)=>{setVariant(\"jI3r0lm0B\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"hJ80RO746\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-1i7si7\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"jI3r0lm0B\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({hJ80RO746:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-elvhaj\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hQceUuM60\",onTap:onTapo0gb0n,...addPropertyOverrides({hJ80RO746:{onTap:onTap12jrw5e}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-ks05xd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l5Usn8SVM\",style:{\"--extracted-r6o4lv\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vrff1v\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"hmtK49ZZ5\",style:{opacity:.3,rotate:0},variants:{hJ80RO746:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w0s6qg\",layoutDependency:layoutDependency,layoutId:\"s_ojESCzR\",style:{backgroundColor:\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7746uy\",layoutDependency:layoutDependency,layoutId:\"QvUycFZQJ\",style:{backgroundColor:\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jrasbd\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"AYyO1xdOe\",style:{opacity:0},variants:{hJ80RO746:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dkk44e\",\"data-styles-preset\":\"v4PWmgpAs\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1h2cmhf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RwsUjzFIF\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{hJ80RO746:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5M6Cz.framer-23l90z, .framer-5M6Cz .framer-23l90z { display: block; }\",\".framer-5M6Cz.framer-1i7si7 { 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-5M6Cz .framer-elvhaj { -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 0px; position: relative; user-select: none; width: 100%; }\",\".framer-5M6Cz .framer-ks05xd { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-5M6Cz .framer-1vrff1v { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; z-index: 1; }\",\".framer-5M6Cz .framer-1w0s6qg { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-5M6Cz .framer-7746uy { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-5M6Cz .framer-jrasbd { 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 20px 20px 0px; position: relative; width: 100%; }\",\".framer-5M6Cz .framer-1h2cmhf { -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-5M6Cz.framer-1i7si7, .framer-5M6Cz .framer-elvhaj, .framer-5M6Cz .framer-jrasbd { gap: 0px; } .framer-5M6Cz.framer-1i7si7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5M6Cz.framer-1i7si7 > :first-child, .framer-5M6Cz .framer-jrasbd > :first-child { margin-top: 0px; } .framer-5M6Cz.framer-1i7si7 > :last-child, .framer-5M6Cz .framer-jrasbd > :last-child { margin-bottom: 0px; } .framer-5M6Cz .framer-elvhaj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5M6Cz .framer-elvhaj > :first-child { margin-left: 0px; } .framer-5M6Cz .framer-elvhaj > :last-child { margin-right: 0px; } .framer-5M6Cz .framer-jrasbd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hJ80RO746\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOwUUArcJc=withCSS(Component,css,\"framer-5M6Cz\");export default FramerOwUUArcJc;FramerOwUUArcJc.displayName=\"Row\";FramerOwUUArcJc.defaultProps={height:91,width:400};addPropertyControls(FramerOwUUArcJc,{variant:{options:[\"jI3r0lm0B\",\"hJ80RO746\"],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(FramerOwUUArcJc,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOwUUArcJc\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hJ80RO746\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"91\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OwUUArcJc.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,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/kLWBYoN2cj9lAws19p9Y/OZekxF10S0zUOIpasAB4/OwUUArcJc.js\";const RowFonts=getFonts(Row);const serializationHash=\"framer-kE1D3\";const variantClassNames={kA7yOdxvb:\"framer-v-1nrwaz2\"};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={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};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=({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:\"kA7yOdxvb\",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-1nrwaz2\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"kA7yOdxvb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(48, 50, 54))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(30px)\",backgroundColor:\"rgba(11, 11, 13, 0.8)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(30px)\",...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n55ecy-container\",layoutDependency:layoutDependency,layoutId:\"pSRG5kRkc-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"pSRG5kRkc\",layoutId:\"pSRG5kRkc\",style:{width:\"100%\"},T8rQFvSBR:\"Our SaaS product offers tiered pricing plans based on the features and number of users. You can choose a plan that best fits your needs, with options for monthly or annual billing. We also offer a free trial so you can test the software before committing to a plan.\",variant:\"jI3r0lm0B\",W88zB8mIG:\"How does the pricing structure work?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18k7mc8\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"qbisBrwH1\",style:{backgroundColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+92,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-89rdci-container\",layoutDependency:layoutDependency,layoutId:\"NeyAY8n_m-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"NeyAY8n_m\",layoutId:\"NeyAY8n_m\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, you can easily upgrade or downgrade your subscription plan at any time. Any changes to your plan will be reflected in your next billing cycle, and you will retain all data and settings when switching between plans.\\n\\n\",variant:\"jI3r0lm0B\",W88zB8mIG:\"Can I upgrade or downgrade my plan at any time?\\n\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4rq9z6\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ejcOQjF0K\",style:{backgroundColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+184,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sgoni2-container\",layoutDependency:layoutDependency,layoutId:\"hjxy6dI1l-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"hjxy6dI1l\",layoutId:\"hjxy6dI1l\",style:{width:\"100%\"},T8rQFvSBR:\"We offer 24/7 customer support via email and live chat. Additionally, you can access a detailed knowledge base and video tutorials to help you get the most out of our software. For enterprise customers, we provide dedicated account managers for personalized support.\\n\\n\",variant:\"jI3r0lm0B\",W88zB8mIG:\"What kind of customer support is available?\\n\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r2j4zm\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"yW9IlBjeh\",style:{backgroundColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+276,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wfxf5a-container\",layoutDependency:layoutDependency,layoutId:\"DZcgqjYLL-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"DZcgqjYLL\",layoutId:\"DZcgqjYLL\",style:{width:\"100%\"},T8rQFvSBR:\"Absolutely! We use industry-leading encryption and security protocols to protect your data. Our servers are regularly updated, and we conduct frequent security audits to ensure your information remains secure. Plus, we offer data backup and recovery options to safeguard against data loss.\",variant:\"jI3r0lm0B\",W88zB8mIG:\"Is my data safe with your SaaS platform?\\n\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kE1D3.framer-7zv93, .framer-kE1D3 .framer-7zv93 { display: block; }\",\".framer-kE1D3.framer-1nrwaz2 { 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-kE1D3 .framer-1n55ecy-container, .framer-kE1D3 .framer-89rdci-container, .framer-kE1D3 .framer-1sgoni2-container, .framer-kE1D3 .framer-1wfxf5a-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-kE1D3 .framer-18k7mc8, .framer-kE1D3 .framer-4rq9z6, .framer-kE1D3 .framer-1r2j4zm { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kE1D3.framer-1nrwaz2 { gap: 0px; } .framer-kE1D3.framer-1nrwaz2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-kE1D3.framer-1nrwaz2 > :first-child { margin-top: 0px; } .framer-kE1D3.framer-1nrwaz2 > :last-child { margin-bottom: 0px; } }\",'.framer-kE1D3[data-border=\"true\"]::after, .framer-kE1D3 [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 265.5\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFmiqlgvwt=withCSS(Component,css,\"framer-kE1D3\");export default FramerFmiqlgvwt;FramerFmiqlgvwt.displayName=\"Accordion\";FramerFmiqlgvwt.defaultProps={height:265.5,width:1e3};addFonts(FramerFmiqlgvwt,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFmiqlgvwt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1000\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"265.5\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Fmiqlgvwt.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8BexXKyK4EZu68t9YTj7/IVRjHBcNE73cuiQJjjtX/KRqmZpwbm.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1AChUjYLDZDZQCINBCkD/MAFK8FZzL6GQncc9g0wr/v4PWmgpAs.js\";import ButtonSolid from\"https://framerusercontent.com/modules/oIp07poCs2BiuyoeAykz/L8rRqTaGG2JzJtdGiXXz/wiLUxVe42.js\";const PhosphorFonts=getFonts(Phosphor);const ButtonSolidFonts=getFonts(ButtonSolid);const cycleOrder=[\"r0NJjh92t\",\"orBG2HjXr\"];const serializationHash=\"framer-rpYkn\";const variantClassNames={orBG2HjXr:\"framer-v-1sn3zll\",r0NJjh92t:\"framer-v-1amnavo\"};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 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={Monthly:\"r0NJjh92t\",Yearly:\"orBG2HjXr\"};const getProps=({border,buttonLink,description,feature1,feature2,feature3,feature4,height,id,type,width,yearlyPrice,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6,_ref7,_ref8;return{...props,B891BD5rN:(_ref=feature2!==null&&feature2!==void 0?feature2:props.B891BD5rN)!==null&&_ref!==void 0?_ref:\"Unlimited members\",Cc3E6p8sy:(_ref1=border!==null&&border!==void 0?border:props.Cc3E6p8sy)!==null&&_ref1!==void 0?_ref1:{borderBottomWidth:0,borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},DO7hcLor5:(_ref2=type!==null&&type!==void 0?type:props.DO7hcLor5)!==null&&_ref2!==void 0?_ref2:\"Free\",h2_A6z6ml:buttonLink!==null&&buttonLink!==void 0?buttonLink:props.h2_A6z6ml,lsby3qYjI:(_ref3=description!==null&&description!==void 0?description:props.lsby3qYjI)!==null&&_ref3!==void 0?_ref3:\"Free for everyone\",RJkPFWaft:(_ref4=feature4!==null&&feature4!==void 0?feature4:props.RJkPFWaft)!==null&&_ref4!==void 0?_ref4:\"Unlimited members\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"r0NJjh92t\",vXpR9AeV8:(_ref6=yearlyPrice!==null&&yearlyPrice!==void 0?yearlyPrice:props.vXpR9AeV8)!==null&&_ref6!==void 0?_ref6:\"$0\",Yb_2bVNY8:(_ref7=feature3!==null&&feature3!==void 0?feature3:props.Yb_2bVNY8)!==null&&_ref7!==void 0?_ref7:\"Unlimited members\",Yodi3dixt:(_ref8=feature1!==null&&feature1!==void 0?feature1:props.Yodi3dixt)!==null&&_ref8!==void 0?_ref8:\"Unlimited members\"};};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,DO7hcLor5,vXpR9AeV8,lsby3qYjI,Yodi3dixt,B891BD5rN,Yb_2bVNY8,RJkPFWaft,h2_A6z6ml,Cc3E6p8sy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r0NJjh92t\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(Yodi3dixt);const visible1=isSet(B891BD5rN);const visible2=isSet(Yb_2bVNY8);const visible3=isSet(RJkPFWaft);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _Cc3E6p8sy_borderBottomWidth,_Cc3E6p8sy_borderLeftWidth,_Cc3E6p8sy_borderRightWidth,_Cc3E6p8sy_borderTopWidth;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-1amnavo\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Monthly\",layoutDependency:layoutDependency,layoutId:\"r0NJjh92t\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":`${(_Cc3E6p8sy_borderBottomWidth=Cc3E6p8sy.borderBottomWidth)!==null&&_Cc3E6p8sy_borderBottomWidth!==void 0?_Cc3E6p8sy_borderBottomWidth:Cc3E6p8sy.borderWidth}px`,\"--border-color\":Cc3E6p8sy.borderColor,\"--border-left-width\":`${(_Cc3E6p8sy_borderLeftWidth=Cc3E6p8sy.borderLeftWidth)!==null&&_Cc3E6p8sy_borderLeftWidth!==void 0?_Cc3E6p8sy_borderLeftWidth:Cc3E6p8sy.borderWidth}px`,\"--border-right-width\":`${(_Cc3E6p8sy_borderRightWidth=Cc3E6p8sy.borderRightWidth)!==null&&_Cc3E6p8sy_borderRightWidth!==void 0?_Cc3E6p8sy_borderRightWidth:Cc3E6p8sy.borderWidth}px`,\"--border-style\":Cc3E6p8sy.borderStyle,\"--border-top-width\":`${(_Cc3E6p8sy_borderTopWidth=Cc3E6p8sy.borderTopWidth)!==null&&_Cc3E6p8sy_borderTopWidth!==void 0?_Cc3E6p8sy_borderTopWidth:Cc3E6p8sy.borderWidth}px`,backdropFilter:\"blur(10px)\",WebkitBackdropFilter:\"blur(10px)\",...style},...addPropertyOverrides({orBG2HjXr:{\"data-framer-name\":\"Yearly\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hg49k8\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"ewU7116or\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14zj11h\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"jeKxDXrGu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-at4epa\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"qxXLZVI6H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"Free\"})}),className:\"framer-4nsd5u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bx4yrLUtC\",style:{\"--extracted-r6o4lv\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DO7hcLor5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-70uihv\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"UjJGSpJ6A\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w1m2ex\",\"data-framer-name\":\"Price wrapper\",layoutDependency:layoutDependency,layoutId:\"xRRnhmRDb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"$0\"})}),className:\"framer-1i8zr0w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MnZrT32o9\",style:{\"--extracted-r6o4lv\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vXpR9AeV8,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120)))\"},children:\"Free for everyone\"})}),className:\"framer-7kdi15\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"M8xhdquo5\",style:{\"--extracted-r6o4lv\":\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:lsby3qYjI,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cihyfo\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"SSwhYU_k6\",style:{backgroundColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6xzkw9\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"wyPmkzA8E\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3uk4pi\",\"data-framer-name\":\"Features\",layoutDependency:layoutDependency,layoutId:\"Ow33_xq6a\",children:[visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vrp5v8\",\"data-framer-name\":\"Feature item\",layoutDependency:layoutDependency,layoutId:\"qarnH6B5Y\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-milj7m-container\",layoutDependency:layoutDependency,layoutId:\"seAl3ZUk4-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"seAl3ZUk4\",layoutId:\"seAl3ZUk4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dkk44e\",\"data-styles-preset\":\"v4PWmgpAs\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"Unlimited members\"})}),className:\"framer-15ufun4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hsOcJT4w4\",style:{\"--extracted-r6o4lv\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Yodi3dixt,verticalAlignment:\"top\",withExternalLayout:true})]}),visible1&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-boubz\",\"data-framer-name\":\"Feature item\",layoutDependency:layoutDependency,layoutId:\"H6lU7KNIG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16fkqkx-container\",layoutDependency:layoutDependency,layoutId:\"hzpVgXZi8-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"hzpVgXZi8\",layoutId:\"hzpVgXZi8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dkk44e\",\"data-styles-preset\":\"v4PWmgpAs\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"Unlimited members\"})}),className:\"framer-1njchut\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RLwrCb17u\",style:{\"--extracted-r6o4lv\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:B891BD5rN,verticalAlignment:\"top\",withExternalLayout:true})]}),visible2&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u0vhwz\",\"data-framer-name\":\"Feature item\",layoutDependency:layoutDependency,layoutId:\"JaWXwy8dX\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dsjbjf-container\",layoutDependency:layoutDependency,layoutId:\"Tj86hyrz2-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"Tj86hyrz2\",layoutId:\"Tj86hyrz2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dkk44e\",\"data-styles-preset\":\"v4PWmgpAs\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"Unlimited members\"})}),className:\"framer-t9a9xt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZdkRszkKm\",style:{\"--extracted-r6o4lv\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Yb_2bVNY8,verticalAlignment:\"top\",withExternalLayout:true})]}),visible3&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-foab5d\",\"data-framer-name\":\"Feature item\",layoutDependency:layoutDependency,layoutId:\"ABv5iDqiw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-165lll0-container\",layoutDependency:layoutDependency,layoutId:\"eE_0ic3Eq-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"eE_0ic3Eq\",layoutId:\"eE_0ic3Eq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dkk44e\",\"data-styles-preset\":\"v4PWmgpAs\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255)))\"},children:\"Unlimited members\"})}),className:\"framer-1xglurl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XuGIBTUO1\",style:{\"--extracted-r6o4lv\":\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RJkPFWaft,verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3dusoh\",\"data-framer-name\":\"Button Wrapper\",layoutDependency:layoutDependency,layoutId:\"byYE6aF_5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||430)-64-905)/2+781+80)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5iteg0-container\",layoutDependency:layoutDependency,layoutId:\"j9fW57yZF-container\",children:/*#__PURE__*/_jsx(ButtonSolid,{F488umsAA:\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",height:\"100%\",id:\"j9fW57yZF\",layoutId:\"j9fW57yZF\",lKumUl5CE:h2_A6z6ml,P0LT7wh3L:\"Get started\",qSg_byXvm:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rpYkn.framer-192tgh4, .framer-rpYkn .framer-192tgh4 { display: block; }\",\".framer-rpYkn.framer-1amnavo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; padding: 32px 0px 32px 0px; position: relative; width: 300px; }\",\".framer-rpYkn .framer-1hg49k8 { 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-rpYkn .framer-14zj11h { 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: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-rpYkn .framer-at4epa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rpYkn .framer-4nsd5u, .framer-rpYkn .framer-15ufun4, .framer-rpYkn .framer-1njchut, .framer-rpYkn .framer-t9a9xt, .framer-rpYkn .framer-1xglurl { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-rpYkn .framer-70uihv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rpYkn .framer-w1m2ex { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 24px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rpYkn .framer-1i8zr0w, .framer-rpYkn .framer-7kdi15 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rpYkn .framer-cihyfo { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-rpYkn .framer-6xzkw9, .framer-rpYkn .framer-3dusoh { 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: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-rpYkn .framer-3uk4pi { 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-rpYkn .framer-1vrp5v8, .framer-rpYkn .framer-boubz, .framer-rpYkn .framer-u0vhwz, .framer-rpYkn .framer-foab5d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rpYkn .framer-milj7m-container, .framer-rpYkn .framer-16fkqkx-container, .framer-rpYkn .framer-1dsjbjf-container, .framer-rpYkn .framer-165lll0-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-rpYkn .framer-5iteg0-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rpYkn.framer-1amnavo, .framer-rpYkn .framer-1hg49k8, .framer-rpYkn .framer-14zj11h, .framer-rpYkn .framer-70uihv, .framer-rpYkn .framer-w1m2ex, .framer-rpYkn .framer-6xzkw9, .framer-rpYkn .framer-3uk4pi, .framer-rpYkn .framer-1vrp5v8, .framer-rpYkn .framer-boubz, .framer-rpYkn .framer-u0vhwz, .framer-rpYkn .framer-foab5d, .framer-rpYkn .framer-3dusoh { gap: 0px; } .framer-rpYkn.framer-1amnavo > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-rpYkn.framer-1amnavo > :first-child, .framer-rpYkn .framer-1hg49k8 > :first-child, .framer-rpYkn .framer-14zj11h > :first-child, .framer-rpYkn .framer-w1m2ex > :first-child, .framer-rpYkn .framer-6xzkw9 > :first-child, .framer-rpYkn .framer-3uk4pi > :first-child, .framer-rpYkn .framer-3dusoh > :first-child { margin-top: 0px; } .framer-rpYkn.framer-1amnavo > :last-child, .framer-rpYkn .framer-1hg49k8 > :last-child, .framer-rpYkn .framer-14zj11h > :last-child, .framer-rpYkn .framer-w1m2ex > :last-child, .framer-rpYkn .framer-6xzkw9 > :last-child, .framer-rpYkn .framer-3uk4pi > :last-child, .framer-rpYkn .framer-3dusoh > :last-child { margin-bottom: 0px; } .framer-rpYkn .framer-1hg49k8 > *, .framer-rpYkn .framer-6xzkw9 > *, .framer-rpYkn .framer-3dusoh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-rpYkn .framer-14zj11h > *, .framer-rpYkn .framer-3uk4pi > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-rpYkn .framer-70uihv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rpYkn .framer-70uihv > :first-child, .framer-rpYkn .framer-1vrp5v8 > :first-child, .framer-rpYkn .framer-boubz > :first-child, .framer-rpYkn .framer-u0vhwz > :first-child, .framer-rpYkn .framer-foab5d > :first-child { margin-left: 0px; } .framer-rpYkn .framer-70uihv > :last-child, .framer-rpYkn .framer-1vrp5v8 > :last-child, .framer-rpYkn .framer-boubz > :last-child, .framer-rpYkn .framer-u0vhwz > :last-child, .framer-rpYkn .framer-foab5d > :last-child { margin-right: 0px; } .framer-rpYkn .framer-w1m2ex > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rpYkn .framer-1vrp5v8 > *, .framer-rpYkn .framer-boubz > *, .framer-rpYkn .framer-u0vhwz > *, .framer-rpYkn .framer-foab5d > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-rpYkn.framer-v-1sn3zll .framer-w1m2ex { justify-content: flex-end; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-rpYkn[data-border=\"true\"]::after, .framer-rpYkn [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 430\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"orBG2HjXr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DO7hcLor5\":\"type\",\"vXpR9AeV8\":\"yearlyPrice\",\"lsby3qYjI\":\"description\",\"Yodi3dixt\":\"feature1\",\"B891BD5rN\":\"feature2\",\"Yb_2bVNY8\":\"feature3\",\"RJkPFWaft\":\"feature4\",\"h2_A6z6ml\":\"buttonLink\",\"Cc3E6p8sy\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernlmTUx67C=withCSS(Component,css,\"framer-rpYkn\");export default FramernlmTUx67C;FramernlmTUx67C.displayName=\"Price item\";FramernlmTUx67C.defaultProps={height:430,width:300};addPropertyControls(FramernlmTUx67C,{variant:{options:[\"r0NJjh92t\",\"orBG2HjXr\"],optionTitles:[\"Monthly\",\"Yearly\"],title:\"Variant\",type:ControlType.Enum},DO7hcLor5:{defaultValue:\"Free\",displayTextArea:false,title:\"Type\",type:ControlType.String},vXpR9AeV8:{defaultValue:\"$0\",displayTextArea:false,title:\"Yearly Price\",type:ControlType.String},lsby3qYjI:{defaultValue:\"Free for everyone\",displayTextArea:false,title:\"Description\",type:ControlType.String},Yodi3dixt:{defaultValue:\"Unlimited members\",displayTextArea:false,title:\"Feature 1\",type:ControlType.String},B891BD5rN:{defaultValue:\"Unlimited members\",displayTextArea:false,title:\"Feature 2\",type:ControlType.String},Yb_2bVNY8:{defaultValue:\"Unlimited members\",displayTextArea:false,title:\"Feature 3\",type:ControlType.String},RJkPFWaft:{defaultValue:\"Unlimited members\",displayTextArea:false,title:\"Feature 4\",type:ControlType.String},h2_A6z6ml:{title:\"Button link\",type:ControlType.Link},Cc3E6p8sy:{defaultValue:{borderBottomWidth:0,borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},title:\"Border\",type:ControlType.Border}});addFonts(FramernlmTUx67C,[{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\"}]},...PhosphorFonts,...ButtonSolidFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernlmTUx67C\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"430\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"orBG2HjXr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"DO7hcLor5\\\":\\\"type\\\",\\\"vXpR9AeV8\\\":\\\"yearlyPrice\\\",\\\"lsby3qYjI\\\":\\\"description\\\",\\\"Yodi3dixt\\\":\\\"feature1\\\",\\\"B891BD5rN\\\":\\\"feature2\\\",\\\"Yb_2bVNY8\\\":\\\"feature3\\\",\\\"RJkPFWaft\\\":\\\"feature4\\\",\\\"h2_A6z6ml\\\":\\\"buttonLink\\\",\\\"Cc3E6p8sy\\\":\\\"border\\\"}\",\"framerIntrinsicWidth\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nlmTUx67C.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/pkKUzgXoCAPwFVfDi3uO/oHSmsc6fARQp1wZR13OY/GUmqEicwe.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/8BexXKyK4EZu68t9YTj7/IVRjHBcNE73cuiQJjjtX/KRqmZpwbm.js\";import ButtonPrimary from\"https://framerusercontent.com/modules/liWsCIIzyLas60U5SDjK/9bJNga4Hus0ursix69ir/ljk_nUJmB.js\";const ButtonPrimaryFonts=getFonts(ButtonPrimary);const ImageWithFX=withFX(Image);const cycleOrder=[\"ecyLkoAn0\",\"nHE6J1PU5\",\"w5J6sMrDE\"];const serializationHash=\"framer-3Gxhw\";const variantClassNames={ecyLkoAn0:\"framer-v-1n4p644\",nHE6J1PU5:\"framer-v-95uthc\",w5J6sMrDE:\"framer-v-z8bclc\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition1={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,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={Desktop:\"ecyLkoAn0\",Mobile:\"nHE6J1PU5\",Tablet:\"w5J6sMrDE\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ecyLkoAn0\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ecyLkoAn0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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:transition2,children:/*#__PURE__*/_jsxs(ImageWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:5120,pixelWidth:5120,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/GlzPg2C0jKyCFSf1twdRmUhAQ.webp\",srcSet:\"https://framerusercontent.com/images/GlzPg2C0jKyCFSf1twdRmUhAQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/GlzPg2C0jKyCFSf1twdRmUhAQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/GlzPg2C0jKyCFSf1twdRmUhAQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/GlzPg2C0jKyCFSf1twdRmUhAQ.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/GlzPg2C0jKyCFSf1twdRmUhAQ.webp 5120w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1n4p644\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ecyLkoAn0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},...addPropertyOverrides({nHE6J1PU5:{\"data-framer-name\":\"Mobile\"},w5J6sMrDE:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10k9jl7\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"XU6Bxd9Li\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1qqhcei\",\"data-styles-preset\":\"GUmqEicwe\",children:\"Ready to Transform Your Workflow?\"})}),className:\"framer-shmp0w\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SXsuNRYZF\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Start your journey today with a free trial and experience the difference firsthand.\"})}),className:\"framer-a15mo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xefBN1qtM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||401.5)-240-263.8)/2+0+0)+0+222.8,...addPropertyOverrides({nHE6J1PU5:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+62+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||404.5)-124-263.8)/2+0+0)+0+222.8},w5J6sMrDE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+62+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||358)-124-263.8)/2+0+0)+0+222.8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-124fj12-container\",layoutDependency:layoutDependency,layoutId:\"EHTij8pkR-container\",children:/*#__PURE__*/_jsx(ButtonPrimary,{BIXuzguGc:\"https://framer.com/projects/new?duplicate=kLdQJjqEka4foVqkyYKj&via=shaigexp\",height:\"100%\",id:\"EHTij8pkR\",layoutId:\"EHTij8pkR\",pgZrKUgVG:\"Get template\",width:\"100%\",Zt1vkIE2s:\"Lightbulb\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ww3afo\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"qzqIk9RXR\",style:{backgroundColor:\"var(--token-7c92defb-aea7-4d14-b6f7-d2c083c349bf, rgb(11, 11, 13))\",opacity:.6}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3Gxhw.framer-8yju5f, .framer-3Gxhw .framer-8yju5f { display: block; }\",\".framer-3Gxhw.framer-1n4p644 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 120px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3Gxhw .framer-10k9jl7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-3Gxhw .framer-shmp0w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3Gxhw .framer-a15mo { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3Gxhw .framer-124fj12-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3Gxhw .framer-ww3afo { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(49.813200498132026% - 100% / 2); width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3Gxhw.framer-1n4p644, .framer-3Gxhw .framer-10k9jl7 { gap: 0px; } .framer-3Gxhw.framer-1n4p644 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-3Gxhw.framer-1n4p644 > :first-child, .framer-3Gxhw .framer-10k9jl7 > :first-child { margin-top: 0px; } .framer-3Gxhw.framer-1n4p644 > :last-child, .framer-3Gxhw .framer-10k9jl7 > :last-child { margin-bottom: 0px; } .framer-3Gxhw .framer-10k9jl7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-3Gxhw.framer-v-95uthc.framer-1n4p644 { padding: 62px 16px 62px 16px; width: 358px; }\",\".framer-3Gxhw.framer-v-z8bclc.framer-1n4p644 { padding: 62px 80px 62px 80px; width: 746px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-3Gxhw[data-border=\"true\"]::after, .framer-3Gxhw [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 401.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nHE6J1PU5\":{\"layout\":[\"fixed\",\"auto\"]},\"w5J6sMrDE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernOc71lskF=withCSS(Component,css,\"framer-3Gxhw\");export default FramernOc71lskF;FramernOc71lskF.displayName=\"CTA\";FramernOc71lskF.defaultProps={height:401.5,width:1200};addPropertyControls(FramernOc71lskF,{variant:{options:[\"ecyLkoAn0\",\"nHE6J1PU5\",\"w5J6sMrDE\"],optionTitles:[\"Desktop\",\"Mobile\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernOc71lskF,[{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\"}]},...ButtonPrimaryFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernOc71lskF\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"401.5\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nHE6J1PU5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w5J6sMrDE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nOc71lskF.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/8BexXKyK4EZu68t9YTj7/IVRjHBcNE73cuiQJjjtX/KRqmZpwbm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/e9CQ4byHC6SiC2ngjIb8/onITnuLjtrCYp3axzZLl/sj87_smCl.js\";import*as localizedValues from\"./vwd9GHTJP-0.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"ZFpBBXqWu\",\"CtSx5MZ9N\"];const serializationHash=\"framer-dFlXM\";const variantClassNames={CtSx5MZ9N:\"framer-v-n2oyte\",ZFpBBXqWu:\"framer-v-8elq1a\"};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 valuesByLocaleId={cjIgMneo9:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition1={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:30};const transition2={bounce:.2,delay:0,duration:.4,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(React.Fragment);const humanReadableVariantMap={\"Tablet / Mobile\":\"CtSx5MZ9N\",Desktop:\"ZFpBBXqWu\"};const getProps=({height,id,image,paragraph,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,HRC3gslUl:(_ref=paragraph!==null&&paragraph!==void 0?paragraph:props.HRC3gslUl)!==null&&_ref!==void 0?_ref:\"Revenue generated from subscription services across all platforms.\",PmueU7fYv:(_ref1=image!==null&&image!==void 0?image:props.PmueU7fYv)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/kj1pXyhgc6taOZoYOWrF4cgszY.svg\",srcSet:\"https://framerusercontent.com/images/kj1pXyhgc6taOZoYOWrF4cgszY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/kj1pXyhgc6taOZoYOWrF4cgszY.svg 560w\"},variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"ZFpBBXqWu\",vUu2yPlbA:(_ref3=title!==null&&title!==void 0?title:props.vUu2yPlbA)!==null&&_ref3!==void 0?_ref3:\"$45.2M\"};};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,PmueU7fYv,vUu2yPlbA,HRC3gslUl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZFpBBXqWu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8elq1a\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZFpBBXqWu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CtSx5MZ9N:{\"data-framer-name\":\"Tablet / Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||495)-0-572)/2+0+0)),pixelHeight:420,pixelWidth:560,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(PmueU7fYv),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-16go9hq\",\"data-framer-name\":\"Feature image\",layoutDependency:layoutDependency,layoutId:\"XZTytGT8M\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({CtSx5MZ9N:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||386)-0-462.8)/2+0+0)),pixelHeight:420,pixelWidth:560,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(PmueU7fYv),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fv36tq\",\"data-framer-name\":\"Scroll content\",layoutDependency:layoutDependency,layoutId:\"ydPgooScl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1h7iizx\",\"data-styles-preset\":\"sj87_smCl\",children:\"$45.2M\"})}),className:\"framer-q9jywj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f9aA_fwBt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vUu2yPlbA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",children:\"Revenue generated from subscription services across all platforms.\"})}),className:\"framer-1cky8ca\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m6fpnVUdm\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:HRC3gslUl,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dFlXM.framer-4niljy, .framer-dFlXM .framer-4niljy { display: block; }\",\".framer-dFlXM.framer-8elq1a { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 569px; }\",\".framer-dFlXM .framer-16go9hq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 420px; justify-content: center; padding: 62px; position: sticky; width: 100%; will-change: transform; z-index: 1; }\",\".framer-dFlXM .framer-fv36tq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 160px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-dFlXM .framer-q9jywj { flex: 0.3 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-dFlXM .framer-1cky8ca { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dFlXM.framer-8elq1a, .framer-dFlXM .framer-16go9hq, .framer-dFlXM .framer-fv36tq { gap: 0px; } .framer-dFlXM.framer-8elq1a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-dFlXM.framer-8elq1a > :first-child, .framer-dFlXM .framer-16go9hq > :first-child { margin-top: 0px; } .framer-dFlXM.framer-8elq1a > :last-child, .framer-dFlXM .framer-16go9hq > :last-child { margin-bottom: 0px; } .framer-dFlXM .framer-16go9hq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dFlXM .framer-fv36tq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-dFlXM .framer-fv36tq > :first-child { margin-left: 0px; } .framer-dFlXM .framer-fv36tq > :last-child { margin-right: 0px; } }\",\".framer-dFlXM.framer-v-n2oyte.framer-8elq1a { width: 357px; }\",\".framer-dFlXM.framer-v-n2oyte .framer-16go9hq { height: 270px; }\",\".framer-dFlXM.framer-v-n2oyte .framer-fv36tq { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; }\",\".framer-dFlXM.framer-v-n2oyte .framer-q9jywj { flex: none; width: 30%; }\",\".framer-dFlXM.framer-v-n2oyte .framer-1cky8ca { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dFlXM.framer-v-n2oyte .framer-fv36tq { gap: 0px; } .framer-dFlXM.framer-v-n2oyte .framer-fv36tq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-dFlXM.framer-v-n2oyte .framer-fv36tq > :first-child { margin-top: 0px; } .framer-dFlXM.framer-v-n2oyte .framer-fv36tq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 495\n * @framerIntrinsicWidth 569\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CtSx5MZ9N\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PmueU7fYv\":\"image\",\"vUu2yPlbA\":\"title\",\"HRC3gslUl\":\"paragraph\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framervwd9GHTJP=withCSS(Component,css,\"framer-dFlXM\");export default Framervwd9GHTJP;Framervwd9GHTJP.displayName=\"Image item\";Framervwd9GHTJP.defaultProps={height:495,width:569};addPropertyControls(Framervwd9GHTJP,{variant:{options:[\"ZFpBBXqWu\",\"CtSx5MZ9N\"],optionTitles:[\"Desktop\",\"Tablet / Mobile\"],title:\"Variant\",type:ControlType.Enum},PmueU7fYv:{__defaultAssetReference:\"data:framer/asset-reference,kj1pXyhgc6taOZoYOWrF4cgszY.svg?originalFilename=Feature+1.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},vUu2yPlbA:{defaultValue:\"$45.2M\",displayTextArea:false,title:\"Title\",type:ControlType.String},HRC3gslUl:{defaultValue:\"Revenue generated from subscription services across all platforms.\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String}});addFonts(Framervwd9GHTJP,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framervwd9GHTJP\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"495\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CtSx5MZ9N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"PmueU7fYv\\\":\\\"image\\\",\\\"vUu2yPlbA\\\":\\\"title\\\",\\\"HRC3gslUl\\\":\\\"paragraph\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"569\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vwd9GHTJP.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"CpD23FM4R\",\"Bp7R1kB7r\",\"NGmOi3GAU\",\"nOwqfu0Mx\"];const serializationHash=\"framer-Xb7AO\";const variantClassNames={Bp7R1kB7r:\"framer-v-8zyomm\",CpD23FM4R:\"framer-v-6x1x8k\",NGmOi3GAU:\"framer-v-1qmfgvn\",nOwqfu0Mx:\"framer-v-17svfzc\"};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 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={\"Image 1\":\"CpD23FM4R\",\"Image 2\":\"Bp7R1kB7r\",\"Image 3\":\"NGmOi3GAU\",\"Image 4\":\"nOwqfu0Mx\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"CpD23FM4R\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CpD23FM4R\",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,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-6x1x8k\",className,classNames),\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"CpD23FM4R\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({Bp7R1kB7r:{\"data-framer-name\":\"Image 2\",background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:840,pixelWidth:1140,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/QFtppNWG4lOTPzCWP2gCxga8EJg.png\",srcSet:\"https://framerusercontent.com/images/QFtppNWG4lOTPzCWP2gCxga8EJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/QFtppNWG4lOTPzCWP2gCxga8EJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QFtppNWG4lOTPzCWP2gCxga8EJg.png 1140w\"}},NGmOi3GAU:{\"data-framer-name\":\"Image 3\",background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:840,pixelWidth:1140,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/pMsA2mqBn1yMewbxdCE1tK6VwUw.png\",srcSet:\"https://framerusercontent.com/images/pMsA2mqBn1yMewbxdCE1tK6VwUw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pMsA2mqBn1yMewbxdCE1tK6VwUw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pMsA2mqBn1yMewbxdCE1tK6VwUw.png 1140w\"}},nOwqfu0Mx:{\"data-framer-name\":\"Image 4\",background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:840,pixelWidth:1140,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/0S1CuFhXGb1QzLwlQI43jCvURlI.png\",srcSet:\"https://framerusercontent.com/images/0S1CuFhXGb1QzLwlQI43jCvURlI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0S1CuFhXGb1QzLwlQI43jCvURlI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0S1CuFhXGb1QzLwlQI43jCvURlI.png 1140w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)-124)*1/2)),pixelHeight:840,pixelWidth:1140,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 124px)`,src:\"https://framerusercontent.com/images/0S1CuFhXGb1QzLwlQI43jCvURlI.png\",srcSet:\"https://framerusercontent.com/images/0S1CuFhXGb1QzLwlQI43jCvURlI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0S1CuFhXGb1QzLwlQI43jCvURlI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0S1CuFhXGb1QzLwlQI43jCvURlI.png 1140w\"},className:\"framer-1rmdjzb\",\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"r9r3GgR8k\",style:{opacity:0},variants:{nOwqfu0Mx:{opacity:1}}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)-124)*1/2)),pixelHeight:840,pixelWidth:1140,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 124px)`,src:\"https://framerusercontent.com/images/pMsA2mqBn1yMewbxdCE1tK6VwUw.png\",srcSet:\"https://framerusercontent.com/images/pMsA2mqBn1yMewbxdCE1tK6VwUw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pMsA2mqBn1yMewbxdCE1tK6VwUw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pMsA2mqBn1yMewbxdCE1tK6VwUw.png 1140w\"},className:\"framer-u5fisi\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"seQGlFYZY\",style:{opacity:0},variants:{NGmOi3GAU:{opacity:1}}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)-124)*1/2)),pixelHeight:840,pixelWidth:1140,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 124px)`,src:\"https://framerusercontent.com/images/QFtppNWG4lOTPzCWP2gCxga8EJg.png\",srcSet:\"https://framerusercontent.com/images/QFtppNWG4lOTPzCWP2gCxga8EJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/QFtppNWG4lOTPzCWP2gCxga8EJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QFtppNWG4lOTPzCWP2gCxga8EJg.png 1140w\"},className:\"framer-19ftzho\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"a7_wnsuV8\",style:{opacity:0},variants:{Bp7R1kB7r:{opacity:1}}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)-124)*1/2)),pixelHeight:840,pixelWidth:1140,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 124px)`,src:\"https://framerusercontent.com/images/u2pvaIGm4sQEbUNeIvjS4dQZcM.png\",srcSet:\"https://framerusercontent.com/images/u2pvaIGm4sQEbUNeIvjS4dQZcM.png?scale-down-to=512 512w,https://framerusercontent.com/images/u2pvaIGm4sQEbUNeIvjS4dQZcM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u2pvaIGm4sQEbUNeIvjS4dQZcM.png 1140w\"},className:\"framer-o45bfe\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"MdhkmRlQ2\",style:{opacity:1},variants:{Bp7R1kB7r:{opacity:0},NGmOi3GAU:{opacity:0},nOwqfu0Mx:{opacity:0}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Xb7AO.framer-fxgyxi, .framer-Xb7AO .framer-fxgyxi { display: block; }\",\".framer-Xb7AO.framer-6x1x8k { height: 420px; overflow: hidden; position: relative; width: 570px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Xb7AO .framer-1rmdjzb, .framer-Xb7AO .framer-u5fisi, .framer-Xb7AO .framer-19ftzho, .framer-Xb7AO .framer-o45bfe { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 420\n * @framerIntrinsicWidth 570\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bp7R1kB7r\":{\"layout\":[\"fixed\",\"fixed\"]},\"NGmOi3GAU\":{\"layout\":[\"fixed\",\"fixed\"]},\"nOwqfu0Mx\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwXlJ3V0RH=withCSS(Component,css,\"framer-Xb7AO\");export default FramerwXlJ3V0RH;FramerwXlJ3V0RH.displayName=\"Image tab\";FramerwXlJ3V0RH.defaultProps={height:420,width:570};addPropertyControls(FramerwXlJ3V0RH,{variant:{options:[\"CpD23FM4R\",\"Bp7R1kB7r\",\"NGmOi3GAU\",\"nOwqfu0Mx\"],optionTitles:[\"Image 1\",\"Image 2\",\"Image 3\",\"Image 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerwXlJ3V0RH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwXlJ3V0RH\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bp7R1kB7r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NGmOi3GAU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nOwqfu0Mx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"420\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"570\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wXlJ3V0RH.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import FeatureBadge from\"#framer/local/canvasComponent/An_WrdDP7/An_WrdDP7.js\";import HeroImage from\"#framer/local/canvasComponent/BFXWR6J47/BFXWR6J47.js\";import TestimonialItem from\"#framer/local/canvasComponent/drNwxem2Y/drNwxem2Y.js\";import Footer from\"#framer/local/canvasComponent/eJhklGgsC/eJhklGgsC.js\";import FeatureItem from\"#framer/local/canvasComponent/EW7y2ZIXg/EW7y2ZIXg.js\";import Accordion from\"#framer/local/canvasComponent/Fmiqlgvwt/Fmiqlgvwt.js\";import PriceItem from\"#framer/local/canvasComponent/nlmTUx67C/nlmTUx67C.js\";import CTA from\"#framer/local/canvasComponent/nOc71lskF/nOc71lskF.js\";import Navbar from\"#framer/local/canvasComponent/UmGNFKKXS/UmGNFKKXS.js\";import ImageItem from\"#framer/local/canvasComponent/vwd9GHTJP/vwd9GHTJP.js\";import ButtonSolid from\"#framer/local/canvasComponent/wiLUxVe42/wiLUxVe42.js\";import ImageTab from\"#framer/local/canvasComponent/wXlJ3V0RH/wXlJ3V0RH.js\";import SectionBadge from\"#framer/local/canvasComponent/Wyff7RHgu/Wyff7RHgu.js\";import*as sharedStyle2 from\"#framer/local/css/GUmqEicwe/GUmqEicwe.js\";import*as sharedStyle1 from\"#framer/local/css/KRqmZpwbm/KRqmZpwbm.js\";import*as sharedStyle from\"#framer/local/css/NqE6zDPgU/NqE6zDPgU.js\";import*as sharedStyle3 from\"#framer/local/css/wHEZ6NkMH/wHEZ6NkMH.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonSolidFonts=getFonts(ButtonSolid);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const HeroImageFonts=getFonts(HeroImage);const MotionDivWithFX=withFX(motion.div);const FeatureItemFonts=getFonts(FeatureItem);const ContainerWithFX=withFX(Container);const ImageTabFonts=getFonts(ImageTab);const ImageTabWithVariantAppearEffect=withVariantAppearEffect(ImageTab);const FeatureBadgeFonts=getFonts(FeatureBadge);const SectionBadgeFonts=getFonts(SectionBadge);const TestimonialItemFonts=getFonts(TestimonialItem);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const ImageItemFonts=getFonts(ImageItem);const AccordionFonts=getFonts(Accordion);const PriceItemFonts=getFonts(PriceItem);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const breakpoints={RZXfZKp1b:\"(min-width: 810px) and (max-width: 1439px)\",UfF0edyce:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-aAUJQ\";const variantClassNames={RZXfZKp1b:\"framer-v-haz0z2\",UfF0edyce:\"framer-v-j3ifol\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.7,ease:[1,.02,.69,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30};const transition2={delay:0,duration:.7,ease:[1,0,.62,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:30};const transition4={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:30};const transition5={delay:.3,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:30};const transition6={delay:.4,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:30};const transition7={delay:.5,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:30};const transition8={delay:.6,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:30};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"UfF0edyce\",Tablet:\"RZXfZKp1b\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-aAUJQ`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-aAUJQ`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"A0HJSfk3I\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId1=useRouteElementId(\"lhMOAnygI\");const elementId2=useRouteElementId(\"XGXKMwa32\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"UfF0edyce\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"UfF0edyce\")return false;return true;};const elementId3=useRouteElementId(\"ltqidLtB0\");const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const elementId4=useRouteElementId(\"VlhauN0s3\");const ref9=React.useRef(null);const elementId5=useRouteElementId(\"SwhGUV1sG\");const elementId6=useRouteElementId(\"DAJRK7T57\");const elementId7=useRouteElementId(\"kKVBJGb4d\");const elementId8=useRouteElementId(\"UI9ovEZPu\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"vy0SdIwcK\");const ref11=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1a324ws\",\"data-framer-name\":\"Nav section\",id:elementId,name:\"Nav section\",ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"max(100vw - 64px, 1px)\"},UfF0edyce:{width:\"calc(100vw - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1cnt1a5-container\",\"data-framer-appear-id\":\"1cnt1a5\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{style:{width:\"100%\"},variant:\"U0Q2Hpy6S\"},UfF0edyce:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"T5_6UCoVo\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref3,target:\"Lu39OGxFW\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"IZ0dM_Ep8\",layoutId:\"IZ0dM_Ep8\",variant:\"rm9eK6Frf\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-a9zdix\",\"data-framer-name\":\"Hero section\",id:elementId1,name:\"Hero section\",ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vqu470\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-67b80l\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-16cs22z\",\"data-framer-appear-id\":\"16cs22z\",\"data-framer-name\":\"Heading\",initial:animation3,name:\"Heading\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cuixv9\",\"data-styles-preset\":\"NqE6zDPgU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, rgb(146, 127, 228) 0%, rgb(253, 187, 114) 100%)\"},children:\"Turn leads into revenue, fast.\"})})}),className:\"framer-1dd1e4n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unveil insights enhanced by AI from previously gathered user emails and domains. Now also enriched with Twitter & Telegram.\"})}),className:\"framer-fdb0rm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wdfefo-container\",children:/*#__PURE__*/_jsx(ButtonSolid,{F488umsAA:\"var(--token-7c92defb-aea7-4d14-b6f7-d2c083c349bf, rgb(11, 11, 13))\",height:\"100%\",id:\"g10VPc9dO\",layoutId:\"g10VPc9dO\",lKumUl5CE:\"https://framer.com/projects/new?duplicate=kLdQJjqEka4foVqkyYKj&via=shaigexp\",P0LT7wh3L:\"Get template\",qSg_byXvm:\"var(--token-ff1475bf-ed84-4f1a-8ac4-a73aae2dbbed, rgb(234, 168, 121))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{width:\"max(min(100vw - 32px, 1200px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"max(min(max(100vw - 64px, 1px), 1200px), 1px)\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-rj8emg-container\",\"data-framer-appear-id\":\"rj8emg\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"yst00cklH\"}},children:/*#__PURE__*/_jsx(HeroImage,{height:\"100%\",id:\"N9pzKdnY3\",layoutId:\"N9pzKdnY3\",style:{width:\"100%\"},variant:\"W7yrKp3l7\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1cgfs1d\",\"data-framer-name\":\"Features section\",id:elementId2,name:\"Features section\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k4rg9k\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bu7oxl\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qqhcei\",\"data-styles-preset\":\"GUmqEicwe\",children:\"Transform Your Task Process\"})}),className:\"framer-18585uf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"center\"},children:\"This might involve personally identifying the user, suggesting tailored item suggestions, or recalling prior tastes.\"})}),className:\"framer-18pcfok\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1svd3yv\",\"data-framer-name\":\"Features list\",name:\"Features list\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16r7dva\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:225,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 2px) / 3, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e4vmcb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"LNz3RwsxZ\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"BxX80fAJl\",layoutId:\"BxX80fAJl\",mw_JCktF7:\"Advanced Communication\",nSoKekbEi:\"Efficient, real-time messaging systems streamline communication between teams and clients, reducing delays and boosting productivity.\",style:{width:\"100%\"},uXtGFYA1z:\"Chat\",variant:\"Jlqj6D1Yk\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ufspmr hidden-72rtr7 hidden-haz0z2\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-175gwrb hidden-j3ifol\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:225,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 2px) / 3, 1px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{__framer__animate:{transition:transition3},__framer__exit:animation7}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6mka4b-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"LNz3RwsxZ\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"SUsvLgWHo\",layoutId:\"SUsvLgWHo\",mw_JCktF7:\"Premium Assets\",nSoKekbEi:\"Access exclusive, high-quality resources that empower your team to perform at its best, without distractions or frustrating delays.\",style:{width:\"100%\"},uXtGFYA1z:\"File\",variant:\"Jlqj6D1Yk\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15be3r8 hidden-72rtr7 hidden-haz0z2\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14hhuwd hidden-j3ifol\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:225,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 2px) / 3, 1px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{__framer__animate:{transition:transition3},__framer__exit:animation7}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fay74c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"LNz3RwsxZ\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"olTXHRQ2A\",layoutId:\"olTXHRQ2A\",mw_JCktF7:\"Acquire New Customers\",nSoKekbEi:\"Attract new clients by offering personalized, seamless experiences, designed to improve engagement and long-term loyalty.\",style:{width:\"100%\"},uXtGFYA1z:\"User\",variant:\"Jlqj6D1Yk\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l9uenn\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ochjki hidden-72rtr7 hidden-haz0z2\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aq683q\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:225,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 2px) / 3, 1px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{__framer__animate:{transition:transition3},__framer__exit:animation7}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dfufwl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"LNz3RwsxZ\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"Ylwzf3Rz3\",layoutId:\"Ylwzf3Rz3\",mw_JCktF7:\"Seamless Integrations\",nSoKekbEi:\"Easily connect your tools and platforms to create a unified workflow that eliminates data silos and enhances efficiency.\",style:{width:\"100%\"},uXtGFYA1z:\"Share\",variant:\"Jlqj6D1Yk\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xe282 hidden-72rtr7 hidden-haz0z2\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-82vpt5 hidden-j3ifol\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:225,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 2px) / 3, 1px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{__framer__animate:{transition:transition3},__framer__exit:animation7}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wxpgsm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"LNz3RwsxZ\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"RaKe5AL1t\",layoutId:\"RaKe5AL1t\",mw_JCktF7:\"Real-time Analytics\",nSoKekbEi:\"Stay informed with instant data updates that allow you to make proactive decisions and optimize your business strategies on the go.\",style:{width:\"100%\"},uXtGFYA1z:\"ChartBar\",variant:\"Jlqj6D1Yk\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-sjtwkv hidden-72rtr7 hidden-haz0z2\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wq7kx3 hidden-j3ifol\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:225,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 2px) / 3, 1px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{__framer__animate:{transition:transition3},__framer__exit:animation7}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x3dznm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"LNz3RwsxZ\"}},children:/*#__PURE__*/_jsx(FeatureItem,{height:\"100%\",id:\"rJeEVz_JN\",layoutId:\"rJeEVz_JN\",mw_JCktF7:\"Customizable Workflows\",nSoKekbEi:\"Adapt your task management process with flexible workflows that align with your team\u2019s unique needs, ensuring maximum productivity.\",style:{width:\"100%\"},uXtGFYA1z:\"FlowArrow\",variant:\"Jlqj6D1Yk\",width:\"100%\"})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-18tpm7p\",\"data-framer-name\":\"Product section\",id:elementId3,name:\"Product section\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5r60op\",\"data-framer-name\":\"Container\",name:\"Container\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{height:560,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 32px) / 1.8, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 60px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-108yris-container hidden-j3ifol\",children:/*#__PURE__*/_jsx(ImageTabWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref6,target:\"Bp7R1kB7r\"},{ref:ref7,target:\"NGmOi3GAU\"},{ref:ref8,target:\"nOwqfu0Mx\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"dzMLurqU2\",layoutId:\"dzMLurqU2\",style:{height:\"100%\",width:\"100%\"},variant:\"CpD23FM4R\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ocoy9\",\"data-framer-name\":\"Tab wrapper\",name:\"Tab wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tfq89q\",\"data-framer-name\":\"Tab item\",id:elementId4,name:\"Tab item\",ref:ref9,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1obc3pe\",\"data-styles-preset\":\"wHEZ6NkMH\",children:\"Track Your Finances with Ease\"})}),className:\"framer-1d1v6l7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"left\"},children:\"Get a comprehensive overview of your financial performance. Monitor net sales, visualize trends over time, and make data-driven decisions to optimize your revenue growth.\"})}),className:\"framer-1oxx914\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d38my4\",\"data-framer-name\":\"Featues\",name:\"Featues\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bfxoa2-container\",children:/*#__PURE__*/_jsx(FeatureBadge,{D8OrFd5wi:\"TextAUnderline\",height:\"100%\",I9FpWctAA:\"Text\",id:\"fL_p1FkJi\",layoutId:\"fL_p1FkJi\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1evocob-container\",children:/*#__PURE__*/_jsx(FeatureBadge,{D8OrFd5wi:\"File\",height:\"100%\",I9FpWctAA:\"File\",id:\"vwQmLTRUU\",layoutId:\"vwQmLTRUU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ynjq1w-container\",children:/*#__PURE__*/_jsx(FeatureBadge,{D8OrFd5wi:\"Video\",height:\"100%\",I9FpWctAA:\"Video\",id:\"aey_o_gS8\",layoutId:\"aey_o_gS8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tn5g6s-container\",children:/*#__PURE__*/_jsx(FeatureBadge,{D8OrFd5wi:\"Link\",height:\"100%\",I9FpWctAA:\"Link\",id:\"RBhpwdQw0\",layoutId:\"RBhpwdQw0\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13gvko9-container\",children:/*#__PURE__*/_jsx(ButtonSolid,{F488umsAA:\"var(--token-7c92defb-aea7-4d14-b6f7-d2c083c349bf, rgb(11, 11, 13))\",height:\"100%\",id:\"ouHh7arDh\",layoutId:\"ouHh7arDh\",lKumUl5CE:\"https://framer.com/projects/new?duplicate=kLdQJjqEka4foVqkyYKj&via=shaigexp\",P0LT7wh3L:\"Get template\",qSg_byXvm:\"var(--token-ff1475bf-ed84-4f1a-8ac4-a73aae2dbbed, rgb(234, 168, 121))\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{height:280,width:\"max(min(100vw - 32px, 1200px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gvevdj-container hidden-72rtr7 hidden-haz0z2\",children:/*#__PURE__*/_jsx(ImageTab,{height:\"100%\",id:\"qqlS6jY_x\",layoutId:\"qqlS6jY_x\",style:{height:\"100%\",width:\"100%\"},variant:\"Bp7R1kB7r\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hets6r\",\"data-framer-name\":\"Tab item\",id:elementId5,name:\"Tab item\",ref:ref6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1obc3pe\",\"data-styles-preset\":\"wHEZ6NkMH\",children:\"Manage Your Discounts Effectively\"})}),className:\"framer-3npdgs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"left\"},children:\"Easily organize and track all active discounts in one place. Keep your promotions up-to-date and ensure your customers enjoy the best offers tailored to their needs.\"})}),className:\"framer-1v5c1zb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-abem2z hidden-72rtr7 hidden-haz0z2\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{height:280,width:\"max(min(100vw - 32px, 1200px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ezpgjd-container hidden-72rtr7 hidden-haz0z2\",children:/*#__PURE__*/_jsx(ImageTab,{height:\"100%\",id:\"P3xvhMc8Z\",layoutId:\"P3xvhMc8Z\",style:{height:\"100%\",width:\"100%\"},variant:\"NGmOi3GAU\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ou0llt\",\"data-framer-name\":\"Tab item\",id:elementId6,name:\"Tab item\",ref:ref7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1obc3pe\",\"data-styles-preset\":\"wHEZ6NkMH\",children:\"Boost Your Marketing Impact\"})}),className:\"framer-14yev9n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"left\"},children:\"Understand your marketing performance at a glance. Track online sessions, monitor conversions, and adjust your strategies to drive better engagement and sales.\"})}),className:\"framer-11nuai2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gxpzhz hidden-72rtr7 hidden-haz0z2\",\"data-framer-name\":\"Divider\",name:\"Divider\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pb816c\",\"data-framer-name\":\"Tab item\",id:elementId7,name:\"Tab item\",ref:ref8,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1obc3pe\",\"data-styles-preset\":\"wHEZ6NkMH\",children:\"Deep Dive into Your Analytics\"})}),className:\"framer-1d6a1bb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"left\"},children:\"Gain insights into key metrics, compare performance over time, and stay on top of trends. From sales data to customer behavior, make informed decisions with powerful analytics at your fingertips.\"})}),className:\"framer-yxynao\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{height:280,width:\"max(min(100vw - 32px, 1200px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kag1rr-container hidden-72rtr7 hidden-haz0z2\",children:/*#__PURE__*/_jsx(ImageTab,{height:\"100%\",id:\"TSZ3DqtW5\",layoutId:\"TSZ3DqtW5\",style:{height:\"100%\",width:\"100%\"},variant:\"nOwqfu0Mx\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{height:280,width:\"max(min(100vw - 32px, 1200px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xncdqt-container hidden-72rtr7 hidden-haz0z2\",children:/*#__PURE__*/_jsx(ImageTab,{height:\"100%\",id:\"aTvb6hKhu\",layoutId:\"aTvb6hKhu\",style:{height:\"100%\",width:\"100%\"},variant:\"CpD23FM4R\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vi7076 hidden-72rtr7 hidden-haz0z2\",\"data-framer-name\":\"Divider\",name:\"Divider\"})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1my0xvo\",\"data-framer-name\":\"Testimonial section\",name:\"Testimonial section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h60cv\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o79s5q\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-w13or3\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h254ew\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1neec9o-container\",children:/*#__PURE__*/_jsx(SectionBadge,{BYtiINKwY:\"Client testimonials\",height:\"100%\",id:\"ksMjbfkTF\",layoutId:\"ksMjbfkTF\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1qqhcei\",\"data-styles-preset\":\"GUmqEicwe\",style:{\"--framer-text-alignment\":\"left\"},children:[\"People rave about us, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\"},children:\"and there's a good reason.\"})]})}),className:\"framer-7x7fyf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"left\"},children:\"Peruse the testimonials of our contented clientele regarding our goods/services. We delight in offering top-notch customer assistance and cherish their response.\"})}),className:\"framer-1tinkln\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b9lvx8\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"min(max(100vw - 64px, 1px), 1200px)\"},UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 48px) / 3, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e1cy8q-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"Zc25tN1wD\"}},children:/*#__PURE__*/_jsx(TestimonialItem,{height:\"100%\",id:\"P0hxzvfwp\",KFjlirc0G:\"Product Owner\",layoutId:\"P0hxzvfwp\",qfJXoKuLm:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"I recently implemented this software in our workflow, and it\u2019s been transformative. The intuitive interface and powerful automation have saved us so much time. It\\'s a must-have for any growing business.\"'})}),style:{width:\"100%\"},TbHlJSy3B:addImageAlt({src:\"https://framerusercontent.com/images/Y7xGl21aQgHVU4UiWLBvVfD1dU.jpg\",srcSet:\"https://framerusercontent.com/images/Y7xGl21aQgHVU4UiWLBvVfD1dU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Y7xGl21aQgHVU4UiWLBvVfD1dU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y7xGl21aQgHVU4UiWLBvVfD1dU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y7xGl21aQgHVU4UiWLBvVfD1dU.jpg 2725w\"},\"\"),variant:\"OOmcaAKLh\",width:\"100%\",zg0t7MC_Q:\"Lucas\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"min(max(100vw - 64px, 1px), 1200px)\"},UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 48px) / 3, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1serg1u-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"Zc25tN1wD\"}},children:/*#__PURE__*/_jsx(TestimonialItem,{height:\"100%\",id:\"bUYAoNIed\",KFjlirc0G:\"Business Analysis\",layoutId:\"bUYAoNIed\",qfJXoKuLm:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"This system streamlined our operations like never before. The user-friendly design, combined with its reliability, made it a breeze for our team to adopt. Highly recommended for anyone seeking efficiency.\"'})}),style:{width:\"100%\"},TbHlJSy3B:addImageAlt({src:\"https://framerusercontent.com/images/eYaToUBWHmj6ZDgHLmtcNtAjSVI.jpg\",srcSet:\"https://framerusercontent.com/images/eYaToUBWHmj6ZDgHLmtcNtAjSVI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eYaToUBWHmj6ZDgHLmtcNtAjSVI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eYaToUBWHmj6ZDgHLmtcNtAjSVI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eYaToUBWHmj6ZDgHLmtcNtAjSVI.jpg 2967w\"},\"\"),variant:\"OOmcaAKLh\",width:\"100%\",zg0t7MC_Q:\"Nick Waritn\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"min(max(100vw - 64px, 1px), 1200px)\"},UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 48px) / 3, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pzme-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{variant:\"Zc25tN1wD\"}},children:/*#__PURE__*/_jsx(TestimonialItem,{height:\"100%\",id:\"i63pAHJb1\",KFjlirc0G:\"CEO / Founder\",layoutId:\"i63pAHJb1\",qfJXoKuLm:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"The software has exceeded all expectations. From speed to accuracy, it handles tasks seamlessly and offers detailed insights that help us make better decisions. It\u2019s an invaluable tool for any business.\"'})}),style:{width:\"100%\"},TbHlJSy3B:addImageAlt({src:\"https://framerusercontent.com/images/8TrGhzibqaMUsRvrUcYlpZ9UYJQ.jpg\",srcSet:\"https://framerusercontent.com/images/8TrGhzibqaMUsRvrUcYlpZ9UYJQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/8TrGhzibqaMUsRvrUcYlpZ9UYJQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/8TrGhzibqaMUsRvrUcYlpZ9UYJQ.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/8TrGhzibqaMUsRvrUcYlpZ9UYJQ.jpg 3501w\"},\"\"),variant:\"OOmcaAKLh\",width:\"100%\",zg0t7MC_Q:\"Anna Koralina\"})})})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1k5uet5\",\"data-framer-name\":\"Content section\",name:\"Content section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7l2pb3\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ro2t5j\",\"data-framer-name\":\"Content wrapper\",name:\"Content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tl0hhy\",\"data-framer-name\":\"Image wrapper\",name:\"Image wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{background:{alt:\"\",fit:\"fit\",pixelHeight:1920,pixelWidth:2280,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw - 64px, 1px), 1200px)\",src:\"https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp\",srcSet:\"https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp 2280w\"}},UfF0edyce:{background:{alt:\"\",fit:\"fit\",pixelHeight:1920,pixelWidth:2280,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 32px, 1200px)\",src:\"https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp\",srcSet:\"https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp 2280w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1920,pixelWidth:2280,positionX:\"right\",positionY:\"center\",sizes:\"max((min(max(100vw - 64px, 1px), 1200px) - 62px) / 2, 1px)\",src:\"https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp\",srcSet:\"https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ck4XqIdKDzxuqFVugoN2uivoXw.webp 2280w\"},className:\"framer-1kero21\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1apupb0\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1phsyv3\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cy1jds-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:62,height:\"100%\",hoverFactor:1,id:\"M8XuGoT3i\",layoutId:\"M8XuGoT3i\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:48,pixelWidth:197,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CvOectdyXJpLGXCWZdRwsLqzw.svg\"},className:\"framer-1foi3f3\",\"data-framer-name\":\"Logo 1\",name:\"Logo 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:48,pixelWidth:188,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lk197EN4HUvZHYLOim94wYrFJMA.svg\"},className:\"framer-zbxjgn\",\"data-framer-name\":\"Logo 2\",name:\"Logo 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:48,pixelWidth:153,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JghaTWIKlWJ05SU8gdryUC5B3BU.svg\"},className:\"framer-j4b4il\",\"data-framer-name\":\"Logo 3\",name:\"Logo 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:48,pixelWidth:213,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tB0bHWRp7hPmJOo4LaJkUPNkWKo.svg\"},className:\"framer-linr8w\",\"data-framer-name\":\"Logo 4\",name:\"Logo 4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:48,pixelWidth:192,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Rv66XYXpwsTgye69zOVYxBEl0.svg\"},className:\"framer-1mkmpcz\",\"data-framer-name\":\"Logo 5\",name:\"Logo 5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:48,pixelWidth:149,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/gY272hOl7oUaTxysV815m2poQ8.svg\"},className:\"framer-1a94lew\",\"data-framer-name\":\"Logo 6\",name:\"Logo 6\"})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-my9jzo\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1qqhcei\",\"data-styles-preset\":\"GUmqEicwe\",style:{\"--framer-text-alignment\":\"left\"},children:[\"It's not about conserving moments, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9dcac85b-60ee-43cc-aaf3-cfe15b6859f4, rgb(104, 114, 120))\"},children:\"it's about ensuring they're never squandered.\"})]})}),className:\"framer-1jjoek9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h07j4s-container\",children:/*#__PURE__*/_jsx(ButtonSolid,{F488umsAA:\"var(--token-7c92defb-aea7-4d14-b6f7-d2c083c349bf, rgb(11, 11, 13))\",height:\"100%\",id:\"isoy8HZ_h\",layoutId:\"isoy8HZ_h\",lKumUl5CE:\"https://framer.com/projects/new?duplicate=kLdQJjqEka4foVqkyYKj&via=shaigexp\",P0LT7wh3L:\"Get template\",qSg_byXvm:\"var(--token-fb552b7f-a107-45dc-9e34-ef837a53e5c2, rgb(255, 255, 255))\",width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-vcq0gd\",\"data-framer-name\":\"Action section\",id:elementId8,name:\"Action section\",ref:ref10,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fvc9ac\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lommsc\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zz7m5d\",\"data-framer-name\":\"Scroll content\",name:\"Scroll content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1obc3pe\",\"data-styles-preset\":\"wHEZ6NkMH\",children:\"Streamline Your Workflow\"})}),className:\"framer-13newud\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",children:\"Maximize productivity with our intuitive software. Effortlessly manage tasks, automate repetitive processes, and keep your team aligned with real-time updates and insights.\"})}),className:\"framer-17hst4b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iwn4c6\",\"data-framer-name\":\"Images\",name:\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"max((min(max(100vw - 64px, 1px), 1200px) - 32px) / 2, 1px)\"},UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 62px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xz3um4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{variant:\"CtSx5MZ9N\"},UfF0edyce:{variant:\"CtSx5MZ9N\"}},children:/*#__PURE__*/_jsx(ImageItem,{height:\"100%\",HRC3gslUl:\"Revenue generated from subscription services across all platforms.\",id:\"bR5lJqVa6\",layoutId:\"bR5lJqVa6\",style:{width:\"100%\"},variant:\"ZFpBBXqWu\",vUu2yPlbA:\"$45.2M\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"max((min(max(100vw - 64px, 1px), 1200px) - 32px) / 2, 1px)\"},UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 62px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2rq63k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{variant:\"CtSx5MZ9N\"},UfF0edyce:{variant:\"CtSx5MZ9N\"}},children:/*#__PURE__*/_jsx(ImageItem,{height:\"100%\",HRC3gslUl:\"Active users engaging with our platform daily across 20 regions.\",id:\"xcb0Cgkkb\",layoutId:\"xcb0Cgkkb\",PmueU7fYv:addImageAlt({src:\"https://framerusercontent.com/images/K3z6RpUgIYyYfcfLi7spWXIQ.svg\",srcSet:\"https://framerusercontent.com/images/K3z6RpUgIYyYfcfLi7spWXIQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/K3z6RpUgIYyYfcfLi7spWXIQ.svg 560w\"},\"\"),style:{width:\"100%\"},variant:\"ZFpBBXqWu\",vUu2yPlbA:\"120K+\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"max((min(max(100vw - 64px, 1px), 1200px) - 32px) / 2, 1px)\"},UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:\"max((min(max(100vw - 64px, 1px), 1200px) - 62px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e2aqw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{variant:\"CtSx5MZ9N\"},UfF0edyce:{variant:\"CtSx5MZ9N\"}},children:/*#__PURE__*/_jsx(ImageItem,{height:\"100%\",HRC3gslUl:\"Hours saved monthly by teams utilizing our automated workflow features.\",id:\"rVPKTHCMG\",layoutId:\"rVPKTHCMG\",PmueU7fYv:addImageAlt({src:\"https://framerusercontent.com/images/hMtc8CPmkRWaxEk94mChPZ3MRRg.svg\",srcSet:\"https://framerusercontent.com/images/hMtc8CPmkRWaxEk94mChPZ3MRRg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hMtc8CPmkRWaxEk94mChPZ3MRRg.svg 560w\"},\"\"),style:{width:\"100%\"},variant:\"ZFpBBXqWu\",vUu2yPlbA:\"7,500+\",width:\"100%\"})})})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-5lbap2\",\"data-framer-name\":\"FAQ section\",name:\"FAQ section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sdjymb\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-454o4g\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qqhcei\",\"data-styles-preset\":\"GUmqEicwe\",children:\"Frequently Asked Questions\"})}),className:\"framer-k00t03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get quick answers to the most common questions about our platform.\"})}),className:\"framer-1up1oky\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"min(max(100vw - 64px, 1px), 1200px)\"},UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:265,width:\"min(min(max(100vw - 64px, 1px), 1200px), 600px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r78s2t-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{style:{width:\"100%\"}},UfF0edyce:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"g5GCqRkQH\",layoutId:\"g5GCqRkQH\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hv4qvg\",\"data-framer-name\":\"Light\",name:\"Light\"})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1tubx0s\",\"data-framer-name\":\"Pricing section\",id:elementId9,name:\"Pricing section\",ref:ref11,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kl1usz\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ne0lun\",\"data-framer-name\":\"Light\",name:\"Light\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2w0c9l\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qqhcei\",\"data-styles-preset\":\"GUmqEicwe\",children:\"Simple Pricing for Every Team\"})}),className:\"framer-qbqv5w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pz5li8\",\"data-styles-preset\":\"KRqmZpwbm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Choose the plan that fits your needs, whether you\u2019re just starting out or scaling your business. \"})}),className:\"framer-18yer86\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k73hhg\",\"data-framer-name\":\"Price grid\",name:\"Price grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"max(min(max(100vw - 64px, 1px), 1200px) / 2, 50px)\"},UfF0edyce:{width:\"max(min(100vw - 32px, 1200px), 50px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"max(min(max(100vw - 64px, 1px), 1200px) / 4, 50px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ixsx6t-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{Cc3E6p8sy:{borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderStyle:\"solid\",borderWidth:1}}},children:/*#__PURE__*/_jsx(PriceItem,{B891BD5rN:\"2 teams\",Cc3E6p8sy:{borderBottomWidth:0,borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},DO7hcLor5:\"Free\",h2_A6z6ml:\"https://framer.com/projects/new?duplicate=kLdQJjqEka4foVqkyYKj&via=shaigexp\",height:\"100%\",id:\"NFdqLZwzi\",layoutId:\"NFdqLZwzi\",lsby3qYjI:\"Free for everyone\",RJkPFWaft:\"Lifetime support\",style:{width:\"100%\"},variant:\"r0NJjh92t\",vXpR9AeV8:\"$0\",width:\"100%\",Yb_2bVNY8:\"Up to 100 leads\",Yodi3dixt:\"10 members\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"max(min(max(100vw - 64px, 1px), 1200px) / 2, 50px)\"},UfF0edyce:{width:\"max(min(100vw - 32px, 1200px), 50px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"max(min(max(100vw - 64px, 1px), 1200px) / 4, 50px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{__framer__animate:{transition:transition3},__framer__exit:animation7}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hk3rpj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{Cc3E6p8sy:{borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderStyle:\"solid\",borderWidth:1}}},children:/*#__PURE__*/_jsx(PriceItem,{B891BD5rN:\"5 teams\",Cc3E6p8sy:{borderBottomWidth:0,borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},DO7hcLor5:\"Starter\",h2_A6z6ml:\"https://framer.com/projects/new?duplicate=kLdQJjqEka4foVqkyYKj&via=shaigexp\",height:\"100%\",id:\"PzPNnLs0s\",layoutId:\"PzPNnLs0s\",lsby3qYjI:\"Perfect for inpetendent sellers\",RJkPFWaft:\"Lifetime support\",style:{width:\"100%\"},variant:\"r0NJjh92t\",vXpR9AeV8:\"$15.00\",width:\"100%\",Yb_2bVNY8:\"Up to 500 leads\",Yodi3dixt:\"20 members\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"max(min(max(100vw - 64px, 1px), 1200px) / 2, 50px)\"},UfF0edyce:{width:\"max(min(100vw - 32px, 1200px), 50px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"max(min(max(100vw - 64px, 1px), 1200px) / 4, 50px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{__framer__animate:{transition:transition3},__framer__exit:animation7}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vaejt8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{Cc3E6p8sy:{borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderStyle:\"solid\",borderWidth:1}}},children:/*#__PURE__*/_jsx(PriceItem,{B891BD5rN:\"10 teams\",Cc3E6p8sy:{borderBottomWidth:0,borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},DO7hcLor5:\"Pro\",h2_A6z6ml:\"https://framer.com/projects/new?duplicate=kLdQJjqEka4foVqkyYKj&via=shaigexp\",height:\"100%\",id:\"UOTvpDy02\",layoutId:\"UOTvpDy02\",lsby3qYjI:\"Perfect for agencies\",RJkPFWaft:\"Lifetime support\",style:{width:\"100%\"},variant:\"r0NJjh92t\",vXpR9AeV8:\"$20.00\",width:\"100%\",Yb_2bVNY8:\"Up to 1000 leads\",Yodi3dixt:\"50 members\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{width:\"max(min(max(100vw - 64px, 1px), 1200px) / 2, 50px)\"},UfF0edyce:{width:\"max(min(100vw - 32px, 1200px), 50px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"max(min(max(100vw - 64px, 1px), 1200px) / 4, 50px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{__framer__animate:{transition:transition3},__framer__exit:animation7}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-grvuau-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{Cc3E6p8sy:{borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderStyle:\"solid\",borderWidth:1}}},children:/*#__PURE__*/_jsx(PriceItem,{B891BD5rN:\"Unlimited teams\",Cc3E6p8sy:{borderBottomWidth:0,borderColor:\"var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, rgb(25, 25, 26))\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},DO7hcLor5:\"Enterprise\",h2_A6z6ml:\"https://framer.com/projects/new?duplicate=kLdQJjqEka4foVqkyYKj&via=shaigexp\",height:\"100%\",id:\"F4fW6UIPn\",layoutId:\"F4fW6UIPn\",lsby3qYjI:\"Perfect for companies\",RJkPFWaft:\"Lifetime support\",style:{width:\"100%\"},variant:\"r0NJjh92t\",vXpR9AeV8:\"$42.00\",width:\"100%\",Yb_2bVNY8:\"Unlimited leads\",Yodi3dixt:\"Unlimited members\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-qlefgw\",\"data-framer-name\":\"CTA section\",name:\"CTA section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UfF0edyce:{width:\"min(100vw - 32px, 1200px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:401,width:\"min(max(100vw - 64px, 1px), 1200px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8z62xh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{variant:\"w5J6sMrDE\"},UfF0edyce:{variant:\"nHE6J1PU5\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"Yb7wfxf3F\",layoutId:\"Yb7wfxf3F\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ecyLkoAn0\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:302,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oj5hwc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RZXfZKp1b:{variant:\"rSyvWfiQE\"},UfF0edyce:{variant:\"RkNl44KHW\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"pB2Y_hGDG\",layoutId:\"pB2Y_hGDG\",style:{width:\"100%\"},variant:\"ppB_JWlRT\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-aAUJQ { background: var(--token-7c92defb-aea7-4d14-b6f7-d2c083c349bf, rgb(11, 11, 13)) /* {\"name\":\"Dark 1\"} */; }`,\".framer-aAUJQ.framer-lux5qc, .framer-aAUJQ .framer-lux5qc { display: block; }\",\".framer-aAUJQ.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7c92defb-aea7-4d14-b6f7-d2c083c349bf, #0b0b0d); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-aAUJQ .framer-1a324ws { 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: 16px 32px 16px 32px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-aAUJQ .framer-1cnt1a5-container { flex: none; height: auto; position: sticky; top: 0px; width: auto; will-change: transform; z-index: 10; }\",\".framer-aAUJQ .framer-a9zdix { 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 32px 0px 32px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-vqu470 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 120px 0px 32px 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-67b80l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-16cs22z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1dd1e4n, .framer-aAUJQ .framer-18585uf, .framer-aAUJQ .framer-1d1v6l7, .framer-aAUJQ .framer-1oxx914, .framer-aAUJQ .framer-3npdgs, .framer-aAUJQ .framer-1v5c1zb, .framer-aAUJQ .framer-14yev9n, .framer-aAUJQ .framer-11nuai2, .framer-aAUJQ .framer-1d6a1bb, .framer-aAUJQ .framer-yxynao, .framer-aAUJQ .framer-7x7fyf, .framer-aAUJQ .framer-1jjoek9, .framer-aAUJQ .framer-13newud, .framer-aAUJQ .framer-17hst4b, .framer-aAUJQ .framer-k00t03 { --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-aAUJQ .framer-fdb0rm, .framer-aAUJQ .framer-18pcfok, .framer-aAUJQ .framer-1tinkln, .framer-aAUJQ .framer-1up1oky, .framer-aAUJQ .framer-18yer86 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aAUJQ .framer-1wdfefo-container, .framer-aAUJQ .framer-bfxoa2-container, .framer-aAUJQ .framer-1evocob-container, .framer-aAUJQ .framer-ynjq1w-container, .framer-aAUJQ .framer-1tn5g6s-container, .framer-aAUJQ .framer-13gvko9-container, .framer-aAUJQ .framer-1neec9o-container, .framer-aAUJQ .framer-1h07j4s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-aAUJQ .framer-rj8emg-container, .framer-aAUJQ .framer-1xz3um4-container, .framer-aAUJQ .framer-2rq63k-container, .framer-aAUJQ .framer-e2aqw-container, .framer-aAUJQ .framer-1oj5hwc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1cgfs1d { 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: 120px 32px 120px 32px; position: relative; scroll-margin-top: 30px; width: 100%; }\",\".framer-aAUJQ .framer-k4rg9k, .framer-aAUJQ .framer-h60cv, .framer-aAUJQ .framer-sdjymb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-1bu7oxl, .framer-aAUJQ .framer-2w0c9l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1svd3yv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-16r7dva, .framer-aAUJQ .framer-1aq683q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-e4vmcb-container, .framer-aAUJQ .framer-6mka4b-container, .framer-aAUJQ .framer-fay74c-container, .framer-aAUJQ .framer-dfufwl-container, .framer-aAUJQ .framer-wxpgsm-container, .framer-aAUJQ .framer-x3dznm-container, .framer-aAUJQ .framer-1e1cy8q-container, .framer-aAUJQ .framer-1serg1u-container, .framer-aAUJQ .framer-1pzme-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-ufspmr, .framer-aAUJQ .framer-15be3r8, .framer-aAUJQ .framer-xe282, .framer-aAUJQ .framer-sjtwkv { background: linear-gradient(90deg, #eaa879 0%, rgba(201, 132, 87, 0) 0%, rgba(181, 108, 62, 0.2) 53.6036036036036%, rgba(161, 82, 25, 0) 100%); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-175gwrb, .framer-aAUJQ .framer-14hhuwd { align-self: stretch; background: linear-gradient(180deg, rgba(234, 168, 121, 0) 0%, rgba(234, 168, 121, 0.2) 100%); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-1l9uenn, .framer-aAUJQ .framer-ochjki { background: linear-gradient(90deg, #eaa879 0%, rgba(201, 132, 87, 0) 0%, rgba(181, 108, 62, 0.2) 53.6036036036036%, rgba(161, 82, 25, 0) 100%); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-82vpt5, .framer-aAUJQ .framer-1wq7kx3 { align-self: stretch; background: linear-gradient(0deg, rgba(234, 168, 121, 0) 0%, rgba(234, 168, 121, 0.2) 100%); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-18tpm7p { 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: 62px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-5r60op { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-108yris-container { aspect-ratio: 1.3571428571428572 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 420px); position: sticky; top: 120px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-aAUJQ .framer-16ocoy9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 600px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-1tfq89q, .framer-aAUJQ .framer-1hets6r, .framer-aAUJQ .framer-1ou0llt, .framer-aAUJQ .framer-pb816c, .framer-aAUJQ .framer-1h254ew { 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: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-d38my4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-gvevdj-container, .framer-aAUJQ .framer-ezpgjd-container, .framer-aAUJQ .framer-1kag1rr-container, .framer-aAUJQ .framer-xncdqt-container { flex: none; height: 560px; position: relative; width: 100%; z-index: 1; }\",\".framer-aAUJQ .framer-abem2z, .framer-aAUJQ .framer-1gxpzhz, .framer-aAUJQ .framer-vi7076 { background-color: var(--token-7d1f337e-d1f3-467b-a83b-01c4a2ca74e0, #19191a); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1my0xvo { 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: 32px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-o79s5q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-w13or3 { 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: center; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1b9lvx8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1k5uet5 { align-content: center; align-items: center; background-color: var(--token-4f70b3eb-e9f7-4fc2-88a0-8b6948a44720, #0e0e10); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-7l2pb3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-ro2t5j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1tl0hhy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-1kero21 { flex: none; height: 480px; overflow: hidden; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1apupb0 { background: linear-gradient(130deg, rgba(11, 11, 13, 0.2) 0%, rgb(14, 14, 16) 100%); flex: none; height: 480px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-aAUJQ .framer-1phsyv3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-cy1jds-container { flex: none; height: 60px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1foi3f3, .framer-aAUJQ .framer-zbxjgn, .framer-aAUJQ .framer-j4b4il, .framer-aAUJQ .framer-linr8w, .framer-aAUJQ .framer-1mkmpcz, .framer-aAUJQ .framer-1a94lew { height: 42px; opacity: 0.5; position: relative; width: 150px; }\",\".framer-aAUJQ .framer-my9jzo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-vcq0gd { 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: 120px 32px 62px 32px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-1fvc9ac { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-1lommsc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-zz7m5d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 160px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-aAUJQ .framer-iwn4c6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-5lbap2, .framer-aAUJQ .framer-1tubx0s { 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: 120px 32px 62px 32px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-454o4g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-aAUJQ .framer-r78s2t-container { flex: none; height: auto; max-width: 600px; position: relative; width: 100%; z-index: 2; }\",\".framer-aAUJQ .framer-hv4qvg { -webkit-filter: blur(40px); aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; filter: blur(40px); flex: none; height: var(--framer-aspect-ratio-supported, 325px); left: 50%; opacity: 0.05; overflow: hidden; position: absolute; top: 55px; transform: translateX(-50%); width: 325px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-aAUJQ .framer-kl1usz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-aAUJQ .framer-1ne0lun { -webkit-filter: blur(40px); aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; filter: blur(40px); flex: none; height: var(--framer-aspect-ratio-supported, 325px); left: 50%; opacity: 0.02; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 325px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-aAUJQ .framer-qbqv5w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aAUJQ .framer-k73hhg { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-aAUJQ .framer-ixsx6t-container, .framer-aAUJQ .framer-1hk3rpj-container, .framer-aAUJQ .framer-1vaejt8-container, .framer-aAUJQ .framer-grvuau-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-qlefgw { 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: 32px 32px 62px 32px; position: relative; width: 100%; }\",\".framer-aAUJQ .framer-8z62xh-container { flex: 1 0 0px; height: auto; max-width: 1200px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aAUJQ.framer-72rtr7, .framer-aAUJQ .framer-1a324ws, .framer-aAUJQ .framer-a9zdix, .framer-aAUJQ .framer-vqu470, .framer-aAUJQ .framer-67b80l, .framer-aAUJQ .framer-16cs22z, .framer-aAUJQ .framer-1cgfs1d, .framer-aAUJQ .framer-k4rg9k, .framer-aAUJQ .framer-1bu7oxl, .framer-aAUJQ .framer-1svd3yv, .framer-aAUJQ .framer-16r7dva, .framer-aAUJQ .framer-1aq683q, .framer-aAUJQ .framer-18tpm7p, .framer-aAUJQ .framer-5r60op, .framer-aAUJQ .framer-16ocoy9, .framer-aAUJQ .framer-1tfq89q, .framer-aAUJQ .framer-d38my4, .framer-aAUJQ .framer-1hets6r, .framer-aAUJQ .framer-1ou0llt, .framer-aAUJQ .framer-pb816c, .framer-aAUJQ .framer-1my0xvo, .framer-aAUJQ .framer-h60cv, .framer-aAUJQ .framer-o79s5q, .framer-aAUJQ .framer-w13or3, .framer-aAUJQ .framer-1h254ew, .framer-aAUJQ .framer-1b9lvx8, .framer-aAUJQ .framer-1k5uet5, .framer-aAUJQ .framer-7l2pb3, .framer-aAUJQ .framer-ro2t5j, .framer-aAUJQ .framer-1tl0hhy, .framer-aAUJQ .framer-1phsyv3, .framer-aAUJQ .framer-my9jzo, .framer-aAUJQ .framer-vcq0gd, .framer-aAUJQ .framer-1fvc9ac, .framer-aAUJQ .framer-1lommsc, .framer-aAUJQ .framer-zz7m5d, .framer-aAUJQ .framer-iwn4c6, .framer-aAUJQ .framer-5lbap2, .framer-aAUJQ .framer-sdjymb, .framer-aAUJQ .framer-454o4g, .framer-aAUJQ .framer-1tubx0s, .framer-aAUJQ .framer-kl1usz, .framer-aAUJQ .framer-2w0c9l, .framer-aAUJQ .framer-qlefgw { gap: 0px; } .framer-aAUJQ.framer-72rtr7 > *, .framer-aAUJQ .framer-1svd3yv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aAUJQ.framer-72rtr7 > :first-child, .framer-aAUJQ .framer-67b80l > :first-child, .framer-aAUJQ .framer-16cs22z > :first-child, .framer-aAUJQ .framer-k4rg9k > :first-child, .framer-aAUJQ .framer-1bu7oxl > :first-child, .framer-aAUJQ .framer-1svd3yv > :first-child, .framer-aAUJQ .framer-16ocoy9 > :first-child, .framer-aAUJQ .framer-1tfq89q > :first-child, .framer-aAUJQ .framer-1hets6r > :first-child, .framer-aAUJQ .framer-1ou0llt > :first-child, .framer-aAUJQ .framer-pb816c > :first-child, .framer-aAUJQ .framer-h60cv > :first-child, .framer-aAUJQ .framer-o79s5q > :first-child, .framer-aAUJQ .framer-w13or3 > :first-child, .framer-aAUJQ .framer-1h254ew > :first-child, .framer-aAUJQ .framer-7l2pb3 > :first-child, .framer-aAUJQ .framer-1tl0hhy > :first-child, .framer-aAUJQ .framer-1phsyv3 > :first-child, .framer-aAUJQ .framer-my9jzo > :first-child, .framer-aAUJQ .framer-1fvc9ac > :first-child, .framer-aAUJQ .framer-zz7m5d > :first-child, .framer-aAUJQ .framer-iwn4c6 > :first-child, .framer-aAUJQ .framer-sdjymb > :first-child, .framer-aAUJQ .framer-454o4g > :first-child, .framer-aAUJQ .framer-kl1usz > :first-child, .framer-aAUJQ .framer-2w0c9l > :first-child { margin-top: 0px; } .framer-aAUJQ.framer-72rtr7 > :last-child, .framer-aAUJQ .framer-67b80l > :last-child, .framer-aAUJQ .framer-16cs22z > :last-child, .framer-aAUJQ .framer-k4rg9k > :last-child, .framer-aAUJQ .framer-1bu7oxl > :last-child, .framer-aAUJQ .framer-1svd3yv > :last-child, .framer-aAUJQ .framer-16ocoy9 > :last-child, .framer-aAUJQ .framer-1tfq89q > :last-child, .framer-aAUJQ .framer-1hets6r > :last-child, .framer-aAUJQ .framer-1ou0llt > :last-child, .framer-aAUJQ .framer-pb816c > :last-child, .framer-aAUJQ .framer-h60cv > :last-child, .framer-aAUJQ .framer-o79s5q > :last-child, .framer-aAUJQ .framer-w13or3 > :last-child, .framer-aAUJQ .framer-1h254ew > :last-child, .framer-aAUJQ .framer-7l2pb3 > :last-child, .framer-aAUJQ .framer-1tl0hhy > :last-child, .framer-aAUJQ .framer-1phsyv3 > :last-child, .framer-aAUJQ .framer-my9jzo > :last-child, .framer-aAUJQ .framer-1fvc9ac > :last-child, .framer-aAUJQ .framer-zz7m5d > :last-child, .framer-aAUJQ .framer-iwn4c6 > :last-child, .framer-aAUJQ .framer-sdjymb > :last-child, .framer-aAUJQ .framer-454o4g > :last-child, .framer-aAUJQ .framer-kl1usz > :last-child, .framer-aAUJQ .framer-2w0c9l > :last-child { margin-bottom: 0px; } .framer-aAUJQ .framer-1a324ws > *, .framer-aAUJQ .framer-a9zdix > *, .framer-aAUJQ .framer-vqu470 > *, .framer-aAUJQ .framer-1cgfs1d > *, .framer-aAUJQ .framer-18tpm7p > *, .framer-aAUJQ .framer-1my0xvo > *, .framer-aAUJQ .framer-1k5uet5 > *, .framer-aAUJQ .framer-vcq0gd > *, .framer-aAUJQ .framer-5lbap2 > *, .framer-aAUJQ .framer-1tubx0s > *, .framer-aAUJQ .framer-qlefgw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aAUJQ .framer-1a324ws > :first-child, .framer-aAUJQ .framer-a9zdix > :first-child, .framer-aAUJQ .framer-vqu470 > :first-child, .framer-aAUJQ .framer-1cgfs1d > :first-child, .framer-aAUJQ .framer-16r7dva > :first-child, .framer-aAUJQ .framer-1aq683q > :first-child, .framer-aAUJQ .framer-18tpm7p > :first-child, .framer-aAUJQ .framer-5r60op > :first-child, .framer-aAUJQ .framer-d38my4 > :first-child, .framer-aAUJQ .framer-1my0xvo > :first-child, .framer-aAUJQ .framer-1b9lvx8 > :first-child, .framer-aAUJQ .framer-1k5uet5 > :first-child, .framer-aAUJQ .framer-ro2t5j > :first-child, .framer-aAUJQ .framer-vcq0gd > :first-child, .framer-aAUJQ .framer-1lommsc > :first-child, .framer-aAUJQ .framer-5lbap2 > :first-child, .framer-aAUJQ .framer-1tubx0s > :first-child, .framer-aAUJQ .framer-qlefgw > :first-child { margin-left: 0px; } .framer-aAUJQ .framer-1a324ws > :last-child, .framer-aAUJQ .framer-a9zdix > :last-child, .framer-aAUJQ .framer-vqu470 > :last-child, .framer-aAUJQ .framer-1cgfs1d > :last-child, .framer-aAUJQ .framer-16r7dva > :last-child, .framer-aAUJQ .framer-1aq683q > :last-child, .framer-aAUJQ .framer-18tpm7p > :last-child, .framer-aAUJQ .framer-5r60op > :last-child, .framer-aAUJQ .framer-d38my4 > :last-child, .framer-aAUJQ .framer-1my0xvo > :last-child, .framer-aAUJQ .framer-1b9lvx8 > :last-child, .framer-aAUJQ .framer-1k5uet5 > :last-child, .framer-aAUJQ .framer-ro2t5j > :last-child, .framer-aAUJQ .framer-vcq0gd > :last-child, .framer-aAUJQ .framer-1lommsc > :last-child, .framer-aAUJQ .framer-5lbap2 > :last-child, .framer-aAUJQ .framer-1tubx0s > :last-child, .framer-aAUJQ .framer-qlefgw > :last-child { margin-right: 0px; } .framer-aAUJQ .framer-67b80l > *, .framer-aAUJQ .framer-o79s5q > *, .framer-aAUJQ .framer-my9jzo > *, .framer-aAUJQ .framer-kl1usz > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-aAUJQ .framer-16cs22z > *, .framer-aAUJQ .framer-1tfq89q > *, .framer-aAUJQ .framer-1hets6r > *, .framer-aAUJQ .framer-1ou0llt > *, .framer-aAUJQ .framer-pb816c > *, .framer-aAUJQ .framer-1h254ew > *, .framer-aAUJQ .framer-zz7m5d > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-aAUJQ .framer-k4rg9k > *, .framer-aAUJQ .framer-h60cv > *, .framer-aAUJQ .framer-1phsyv3 > *, .framer-aAUJQ .framer-1fvc9ac > *, .framer-aAUJQ .framer-sdjymb > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-aAUJQ .framer-1bu7oxl > *, .framer-aAUJQ .framer-454o4g > *, .framer-aAUJQ .framer-2w0c9l > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-aAUJQ .framer-16r7dva > *, .framer-aAUJQ .framer-1aq683q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-aAUJQ .framer-5r60op > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-aAUJQ .framer-16ocoy9 > * { margin: 0px; margin-bottom: calc(600px / 2); margin-top: calc(600px / 2); } .framer-aAUJQ .framer-d38my4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-aAUJQ .framer-w13or3 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-aAUJQ .framer-1b9lvx8 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-aAUJQ .framer-7l2pb3 > *, .framer-aAUJQ .framer-iwn4c6 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-aAUJQ .framer-ro2t5j > *, .framer-aAUJQ .framer-1lommsc > * { margin: 0px; margin-left: calc(62px / 2); margin-right: calc(62px / 2); } .framer-aAUJQ .framer-1tl0hhy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-aAUJQ { background: var(--token-7c92defb-aea7-4d14-b6f7-d2c083c349bf, rgb(11, 11, 13)) /* {\"name\":\"Dark 1\"} */; } .framer-aAUJQ.framer-72rtr7 { width: 810px; } .framer-aAUJQ .framer-1cnt1a5-container { flex: 1 0 0px; width: 1px; } .framer-aAUJQ .framer-1cgfs1d { padding: 120px 32px 62px 32px; } .framer-aAUJQ .framer-18tpm7p, .framer-aAUJQ .framer-1tubx0s { padding: 62px 32px 62px 32px; } .framer-aAUJQ .framer-5r60op, .framer-aAUJQ .framer-1lommsc { gap: 32px; } .framer-aAUJQ .framer-108yris-container { height: var(--framer-aspect-ratio-supported, 293px); order: 0; } .framer-aAUJQ .framer-16ocoy9 { align-content: flex-start; align-items: flex-start; flex: 0.8 0 0px; gap: 320px; order: 1; padding: 80px 0px 80px 0px; } .framer-aAUJQ .framer-1tfq89q { order: 1; } .framer-aAUJQ .framer-1hets6r { order: 4; } .framer-aAUJQ .framer-1ou0llt { order: 7; } .framer-aAUJQ .framer-pb816c { order: 10; } .framer-aAUJQ .framer-w13or3 { order: 0; } .framer-aAUJQ .framer-1b9lvx8 { flex-direction: column; order: 1; } .framer-aAUJQ .framer-1e1cy8q-container, .framer-aAUJQ .framer-1serg1u-container, .framer-aAUJQ .framer-1pzme-container, .framer-aAUJQ .framer-1tl0hhy, .framer-aAUJQ .framer-1phsyv3 { flex: none; width: 100%; } .framer-aAUJQ .framer-ro2t5j { flex-direction: column; } .framer-aAUJQ .framer-r78s2t-container { max-width: unset; } .framer-aAUJQ .framer-k73hhg { grid-template-columns: repeat(2, minmax(50px, 1fr)); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aAUJQ .framer-5r60op, .framer-aAUJQ .framer-16ocoy9, .framer-aAUJQ .framer-1b9lvx8, .framer-aAUJQ .framer-ro2t5j, .framer-aAUJQ .framer-1lommsc { gap: 0px; } .framer-aAUJQ .framer-5r60op > *, .framer-aAUJQ .framer-1lommsc > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-aAUJQ .framer-5r60op > :first-child, .framer-aAUJQ .framer-1lommsc > :first-child { margin-left: 0px; } .framer-aAUJQ .framer-5r60op > :last-child, .framer-aAUJQ .framer-1lommsc > :last-child { margin-right: 0px; } .framer-aAUJQ .framer-16ocoy9 > * { margin: 0px; margin-bottom: calc(320px / 2); margin-top: calc(320px / 2); } .framer-aAUJQ .framer-16ocoy9 > :first-child, .framer-aAUJQ .framer-1b9lvx8 > :first-child, .framer-aAUJQ .framer-ro2t5j > :first-child { margin-top: 0px; } .framer-aAUJQ .framer-16ocoy9 > :last-child, .framer-aAUJQ .framer-1b9lvx8 > :last-child, .framer-aAUJQ .framer-ro2t5j > :last-child { margin-bottom: 0px; } .framer-aAUJQ .framer-1b9lvx8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-aAUJQ .framer-ro2t5j > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-aAUJQ { background: var(--token-7c92defb-aea7-4d14-b6f7-d2c083c349bf, rgb(11, 11, 13)) /* {\"name\":\"Dark 1\"} */; } .framer-aAUJQ.framer-72rtr7 { width: 390px; } .framer-aAUJQ .framer-1a324ws { flex-direction: column; padding: 16px; } .framer-aAUJQ .framer-1cnt1a5-container { width: 100%; } .framer-aAUJQ .framer-a9zdix { flex-direction: column; padding: 0px 16px 0px 16px; } .framer-aAUJQ .framer-vqu470 { flex: none; padding: 32px 0px 32px 0px; width: 100%; } .framer-aAUJQ .framer-1cgfs1d, .framer-aAUJQ .framer-18tpm7p, .framer-aAUJQ .framer-1k5uet5, .framer-aAUJQ .framer-vcq0gd, .framer-aAUJQ .framer-5lbap2, .framer-aAUJQ .framer-1tubx0s { flex-direction: column; padding: 62px 16px 62px 16px; } .framer-aAUJQ .framer-k4rg9k, .framer-aAUJQ .framer-e4vmcb-container, .framer-aAUJQ .framer-ufspmr, .framer-aAUJQ .framer-6mka4b-container, .framer-aAUJQ .framer-15be3r8, .framer-aAUJQ .framer-fay74c-container, .framer-aAUJQ .framer-dfufwl-container, .framer-aAUJQ .framer-xe282, .framer-aAUJQ .framer-wxpgsm-container, .framer-aAUJQ .framer-sjtwkv, .framer-aAUJQ .framer-x3dznm-container, .framer-aAUJQ .framer-h60cv, .framer-aAUJQ .framer-1e1cy8q-container, .framer-aAUJQ .framer-1serg1u-container, .framer-aAUJQ .framer-1pzme-container, .framer-aAUJQ .framer-7l2pb3, .framer-aAUJQ .framer-1tl0hhy, .framer-aAUJQ .framer-1phsyv3, .framer-aAUJQ .framer-1fvc9ac, .framer-aAUJQ .framer-sdjymb, .framer-aAUJQ .framer-kl1usz, .framer-aAUJQ .framer-8z62xh-container { flex: none; width: 100%; } .framer-aAUJQ .framer-16r7dva { flex-direction: column; order: 0; } .framer-aAUJQ .framer-1l9uenn, .framer-aAUJQ .framer-abem2z { order: 2; } .framer-aAUJQ .framer-ochjki, .framer-aAUJQ .framer-1tfq89q { order: 1; } .framer-aAUJQ .framer-1aq683q { flex-direction: column; order: 3; } .framer-aAUJQ .framer-5r60op { flex: none; gap: 32px; width: 100%; } .framer-aAUJQ .framer-16ocoy9 { gap: 32px; padding: 0px 0px 120px 0px; } .framer-aAUJQ .framer-gvevdj-container { aspect-ratio: 1.2785714285714285 / 1; height: var(--framer-aspect-ratio-supported, 280px); order: 3; } .framer-aAUJQ .framer-1hets6r { order: 4; } .framer-aAUJQ .framer-ezpgjd-container { aspect-ratio: 1.2785714285714285 / 1; height: var(--framer-aspect-ratio-supported, 280px); order: 6; } .framer-aAUJQ .framer-1ou0llt { order: 7; } .framer-aAUJQ .framer-1gxpzhz { order: 5; } .framer-aAUJQ .framer-pb816c { order: 10; } .framer-aAUJQ .framer-1kag1rr-container { aspect-ratio: 1.2785714285714285 / 1; height: var(--framer-aspect-ratio-supported, 280px); order: 9; } .framer-aAUJQ .framer-xncdqt-container { aspect-ratio: 1.2785714285714285 / 1; height: var(--framer-aspect-ratio-supported, 280px); order: 0; } .framer-aAUJQ .framer-vi7076 { order: 8; } .framer-aAUJQ .framer-1my0xvo { flex-direction: column; padding: 32px 16px 120px 16px; } .framer-aAUJQ .framer-o79s5q { gap: 32px; } .framer-aAUJQ .framer-w13or3 { order: 0; } .framer-aAUJQ .framer-1b9lvx8 { flex-direction: column; order: 1; } .framer-aAUJQ .framer-ro2t5j { flex-direction: column; } .framer-aAUJQ .framer-1kero21 { height: 320px; } .framer-aAUJQ .framer-1lommsc { flex-direction: column; gap: 32px; } .framer-aAUJQ .framer-zz7m5d { flex: none; position: relative; top: unset; width: 100%; } .framer-aAUJQ .framer-iwn4c6 { flex: none; gap: 60px; width: 100%; } .framer-aAUJQ .framer-r78s2t-container { max-width: unset; } .framer-aAUJQ .framer-k73hhg { gap: 32px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-aAUJQ .framer-qlefgw { flex-direction: column; padding: 32px 16px 62px 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aAUJQ .framer-1a324ws, .framer-aAUJQ .framer-a9zdix, .framer-aAUJQ .framer-1cgfs1d, .framer-aAUJQ .framer-16r7dva, .framer-aAUJQ .framer-1aq683q, .framer-aAUJQ .framer-18tpm7p, .framer-aAUJQ .framer-5r60op, .framer-aAUJQ .framer-16ocoy9, .framer-aAUJQ .framer-1my0xvo, .framer-aAUJQ .framer-o79s5q, .framer-aAUJQ .framer-1b9lvx8, .framer-aAUJQ .framer-1k5uet5, .framer-aAUJQ .framer-ro2t5j, .framer-aAUJQ .framer-vcq0gd, .framer-aAUJQ .framer-1lommsc, .framer-aAUJQ .framer-iwn4c6, .framer-aAUJQ .framer-5lbap2, .framer-aAUJQ .framer-1tubx0s, .framer-aAUJQ .framer-k73hhg, .framer-aAUJQ .framer-qlefgw { gap: 0px; } .framer-aAUJQ .framer-1a324ws > *, .framer-aAUJQ .framer-a9zdix > *, .framer-aAUJQ .framer-1cgfs1d > *, .framer-aAUJQ .framer-18tpm7p > *, .framer-aAUJQ .framer-1my0xvo > *, .framer-aAUJQ .framer-1k5uet5 > *, .framer-aAUJQ .framer-vcq0gd > *, .framer-aAUJQ .framer-5lbap2 > *, .framer-aAUJQ .framer-1tubx0s > *, .framer-aAUJQ .framer-qlefgw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aAUJQ .framer-1a324ws > :first-child, .framer-aAUJQ .framer-a9zdix > :first-child, .framer-aAUJQ .framer-1cgfs1d > :first-child, .framer-aAUJQ .framer-16r7dva > :first-child, .framer-aAUJQ .framer-1aq683q > :first-child, .framer-aAUJQ .framer-18tpm7p > :first-child, .framer-aAUJQ .framer-16ocoy9 > :first-child, .framer-aAUJQ .framer-1my0xvo > :first-child, .framer-aAUJQ .framer-o79s5q > :first-child, .framer-aAUJQ .framer-1b9lvx8 > :first-child, .framer-aAUJQ .framer-1k5uet5 > :first-child, .framer-aAUJQ .framer-ro2t5j > :first-child, .framer-aAUJQ .framer-vcq0gd > :first-child, .framer-aAUJQ .framer-1lommsc > :first-child, .framer-aAUJQ .framer-iwn4c6 > :first-child, .framer-aAUJQ .framer-5lbap2 > :first-child, .framer-aAUJQ .framer-1tubx0s > :first-child, .framer-aAUJQ .framer-qlefgw > :first-child { margin-top: 0px; } .framer-aAUJQ .framer-1a324ws > :last-child, .framer-aAUJQ .framer-a9zdix > :last-child, .framer-aAUJQ .framer-1cgfs1d > :last-child, .framer-aAUJQ .framer-16r7dva > :last-child, .framer-aAUJQ .framer-1aq683q > :last-child, .framer-aAUJQ .framer-18tpm7p > :last-child, .framer-aAUJQ .framer-16ocoy9 > :last-child, .framer-aAUJQ .framer-1my0xvo > :last-child, .framer-aAUJQ .framer-o79s5q > :last-child, .framer-aAUJQ .framer-1b9lvx8 > :last-child, .framer-aAUJQ .framer-1k5uet5 > :last-child, .framer-aAUJQ .framer-ro2t5j > :last-child, .framer-aAUJQ .framer-vcq0gd > :last-child, .framer-aAUJQ .framer-1lommsc > :last-child, .framer-aAUJQ .framer-iwn4c6 > :last-child, .framer-aAUJQ .framer-5lbap2 > :last-child, .framer-aAUJQ .framer-1tubx0s > :last-child, .framer-aAUJQ .framer-qlefgw > :last-child { margin-bottom: 0px; } .framer-aAUJQ .framer-16r7dva > *, .framer-aAUJQ .framer-1aq683q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aAUJQ .framer-5r60op > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-aAUJQ .framer-5r60op > :first-child { margin-left: 0px; } .framer-aAUJQ .framer-5r60op > :last-child { margin-right: 0px; } .framer-aAUJQ .framer-16ocoy9 > *, .framer-aAUJQ .framer-o79s5q > *, .framer-aAUJQ .framer-1lommsc > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aAUJQ .framer-1b9lvx8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-aAUJQ .framer-ro2t5j > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-aAUJQ .framer-iwn4c6 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-aAUJQ .framer-k73hhg > *, .framer-aAUJQ .framer-k73hhg > :first-child, .framer-aAUJQ .framer-k73hhg > :last-child { margin: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10063.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RZXfZKp1b\":{\"layout\":[\"fixed\",\"auto\"]},\"UfF0edyce\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-aAUJQ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10063.5,width:1440};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\"}]},...NavbarFonts,...ButtonSolidFonts,...HeroImageFonts,...FeatureItemFonts,...ImageTabFonts,...FeatureBadgeFonts,...SectionBadgeFonts,...TestimonialItemFonts,...TickerFonts,...ImageItemFonts,...AccordionFonts,...PriceItemFonts,...CTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"10063.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RZXfZKp1b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UfF0edyce\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"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", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "u", "d", "f", "l", "g", "glide", "a", "o", "h", "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", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "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", "keyframes", "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", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "D8OrFd5wi", "I9FpWctAA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerAn_WrdDP7", "withCSS", "An_WrdDP7_default", "addPropertyControls", "PhosphorControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearp032uo", "args", "onAppear1y1sa1c", "onAppear1fzdbkw", "onAppear1uwogty", "onAppearr812s8", "onAppearp2vdcu", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "Image2", "getLoadingLazyAtYPosition", "css", "FramerBFXWR6J47", "withCSS", "BFXWR6J47_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "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", "content", "height", "id", "image", "name1", "position", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zg0t7MC_Q", "KFjlirc0G", "TbHlJSy3B", "qfJXoKuLm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerdrNwxem2Y", "withCSS", "drNwxem2Y_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "paragraph", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "uXtGFYA1z", "mw_JCktF7", "nSoKekbEi", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerEW7y2ZIXg", "withCSS", "EW7y2ZIXg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "onTapo0gb0n", "args", "onTap12jrw5e", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerOwUUArcJc", "withCSS", "OwUUArcJc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RowFonts", "getFonts", "OwUUArcJc_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", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "OwUUArcJc_default", "css", "FramerFmiqlgvwt", "withCSS", "Fmiqlgvwt_default", "addFonts", "RowFonts", "PhosphorFonts", "getFonts", "Icon", "ButtonSolidFonts", "wiLUxVe42_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "border", "buttonLink", "description", "feature1", "feature2", "feature3", "feature4", "height", "id", "type", "width", "yearlyPrice", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "_ref7", "_ref8", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DO7hcLor5", "vXpR9AeV8", "lsby3qYjI", "Yodi3dixt", "B891BD5rN", "Yb_2bVNY8", "RJkPFWaft", "h2_A6z6ml", "Cc3E6p8sy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "visible1", "visible2", "visible3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_Cc3E6p8sy_borderBottomWidth", "_Cc3E6p8sy_borderLeftWidth", "_Cc3E6p8sy_borderRightWidth", "_Cc3E6p8sy_borderTopWidth", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramernlmTUx67C", "withCSS", "nlmTUx67C_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonPrimaryFonts", "getFonts", "ljk_nUJmB_default", "ImageWithFX", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "cx", "RichText2", "ComponentViewportProvider", "css", "FramernOc71lskF", "withCSS", "nOc71lskF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "paragraph", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "PmueU7fYv", "vUu2yPlbA", "HRC3gslUl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "MotionDivWithFX", "cx", "serializationHash", "addPropertyOverrides", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framervwd9GHTJP", "withCSS", "vwd9GHTJP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "getLoadingLazyAtYPosition", "Image2", "css", "FramerwXlJ3V0RH", "withCSS", "wXlJ3V0RH_default", "addPropertyControls", "ControlType", "addFonts", "NavbarFonts", "getFonts", "UmGNFKKXS_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ButtonSolidFonts", "wiLUxVe42_default", "MotionDivWithOptimizedAppearEffect", "motion", "HeroImageFonts", "BFXWR6J47_default", "MotionDivWithFX", "withFX", "FeatureItemFonts", "EW7y2ZIXg_default", "ContainerWithFX", "ImageTabFonts", "wXlJ3V0RH_default", "ImageTabWithVariantAppearEffect", "FeatureBadgeFonts", "An_WrdDP7_default", "SectionBadgeFonts", "Wyff7RHgu_default", "TestimonialItemFonts", "drNwxem2Y_default", "ImageWithFX", "Image2", "TickerFonts", "Ticker", "ImageItemFonts", "vwd9GHTJP_default", "AccordionFonts", "Fmiqlgvwt_default", "PriceItemFonts", "nlmTUx67C_default", "CTAFonts", "nOc71lskF_default", "FooterFonts", "eJhklGgsC_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "animation6", "animation7", "transition4", "animation8", "transition5", "animation9", "transition6", "animation10", "transition7", "animation11", "transition8", "animation12", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "ref3", "elementId1", "elementId2", "ref4", "isDisplayed", "isDisplayed1", "elementId3", "ref5", "ref6", "ref7", "ref8", "elementId4", "ref9", "elementId5", "elementId6", "elementId7", "elementId8", "ref10", "elementId9", "ref11", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "x", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
