{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/85lz4veqij21SBhPj5mF/sHfVv2B2WNtFf5Xj0zBz/fc32EPQc9.js", "ssg:https://framerusercontent.com/modules/bWm50ICmGBAUU3yy5kc4/u5QDZ1IyyIc3U1LidqLO/FzDwBArix.js", "ssg:https://framerusercontent.com/modules/6S19hrkNnuMo5Fwkv1X3/iRnXrKv6oS89Do27TFR5/nmLke3Xmd.js", "ssg:https://framerusercontent.com/modules/PWmNIgbW8oxyUzCGKpmA/h9A51RJoxBpIxUFgwZrM/nZhEWCx7R.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const 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 (139b156)\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}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/rkoOilyh86wcoDv5HQ9h/0IR5sGHvEuu64eTUqsPd/qi_bSz1Uu.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/HngWfbCjuIHv16zmrTGY/i7oXurtKOyWL6FFjzTSH/wpOm8yk8n.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const PhosphorControls=getPropertyControls(Phosphor);const serializationHash=\"framer-A1KM4\";const variantClassNames={JDwpFgwIr:\"framer-v-a9teag\"};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:.95,skewX:0,skewY:0,x:0,y:10};const transition1={damping:56,delay:.1,mass:1,stiffness:400,type:\"spring\"};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 getProps=({header,height,icon,id,subHeader,width,...props})=>{var _ref,_ref1,_ref2;return{...props,hBEaJVWo2:(_ref=icon!==null&&icon!==void 0?icon:props.hBEaJVWo2)!==null&&_ref!==void 0?_ref:\"House\",NIGWgfM3W:(_ref1=header!==null&&header!==void 0?header:props.NIGWgfM3W)!==null&&_ref1!==void 0?_ref1:\"Quality User Acquisition\",ugTUK_E0z:(_ref2=subHeader!==null&&subHeader!==void 0?subHeader:props.ugTUK_E0z)!==null&&_ref2!==void 0?_ref2:\"Leverage data-driven campaigns to attract high-quality users that deliver long-term value.\"};};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,hBEaJVWo2,NIGWgfM3W,ugTUK_E0z,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"JDwpFgwIr\",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__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-a9teag\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"JDwpFgwIr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b554c2e7-869d-481f-b00a-b48a4520ce88, rgb(209, 217, 226))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(245, 248, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"inset 0px 0px 0px 1px var(--token-b554c2e7-869d-481f-b00a-b48a4520ce88, rgb(209, 217, 226))\",...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-34a54e\",\"data-framer-name\":\"Icon Wrapper\",layoutDependency:layoutDependency,layoutId:\"ybnCPR8o7\",style:{backgroundColor:\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bn7oy-container\",layoutDependency:layoutDependency,layoutId:\"yQuttpoVu-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:hBEaJVWo2,id:\"yQuttpoVu\",layoutId:\"yQuttpoVu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16m66dx\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"kjCBAl2zz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zm5294\",\"data-styles-preset\":\"wpOm8yk8n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14)))\"},children:\"Quality User Acquisition\"})}),className:\"framer-181dya0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FnK9VJYqg\",style:{\"--extracted-r6o4lv\":\"var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NIGWgfM3W,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qpglbq\",\"data-styles-preset\":\"qi_bSz1Uu\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e0c35a94-1e5d-462d-a076-bfc3f500bc51, rgb(99, 99, 99)))\"},children:\"Leverage data-driven campaigns to attract high-quality users that deliver long-term value.\"})}),className:\"framer-1xanj09\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V2kVOvnGP\",style:{\"--extracted-r6o4lv\":\"var(--token-e0c35a94-1e5d-462d-a076-bfc3f500bc51, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ugTUK_E0z,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A1KM4.framer-1ptyzh4, .framer-A1KM4 .framer-1ptyzh4 { display: block; }\",\".framer-A1KM4.framer-a9teag { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 334px; will-change: var(--framer-will-change-override, transform); }\",\".framer-A1KM4 .framer-34a54e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-A1KM4 .framer-bn7oy-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-A1KM4 .framer-16m66dx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-A1KM4 .framer-181dya0, .framer-A1KM4 .framer-1xanj09 { 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-A1KM4.framer-a9teag, .framer-A1KM4 .framer-34a54e, .framer-A1KM4 .framer-16m66dx { gap: 0px; } .framer-A1KM4.framer-a9teag > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-A1KM4.framer-a9teag > :first-child, .framer-A1KM4 .framer-16m66dx > :first-child { margin-top: 0px; } .framer-A1KM4.framer-a9teag > :last-child, .framer-A1KM4 .framer-16m66dx > :last-child { margin-bottom: 0px; } .framer-A1KM4 .framer-34a54e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-A1KM4 .framer-34a54e > :first-child { margin-left: 0px; } .framer-A1KM4 .framer-34a54e > :last-child { margin-right: 0px; } .framer-A1KM4 .framer-16m66dx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-A1KM4[data-border=\"true\"]::after, .framer-A1KM4 [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 260\n * @framerIntrinsicWidth 334\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hBEaJVWo2\":\"icon\",\"NIGWgfM3W\":\"header\",\"ugTUK_E0z\":\"subHeader\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerfc32EPQc9=withCSS(Component,css,\"framer-A1KM4\");export default Framerfc32EPQc9;Framerfc32EPQc9.displayName=\"Feature Card\";Framerfc32EPQc9.defaultProps={height:260,width:334};addPropertyControls(Framerfc32EPQc9,{hBEaJVWo2:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"},NIGWgfM3W:{defaultValue:\"Quality User Acquisition\",displayTextArea:false,title:\"Header\",type:ControlType.String},ugTUK_E0z:{defaultValue:\"Leverage data-driven campaigns to attract high-quality users that deliver long-term value.\",displayTextArea:false,title:\"Sub-Header\",type:ControlType.String}});addFonts(Framerfc32EPQc9,[{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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerfc32EPQc9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"334\",\"framerVariables\":\"{\\\"hBEaJVWo2\\\":\\\"icon\\\",\\\"NIGWgfM3W\\\":\\\"header\\\",\\\"ugTUK_E0z\\\":\\\"subHeader\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"260\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fc32EPQc9.map", "// Generated by Framer (ec8bce6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={r973KbceK:{hover:true,pressed:true}};const cycleOrder=[\"r973KbceK\",\"TJeu_Tqak\",\"YaNr6ULve\",\"rg91uaFlW\",\"uLzD4pRt3\"];const serializationHash=\"framer-kU8mw\";const variantClassNames={r973KbceK:\"framer-v-1320fc8\",rg91uaFlW:\"framer-v-196ma44\",TJeu_Tqak:\"framer-v-1wfcjrn\",uLzD4pRt3:\"framer-v-1v9vihd\",YaNr6ULve:\"framer-v-2i6wp5\"};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 transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"r973KbceK\",Disabled:\"YaNr6ULve\",Error:\"uLzD4pRt3\",Loading:\"TJeu_Tqak\",Success:\"rg91uaFlW\"};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:\"r973KbceK\"};};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:\"r973KbceK\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"TJeu_Tqak\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"TJeu_Tqak\")return false;return true;};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.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1320fc8\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"r973KbceK\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(40, 62, 224)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:1,...style},variants:{\"r973KbceK-hover\":{backgroundColor:\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\"},\"r973KbceK-pressed\":{backgroundColor:\"rgb(4, 24, 179)\"},uLzD4pRt3:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"},YaNr6ULve:{opacity:.5}},...addPropertyOverrides({\"r973KbceK-hover\":{\"data-framer-name\":undefined},\"r973KbceK-pressed\":{\"data-framer-name\":undefined},rg91uaFlW:{\"data-framer-name\":\"Success\"},TJeu_Tqak:{\"data-framer-name\":\"Loading\"},uLzD4pRt3:{\"data-framer-name\":\"Error\"},YaNr6ULve:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rop1gj\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"Sd_o6Sz2g\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1rg4bvb\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"g9BpOiNUH\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{TJeu_Tqak:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vx5pdy\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"QPgilO4kB\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Request\"})}),className:\"framer-1qeb8i1\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"UKohzIdz1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{uLzD4pRt3:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rg91uaFlW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})},uLzD4pRt3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kU8mw.framer-jufi7a, .framer-kU8mw .framer-jufi7a { display: block; }\",\".framer-kU8mw.framer-1320fc8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-kU8mw .framer-rop1gj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-kU8mw .framer-1rg4bvb { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-kU8mw .framer-1vx5pdy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-kU8mw .framer-1qeb8i1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kU8mw.framer-1320fc8 { gap: 0px; } .framer-kU8mw.framer-1320fc8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-kU8mw.framer-1320fc8 > :first-child { margin-left: 0px; } .framer-kU8mw.framer-1320fc8 > :last-child { margin-right: 0px; } }\",\".framer-kU8mw.framer-v-1wfcjrn.framer-1320fc8, .framer-kU8mw.framer-v-2i6wp5.framer-1320fc8, .framer-kU8mw.framer-v-196ma44.framer-1320fc8, .framer-kU8mw.framer-v-1v9vihd.framer-1320fc8 { cursor: unset; }\",\".framer-kU8mw.framer-v-1wfcjrn .framer-1rg4bvb { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"TJeu_Tqak\":{\"layout\":[\"fixed\",\"fixed\"]},\"YaNr6ULve\":{\"layout\":[\"fixed\",\"fixed\"]},\"rg91uaFlW\":{\"layout\":[\"fixed\",\"fixed\"]},\"uLzD4pRt3\":{\"layout\":[\"fixed\",\"fixed\"]},\"gdtnRp3Bf\":{\"layout\":[\"fixed\",\"fixed\"]},\"jJlguwt8e\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFzDwBArix=withCSS(Component,css,\"framer-kU8mw\");export default FramerFzDwBArix;FramerFzDwBArix.displayName=\"Button White Paper\";FramerFzDwBArix.defaultProps={height:40,width:240};addPropertyControls(FramerFzDwBArix,{variant:{options:[\"r973KbceK\",\"TJeu_Tqak\",\"YaNr6ULve\",\"rg91uaFlW\",\"uLzD4pRt3\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFzDwBArix,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFzDwBArix\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TJeu_Tqak\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YaNr6ULve\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rg91uaFlW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uLzD4pRt3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gdtnRp3Bf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jJlguwt8e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FzDwBArix.map", "// Generated by Framer (b0998f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SVG,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 sharedStyle1 from\"https://framerusercontent.com/modules/7W9f6CCjE8cInjDCeR4N/xJFcYoa9wwoc20TkQnFW/V49oSKgxd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/HngWfbCjuIHv16zmrTGY/i7oXurtKOyWL6FFjzTSH/wpOm8yk8n.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={niNfwtuJU:{hover:true},UG47gug4J:{hover:true},URa6_9pq6:{hover:true}};const cycleOrder=[\"niNfwtuJU\",\"URa6_9pq6\",\"UG47gug4J\"];const serializationHash=\"framer-GUKND\";const variantClassNames={niNfwtuJU:\"framer-v-11agdxy\",UG47gug4J:\"framer-v-186h2ch\",URa6_9pq6:\"framer-v-1iuhry2\"};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={Almedia:\"URa6_9pq6\",Freecash:\"UG47gug4J\",Icon:\"niNfwtuJU\"};const getProps=({height,icon,id,link,name1,newTab,text,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,A_W2ocZwn:newTab!==null&&newTab!==void 0?newTab:props.A_W2ocZwn,NRuiw4Jg_:(_ref=icon!==null&&icon!==void 0?icon:props.NRuiw4Jg_)!==null&&_ref!==void 0?_ref:\"House\",ownL_xCBo:link!==null&&link!==void 0?link:props.ownL_xCBo,Rw_OTxucH:(_ref1=name1!==null&&name1!==void 0?name1:props.Rw_OTxucH)!==null&&_ref1!==void 0?_ref1:\"Blogs\",UWBPI7h3k:(_ref2=text!==null&&text!==void 0?text:props.UWBPI7h3k)!==null&&_ref2!==void 0?_ref2:\"Discover insights, tips, and stories on various topics to keep you updated\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"niNfwtuJU\"};};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,Rw_OTxucH,UWBPI7h3k,ownL_xCBo,NRuiw4Jg_,A_W2ocZwn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"niNfwtuJU\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"URa6_9pq6-hover\",\"UG47gug4J-hover\"].includes(gestureVariant))return false;if([\"URa6_9pq6\",\"UG47gug4J\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"URa6_9pq6-hover\")return true;if(baseVariant===\"URa6_9pq6\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"UG47gug4J-hover\")return true;if(baseVariant===\"UG47gug4J\")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__*/_jsx(Link,{href:ownL_xCBo,nodeId:\"niNfwtuJU\",openInNewTab:A_W2ocZwn,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-11agdxy\",className,classNames)} framer-bar8j1`,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"niNfwtuJU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"1px 2px 10px 0px rgba(0, 0, 0, 0.05)\",...style},variants:{\"niNfwtuJU-hover\":{boxShadow:\"0px 0px 7px 1px rgba(14, 12, 14, 0.5)\"},\"UG47gug4J-hover\":{boxShadow:\"0px 0px 7px 1px rgba(14, 12, 14, 0.5)\"},\"URa6_9pq6-hover\":{boxShadow:\"0px 0px 7px 1px rgba(14, 12, 14, 0.5)\"}},...addPropertyOverrides({\"niNfwtuJU-hover\":{\"data-framer-name\":undefined},\"UG47gug4J-hover\":{\"data-framer-name\":undefined},\"URa6_9pq6-hover\":{\"data-framer-name\":undefined},UG47gug4J:{\"data-framer-name\":\"Freecash\"},URa6_9pq6:{\"data-framer-name\":\"Almedia\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dxn49v\",\"data-framer-name\":\"Text Box\",layoutDependency:layoutDependency,layoutId:\"i_Xo0aILO\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ejp3da-container\",layoutDependency:layoutDependency,layoutId:\"c3ip7oZDN-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:NRuiw4Jg_,id:\"c3ip7oZDN\",layoutId:\"c3ip7oZDN\",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-zm5294\",\"data-styles-preset\":\"wpOm8yk8n\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255)))\"},children:\"Blogs\"})}),className:\"framer-y0gbxf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cNZOKtIDe\",style:{\"--extracted-r6o4lv\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Rw_OTxucH,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-yxxr0x\",\"data-framer-name\":\"Almedia Logo\",fill:\"black\",intrinsicHeight:300,intrinsicWidth:300,layoutDependency:layoutDependency,layoutId:\"VHQaZgehq\",svg:'<svg width=\"300\" height=\"300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M201.229 269.172c-10.846-7.302-17.127-17.235-19.395-30.417-3.003 3.759-5.605 7.168-8.366 10.443-7.333 8.698-15.373 16.64-25.568 21.96-3.334 1.739-6.962 3.189-10.627 3.969-10.935 2.326-19.173-2.039-23.88-12.263-5.042-10.95-5.15-22.599-3.625-34.112 4.931-37.218 20.002-69.948 45.674-97.385 6.028-6.442 13.47-12.064 21.231-16.28 17.424-9.464 31.75-2.033 35.758 17.521 3.177 15.496.854 30.64-2.926 45.668-1.378 5.476-3.17 10.848-4.695 16.005 5.401-1.206 10.703-3.004 16.123-3.49 18.8-1.684 35.939 8.883 43.062 26.034 6.94 16.712 2.459 36.437-10.942 48.167-14.342 12.552-34.229 14.495-50.507 4.936-.351-.206-.714-.392-1.317-.756ZM131.258 36.06c4.576-3.637 8.64-7.595 13.394-10.369 6.132-3.576 10.583-1.363 12.172 5.537 2.226 9.664.622 19.28-1.291 28.767-6.189 30.698-17.303 59.765-29.887 88.299-15.071 34.174-32.099 67.33-54.345 97.457-6.818 9.232-15.177 17.385-23.3 25.565-3.157 3.181-7.612 6.158-12.51 3.884-5.231-2.43-5.345-7.883-5.464-12.767-.391-16.014 3.524-31.361 8.184-46.457 17.687-57.305 42.885-111.053 77.167-160.372 4.723-6.795 10.425-12.91 15.88-19.544Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1sbvz35\",\"data-framer-name\":\"Freecash Logo\",fill:\"black\",intrinsicHeight:300,intrinsicWidth:300,layoutDependency:layoutDependency,layoutId:\"pDbT8WmQs\",svg:'<svg width=\"300\" height=\"300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M250.701 201.027v-49.024s.366-11.914-16.829-1.489c-6.403 3.635-15.914 8.634-15.732 30.957v18.652s.367 40.301-46.829 40.301h-4.573v9.912a7.869 7.869 0 0 1-.662 3.207 8.08 8.08 0 0 1-1.919 2.69 8.377 8.377 0 0 1-2.863 1.732 8.561 8.561 0 0 1-3.337.491h-16.464s-8.048-.177-8.048-7.517v-10.515H99.419s-16.096-.07-16.096-16.542a15.094 15.094 0 0 1 1.19-5.997 15.471 15.471 0 0 1 3.483-5.086 16.037 16.037 0 0 1 5.24-3.389 16.428 16.428 0 0 1 6.183-1.167h69.697s15.915.603 15.915-16.24c0-8.511-4.207-17.146-17.195-17.146H19.664S1.737 174.609.091 203.439c-.366 9.22.183 16.932 5.305 21.95 5.122 5.018 43.17 42.091 43.17 42.091s8.05 7.518 28.72 7.518H182.47s68.231 1.223 68.231-65.247v-8.724ZM49.299 98.972v49.024s-.366 11.915 16.83 1.489c6.402-3.635 16.096-8.635 15.73-30.957V99.876s-.366-40.3 46.829-40.3h4.757v-9.912a7.691 7.691 0 0 1 .584-3.2 7.895 7.895 0 0 1 1.867-2.698 8.161 8.161 0 0 1 2.832-1.739 8.363 8.363 0 0 1 3.315-.483h16.464s8.047.177 8.047 7.517v10.514h34.208s16.098.071 16.098 16.543a15.109 15.109 0 0 1-1.188 5.996 15.495 15.495 0 0 1-3.486 5.087 16.035 16.035 0 0 1-5.24 3.39 16.439 16.439 0 0 1-6.184 1.165h-69.879s-15.73-.603-15.73 16.241c0 8.51 4.024 17.145 17.012 17.145h148.171s17.927.248 19.573-28.581c.366-9.22-.184-16.933-5.306-21.95-4.939-5-42.987-42.092-42.987-42.092S243.385 25 222.714 25H117.53s-68.231-1.222-68.231 65.25v8.723Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b554c2e7-869d-481f-b00a-b48a4520ce88, rgb(209, 217, 226)))\"},children:\"Discover insights, tips, and stories on various topics to keep you updated\"})}),className:\"framer-6d5oeh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"df9AGh4Lk\",style:{\"--extracted-r6o4lv\":\"var(--token-b554c2e7-869d-481f-b00a-b48a4520ce88, rgb(209, 217, 226))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:UWBPI7h3k,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GUKND.framer-bar8j1, .framer-GUKND .framer-bar8j1 { display: block; }\",\".framer-GUKND.framer-11agdxy { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 22px; position: relative; text-decoration: none; width: 301px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GUKND .framer-dxn49v { 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-GUKND .framer-1ejp3da-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-GUKND .framer-y0gbxf { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-GUKND .framer-yxxr0x, .framer-GUKND .framer-1sbvz35 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-GUKND .framer-6d5oeh { 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-GUKND.framer-11agdxy, .framer-GUKND .framer-dxn49v { gap: 0px; } .framer-GUKND.framer-11agdxy > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-GUKND.framer-11agdxy > :first-child { margin-top: 0px; } .framer-GUKND.framer-11agdxy > :last-child { margin-bottom: 0px; } .framer-GUKND .framer-dxn49v > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-GUKND .framer-dxn49v > :first-child { margin-left: 0px; } .framer-GUKND .framer-dxn49v > :last-child { margin-right: 0px; } }\",\".framer-GUKND.framer-v-1iuhry2 .framer-y0gbxf, .framer-GUKND.framer-v-186h2ch .framer-y0gbxf { order: 2; }\",\".framer-GUKND.framer-v-1iuhry2 .framer-yxxr0x, .framer-GUKND.framer-v-186h2ch .framer-1sbvz35 { order: 1; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 160\n * @framerIntrinsicWidth 301\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"URa6_9pq6\":{\"layout\":[\"fixed\",\"auto\"]},\"UG47gug4J\":{\"layout\":[\"fixed\",\"auto\"]},\"xsDHgWGKm\":{\"layout\":[\"fixed\",\"auto\"]},\"TayDk4Cg6\":{\"layout\":[\"fixed\",\"auto\"]},\"M_abLU9mp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Rw_OTxucH\":\"name1\",\"UWBPI7h3k\":\"text\",\"ownL_xCBo\":\"link\",\"NRuiw4Jg_\":\"icon\",\"A_W2ocZwn\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernmLke3Xmd=withCSS(Component,css,\"framer-GUKND\");export default FramernmLke3Xmd;FramernmLke3Xmd.displayName=\"Resource card\";FramernmLke3Xmd.defaultProps={height:160,width:301};addPropertyControls(FramernmLke3Xmd,{variant:{options:[\"niNfwtuJU\",\"URa6_9pq6\",\"UG47gug4J\"],optionTitles:[\"Icon\",\"Almedia\",\"Freecash\"],title:\"Variant\",type:ControlType.Enum},Rw_OTxucH:{defaultValue:\"Blogs\",displayTextArea:false,title:\"Name\",type:ControlType.String},UWBPI7h3k:{defaultValue:\"Discover insights, tips, and stories on various topics to keep you updated\",displayTextArea:true,title:\"Text\",type:ControlType.String},ownL_xCBo:{title:\"Link\",type:ControlType.Link},NRuiw4Jg_:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"},A_W2ocZwn:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramernmLke3Xmd,[{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\":\"FramernmLke3Xmd\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"URa6_9pq6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UG47gug4J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xsDHgWGKm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TayDk4Cg6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M_abLU9mp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"301\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"160\",\"framerVariables\":\"{\\\"Rw_OTxucH\\\":\\\"name1\\\",\\\"UWBPI7h3k\\\":\\\"text\\\",\\\"ownL_xCBo\\\":\\\"link\\\",\\\"NRuiw4Jg_\\\":\\\"icon\\\",\\\"A_W2ocZwn\\\":\\\"newTab\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nmLke3Xmd.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormBooleanInput,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import BlogCard from\"#framer/local/canvasComponent/cWbx1X6Ys/cWbx1X6Ys.js\";import FeatureCard from\"#framer/local/canvasComponent/fc32EPQc9/fc32EPQc9.js\";import ButtonWhitePaper from\"#framer/local/canvasComponent/FzDwBArix/FzDwBArix.js\";import ResourceCard from\"#framer/local/canvasComponent/nmLke3Xmd/nmLke3Xmd.js\";import CaseStudy from\"#framer/local/canvasComponent/NyXmJdson/NyXmJdson.js\";import Navbar from\"#framer/local/canvasComponent/TV1ppVgJZ/TV1ppVgJZ.js\";import CTA from\"#framer/local/canvasComponent/XDpYEQmB6/XDpYEQmB6.js\";import Button from\"#framer/local/canvasComponent/yWlOGrdmU/yWlOGrdmU.js\";import Footer from\"#framer/local/canvasComponent/ZgSTjvzHe/ZgSTjvzHe.js\";import Insights,{enumToDisplayNameFunctions}from\"#framer/local/collection/hKe5G3eIl/hKe5G3eIl.js\";import*as sharedStyle5 from\"#framer/local/css/HvwZfQeoG/HvwZfQeoG.js\";import*as sharedStyle4 from\"#framer/local/css/KaBiy6iJm/KaBiy6iJm.js\";import*as sharedStyle6 from\"#framer/local/css/qi_bSz1Uu/qi_bSz1Uu.js\";import*as sharedStyle1 from\"#framer/local/css/TfgM2hZMj/TfgM2hZMj.js\";import*as sharedStyle from\"#framer/local/css/V49oSKgxd/V49oSKgxd.js\";import*as sharedStyle2 from\"#framer/local/css/wpOm8yk8n/wpOm8yk8n.js\";import*as sharedStyle3 from\"#framer/local/css/zFmQqpKQC/zFmQqpKQC.js\";import metadataProvider from\"#framer/local/webPageMetadata/nZhEWCx7R/nZhEWCx7R.js\";const NavbarFonts=getFonts(Navbar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const MotionAWithFX=withFX(motion.a);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const TickerFonts=getFonts(Ticker);const ButtonWhitePaperFonts=getFonts(ButtonWhitePaper);const ImageWithFX=withFX(Image);const CaseStudyFonts=getFonts(CaseStudy);const BlogCardFonts=getFonts(BlogCard);const FeatureCardFonts=getFonts(FeatureCard);const RichTextWithFX=withFX(RichText);const ResourceCardFonts=getFonts(ResourceCard);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const breakpoints={GFQwXnYO_:\"(min-width: 1200px)\",hNYv8ZIc5:\"(min-width: 850px) and (max-width: 1199px)\",IoT8G6S_J:\"(max-width: 849px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-k5fQi\";const variantClassNames={GFQwXnYO_:\"framer-v-x23bs9\",hNYv8ZIc5:\"framer-v-1neeq3a\",IoT8G6S_J:\"framer-v-1rou325\"};const transition1={damping:54,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={damping:60,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition4={damping:60,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:90,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:60,rotateY:0,scale:.7,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:15};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:15};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:15};const transition6={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:15};const transition7={damping:60,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:15};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition8={damping:90,delay:.7,mass:1,stiffness:450,type:\"spring\"};const transition9={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation14={backgroundColor:\"rgb(0, 189, 104)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition9};const transition10={damping:58,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={damping:58,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const animation17={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition12={damping:58,delay:0,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation17,startDelay:.1,tokenization:\"word\",transition:transition12,trigger:\"onMount\",type:\"appear\"};const transition13={damping:58,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition14={damping:90,delay:.5,mass:1,stiffness:450,type:\"spring\"};const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition15={damping:52,delay:.1,mass:1,stiffness:400,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:10};const transition16={damping:52,delay:0,mass:1,stiffness:400,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition17={damping:58,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition17,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:10};const transition18={damping:56,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:15};const transition19={damping:56,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition20={damping:48,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation24={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.025,skewX:0,skewY:0,transition:transition20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"GFQwXnYO_\",Phone:\"IoT8G6S_J\",Tablet:\"hNYv8ZIc5\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GFQwXnYO_\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,g6rBkdHL1crcjS1QC_,LQvrFkotlcrcjS1QC_,g4YUUm96ocrcjS1QC_,bSuzbVlCjcrcjS1QC_,tNkTRure6crcjS1QC_,WYguv7jwYcrcjS1QC_,idcrcjS1QC_,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"IoT8G6S_J\")return false;return true;};const router=useRouter();const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GFQwXnYO_\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-x23bs9\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1obmx21-container\",\"data-framer-appear-id\":\"1obmx21\",\"data-framer-name\":\"Navbar\",initial:animation1,name:\"Navbar\",nodeId:\"jdRWRdciH\",optimized:true,rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IoT8G6S_J:{variant:\"ler_5wlOv\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"jdRWRdciH\",layoutId:\"jdRWRdciH\",name:\"Navbar\",style:{width:\"100%\"},variant:\"UNxwoY9uZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-12xv6dx\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qayan9\",\"data-framer-name\":\"Hero section showcase\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1043 352\"><path d=\"M 1042.761 40.134 L 901.431 30.507 C 870.866 28.425 840.985 40.162 820.012 62.485 L 815.153 67.659 C 795.835 88.215 768.883 99.874 740.671 99.874 L 680.755 99.874 C 656.938 99.874 635.305 113.751 625.382 135.395 L 621.048 144.849 C 613.766 160.732 597.892 170.916 580.413 170.916 L 580.413 170.916 C 565.202 170.916 551.034 163.182 542.81 150.39 L 535.091 138.385 C 526.665 125.277 514.149 115.313 499.484 110.037 L 488.009 105.908 C 476.911 101.916 465.205 99.874 453.409 99.874 L 299.867 99.874 C 282.063 99.874 264.568 104.524 249.116 113.365 L 224.072 127.692 C 216.074 132.268 208.732 137.904 202.246 144.448 L 153.966 193.154 C 144.183 203.024 143.003 218.665 150.984 230.04 L 150.984 230.04 C 164.157 248.813 151.019 275.057 128.079 275.057 L 128.079 275.057 C 119.134 275.057 110.715 279.279 105.366 286.445 L 59.435 347.983\" fill=\"transparent\" stroke-width=\"3.76\" stroke=\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"10\" opacity=\"0.25\"></path><path d=\"M 1033.986 29.458 L 892.592 19.845 C 862.063 17.77 832.217 29.479 811.251 51.752 L 806.364 56.939 C 787.06 77.451 760.129 89.081 731.959 89.081 L 671.918 89.081 C 648.136 89.081 626.532 102.929 616.609 124.533 L 612.295 133.923 C 605 149.806 589.119 159.985 571.636 159.985 L 571.636 159.985 C 556.424 159.985 542.254 152.258 534.019 139.474 L 526.322 127.525 C 517.892 114.437 505.382 104.493 490.727 99.231 L 479.208 95.095 C 468.127 91.116 456.442 89.081 444.668 89.081 L 291.047 89.081 C 273.272 89.081 255.805 93.717 240.37 102.53 L 215.297 116.846 C 207.3 121.413 199.957 127.04 193.467 133.573 L 145.196 182.176 C 135.415 192.024 134.216 207.623 142.199 218.976 L 142.199 218.976 C 155.387 237.735 142.216 263.923 119.279 263.923 L 119.279 263.923 C 110.35 263.923 101.944 268.132 96.597 275.282 L 50.661 336.706\" fill=\"transparent\" stroke-width=\"3.76\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\"></path><path d=\"M 132.135 351.742 L 132.135 185.721 L 0.523 185.721 L 0.523 351.742 Z\" fill=\"transparent\"></path><path d=\"M 911.15 0.278 L 911.15 166.3 L 1042.761 166.3 L 1042.761 0.278 Z\" fill=\"transparent\"></path></svg>',svgContentId:12431053963}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gx6spt\",\"data-framer-name\":\"Line\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1481 500\"><path d=\"M 1480.66 57.009 L 1279.98 43.334 C 1236.58 40.376 1194.15 57.049 1164.37 88.758 L 1157.47 96.106 C 1130.04 125.305 1091.77 141.866 1051.71 141.866 L 966.633 141.866 C 932.814 141.866 902.097 161.578 888.007 192.322 L 881.853 205.751 C 871.513 228.313 848.972 242.778 824.153 242.778 L 824.153 242.778 C 802.554 242.778 782.436 231.793 770.759 213.622 L 759.799 196.569 C 747.834 177.95 730.062 163.797 709.238 156.302 L 692.945 150.438 C 677.186 144.767 660.564 141.866 643.815 141.866 L 425.794 141.866 C 400.513 141.866 375.671 148.472 353.73 161.03 L 318.17 181.381 C 306.813 187.881 296.387 195.887 287.177 205.182 L 218.623 274.367 C 204.732 288.387 203.056 310.604 214.389 326.761 L 214.389 326.761 C 233.094 353.427 214.438 390.706 181.865 390.706 L 181.865 390.706 C 169.164 390.706 157.209 396.703 149.614 406.882 L 84.394 494.294\" fill=\"transparent\" stroke-width=\"5.34508\" stroke=\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\" opacity=\"0.25\"></path><path d=\"M 1468.2 41.844 L 1267.43 28.189 C 1224.08 25.241 1181.7 41.873 1151.93 73.512 L 1144.99 80.88 C 1117.58 110.015 1079.34 126.536 1039.34 126.536 L 954.085 126.536 C 920.316 126.536 889.64 146.206 875.549 176.894 L 869.424 190.232 C 859.065 212.792 836.515 227.251 811.69 227.251 L 811.69 227.251 C 790.09 227.251 769.97 216.276 758.276 198.116 L 747.347 181.143 C 735.377 162.553 717.613 148.427 696.804 140.953 L 680.448 135.078 C 664.714 129.426 648.121 126.536 631.403 126.536 L 413.27 126.536 C 388.031 126.536 363.228 133.121 341.312 145.639 L 305.71 165.974 C 294.354 172.461 283.927 180.454 274.712 189.735 L 206.17 258.773 C 192.282 272.762 190.579 294.919 201.914 311.046 L 201.914 311.046 C 220.641 337.692 201.938 374.89 169.37 374.89 L 169.37 374.89 C 156.69 374.89 144.754 380.87 137.162 391.026 L 71.935 478.276\" fill=\"transparent\" stroke-width=\"5.34508\" stroke=\"rgb(NaN,NaN,NaN)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 187.624 499.634 L 187.624 263.808 L 0.743 263.808 L 0.743 499.634 Z\" fill=\"transparent\"></path><path d=\"M 1293.78 0.395 L 1293.78 236.221 L 1480.661 236.221 L 1480.661 0.395 Z\" fill=\"transparent\"></path></svg>',svgContentId:9471647876,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t3zpb3\",\"data-framer-name\":\"Avatars\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+948.975-634+632-462+60),sizes:\"89px\",src:\"https://framerusercontent.com/images/S1F5IL4FlS2NvJzfDMjL4TehZM.jpg\",srcSet:\"https://framerusercontent.com/images/S1F5IL4FlS2NvJzfDMjL4TehZM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S1F5IL4FlS2NvJzfDMjL4TehZM.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+404+-18+0),sizes:\"89px\",src:\"https://framerusercontent.com/images/S1F5IL4FlS2NvJzfDMjL4TehZM.jpg\",srcSet:\"https://framerusercontent.com/images/S1F5IL4FlS2NvJzfDMjL4TehZM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S1F5IL4FlS2NvJzfDMjL4TehZM.jpg 1024w\"},className:\"framer-16s8ca2 hidden-1rou325\",\"data-framer-appear-id\":\"16s8ca2\",\"data-framer-name\":\"Ellipse 112\",initial:animation3,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+948.975-634+632-462+155.5),sizes:\"89px\",src:\"https://framerusercontent.com/images/PNAYJvg7D5gBBicyzpBgupuDIk0.jpg\",srcSet:\"https://framerusercontent.com/images/PNAYJvg7D5gBBicyzpBgupuDIk0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PNAYJvg7D5gBBicyzpBgupuDIk0.jpg 1024w\"},transformTemplate:transformTemplate1},IoT8G6S_J:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+888.875-562+630-448.5+-7),sizes:\"53px\",src:\"https://framerusercontent.com/images/PNAYJvg7D5gBBicyzpBgupuDIk0.jpg\",srcSet:\"https://framerusercontent.com/images/PNAYJvg7D5gBBicyzpBgupuDIk0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PNAYJvg7D5gBBicyzpBgupuDIk0.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__perspectiveFX:false,__targetOpacity:1,animate:animation4,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+404+-18+93),sizes:\"89px\",src:\"https://framerusercontent.com/images/PNAYJvg7D5gBBicyzpBgupuDIk0.jpg\",srcSet:\"https://framerusercontent.com/images/PNAYJvg7D5gBBicyzpBgupuDIk0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PNAYJvg7D5gBBicyzpBgupuDIk0.jpg 1024w\"},className:\"framer-1h08qc0\",\"data-framer-appear-id\":\"1h08qc0\",\"data-framer-name\":\"Ellipse 110\",initial:animation3,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:476,intrinsicWidth:476,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+948.975-634+632-462+145),pixelHeight:476,pixelWidth:476,src:\"https://framerusercontent.com/images/0G2OWnv068jt98Jpb08qNoIFAgU.png\"}},IoT8G6S_J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:476,intrinsicWidth:476,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+888.875-562+630-448.5+78),pixelHeight:476,pixelWidth:476,src:\"https://framerusercontent.com/images/0G2OWnv068jt98Jpb08qNoIFAgU.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:104,__perspectiveFX:false,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\",intrinsicHeight:476,intrinsicWidth:476,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+404+-18+122),pixelHeight:476,pixelWidth:476,src:\"https://framerusercontent.com/images/0G2OWnv068jt98Jpb08qNoIFAgU.png\"},className:\"framer-fgphxy\",\"data-framer-appear-id\":\"fgphxy\",\"data-framer-name\":\"Rectangle 18632\",initial:animation3,optimized:true,style:{transformPerspective:1200}})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+948.975-634+632-462+377-78),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lE59WWn7bx1VY3JObNYpLpt9ZXE.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+404+-18+339),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lE59WWn7bx1VY3JObNYpLpt9ZXE.png\"},className:\"framer-bhlqnl hidden-1rou325\",\"data-framer-appear-id\":\"bhlqnl\",\"data-framer-name\":\"Rectangle 18633\",initial:animation3,optimized:true,style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1o8lr6x\",\"data-framer-appear-id\":\"1o8lr6x\",\"data-framer-name\":\"Mockup\",initial:animation7,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+948.975-634+632-479+0),sizes:\"363px\",src:\"https://framerusercontent.com/images/aFKePLh9PQH24l8fgAf7wwuADCs.png\",srcSet:\"https://framerusercontent.com/images/aFKePLh9PQH24l8fgAf7wwuADCs.png 1002w\"},transformTemplate:undefined},IoT8G6S_J:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+888.875-562+630-482+442-442),sizes:\"234px\",src:\"https://framerusercontent.com/images/aFKePLh9PQH24l8fgAf7wwuADCs.png\",srcSet:\"https://framerusercontent.com/images/aFKePLh9PQH24l8fgAf7wwuADCs.png 1002w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+404+471-451+-11),sizes:\"337px\",src:\"https://framerusercontent.com/images/aFKePLh9PQH24l8fgAf7wwuADCs.png\",srcSet:\"https://framerusercontent.com/images/aFKePLh9PQH24l8fgAf7wwuADCs.png 1002w\"},className:\"framer-1lojkvo\",\"data-framer-name\":\"main\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1483,intrinsicWidth:687,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+948.975-634+632-479+16),pixelHeight:1483,pixelWidth:687,sizes:\"328px\",src:\"https://framerusercontent.com/images/Kd3pO067feWBwemqxIipYcooyg.png\",srcSet:\"https://framerusercontent.com/images/Kd3pO067feWBwemqxIipYcooyg.png 687w\"}},IoT8G6S_J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1483,intrinsicWidth:687,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+888.875-562+630-482+442-433.5),pixelHeight:1483,pixelWidth:687,sizes:\"214.5px\",src:\"https://framerusercontent.com/images/Kd3pO067feWBwemqxIipYcooyg.png\",srcSet:\"https://framerusercontent.com/images/Kd3pO067feWBwemqxIipYcooyg.png 687w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1483,intrinsicWidth:687,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+404+471-451+.5),pixelHeight:1483,pixelWidth:687,sizes:\"307.8045px\",src:\"https://framerusercontent.com/images/Kd3pO067feWBwemqxIipYcooyg.png\",srcSet:\"https://framerusercontent.com/images/Kd3pO067feWBwemqxIipYcooyg.png 687w\"},className:\"framer-bh1f7i\",\"data-framer-name\":\"iPhone 15 Pro Black Titanium Mockup Portrait label\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IoT8G6S_J:{__framer__speed:95}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:86,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fj8a12\",\"data-framer-name\":\"Tasks\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x25nym\",\"data-framer-name\":\"Task Bar\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e46pxm\",\"data-framer-name\":\"Rewards Structure\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9a286z\",\"data-framer-name\":\"Frame 427319557\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12.94px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"165%\",\"--framer-text-color\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\"},children:\"Sign up\"})}),className:\"framer-1c5u93\",\"data-framer-name\":\"User Interface Desig\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10u2kc4\",\"data-framer-name\":\"Frame 427319556\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-174y80y\",\"data-framer-name\":\"check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1eitlc8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"12\" viewBox=\"-1 -1 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.365723 5.83125L2.69309 9.01894C3.42255 10.0181 4.9198 9.99865 5.62312 8.98097L11.5984 0.3349\" stroke=\"#01D676\" stroke-width=\"1.65794\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7egv6\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tu5ee3\",\"data-framer-name\":\"Frame 122058\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ylj35s\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.9479 9.91397V7.16499C12.9479 7.16499 12.9663 6.49692 12.101 7.08148C11.7788 7.2853 11.3002 7.56566 11.3094 8.81739V9.86325C11.3094 9.86325 11.3278 12.1231 8.95284 12.1231H8.72271V12.6789C8.72309 12.7406 8.71169 12.8018 8.68936 12.8587C8.66703 12.9156 8.63419 12.9669 8.59284 13.0095C8.55143 13.0522 8.50236 13.0852 8.44872 13.1067C8.39508 13.1282 8.33791 13.1375 8.28079 13.1342H7.4523C7.4523 13.1342 7.04731 13.1242 7.04731 12.7127V12.1231H5.33506C5.33506 12.1231 4.52503 12.1191 4.52503 11.1955C4.52413 11.0802 4.54453 10.9659 4.5849 10.8592C4.62526 10.7526 4.68482 10.6556 4.76019 10.574C4.83557 10.4924 4.92525 10.4278 5.02394 10.384C5.12265 10.3401 5.22834 10.3179 5.33506 10.3186H8.84236C8.84236 10.3186 9.64327 10.3524 9.64327 9.40791C9.64327 8.93069 9.43152 8.44651 8.77793 8.44651H1.32158C1.32158 8.44651 0.419436 8.43259 0.336588 10.0492C0.318177 10.5662 0.345829 10.9986 0.603579 11.28C0.861327 11.5614 2.77601 13.6402 2.77601 13.6402C2.77601 13.6402 3.18106 14.0618 4.22127 14.0618H9.51436C9.51436 14.0618 12.9479 14.1304 12.9479 10.4031V9.91397ZM2.81286 4.19135V6.9403C2.81286 6.9403 2.79447 7.60842 3.65977 7.02381C3.98196 6.81999 4.46981 6.53963 4.4514 5.28795V4.24205C4.4514 4.24205 4.43295 1.98224 6.80792 1.98224H7.04731V1.42648C7.04549 1.36512 7.05549 1.30401 7.07671 1.24707C7.09797 1.19013 7.12997 1.13859 7.17067 1.09574C7.21138 1.0529 7.2599 1.0197 7.31316 0.998241C7.36642 0.976783 7.42327 0.967546 7.47997 0.971131H8.30847C8.30847 0.971131 8.71346 0.981069 8.71346 1.39267V1.98224H10.4349C10.4349 1.98224 11.2449 1.98621 11.2449 2.90982C11.2458 3.02508 11.2255 3.13938 11.1852 3.24607C11.1448 3.35276 11.0852 3.44973 11.0097 3.53132C10.9344 3.61291 10.8448 3.67751 10.7461 3.72135C10.6474 3.76519 10.5416 3.78741 10.4349 3.78671H6.9184C6.9184 3.78671 6.1268 3.75291 6.1268 4.6974C6.1268 5.1746 6.32929 5.65878 6.98288 5.65878H14.4392C14.4392 5.65878 15.3414 5.6727 15.4242 4.05614C15.4426 3.53915 15.4149 3.10667 15.1572 2.82532C14.9086 2.54495 12.9939 0.465084 12.9939 0.465084C12.9939 0.465084 12.5797 0.0435435 11.5395 0.0435435H6.24645C6.24645 0.0435435 2.81286 -0.0250513 2.81286 3.70221V4.19135Z\" fill=\"#01D676\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15.1px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(169, 169, 201)\"},children:\"550\"})}),className:\"framer-1madzvv\",\"data-framer-name\":\"140\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11hf1qw\",\"data-framer-name\":\"Rewards Structure\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19r6r3\",\"data-framer-name\":\"Frame 427319557\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12.94px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"165%\",\"--framer-text-color\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\"},children:\"Reach level 10\"})}),className:\"framer-1pqtk27\",\"data-framer-name\":\"User Interface Desig\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hzugg4\",\"data-framer-name\":\"Frame 427319556\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jlwpna\",\"data-framer-name\":\"Frame 427319594\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5n1j6r\",\"data-framer-name\":\"check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1q99i2y\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"13\" viewBox=\"-1 -1 14 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.167725 6.29646L2.49509 9.48415C3.22455 10.4833 4.7218 10.4639 5.42512 9.44618L11.4004 0.80011\" stroke=\"#01D676\" stroke-width=\"1.65794\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iwi9ok\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jy87uw\",\"data-framer-name\":\"Frame 122058\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1aw9fu8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7497 10.3792V7.6302C12.7497 7.6302 12.7681 6.96213 11.9028 7.54669C11.5806 7.75051 11.102 8.03087 11.1111 9.2826V10.3285C11.1111 10.3285 11.1296 12.5883 8.7546 12.5883H8.52447V13.1441C8.52484 13.2058 8.51345 13.267 8.49112 13.3239C8.46879 13.3808 8.43595 13.4322 8.39459 13.4748C8.35319 13.5174 8.30411 13.5505 8.25048 13.5719C8.19684 13.5934 8.13967 13.6027 8.08255 13.5994H7.25405C7.25405 13.5994 6.84906 13.5895 6.84906 13.1779V12.5883H5.13681C5.13681 12.5883 4.32678 12.5843 4.32678 11.6607C4.32589 11.5454 4.34628 11.4311 4.38665 11.3245C4.42702 11.2178 4.48657 11.1208 4.56195 11.0392C4.63733 10.9576 4.72701 10.893 4.8257 10.8492C4.92441 10.8053 5.0301 10.7831 5.13681 10.7838H8.64412C8.64412 10.7838 9.44502 10.8176 9.44502 9.87312C9.44502 9.3959 9.23327 8.91172 8.57969 8.91172H1.12334C1.12334 8.91172 0.221194 8.8978 0.138346 10.5144C0.119935 11.0314 0.147587 11.4638 0.405337 11.7452C0.663085 12.0266 2.57777 14.1054 2.57777 14.1054C2.57777 14.1054 2.98282 14.527 4.02302 14.527H9.31612C9.31612 14.527 12.7497 14.5956 12.7497 10.8683V10.3792ZM2.61462 4.65656V7.40551C2.61462 7.40551 2.59623 8.07363 3.46153 7.48902C3.78372 7.2852 4.27157 7.00484 4.25316 5.75316V4.70726C4.25316 4.70726 4.23471 2.44745 6.60968 2.44745H6.84906V1.89169C6.84725 1.83033 6.85725 1.76922 6.87846 1.71228C6.89972 1.65534 6.93173 1.6038 6.97243 1.56095C7.01313 1.51811 7.06165 1.48491 7.11492 1.46345C7.16818 1.44199 7.22503 1.43276 7.28173 1.43634H8.11023C8.11023 1.43634 8.51522 1.44628 8.51522 1.85788V2.44745H10.2366C10.2366 2.44745 11.0467 2.45142 11.0467 3.37503C11.0476 3.49029 11.0273 3.60459 10.9869 3.71128C10.9465 3.81797 10.8869 3.91494 10.8115 3.99653C10.7361 4.07812 10.6465 4.14272 10.5478 4.18656C10.4492 4.2304 10.3433 4.25262 10.2366 4.25192H6.72016C6.72016 4.25192 5.92856 4.21812 5.92856 5.16261C5.92856 5.63981 6.13105 6.12399 6.78464 6.12399H14.241C14.241 6.12399 15.1431 6.13791 15.226 4.52135C15.2444 4.00436 15.2167 3.57188 14.9589 3.29053C14.7104 3.01016 12.7957 0.930294 12.7957 0.930294C12.7957 0.930294 12.3815 0.508753 11.3413 0.508753H6.0482C6.0482 0.508753 2.61462 0.440159 2.61462 4.16742V4.65656Z\" fill=\"#01D676\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15.1px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(169, 169, 201)\"},children:\"3,000\"})}),className:\"framer-1s33qoy\",\"data-framer-name\":\"140\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-frbq91\",\"data-framer-name\":\"Rewards Structure\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lb4o61\",\"data-framer-name\":\"Frame 427319557\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12.94px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"165%\",\"--framer-text-color\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\"},children:\"Reach level 25\"})}),className:\"framer-rqpbtd\",\"data-framer-name\":\"User Interface Desig\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2rfhg\",\"data-framer-name\":\"Frame 427319556\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cyzqkh\",\"data-framer-name\":\"Reward Status\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wx2ty1\",\"data-framer-name\":\"Status=In progress\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11rvrkx\",\"data-framer-name\":\"Ellipse 87\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.1886 6.13069C19.7043 5.83291 19.8853 5.16959 19.5375 4.68614C18.9232 3.83211 18.186 3.07098 17.3483 2.42818C16.2248 1.56612 14.9425 0.933776 13.5747 0.567264C12.2069 0.200752 10.7802 0.107245 9.37624 0.292082C7.97227 0.476919 6.61844 0.93648 5.39207 1.64453C4.16569 2.35257 3.09079 3.29524 2.22873 4.4187C1.36666 5.54217 0.734323 6.82442 0.36781 8.19226C0.00129816 9.56011 -0.0922087 10.9867 0.0926285 12.3907C0.230452 13.4376 0.52102 14.4566 0.953453 15.4156C1.19825 15.9586 1.86318 16.1335 2.37894 15.8357V15.8357C2.8947 15.538 3.06448 14.8803 2.83333 14.3315C2.53474 13.6224 2.33169 12.8752 2.23085 12.1092C2.08298 10.986 2.15779 9.84473 2.451 8.75045C2.74421 7.65618 3.25008 6.63037 3.93973 5.7316C4.62938 4.83283 5.48931 4.0787 6.47041 3.51226C7.4515 2.94583 8.53456 2.57818 9.65775 2.43031C10.7809 2.28244 11.9222 2.35724 13.0165 2.65045C14.1108 2.94366 15.1366 3.44953 16.0354 4.13919C16.6483 4.60949 17.1939 5.15897 17.6586 5.77207C18.0184 6.24668 18.6728 6.42846 19.1886 6.13069V6.13069Z\" fill=\"url(#paint0_linear_343_1784)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_343_1784\" x1=\"18.3321\" y1=\"3.43484\" x2=\"0.000375598\" y2=\"10.9832\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAC401\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"#FAC401\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17s5iqn\",\"data-framer-name\":\"Ellipse 88\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.1886 6.13069C19.7043 5.83291 20.3693 6.00786 20.6141 6.55078C21.0465 7.50984 21.3371 8.52882 21.4749 9.5757C21.6597 10.9797 21.5662 12.4063 21.1997 13.7742C20.8332 15.142 20.2009 16.4243 19.3388 17.5477C18.4767 18.6712 17.4018 19.6138 16.1754 20.3219C14.9491 21.0299 13.5952 21.4895 12.1913 21.6743C10.7873 21.8592 9.36065 21.7657 7.99281 21.3992C6.62497 21.0326 5.34271 20.4003 4.21925 19.5382C3.38154 18.8954 2.64435 18.1343 2.03 17.2803C1.68222 16.7968 1.86318 16.1335 2.37894 15.8357V15.8357C2.8947 15.538 3.54912 15.7197 3.90887 16.1944C4.3736 16.8074 4.91924 17.3569 5.53215 17.8272C6.43092 18.5169 7.45672 19.0228 8.551 19.316C9.64527 19.6092 10.7866 19.684 11.9098 19.5361C13.0329 19.3882 14.116 19.0206 15.0971 18.4542C16.0782 17.8877 16.9381 17.1336 17.6278 16.2348C18.3174 15.336 18.8233 14.3102 19.1165 13.216C19.4097 12.1217 19.4845 10.9804 19.3367 9.8572C19.2358 9.09126 19.0328 8.34397 18.7342 7.63496C18.503 7.0861 18.6728 6.42846 19.1886 6.13069V6.13069Z\" fill=\"url(#paint0_linear_343_1785)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_343_1785\" x1=\"21.5671\" y1=\"10.9832\" x2=\"2.69622\" y2=\"17.4532\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FAC401\"/>\\n<stop offset=\"1\" stop-color=\"#FAC401\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bpddlm\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nybmuk\",\"data-framer-name\":\"Frame 122058\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bxx2ku\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7497 10.8445V8.09554C12.7497 8.09554 12.7681 7.42747 11.9028 8.01203C11.5806 8.21584 11.102 8.49621 11.1111 9.74794V10.7938C11.1111 10.7938 11.1296 13.0536 8.7546 13.0536H8.52447V13.6094C8.52485 13.6711 8.51345 13.7324 8.49112 13.7892C8.46879 13.8461 8.43595 13.8975 8.39459 13.9401C8.35319 13.9827 8.30412 14.0158 8.25048 14.0372C8.19684 14.0587 8.13967 14.0681 8.08255 14.0648H7.25405C7.25405 14.0648 6.84907 14.0548 6.84907 13.6432V13.0536H5.13681C5.13681 13.0536 4.32678 13.0497 4.32678 12.126C4.32589 12.0108 4.34628 11.8965 4.38665 11.7898C4.42702 11.6831 4.48658 11.5861 4.56195 11.5046C4.63733 11.423 4.72701 11.3584 4.8257 11.3145C4.92441 11.2707 5.0301 11.2484 5.13681 11.2491H8.64412C8.64412 11.2491 9.44503 11.2829 9.44503 10.3385C9.44503 9.86123 9.23327 9.37705 8.57969 9.37705H1.12334C1.12334 9.37705 0.221194 9.36314 0.138346 10.9797C0.119935 11.4967 0.147587 11.9292 0.405337 12.2105C0.663085 12.4919 2.57777 14.5708 2.57777 14.5708C2.57777 14.5708 2.98282 14.9923 4.02302 14.9923H9.31612C9.31612 14.9923 12.7497 15.0609 12.7497 11.3336V10.8445ZM2.61462 5.12189V7.87084C2.61462 7.87084 2.59623 8.53896 3.46153 7.95435C3.78372 7.75054 4.27157 7.47017 4.25316 6.21849V5.17259C4.25316 5.17259 4.23471 2.91278 6.60968 2.91278H6.84907V2.35703C6.84725 2.29567 6.85725 2.23456 6.87847 2.17761C6.89972 2.12067 6.93173 2.06913 6.97243 2.02628C7.01314 1.98344 7.06165 1.95024 7.11492 1.92878C7.16818 1.90733 7.22503 1.89809 7.28173 1.90167H8.11023C8.11023 1.90167 8.51522 1.91161 8.51522 2.32321V2.91278H10.2366C10.2366 2.91278 11.0467 2.91675 11.0467 3.84036C11.0476 3.95562 11.0273 4.06992 10.9869 4.17661C10.9465 4.28331 10.8869 4.38027 10.8115 4.46186C10.7361 4.54345 10.6466 4.60805 10.5478 4.65189C10.4492 4.69573 10.3433 4.71796 10.2366 4.71726H6.72016C6.72016 4.71726 5.92856 4.68346 5.92856 5.62795C5.92856 6.10515 6.13105 6.58933 6.78464 6.58933H14.241C14.241 6.58933 15.1431 6.60324 15.226 4.98668C15.2444 4.46969 15.2167 4.03722 14.959 3.75586C14.7104 3.4755 12.7957 1.39563 12.7957 1.39563C12.7957 1.39563 12.3815 0.974085 11.3413 0.974085H6.0482C6.0482 0.974085 2.61462 0.905491 2.61462 4.63275V5.12189Z\" fill=\"#01D676\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15.1px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(169, 169, 201)\"},children:\"4,000\"})}),className:\"framer-17grc1d\",\"data-framer-name\":\"12,000\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ayihrj\",\"data-framer-name\":\"Rewards Structure\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j5iu8j\",\"data-framer-name\":\"Frame 427319557\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12.94px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"165%\",\"--framer-text-color\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\"},children:\"Make $25 in-game purchase\"})}),className:\"framer-1xh47kr\",\"data-framer-name\":\"User Interface Desig\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zvze7h\",\"data-framer-name\":\"Frame 427319556\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ym49id\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-irt9th\",\"data-framer-name\":\"Frame 122058\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vscmrf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"15\" viewBox=\"0 0 16 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.0847 10.3097V7.56068C13.0847 7.56068 13.103 6.89262 12.2377 7.47718C11.9156 7.68099 11.4369 7.96136 11.4461 9.21308V10.2589C11.4461 10.2589 11.4646 12.5188 9.08956 12.5188H8.85943V13.0746C8.85981 13.1363 8.84841 13.1975 8.82608 13.2544C8.80375 13.3113 8.77091 13.3626 8.72956 13.4052C8.68815 13.4479 8.63908 13.4809 8.58544 13.5024C8.5318 13.5238 8.47463 13.5332 8.41751 13.5299H7.58902C7.58902 13.5299 7.18403 13.5199 7.18403 13.1084V12.5188H5.47178C5.47178 12.5188 4.66175 12.5148 4.66175 11.5912C4.66085 11.4759 4.68125 11.3616 4.72161 11.2549C4.76198 11.1483 4.82154 11.0513 4.89691 10.9697C4.97229 10.8881 5.06197 10.8235 5.16066 10.7797C5.25937 10.7358 5.36506 10.7136 5.47178 10.7143H8.97908C8.97908 10.7143 9.77999 10.7481 9.77999 9.8036C9.77999 9.32638 9.56824 8.8422 8.91465 8.8422H1.4583C1.4583 8.8422 0.556155 8.82828 0.473307 10.4449C0.454896 10.9619 0.482548 11.3943 0.740298 11.6757C0.998046 11.9571 2.91273 14.0359 2.91273 14.0359C2.91273 14.0359 3.31778 14.4575 4.35798 14.4575H9.65108C9.65108 14.4575 13.0847 14.526 13.0847 10.7988V10.3097ZM2.94958 4.58704V7.33599C2.94958 7.33599 2.93119 8.00411 3.79649 7.4195C4.11868 7.21569 4.60653 6.93532 4.58812 5.68364V4.63774C4.58812 4.63774 4.56967 2.37793 6.94464 2.37793H7.18403V1.82217C7.18221 1.76081 7.19221 1.6997 7.21343 1.64276C7.23468 1.58582 7.26669 1.53428 7.30739 1.49143C7.3481 1.44859 7.39662 1.41539 7.44988 1.39393C7.50314 1.37247 7.55999 1.36324 7.61669 1.36682H8.44519C8.44519 1.36682 8.85018 1.37676 8.85018 1.78836V2.37793H10.5716C10.5716 2.37793 11.3817 2.3819 11.3817 3.30551C11.3825 3.42077 11.3623 3.53507 11.3219 3.64176C11.2815 3.74846 11.2219 3.84542 11.1465 3.92701C11.0711 4.0086 10.9815 4.0732 10.8828 4.11704C10.7841 4.16088 10.6783 4.18311 10.5716 4.1824H7.05512C7.05512 4.1824 6.26352 4.14861 6.26352 5.09309C6.26352 5.57029 6.46601 6.05448 7.1196 6.05448H14.5759C14.5759 6.05448 15.4781 6.06839 15.5609 4.45183C15.5793 3.93484 15.5517 3.50237 15.2939 3.22101C15.0454 2.94064 13.1307 0.860775 13.1307 0.860775C13.1307 0.860775 12.7165 0.439234 11.6763 0.439234H6.38316C6.38316 0.439234 2.94958 0.37064 2.94958 4.0979V4.58704Z\" fill=\"#242537\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15.1px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(36, 37, 55)\"},children:\"5,000\"})}),className:\"framer-1tcpvuq\",\"data-framer-name\":\"25,000\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://freecash.com\",motionChild:true,nodeId:\"bQXfPOAiJ\",openInNewTab:true,scopeId:\"nZhEWCx7R\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jewchm framer-15ycdy0\",\"data-framer-name\":\"Button\",style:{transformPerspective:1200},transformTemplate:transformTemplate2,whileHover:animation14,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.07em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:\"Explore Freecash\"})}),className:\"framer-v6xjk8\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1weu8ll\",\"data-framer-name\":\"Text Wrapper\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1799jsa hidden-1rou325\",\"data-framer-name\":\"Rating wrap\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation15,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"Acquire 10,000+ Installs Daily\"})}),className:\"framer-x0smek\",\"data-framer-appear-id\":\"x0smek\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-b8d111d5-f5e2-4a91-aafd-2ff72b46ac80, rgb(105, 105, 105))\"},children:\"|\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation15,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-b8d111d5-f5e2-4a91-aafd-2ff72b46ac80, rgb(105, 105, 105))\"},children:\"|\"})}),className:\"framer-qlo33a\",\"data-framer-appear-id\":\"qlo33a\",fonts:[\"FS;Satoshi-medium\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation15,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"2-3x Higher ROAS\"})}),className:\"framer-jx3prd\",\"data-framer-appear-id\":\"jx3prd\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-b8d111d5-f5e2-4a91-aafd-2ff72b46ac80, rgb(105, 105, 105))\"},children:\"|\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation16,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.45em\",\"--framer-text-color\":\"var(--token-b8d111d5-f5e2-4a91-aafd-2ff72b46ac80, rgb(105, 105, 105))\"},children:\"|\"})}),className:\"framer-19fyveg\",\"data-framer-appear-id\":\"19fyveg\",fonts:[\"FS;Satoshi-medium\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation15,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"+40M Users\"})}),className:\"framer-1fovc6a\",\"data-framer-appear-id\":\"1fovc6a\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7h1j4\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-18ol868\",\"data-styles-preset\":\"TfgM2hZMj\",children:\"The Smartest Way to Spend Your Ad Budget\"})}),className:\"framer-v4hz0v\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation18,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zm5294\",\"data-styles-preset\":\"wpOm8yk8n\",children:\"Unparalleled returns from a  platform that increases lifetime value.\"})}),className:\"framer-1dgyhh2\",\"data-framer-appear-id\":\"1dgyhh2\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wdi46o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{y:(componentViewport?.y||0)+0+88+48+0+332.975+0},IoT8G6S_J:{y:(componentViewport?.y||0)+0+88+32+0+0+274.875+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+88+48+0+335.875+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ek145t-container\",nodeId:\"SWGo0f5QI\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Button,{b0vgtBrfi:\"Your Free Consultation\",C2LpVz61_:\"https://calendly.com/d/crnd-ctt-nth\",height:\"100%\",id:\"SWGo0f5QI\",jLfO8b37O:true,layoutId:\"SWGo0f5QI\",variant:\"IfXy8UfV2\",width:\"100%\",zUyeSWpl_:true})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"L4IQ33_43\"},implicitPathVariables:undefined},{href:{webPageId:\"L4IQ33_43\"},implicitPathVariables:undefined},{href:{webPageId:\"L4IQ33_43\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{y:(componentViewport?.y||0)+0+88+48+0+332.975+0},IoT8G6S_J:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+88+32+0+0+274.875+0+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+88+48+0+335.875+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1er3f3w-container\",nodeId:\"i10iJrZtS\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{C2LpVz61_:resolvedLinks[1]},IoT8G6S_J:{C2LpVz61_:resolvedLinks[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{b0vgtBrfi:\"Get Started Now\",C2LpVz61_:resolvedLinks[0],height:\"100%\",id:\"i10iJrZtS\",jLfO8b37O:false,layoutId:\"i10iJrZtS\",variant:\"NbSS5NJ7k\",width:\"100%\",zUyeSWpl_:true})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3ft8o\",\"data-framer-name\":\"Gradient\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1em37qt\",\"data-framer-name\":\"Logos Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-alignment\":\"center\"},children:\"+500 companies have chosen us\"})}),className:\"framer-1gdqr98\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3zfb6k-container\",\"data-framer-name\":\"Ticker\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker\",nodeId:\"Qro9uYCPR\",scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:58,height:\"100%\",hoverFactor:1,id:\"Qro9uYCPR\",layoutId:\"Qro9uYCPR\",name:\"Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:451,intrinsicWidth:600,pixelHeight:902,pixelWidth:1200,sizes:\"62px\",src:\"https://framerusercontent.com/images/mpR2TUOu0wRIL1NqmJx1LR7GXPc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mpR2TUOu0wRIL1NqmJx1LR7GXPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpR2TUOu0wRIL1NqmJx1LR7GXPc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mpR2TUOu0wRIL1NqmJx1LR7GXPc.png 1200w\"},className:\"framer-1f6s6ps\",\"data-framer-name\":\"Plarium\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r9ezwx\",\"data-framer-name\":\"Bitlabs\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x1bttl\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:187,intrinsicWidth:846,svg:'<svg version=\"1.1\" id=\"Ebene_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 845.7 187\" style=\"enable-background:new 0 0 845.7 187\" xml:space=\"preserve\"><style>.st0{fill:#007bff}.st1{fill:#fff}</style><path d=\"M809.5 158.5c-23.9 0-40-13.3-41.2-30.6h27.1c.6 6.3 6.3 10.4 13.8 10.4 7.1 0 10.8-3.2 10.8-7.2 0-14.4-48.8-4-48.8-36.9 0-15.2 13-27.8 36.4-27.8 23.1 0 35.9 12.8 37.7 30.5H820c-.8-6.1-5.5-10.1-13.2-10.1-6.4 0-9.9 2.6-9.9 6.9 0 14.3 48.5 4.2 48.9 37.5 0 15.6-13.8 27.3-36.3 27.3zm-500.8.7h-60V30.4h57.9c26.2 0 41.8 13 41.8 33.4 0 15.6-9.4 25.7-21.8 29.3 15 3.1 24.8 16.3 24.8 31 0 21.3-15.5 35.1-42.7 35.1zm-8.1-103.6h-20.5v27h20.5c10.3 0 16-4.6 16-13.4 0-8.9-5.7-13.6-16-13.6zm2.3 49.8h-22.7v28.4h23.1c10.5 0 16.5-4.8 16.5-13.9-.1-9.1-6.5-14.5-16.9-14.5zm60.2-59.8c0-8.3 6.6-14.9 16.4-14.9 9.6 0 16.2 6.6 16.2 14.9 0 8.2-6.6 14.8-16.2 14.8-9.8-.1-16.4-6.7-16.4-14.8zm2.6 24h27.4v89.5h-27.4V69.6zm52.6 22.8h-10.9V69.6h10.9V47.8h27.4v21.8h18v22.8h-18v35.9c0 5.3 2.2 7.5 8.3 7.5h9.8v23.3h-14c-18.6 0-31.6-7.9-31.6-31.1V92.4zm184.6-25.3c13.6 0 23.2 6.2 28.1 14.2V68.4h27.9v91.1H631v-12.9c-5.1 8-14.7 14.2-28.3 14.2-22.2 0-40-18.3-40-47s17.8-46.7 40.2-46.7zm8.2 24.4c-10.5 0-19.9 7.8-19.9 22.4s9.5 22.7 19.9 22.7c10.6 0 19.9-8 19.9-22.5 0-14.6-9.3-22.6-19.9-22.6zm114-17.5c20.9 0 37.2 16.6 37.2 43.3 0 26.6-16.5 43.6-37.2 43.6-12.4 0-21.3-5.6-26-13v11.8h-25.9v-112H699v39.5c4.7-7.6 14-13.2 26.1-13.2zm-7.8 22.6c-9.7 0-18.5 7.4-18.5 20.9 0 13.5 8.8 20.9 18.5 20.9 9.8 0 18.6-7.6 18.6-21s-8.7-20.8-18.6-20.8z\"/><path class=\"st0\" d=\"M551.2 159.4h-66.4v-25.3h66.4c3.1 0 5.6 2.5 5.6 5.6v14.1c0 3.1-2.5 5.6-5.6 5.6zM503.4 50.8h-18.7V25.4h18.7c3.1 0 5.6 2.5 5.6 5.6v14.1c.1 3.2-2.4 5.7-5.6 5.7zm6.9 72.4h-25.6V97.9h25.6c3.1 0 5.6 2.5 5.6 5.6v14.1c0 3.1-2.5 5.6-5.6 5.6zM521.8 87h-37.1V61.7h37.1c3.1 0 5.6 2.5 5.6 5.6v14.1c0 3.1-2.5 5.6-5.6 5.6zM.1-.4h187v187H.1z\"/><path class=\"st1\" d=\"m151.6 141.7-35.2-72.1v-39c0-2-1.6-3.7-3.7-3.7H74.4c-2 0-3.7 1.6-3.7 3.7v39l-35.2 72.1c-1.6 3.8-1.2 7.6 1.2 10.4 2.3 2.8 6.4 4.4 11.1 4.4h91.5c4.7 0 8.8-1.6 11.1-4.4 2.4-2.8 2.8-6.6 1.2-10.4z\"/><path class=\"st0\" d=\"M117.9 103.4zm20.2 35.3-17.3-32.8-14.4 25.7-24.9-16.9-25.4 17.7-1.2-3.6-.6.4-5.3 9.4c-1.2 2.1-1.1 4.6.1 6.7 1.2 2.1 3.5 3.3 5.9 3.3h77.1c2.4 0 4.7-1.2 5.9-3.3 1.3-2 1.3-4.5.1-6.6z\"/><circle class=\"st1\" cx=\"55.7\" cy=\"126.5\" r=\"8\"/><circle class=\"st1\" cx=\"104.3\" cy=\"124.1\" r=\"10\"/><circle class=\"st1\" cx=\"81.5\" cy=\"108.5\" r=\"7.5\"/><circle class=\"st1\" cx=\"117.8\" cy=\"100.6\" r=\"7.5\"/><path class=\"st0\" d=\"M117.8 96.4c-2.4 0-4.3 1.9-4.3 4.3 0 1.1.4 2 1 2.8l-8 14.3c-.7-.3-1.5-.4-2.3-.4-1.7 0-3.2.6-4.4 1.7L85 109v-.4c0-2-1.6-3.6-3.6-3.6s-3.6 1.6-3.6 3.6v.5l-19 13.4c-.9-.7-1.9-1.1-3.1-1.1-2.8 0-5 2.3-5 5s2.3 5 5 5 5-2.3 5-5c0-.5-.1-1-.2-1.4l18.8-13.4c.6.4 1.3.6 2 .6.8 0 1.5-.2 2.1-.7l14.5 9.8c-.4.8-.6 1.8-.6 2.7 0 3.8 3 6.8 6.8 6.8s6.8-3 6.8-6.8c0-1.9-.7-3.5-2-4.8l8-14.5c.2 0 .4.1.6.1 2.4 0 4.3-1.9 4.3-4.3.3-2.2-1.7-4.1-4-4.1z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:628.5,intrinsicWidth:1053.5,pixelHeight:1257,pixelWidth:2107,sizes:\"113.9825px\",src:\"https://framerusercontent.com/images/hx7sV7XjDbA16R7f0r9n3GH2Azo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hx7sV7XjDbA16R7f0r9n3GH2Azo.png?scale-down-to=512 512w,https://framerusercontent.com/images/hx7sV7XjDbA16R7f0r9n3GH2Azo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hx7sV7XjDbA16R7f0r9n3GH2Azo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hx7sV7XjDbA16R7f0r9n3GH2Azo.png 2107w\"},className:\"framer-1qq8yl3\",\"data-framer-name\":\"InnplayLabs\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:445,intrinsicWidth:1510.5,pixelHeight:890,pixelWidth:3021,sizes:\"139.1697px\",src:\"https://framerusercontent.com/images/kpZzXFTdpEuczw2eNTDcdKsx2s.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kpZzXFTdpEuczw2eNTDcdKsx2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/kpZzXFTdpEuczw2eNTDcdKsx2s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kpZzXFTdpEuczw2eNTDcdKsx2s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kpZzXFTdpEuczw2eNTDcdKsx2s.png 3021w\"},className:\"framer-k9au9q\",\"data-framer-name\":\"Playtika\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:205.5,intrinsicWidth:930.5,pixelHeight:411,pixelWidth:1861,sizes:\"185.6472px\",src:\"https://framerusercontent.com/images/MEWJyoejTYxCvTZSrtGXr9cT8PM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MEWJyoejTYxCvTZSrtGXr9cT8PM.png?scale-down-to=512 512w,https://framerusercontent.com/images/MEWJyoejTYxCvTZSrtGXr9cT8PM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MEWJyoejTYxCvTZSrtGXr9cT8PM.png 1861w\"},className:\"framer-1uyb7sv\",\"data-framer-name\":\"Makeopinion\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1625,intrinsicWidth:10592.5,pixelHeight:3250,pixelWidth:21185,sizes:\"189.0354px\",src:\"https://framerusercontent.com/images/TnXQlHNcx7UT5zQTSHwSBkhFRLo.png\",srcSet:\"https://framerusercontent.com/images/TnXQlHNcx7UT5zQTSHwSBkhFRLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/TnXQlHNcx7UT5zQTSHwSBkhFRLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TnXQlHNcx7UT5zQTSHwSBkhFRLo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TnXQlHNcx7UT5zQTSHwSBkhFRLo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/TnXQlHNcx7UT5zQTSHwSBkhFRLo.png 21185w\"},className:\"framer-13mkfh1\",\"data-framer-name\":\"AyeT\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18q5sn0\",\"data-framer-name\":\"CrazyLabs\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t6y1sg\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:35,intrinsicWidth:124,svg:'<svg width=\"124\" height=\"35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m21.632 5.182.903-3.354a1.08 1.08 0 0 0-.174-.916A1.028 1.028 0 0 0 21.534.5H3.821a1.049 1.049 0 0 0-.827.412 1.081 1.081 0 0 0-.174.916l.903 3.354a5.312 5.312 0 0 0-2.682 1.93A5.273 5.273 0 0 0 .027 10.25v18.967a5.25 5.25 0 0 0 1.518 3.728 5.297 5.297 0 0 0 3.719 1.572h14.855a5.297 5.297 0 0 0 3.719-1.572 5.25 5.25 0 0 0 1.517-3.728V10.25a5.273 5.273 0 0 0-1.025-3.143 5.312 5.312 0 0 0-2.698-1.924Zm-19.82 2.46A4.31 4.31 0 0 1 3.99 6.098l.882-.276-1.143-4.244a.092.092 0 0 1 0-.092.065.065 0 0 1 .054-.027h17.74a.066.066 0 0 1 .055.027.092.092 0 0 1 0 .092l-1.144 4.244.882.276a4.31 4.31 0 0 1 2.178 1.544c.556.757.855 1.67.854 2.607v12.08c-.767.541-3.718 2.216-10.054 2.043-4.17-.114-6.221-3.29-10.342-3.371a9.84 9.84 0 0 0-3.032.422V10.25c.01-.941.323-1.855.893-2.607Z\" fill=\"#00A2C5\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.373 19.83c-2.373 2.255-5.41 3.024-4.986 5.728.653 4.19 9.57 4.921 2.645 5.864-5.443.742-11.344-2.748-11.975-8.291-.43-3.745.626-7.17 2.754-9.522a4.391 4.391 0 0 0-1.834-1.084c-1.633-.4-.931-1.978-.692-2.346.24-.369 2.178-1.306 2.526.834.099.65.413 1.25.893 1.702a9.798 9.798 0 0 1 1.79-1.209l.344-.173a5.832 5.832 0 0 0-.817-2.027 1.215 1.215 0 0 1 .573-1.781 1.23 1.23 0 0 1 .701-.067 1.152 1.152 0 0 1 .896.61 1.138 1.138 0 0 1-.014 1.081 2.806 2.806 0 0 0-.218 1.713c2.548-.949 5.776-1.204 7.839 1.316a5.722 5.722 0 0 1-.42 7.63\" fill=\"#E64762\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.297 13.11a3.567 3.567 0 0 0-4.517.44 3.45 3.45 0 0 0-.245 4.4c.707.894 2.585 1.376 4.517.135a3.152 3.152 0 0 0 1.349-2.427 3.135 3.135 0 0 0-1.104-2.547Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.893 14.812a.791.791 0 0 0-.544-.19 1.475 1.475 0 0 0-1.089.542c-.479.542-.544 1.317-.098 1.675a.846.846 0 0 0 .544.19 1.475 1.475 0 0 0 1.089-.542c.479-.542.544-1.317.098-1.675Z\" fill=\"#101219\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.687 20.182c-.165.386-.248.8-.245 1.22 0 0-.746-.31-.914-.716a3.239 3.239 0 0 1 1.017-.574s.191-.087.142.07Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.985 18.779c-.218.63-.37 1.28-.457 1.94a8.003 8.003 0 0 1-1.089-1.371 2.42 2.42 0 0 1 1.393-.7s.234-.053.175.13\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.835 22.106c-.985.418-6.255.992-7.403-3.668a.837.837 0 0 1 .065-.542.645.645 0 0 1 .12-.125.353.353 0 0 1 .5.054c.044.055.072.12.082.19v.255c.158 1.577 1.867 4.178 6.532 3.669 0 0 .245.086.06.167h.044Z\" fill=\"#101219\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.073 18.313a.961.961 0 0 1 .391-.677c.37-.266 1.133-.06 1.133-.06l-1.524.737Z\" fill=\"#101219\"/><path d=\"M36.046 25.114a6.078 6.078 0 0 1-2.254-2.26 6.222 6.222 0 0 1-.832-3.175 6.365 6.365 0 0 1 .805-3.203 5.822 5.822 0 0 1 2.178-2.238 6.195 6.195 0 0 1 3.146-.808 7.59 7.59 0 0 1 1.85.228 5.085 5.085 0 0 1 1.557.64l-.473 2.709a6.555 6.555 0 0 0-2.27-.472 2.782 2.782 0 0 0-2.15.813 3.28 3.28 0 0 0-.752 2.32 3.183 3.183 0 0 0 .795 2.308 2.908 2.908 0 0 0 2.21.824c.34.003.68-.032 1.013-.103.394-.095.78-.221 1.154-.38l.49 2.748a6.483 6.483 0 0 1-3.32.889 6.205 6.205 0 0 1-3.174-.83m7.833-8.058h3.685v1.789a3.315 3.315 0 0 1 1.089-1.523 2.73 2.73 0 0 1 1.633-.499l.506 2.835a6.209 6.209 0 0 0-2.439.357 1.186 1.186 0 0 0-.778 1.122v4.525h-3.685l-.011-8.606Zm9.537 8.134a4.526 4.526 0 0 1-2.177-3.929 4.407 4.407 0 0 1 2.182-3.863 4.157 4.157 0 0 1 2.118-.575c.6 0 1.187.175 1.687.505.544.368.956.9 1.176 1.517v-2.021h3.69v8.838h-3.674v-1.626a2.957 2.957 0 0 1-1.157 1.321 2.978 2.978 0 0 1-1.706.435 4.008 4.008 0 0 1-2.123-.601h-.016Zm4.469-2.644c.327-.307.523-.728.544-1.176v-.135a1.69 1.69 0 0 0-.544-1.187 1.66 1.66 0 0 0-1.181-.488 1.756 1.756 0 0 0-1.764 1.745 1.663 1.663 0 0 0 .544 1.236 1.742 1.742 0 0 0 1.241.504 1.64 1.64 0 0 0 1.198-.499m5.59 1.241 3.076-4.628h-2.956v-2.227h7.272v1.88l-2.918 4.612h2.989v2.227h-7.463v-1.864Zm11.709 5.658.277-2.574c.416.066.837.1 1.258.103a1.983 1.983 0 0 0 1.573-.618c.365-.412.544-1.181.544-2.32a3.05 3.05 0 0 1-1.193 1.311 3.07 3.07 0 0 1-1.724.429 3.207 3.207 0 0 1-2.651-1.192 5.148 5.148 0 0 1-.953-3.3v-4.336h3.669v4.877c-.012.357.108.706.337.981a1.126 1.126 0 0 0 .91.396 1.157 1.157 0 0 0 .968-.51c.266-.388.398-.852.376-1.322v-4.433h3.685v6.503c0 2.016-.451 3.555-1.36 4.607a4.855 4.855 0 0 1-3.898 1.587 8.386 8.386 0 0 1-1.835-.195M83.73 13.69h3.772v9.327h4.18v2.644H83.73v-11.97ZM94.606 25.2a4.437 4.437 0 0 1-1.579-1.625 4.53 4.53 0 0 1-.599-2.303 4.412 4.412 0 0 1 .6-2.27 4.3 4.3 0 0 1 1.589-1.594 4.14 4.14 0 0 1 2.112-.575c.6-.002 1.188.173 1.687.505.557.362.981.894 1.209 1.517v-2.021h3.668v8.838h-3.668v-1.625a2.963 2.963 0 0 1-1.16 1.32 2.983 2.983 0 0 1-1.709.435 4.01 4.01 0 0 1-2.123-.601h-.027Zm4.485-2.644a1.72 1.72 0 0 0 .544-1.176v-.135a1.689 1.689 0 0 0-.544-1.187 1.66 1.66 0 0 0-1.181-.488 1.705 1.705 0 0 0-1.246.515 1.728 1.728 0 0 0-.385 1.901c.09.212.22.404.385.565a1.726 1.726 0 0 0 1.24.504 1.636 1.636 0 0 0 1.198-.499m9.673 1.49v1.626h-3.707V14.194l3.707-.542v4.92a2.957 2.957 0 0 1 1.137-1.338 3.28 3.28 0 0 1 1.693-.417 4.23 4.23 0 0 1 2.159.575 4.2 4.2 0 0 1 1.559 1.593 4.68 4.68 0 0 1 .545 2.297 4.505 4.505 0 0 1-.588 2.277 4.348 4.348 0 0 1-1.573 1.625 4.022 4.022 0 0 1-2.107.591 2.931 2.931 0 0 1-1.702-.43 2.91 2.91 0 0 1-1.145-1.326l.022.027Zm2.934-1.544a1.698 1.698 0 0 0 .365-1.889 1.674 1.674 0 0 0-.403-.56 1.635 1.635 0 0 0-1.214-.51 1.69 1.69 0 0 0-1.225.499 1.597 1.597 0 0 0-.506 1.175v.071a1.684 1.684 0 0 0 .544 1.236 1.683 1.683 0 0 0 1.214.503 1.64 1.64 0 0 0 1.225-.541m5.334 2.774.403-2.07a7.166 7.166 0 0 0 2.444.455c.583 0 .877-.162.877-.487a.468.468 0 0 0-.256-.401 3.024 3.024 0 0 0-.953-.277 3.889 3.889 0 0 1-2.09-.943 2.775 2.775 0 0 1-.621-2.09 2.771 2.771 0 0 1 1.084-1.893 4.794 4.794 0 0 1 2.814-.731 9.294 9.294 0 0 1 1.568.113c.414.07.817.196 1.197.374l-.37 2.07a5.92 5.92 0 0 0-1.089-.292 6 6 0 0 0-1.001-.109 1.92 1.92 0 0 0-.822.125.373.373 0 0 0-.229.33c0 .255.294.434.877.543a4.838 4.838 0 0 1 2.373.975 2.396 2.396 0 0 1 .789 1.897 2.64 2.64 0 0 1-.969 2.167 4.33 4.33 0 0 1-2.787.792 8.749 8.749 0 0 1-3.217-.542\" fill=\"#000\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .5)\" d=\"M0 0h124v34H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tv60hs\",\"data-framer-name\":\"Papaya\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13n7ren\",\"data-framer-name\":\"Papaya\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:105,svg:'<svg width=\"105\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M35.446 4.986c-.413-.707-1.03-1.26-1.854-1.663-.825-.401-1.834-.603-3.027-.603H24.66v14.59h3.645v-5.237h2.26c1.221 0 2.245-.215 3.07-.644.823-.43 1.434-.995 1.833-1.694.397-.7.596-1.472.596-2.317 0-.915-.206-1.725-.618-2.432Zm-3.602 3.783c-.341.32-.86.478-1.556.478h-1.983V5.589h1.983c.696 0 1.215.16 1.556.478.341.319.511.769.511 1.35 0 .583-.17 1.034-.511 1.352ZM98.78 2.721h-3.907c-4.31 7.739-5.571 14.59-5.571 14.59h3.906s.18-.972.633-2.598h5.97c.454 1.626.633 2.598.633 2.598h3.907s-1.262-6.851-5.571-14.59Zm-4.097 9.27a56.725 56.725 0 0 1 2.143-5.405 57.076 57.076 0 0 1 2.144 5.404h-4.287ZM9.903.065C4.433.066 0 4.514 0 10c0 5.486 4.433 9.934 9.903 9.934 5.468 0 9.902-4.448 9.902-9.934 0-5.485-4.434-9.934-9.902-9.934Zm7.406 5.303-1.411 4.396a.77.77 0 0 0 0 .47l1.411 4.397a.768.768 0 0 1-.727 1.004l-4.604.01a.768.768 0 0 0-.447.146L7.8 18.498a.765.765 0 0 1-1.176-.383l-1.434-4.39a.767.767 0 0 0-.276-.38L1.195 10.62a.768.768 0 0 1 0-1.24l3.718-2.725a.767.767 0 0 0 .276-.381l1.434-4.39a.765.765 0 0 1 1.176-.383l3.732 2.706c.13.095.286.145.447.146l4.604.011c.52.002.886.51.727 1.005ZM68.906 2.72c-4.31 7.739-5.571 14.59-5.571 14.59h3.907s.179-.972.632-2.598h5.97c.454 1.626.633 2.598.633 2.598h3.907s-1.262-6.851-5.571-14.59h-3.907Zm-.19 9.27a56.701 56.701 0 0 1 2.144-5.405 57.13 57.13 0 0 1 2.143 5.404h-4.287Zm-5.498-7.005c-.412-.707-1.03-1.26-1.854-1.663-.825-.401-1.834-.603-3.027-.603h-5.905v14.59h3.646v-5.237h2.259c1.221 0 2.245-.215 3.07-.644.823-.43 1.435-.995 1.833-1.694.397-.7.596-1.472.596-2.317 0-.915-.206-1.725-.618-2.432Zm-3.602 3.783c-.341.319-.86.477-1.556.477h-1.983V5.588h1.983c.696 0 1.215.16 1.556.478.34.32.51.77.51 1.351 0 .582-.17 1.033-.51 1.352Zm31.21-6.048-5.179 9.768v4.822h-3.645v-4.82l-5.18-9.768h4.135l2.9 6.11 2.877-6.11h4.093Zm-49.691 0c-4.31 7.739-5.572 14.59-5.572 14.59h3.907s.18-.972.633-2.598h5.97c.454 1.626.633 2.598.633 2.598h3.907s-1.262-6.851-5.571-14.59h-3.907Zm-.19 9.27a56.754 56.754 0 0 1 2.143-5.405 57.076 57.076 0 0 1 2.143 5.404h-4.287Z\" fill=\"#FF5F42\"/></svg>',transformTemplate:transformTemplate3,withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"76px\",src:\"https://framerusercontent.com/images/aeWJh4znLDx0AjFWIxBdrt8D4.png\",srcSet:\"https://framerusercontent.com/images/aeWJh4znLDx0AjFWIxBdrt8D4.png?scale-down-to=512 512w,https://framerusercontent.com/images/aeWJh4znLDx0AjFWIxBdrt8D4.png 561w\"},className:\"framer-1kpyqvg\",\"data-framer-name\":\"SuperPlay\"})],speed:65,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-re46hj\",\"data-framer-name\":\"White Paper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tr0uwk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tt24vx\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dkb1h6\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\"},children:\"Our Research\"})}),className:\"framer-vsyirc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dnm8fs\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qtqnjs\",\"data-styles-preset\":\"KaBiy6iJm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rewarded Returns: The Complete Mobile Gaming Rewards Study\"})}),className:\"framer-73qo08\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation18,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-zm5294\",\"data-styles-preset\":\"wpOm8yk8n\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Curious about reward-based user acquisition?\"}),\" Our two-part study reveals why big spenders prefer reward platforms for discovering new games. \",/*#__PURE__*/_jsx(\"strong\",{children:\"With data from real players and developers\"}),\", learn how to implement strategies that work.\"]})}),className:\"framer-hcdz8e\",\"data-framer-appear-id\":\"hcdz8e\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wz5ns\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1axw3oo\",\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-b2eyt7\",\"data-border\":true,\"data-framer-name\":\"Form Wrapper\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/019a6872-d98b-4903-8d95-a026074677c7/submit\",className:\"framer-1cfuj0v\",nodeId:\"BTCbZcZic\",redirectUrl:{webPageId:\"bjJ0vyFAS\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-13rw95f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"Name\"})}),className:\"framer-1u54cqn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1wvjkft\",inputName:\"Name\",placeholder:\"Jane Smith\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1mc5ufh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"Company\"})}),className:\"framer-lp3u53\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-11773zp\",inputName:\"Company\",placeholder:\"Company xyz\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-12g8uz3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"Email Address\"})}),className:\"framer-jt9sf3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1ww4xx7\",inputName:\"Email\",placeholder:\"jane@company.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-kq8oow\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-10cqhm\",defaultChecked:false,inputName:\"Terms & Condition\",required:true,type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.45em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:[\"I accept the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ff_DrbXPV\"},motionChild:true,nodeId:\"Cw4W4CAbp\",openInNewTab:false,scopeId:\"nZhEWCx7R\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nkd7fw\",\"data-styles-preset\":\"HvwZfQeoG\",children:\"Terms & Conditions\"})})]})}),className:\"framer-7a00p5\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 24px) / 2, 1px) - 48px)`,y:(componentViewport?.y||0)+0+1393.975+64+0+0+358+0+0+0+24+0+0+609.4},IoT8G6S_J:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1050px) - 32px)`,y:(componentViewport?.y||0)+0+1269.875+32+0+0+342+0+0+0+0+16+0+0+609.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 50px) / 1.85, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1396.875+64+0+0+358+0+0+0+40+0+0+625.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oc94dx-container\",nodeId:\"d_zOSUmBS\",scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(ButtonWhitePaper,{height:\"100%\",id:\"d_zOSUmBS\",layoutId:\"d_zOSUmBS\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"uLzD4pRt3\",pending:\"TJeu_Tqak\",success:\"rg91uaFlW\"},\"r973KbceK\"),width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1004.8,intrinsicWidth:992,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1393.975+64+0+0+358+0),pixelHeight:546,pixelWidth:466,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6XYfYhCDOIVyWj8naoGboMyLOdo.jpg\",srcSet:\"https://framerusercontent.com/images/6XYfYhCDOIVyWj8naoGboMyLOdo.jpg 466w\"}},IoT8G6S_J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1004.8,intrinsicWidth:992,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1269.875+32+0+0+342+0+697.4),pixelHeight:546,pixelWidth:466,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1050px)`,src:\"https://framerusercontent.com/images/6XYfYhCDOIVyWj8naoGboMyLOdo.jpg\",srcSet:\"https://framerusercontent.com/images/6XYfYhCDOIVyWj8naoGboMyLOdo.jpg 466w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1004.8,intrinsicWidth:992,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1396.875+64+0+0+358+0),pixelHeight:546,pixelWidth:466,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 50px) * 0.4595, 1px)`,src:\"https://framerusercontent.com/images/6XYfYhCDOIVyWj8naoGboMyLOdo.jpg\",srcSet:\"https://framerusercontent.com/images/6XYfYhCDOIVyWj8naoGboMyLOdo.jpg 466w\"},className:\"framer-1kzra67\",\"data-framer-name\":\"Cover Image\"})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1e5aege\",\"data-framer-name\":\"Insider\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3kumkg\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-181ni0\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\"},children:\"Case Studies\"})}),className:\"framer-7qmtw4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qxuke0\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qtqnjs\",\"data-styles-preset\":\"KaBiy6iJm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Impact\"})}),className:\"framer-nojq9n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation18,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zm5294\",\"data-styles-preset\":\"wpOm8yk8n\",children:\" High-potential users we transformed into high-value customers.\"})}),className:\"framer-1k4x2wg\",\"data-framer-appear-id\":\"1k4x2wg\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b4eca6\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hUC3nWV7c\"},implicitPathVariables:undefined},{href:{webPageId:\"hUC3nWV7c\"},implicitPathVariables:undefined},{href:{webPageId:\"hUC3nWV7c\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1050px)`,y:(componentViewport?.y||0)+0+2577.375+64+0+0+358+0+0},IoT8G6S_J:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1050px)`,y:(componentViewport?.y||0)+0+2773.275+32+0+0+342+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,y:(componentViewport?.y||0)+0+2628.275+64+0+0+358+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4ronn3-container\",nodeId:\"D47K4FoWW\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{BNhiM4pmN:resolvedLinks1[1],style:{width:\"100%\"}},IoT8G6S_J:{BNhiM4pmN:resolvedLinks1[2],style:{width:\"100%\"},variant:\"iY1EYSxQk\",YhhJPwWsp:addImageAlt({positionX:\"25.4%\",positionY:\"47%\",src:\"https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg\",srcSet:\"https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg 3317w\"},\"\")}},children:/*#__PURE__*/_jsx(CaseStudy,{BNhiM4pmN:resolvedLinks1[0],height:\"100%\",id:\"D47K4FoWW\",kNdqi2wZt:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"One of Many Success Stories\"})}),layoutId:\"D47K4FoWW\",und4aZx6j:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"150% ROAS: How Freecash and Animal Coins Achieved Massive Gains\"})}),variant:\"OHEI0bqgU\",width:\"100%\",YhhJPwWsp:addImageAlt({positionX:\"14.8%\",positionY:\"45.5%\",src:\"https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg\",srcSet:\"https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rLpatOQNju5oTODO3Q6dqW0.jpg 3317w\"},\"\")})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"L62FfuUgZ\"},implicitPathVariables:undefined},{href:{webPageId:\"L62FfuUgZ\"},implicitPathVariables:undefined},{href:{webPageId:\"L62FfuUgZ\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1050px)`,y:(componentViewport?.y||0)+0+2577.375+64+0+0+358+0+388},IoT8G6S_J:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1050px)`,y:(componentViewport?.y||0)+0+2773.275+32+0+0+342+0+364}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,y:(componentViewport?.y||0)+0+2628.275+64+0+0+358+0+388,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v1h92z-container\",nodeId:\"qoZ4iq4CK\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{BNhiM4pmN:resolvedLinks2[1],style:{width:\"100%\"}},IoT8G6S_J:{BNhiM4pmN:resolvedLinks2[2],style:{width:\"100%\"},variant:\"iY1EYSxQk\"}},children:/*#__PURE__*/_jsx(CaseStudy,{BNhiM4pmN:resolvedLinks2[0],height:\"100%\",id:\"qoZ4iq4CK\",kNdqi2wZt:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Mad Brain Games and Almedia's partnership skyrocketed Word Farm Adventure's ROAS by 50% in three months across 30+ GEOs.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),layoutId:\"qoZ4iq4CK\",und4aZx6j:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Mad Brain & Almedia: 50% ROAS Boost for Word Farm\"})}),variant:\"OHEI0bqgU\",width:\"100%\",YhhJPwWsp:addImageAlt({positionX:\"2.8%\",positionY:\"48.2%\",src:\"https://framerusercontent.com/images/9ORd26mckzfyyGr2WJfSJubkllM.jpg\",srcSet:\"https://framerusercontent.com/images/9ORd26mckzfyyGr2WJfSJubkllM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9ORd26mckzfyyGr2WJfSJubkllM.jpg 1024w\"},\"\")})})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-n1rtof\",\"data-framer-name\":\"How it works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6vyke3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kkwnar\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\"},children:\"Rewarded UA Made Simple\"})}),className:\"framer-1fzxw2t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j8ksq2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qtqnjs\",\"data-styles-preset\":\"KaBiy6iJm\",style:{\"--framer-text-alignment\":\"center\"},children:\" Start Advertising in 5 Steps\"})}),className:\"framer-1ws7c2u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation18,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zm5294\",\"data-styles-preset\":\"wpOm8yk8n\",children:\"It only takes 5 steps to launch your #1 user acquisition channel with effortless onboarding.\"})}),className:\"framer-j6n2d2\",\"data-framer-appear-id\":\"j6n2d2\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nos8wd\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1004.8,intrinsicWidth:992,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3799.375+64+0+358+0),pixelHeight:2120,pixelWidth:1194,positionX:\"center\",positionY:\"center\",sizes:`max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1050px) - 96px, 1050px) - 50px) / 2, 1px)`,src:\"https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png?scale-down-to=1024 576w,https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png?scale-down-to=2048 1153w,https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png 1194w\"}},IoT8G6S_J:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1004.8,intrinsicWidth:992,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3891.275+32+0+0+342+0+0),pixelHeight:2120,pixelWidth:1194,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1050px) - 32px, 1050px)`,src:\"https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png?scale-down-to=1024 576w,https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png?scale-down-to=2048 1153w,https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png 1194w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1004.8,intrinsicWidth:992,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3850.275+64+0+358+0),pixelHeight:2120,pixelWidth:1194,positionX:\"center\",positionY:\"center\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1050px) - 50px) * 0.4595, 1px)`,src:\"https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png?scale-down-to=1024 576w,https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png?scale-down-to=2048 1153w,https://framerusercontent.com/images/HHgOvCmA6WLZ0wUI83lESTpnLio.png 1194w\"},className:\"framer-1we7il2\",\"data-framer-name\":\"Cover Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wh1h5z\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1koyiyi\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4b0mr\",\"data-framer-name\":\"Step no.\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\"},children:\"1\"})}),className:\"framer-28kng9\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4tghve\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14))\"},children:\"Initial Consultation \"})}),className:\"framer-1cfznrv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"Personalized UA analysis for your product.\"})}),className:\"framer-5mo64y\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kv2lkv\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bpbded\",\"data-framer-name\":\"Step no.\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\"},children:\"2\"})}),className:\"framer-1c4rkjs\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jv3sd5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14))\"},children:\"Define Campaign  \"})}),className:\"framer-mhdo39\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"Identify the best campaigns tailored to your app\u2019s needs.\"})}),className:\"framer-13bwsas\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q8efpy\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cipilg\",\"data-framer-name\":\"Step no.\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-tmro0d\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u66q7u\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14))\"},children:\"Build Rewards Structures\"})}),className:\"framer-1hjhvfg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"Create in-app offers and rewards to drive purchases.\"})}),className:\"framer-zpuy8w\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h687na\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19bbedp\",\"data-framer-name\":\"Step no.\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\"},children:\"4\"})}),className:\"framer-1wes1k\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1shgmk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14))\"},children:\"Integrate Data Tracking \"})}),className:\"framer-108cb8x\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"Connect app data with our platform seamlessly.\"})}),className:\"framer-syar16\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1509sw8\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hiodio\",\"data-framer-name\":\"Step no.\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, rgb(255, 255, 255))\"},children:\"5\"})}),className:\"framer-11mklml\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4yty07\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14))\"},children:\"Go Live!\"})}),className:\"framer-oc7d0m\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"Launch on Freecash and scale fast.\"})}),className:\"framer-8m5eoq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"L4IQ33_43\"},implicitPathVariables:undefined},{href:{webPageId:\"L4IQ33_43\"},implicitPathVariables:undefined},{href:{webPageId:\"L4IQ33_43\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{y:(componentViewport?.y||0)+0+3799.375+64+0+358+0+0+1445},IoT8G6S_J:{y:(componentViewport?.y||0)+0+3891.275+32+0+0+342+0+448+0+1485}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+3850.275+64+0+358+0+0+1525,children:/*#__PURE__*/_jsx(Container,{className:\"framer-izr4ub-container\",nodeId:\"njRoSBbAu\",scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{C2LpVz61_:resolvedLinks3[1]},IoT8G6S_J:{C2LpVz61_:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Button,{b0vgtBrfi:\"Get started now\",C2LpVz61_:resolvedLinks3[0],height:\"100%\",id:\"njRoSBbAu\",jLfO8b37O:false,layoutId:\"njRoSBbAu\",variant:\"NbSS5NJ7k\",width:\"100%\",zUyeSWpl_:true})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-gb0tne\",\"data-framer-name\":\"Insider\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nexbrw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-idgu3u\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\"},children:\"Insider\"})}),className:\"framer-e3386t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r45rlk\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qtqnjs\",\"data-styles-preset\":\"KaBiy6iJm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Insights\"})}),className:\"framer-1q0q6mo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation18,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zm5294\",\"data-styles-preset\":\"wpOm8yk8n\",children:\"How we got here and the current state of play.\"})}),className:\"framer-1hbb537\",\"data-framer-appear-id\":\"1hbb537\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wcyarsbG9\"},implicitPathVariables:undefined},{href:{webPageId:\"wcyarsbG9\"},implicitPathVariables:undefined},{href:{webPageId:\"wcyarsbG9\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{y:(componentViewport?.y||0)+0+5778.375+64+0+0+0+0+318},IoT8G6S_J:{y:(componentViewport?.y||0)+0+6278.275+32+0+0+0+0+318}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+5909.275+64+0+0+0+0+318,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation21,className:\"framer-bvg41v-container\",\"data-framer-appear-id\":\"bvg41v\",initial:animation1,nodeId:\"eBjGr1kpD\",optimized:true,rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{C2LpVz61_:resolvedLinks4[1]},IoT8G6S_J:{C2LpVz61_:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{b0vgtBrfi:\"Explore all articles\",C2LpVz61_:resolvedLinks4[0],height:\"100%\",id:\"eBjGr1kpD\",jLfO8b37O:false,layoutId:\"eBjGr1kpD\",variant:\"NbSS5NJ7k\",width:\"100%\",zUyeSWpl_:true})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1155acf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"crcjS1QC_\",data:Insights,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"crcjS1QC_\",name:\"g6rBkdHL1\",type:\"Identifier\"},{collection:\"crcjS1QC_\",name:\"LQvrFkotl\",type:\"Identifier\"},{collection:\"crcjS1QC_\",name:\"g4YUUm96o\",type:\"Identifier\"},{collection:\"crcjS1QC_\",name:\"bSuzbVlCj\",type:\"Identifier\"},{collection:\"crcjS1QC_\",name:\"tNkTRure6\",type:\"Identifier\"},{collection:\"crcjS1QC_\",name:\"WYguv7jwY\",type:\"Identifier\"},{collection:\"crcjS1QC_\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"crcjS1QC_\",name:\"g6rBkdHL1\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Tfr9QFcSy\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bSuzbVlCj:bSuzbVlCjcrcjS1QC_,g4YUUm96o:g4YUUm96ocrcjS1QC_,g6rBkdHL1:g6rBkdHL1crcjS1QC_,id:idcrcjS1QC_,LQvrFkotl:LQvrFkotlcrcjS1QC_,tNkTRure6:tNkTRure6crcjS1QC_,WYguv7jwY:WYguv7jwYcrcjS1QC_},index)=>{g4YUUm96ocrcjS1QC_??=\"\";bSuzbVlCjcrcjS1QC_??=0;WYguv7jwYcrcjS1QC_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`crcjS1QC_-${idcrcjS1QC_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{WYguv7jwY:WYguv7jwYcrcjS1QC_},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{WYguv7jwY:WYguv7jwYcrcjS1QC_},webPageId:\"u_epDBUet\"},implicitPathVariables:undefined},{href:{pathVariables:{WYguv7jwY:WYguv7jwYcrcjS1QC_},webPageId:\"u_epDBUet\"},implicitPathVariables:undefined},{href:{pathVariables:{WYguv7jwY:WYguv7jwYcrcjS1QC_},webPageId:\"u_epDBUet\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{height:549,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1050px), 1px)`,y:(componentViewport?.y||0)+0+5778.375+64+0+0+430+0},IoT8G6S_J:{height:455,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1050px)`,y:(componentViewport?.y||0)+0+6278.275+32+0+0+414+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:492,width:`max(min(${componentViewport?.width||\"100vw\"}, 1050px), 1px)`,y:(componentViewport?.y||0)+0+5909.275+64+0+0+430+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xhfy7e-container\",\"data-framer-name\":\"Blog-Card\",name:\"Blog-Card\",nodeId:\"TQbE5tyl2\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{zbjcnwF_n:resolvedLinks5[1]},IoT8G6S_J:{style:{width:\"100%\"},variant:\"DeTitqRas\",zbjcnwF_n:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(BlogCard,{height:\"100%\",hZwVbrb2m:toResponsiveImage(LQvrFkotlcrcjS1QC_),id:\"TQbE5tyl2\",layoutId:\"TQbE5tyl2\",name:\"Blog-Card\",style:{height:\"100%\",width:\"100%\"},variant:\"V6kXdofAH\",vR_9chkIc:toDateString(tNkTRure6crcjS1QC_,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),Wcp4DnfpD:suffix(numberToString(bSuzbVlCjcrcjS1QC_,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),\" min read\"),wePfcZbaQ:enumToDisplayNameFunctions[\"g6rBkdHL1\"]?.(g6rBkdHL1crcjS1QC_,activeLocale),width:\"100%\",Z0IA3dqry:g4YUUm96ocrcjS1QC_,zbjcnwF_n:resolvedLinks5[0]})})})})})})})},idcrcjS1QC_);})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-mky0xj\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qg4118\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lbpn0i\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4oa3or\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\"},children:\"Features\"})}),className:\"framer-1sxqw9o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xqhwuw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qtqnjs\",\"data-styles-preset\":\"KaBiy6iJm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Engine\"})}),className:\"framer-u4jv0m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation18,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zm5294\",\"data-styles-preset\":\"wpOm8yk8n\",children:\"What you can expect from the world's most intelligent engagement engine.\"})}),className:\"framer-84uqjj\",\"data-framer-appear-id\":\"84uqjj\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18g9nur\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6885.375+64+0+0+358+0+0},IoT8G6S_J:{width:\"334px\",y:(componentViewport?.y||0)+0+7211.275+32+0+0+342+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6959.275+64+0+0+358+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1il3g9j-container\",nodeId:\"o6vVGePBB\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(FeatureCard,{hBEaJVWo2:\"UserPlus\",height:\"100%\",id:\"o6vVGePBB\",layoutId:\"o6vVGePBB\",NIGWgfM3W:\"Quality User Acquisition\",style:{width:\"100%\"},ugTUK_E0z:\"Leverage data-driven campaigns to attract high-quality users that deliver long-term value.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6885.375+64+0+0+358+0+0},IoT8G6S_J:{width:\"334px\",y:(componentViewport?.y||0)+0+7211.275+32+0+0+342+0+276}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6959.275+64+0+0+358+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m8f1te-container\",nodeId:\"QWG__8bhS\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(FeatureCard,{hBEaJVWo2:\"LinkSimple\",height:\"100%\",id:\"QWG__8bhS\",layoutId:\"QWG__8bhS\",NIGWgfM3W:\"Effortless MMP Integration\",style:{width:\"100%\"},ugTUK_E0z:\"Easily integrate with leading  MMPs for precise tracking and real-time analytics\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6885.375+64+0+0+358+0+0},IoT8G6S_J:{width:\"334px\",y:(componentViewport?.y||0)+0+7211.275+32+0+0+342+0+552}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6959.275+64+0+0+358+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1swj86c-container\",nodeId:\"sdzWutN42\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(FeatureCard,{hBEaJVWo2:\"Gift\",height:\"100%\",id:\"sdzWutN42\",layoutId:\"sdzWutN42\",NIGWgfM3W:\"Tailored Reward Systems\",style:{width:\"100%\"},ugTUK_E0z:\"Engage your audience with tailored reward systems designed to boost retention and satisfaction.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6885.375+64+0+0+358+0+284},IoT8G6S_J:{width:\"334px\",y:(componentViewport?.y||0)+0+7211.275+32+0+0+342+0+828}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6959.275+64+0+0+358+0+284,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17ztlx-container\",nodeId:\"slZY1J5HH\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(FeatureCard,{hBEaJVWo2:\"GlobeHemisphereEast\",height:\"100%\",id:\"slZY1J5HH\",layoutId:\"slZY1J5HH\",NIGWgfM3W:\"Global Reach, Local Focus\",style:{width:\"100%\"},ugTUK_E0z:\"Expand your campaigns globally while benefiting from localized strategies.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6885.375+64+0+0+358+0+284},IoT8G6S_J:{width:\"334px\",y:(componentViewport?.y||0)+0+7211.275+32+0+0+342+0+1104}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6959.275+64+0+0+358+0+284,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tjlbij-container\",nodeId:\"XeveE0lyZ\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(FeatureCard,{hBEaJVWo2:\"ChartBar\",height:\"100%\",id:\"XeveE0lyZ\",layoutId:\"XeveE0lyZ\",NIGWgfM3W:\"Analytics Dashboard\",style:{width:\"100%\"},ugTUK_E0z:\"Gain actionable insights with an intuitive dashboard featuring your campaign performance data.\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6885.375+64+0+0+358+0+284},IoT8G6S_J:{width:\"334px\",y:(componentViewport?.y||0)+0+7211.275+32+0+0+342+0+1380}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+6959.275+64+0+0+358+0+284,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p5xlzv-container\",nodeId:\"ixxTxRNbq\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(FeatureCard,{hBEaJVWo2:\"Headset\",height:\"100%\",id:\"ixxTxRNbq\",layoutId:\"ixxTxRNbq\",NIGWgfM3W:\"Expert Account Support\",style:{width:\"100%\"},ugTUK_E0z:\"Enjoy hands-on support from our team of experts to optimize and scale your campaigns seamlessly.\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1geswlj\",\"data-framer-name\":\"Resources\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12futxo\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hvugk5\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\"},children:\"Feedback\"})}),className:\"framer-1t6s96i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qtqnjs\",\"data-styles-preset\":\"KaBiy6iJm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1b4d6458-9d5b-4d2d-b528-63ae7dba89fd, rgb(16, 24, 32))\"},children:\"Our Clients\"})}),className:\"framer-1clm7hj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ixakzw\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hb7p7f\",\"data-border\":true,\"data-framer-name\":\"Testimonial section\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-alignment\":\"left\"},children:'\"Almedia drives top-quality users to our games, among the best of all UA channels. We\\'re happy to keep scaling and strengthening our partnership with this talented team\"'})}),className:\"framer-xvn5kp\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bl0h3x\",\"data-framer-name\":\"Avatar and text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7915.375+64+0+0+177+0+24+169+0+0),pixelHeight:2490,pixelWidth:2276,positionX:\"center\",positionY:\"center\",sizes:\"64px\",src:\"https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png\",srcSet:\"https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png?scale-down-to=1024 935w,https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png?scale-down-to=2048 1871w,https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png 2276w\"}},IoT8G6S_J:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9257.275+32+0+0+161+0+0+24+169+0+0),pixelHeight:2490,pixelWidth:2276,positionX:\"center\",positionY:\"center\",sizes:\"64px\",src:\"https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png\",srcSet:\"https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png?scale-down-to=1024 935w,https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png?scale-down-to=2048 1871w,https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png 2276w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7989.275+64+0+0+177+0+24+169+0+0),pixelHeight:2490,pixelWidth:2276,positionX:\"center\",positionY:\"center\",sizes:\"64px\",src:\"https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png\",srcSet:\"https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png?scale-down-to=1024 935w,https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png?scale-down-to=2048 1871w,https://framerusercontent.com/images/hUf9Pi7YblZyqBjtO9fEndEVQ.png 2276w\"},className:\"framer-1obblfk\",\"data-framer-name\":\"Avatar\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-imgwc4\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qpglbq\",\"data-styles-preset\":\"qi_bSz1Uu\",style:{\"--framer-text-color\":\"var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14))\"},children:\"Mor Stone\"})}),className:\"framer-hve6b6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"G.S Innplay Labs Ltd\"})}),className:\"framer-1ck06yx\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xbhfce\",\"data-border\":true,\"data-framer-name\":\"Testimonial section\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",children:'\"Talented team delivering results at scale! Always available and supportive.\"'})}),className:\"framer-9dyite\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19pp5s5\",\"data-framer-name\":\"Avatar and text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7915.375+64+0+0+177+0+24+169+0+0),src:\"https://framerusercontent.com/images/QALT978eZnIfwurYOaqBWq8EM.png\"}},IoT8G6S_J:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9257.275+32+0+0+161+0+367.2+24+169+0+0),src:\"https://framerusercontent.com/images/QALT978eZnIfwurYOaqBWq8EM.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7989.275+64+0+0+177+0+32+153+0+0),src:\"https://framerusercontent.com/images/QALT978eZnIfwurYOaqBWq8EM.png\"},className:\"framer-1a5eniy\",\"data-framer-name\":\"Avatar\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14jb70\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qpglbq\",\"data-styles-preset\":\"qi_bSz1Uu\",style:{\"--framer-text-color\":\"var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14))\"},children:\"Ben Asbach\"})}),className:\"framer-ueqf6b\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"CEO of Bitburst GmbH\"})}),className:\"framer-tg5mxi\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6yudpu\",\"data-border\":true,\"data-framer-name\":\"Testimonial section\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",children:'\"We have been successfully working with Almedia for several years and are looking forward to the next years to come.\"'})}),className:\"framer-61mzj5\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3z4m1\",\"data-framer-name\":\"Avatar and text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7915.375+64+0+0+177+0+24+169+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7sKCIz0RL9n3yRyzOMSzXXBQzhM.png\"}},IoT8G6S_J:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9257.275+32+0+0+161+0+734.4+24+169+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7sKCIz0RL9n3yRyzOMSzXXBQzhM.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7989.275+64+0+0+177+0+32+153+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7sKCIz0RL9n3yRyzOMSzXXBQzhM.png\"},className:\"framer-vcmp3i\",\"data-framer-name\":\"Avatar\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19sn2mq\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qpglbq\",\"data-styles-preset\":\"qi_bSz1Uu\",style:{\"--framer-text-color\":\"var(--token-2b03deb7-f616-4381-81cb-024606ccae99, rgb(14, 12, 14))\"},children:\"Pascal Ludynia\"})}),className:\"framer-ztysv8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whkzz9\",\"data-styles-preset\":\"V49oSKgxd\",children:\"CEO of Ayet Studio GmbH\"})}),className:\"framer-13o3umd\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-665zlg\",\"data-framer-name\":\"Resources\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yq05ew\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1epffat\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5almig\",\"data-styles-preset\":\"zFmQqpKQC\",style:{\"--framer-text-color\":\"var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, rgb(11, 37, 237))\"},children:\"About Us\"})}),className:\"framer-abf30p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lxr829\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qtqnjs\",\"data-styles-preset\":\"KaBiy6iJm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Team\"})}),className:\"framer-l1sdv0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation18,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zm5294\",\"data-styles-preset\":\"wpOm8yk8n\",style:{\"--framer-text-color\":\"var(--token-dee20935-313b-4210-aa69-1c37c87afde0, rgb(99, 99, 99))\"},children:\"We're the team behind Freecash, where over 30M highly-engaged users have earned rewards while helping publishers achieve outstanding results. \"})}),className:\"framer-icpyq9\",\"data-framer-appear-id\":\"icpyq9\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4m2wcq\",\"data-framer-name\":\"Boxes\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+8571.575+64+0+0+358+-1},IoT8G6S_J:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1050px)`,y:(componentViewport?.y||0)+0+10567.875+32+0+0+342+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+8645.475+64+0+0+358+-11,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p77rxz-container\",\"data-framer-name\":\"Resource-card\",name:\"Resource-card\",nodeId:\"vpwFzdWHw\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",whileHover:animation24,children:/*#__PURE__*/_jsx(ResourceCard,{A_W2ocZwn:true,height:\"100%\",id:\"vpwFzdWHw\",layoutId:\"vpwFzdWHw\",name:\"Resource-card\",NRuiw4Jg_:\"Coins\",ownL_xCBo:\"https://freecash.com\",Rw_OTxucH:\"Freecash\",style:{width:\"100%\"},UWBPI7h3k:\"Discover the platform where 30M+ users earn rewards every day.\",variant:\"UG47gug4J\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Hk0px8fPj\"},implicitPathVariables:undefined},{href:{webPageId:\"Hk0px8fPj\"},implicitPathVariables:undefined},{href:{webPageId:\"Hk0px8fPj\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+8571.575+64+0+0+358+-1},IoT8G6S_J:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1050px)`,y:(componentViewport?.y||0)+0+10567.875+32+0+0+342+0+176}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+8645.475+64+0+0+358+-11,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9uvset-container\",nodeId:\"F0EhA5zXT\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",whileHover:animation24,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{ownL_xCBo:resolvedLinks6[1]},IoT8G6S_J:{ownL_xCBo:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(ResourceCard,{A_W2ocZwn:false,height:\"100%\",id:\"F0EhA5zXT\",layoutId:\"F0EhA5zXT\",NRuiw4Jg_:\"GlobeSimple\",ownL_xCBo:resolvedLinks6[0],Rw_OTxucH:\"About Us\",style:{width:\"100%\"},UWBPI7h3k:\"Learn more about our mission, vision, and innovative solutions.\",variant:\"URa6_9pq6\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VDMaHKwtY\"},implicitPathVariables:undefined},{href:{webPageId:\"VDMaHKwtY\"},implicitPathVariables:undefined},{href:{webPageId:\"VDMaHKwtY\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{height:158,width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1050px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+8571.575+64+0+0+358+0},IoT8G6S_J:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1050px)`,y:(componentViewport?.y||0)+0+10567.875+32+0+0+342+0+352}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(${componentViewport?.width||\"100vw\"}, 1050px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+8645.475+64+0+0+358+-11,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qwxz4z-container\",nodeId:\"awlKFKYzO\",rendersWithMotion:true,scopeId:\"nZhEWCx7R\",whileHover:animation24,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{ownL_xCBo:resolvedLinks7[1],style:{height:\"100%\",width:\"100%\"}},IoT8G6S_J:{ownL_xCBo:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(ResourceCard,{A_W2ocZwn:false,height:\"100%\",id:\"awlKFKYzO\",layoutId:\"awlKFKYzO\",NRuiw4Jg_:\"GlobeSimple\",ownL_xCBo:resolvedLinks7[0],Rw_OTxucH:\"Careers\",style:{width:\"100%\"},UWBPI7h3k:\"Join our team and shape the future of digital engagement.\",variant:\"niNfwtuJU\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{y:(componentViewport?.y||0)+0+9215.575},IoT8G6S_J:{y:(componentViewport?.y||0)+0+11485.875}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:510,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9269.475,children:/*#__PURE__*/_jsx(Container,{className:\"framer-158d2ms-container\",nodeId:\"rSevlc4qP\",scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IoT8G6S_J:{variant:\"BVN8ObJ4e\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"rSevlc4qP\",layoutId:\"rSevlc4qP\",style:{width:\"100%\"},variant:\"mIXLK7ONS\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hNYv8ZIc5:{y:(componentViewport?.y||0)+0+9725.575},IoT8G6S_J:{y:(componentViewport?.y||0)+0+11995.875}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:488,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9779.475,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o5jqmn-container\",nodeId:\"vgxU3nHok\",scopeId:\"nZhEWCx7R\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IoT8G6S_J:{variant:\"bgq8ba6uH\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"vgxU3nHok\",layoutId:\"vgxU3nHok\",style:{width:\"100%\"},variant:\"FypmwzovX\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-k5fQi.framer-15ycdy0, .framer-k5fQi .framer-15ycdy0 { display: block; }\",\".framer-k5fQi.framer-x23bs9 { align-content: center; align-items: center; background-color: var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-k5fQi .framer-1obmx21-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-k5fQi .framer-12xv6dx { 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: 48px 0px 520px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-k5fQi .framer-qayan9 { border-bottom-left-radius: 45px; border-bottom-right-radius: 45px; border-top-left-radius: 45px; border-top-right-radius: 45px; flex: none; height: 471px; left: -314px; overflow: visible; position: absolute; right: -325px; top: 404px; z-index: 2; }\",\".framer-k5fQi .framer-1gx6spt { bottom: -29px; flex: none; height: 500px; left: calc(50.54347826086959% - 1481px / 2); position: absolute; width: 1481px; }\",\".framer-k5fQi .framer-1t3zpb3 { flex: none; height: 417px; left: calc(50.43478260869567% - 1122px / 2); overflow: visible; position: absolute; top: -18px; width: 1122px; }\",\".framer-k5fQi .framer-16s8ca2 { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 89px); left: 1034px; position: absolute; top: 0px; width: 89px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-k5fQi .framer-1h08qc0 { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 89px); left: 831px; position: absolute; top: 93px; width: 89px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-k5fQi .framer-fgphxy { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 78px; left: 155px; position: absolute; top: 122px; width: 78px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-k5fQi .framer-bhlqnl { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 78px; left: 0px; position: absolute; top: 339px; width: 78px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-k5fQi .framer-1o8lr6x { bottom: -458px; flex: none; height: 909px; left: calc(49.94565217391306% - 497px / 2); overflow: visible; position: absolute; width: 497px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-k5fQi .framer-1lojkvo { aspect-ratio: 0.4892578125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 689px); left: 50%; position: absolute; top: -11px; transform: translateX(-50%); width: 337px; }\",\".framer-k5fQi .framer-bh1f7i { aspect-ratio: 0.46356275303643724 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 664px); left: 50%; position: absolute; top: 1px; transform: translateX(-50%); width: 308px; }\",\".framer-k5fQi .framer-1fj8a12 { -webkit-backdrop-filter: blur(25px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(25px); background-color: rgba(13, 11, 13, 0.34); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -24px; box-shadow: 0px 14.148247718811035px 24.254138946533203px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10.105891227722168px; position: absolute; right: 436px; width: min-content; }\",\".framer-k5fQi .framer-x25nym { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-k5fQi .framer-1e46pxm { align-content: center; align-items: center; background: linear-gradient(90deg, #292a3d 0%, rgba(36, 37, 55, 0.8) 100%); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10.783381462097168px 12.940057754516602px 10.783381462097168px 12.940057754516602px; position: relative; width: 386px; }\",\".framer-k5fQi .framer-9a286z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-k5fQi .framer-1c5u93, .framer-k5fQi .framer-1madzvv, .framer-k5fQi .framer-1pqtk27, .framer-k5fQi .framer-1s33qoy, .framer-k5fQi .framer-rqpbtd, .framer-k5fQi .framer-17grc1d, .framer-k5fQi .framer-1xh47kr, .framer-k5fQi .framer-1tcpvuq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-k5fQi .framer-10u2kc4, .framer-k5fQi .framer-hzugg4, .framer-k5fQi .framer-1f2rfhg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-k5fQi .framer-174y80y, .framer-k5fQi .framer-5n1j6r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: hidden; position: relative; width: 22px; }\",\".framer-k5fQi .framer-1eitlc8 { bottom: 7px; flex: none; left: 4px; position: absolute; right: 7px; top: 5px; }\",\".framer-k5fQi .framer-1y7egv6, .framer-k5fQi .framer-iwi9ok { align-content: center; align-items: center; background-color: rgba(47, 48, 67, 0.8); border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 36px; justify-content: center; overflow: visible; padding: 0px 12.940057754516602px 0px 12.940057754516602px; position: relative; width: min-content; }\",\".framer-k5fQi .framer-tu5ee3, .framer-k5fQi .framer-1jlwpna, .framer-k5fQi .framer-1jy87uw, .framer-k5fQi .framer-1nybmuk, .framer-k5fQi .framer-irt9th { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-k5fQi .framer-1ylj35s, .framer-k5fQi .framer-1aw9fu8, .framer-k5fQi .framer-bxx2ku, .framer-k5fQi .framer-vscmrf { flex: none; height: 15px; position: relative; width: 16px; }\",\".framer-k5fQi .framer-11hf1qw, .framer-k5fQi .framer-1ayihrj { align-content: center; align-items: center; background: linear-gradient(90deg, #292a3d 0%, rgba(36, 37, 55, 0.8) 100%); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 10.783381462097168px 12.940057754516602px 10.783381462097168px 12.940057754516602px; position: relative; width: 386px; }\",\".framer-k5fQi .framer-19r6r3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 220px; }\",\".framer-k5fQi .framer-1q99i2y { bottom: 8px; flex: none; left: 4px; position: absolute; right: 7px; top: 4px; }\",\".framer-k5fQi .framer-frbq91 { align-content: center; align-items: center; background: linear-gradient(90deg, #292a3d 0%, rgba(36, 37, 55, 0.8) 100%); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10.783381462097168px 12.940058708190918px 10.783381462097168px 12.940058708190918px; position: relative; width: 386px; }\",\".framer-k5fQi .framer-1lb4o61 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-k5fQi .framer-1cyzqkh { flex: none; height: 22px; overflow: visible; position: relative; width: 22px; }\",\".framer-k5fQi .framer-1wx2ty1 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-k5fQi .framer-11rvrkx, .framer-k5fQi .framer-17s5iqn { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-k5fQi .framer-bpddlm { align-content: center; align-items: center; background-color: rgba(47, 48, 67, 0.8); border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 36px; justify-content: center; overflow: visible; padding: 0px 12.940058708190918px 0px 12.940058708190918px; position: relative; width: min-content; }\",\".framer-k5fQi .framer-j5iu8j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-k5fQi .framer-zvze7h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 104px; }\",\".framer-k5fQi .framer-1ym49id { align-content: center; align-items: center; background: linear-gradient(90.27148259801035deg, #27d357 0%, rgba(226, 240, 60, 1) 100%); border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 36px; justify-content: center; overflow: visible; padding: 0px 12.940058708190918px 0px 12.940058708190918px; position: relative; width: min-content; }\",\".framer-k5fQi .framer-jewchm { align-content: center; align-items: center; background-color: #01d676; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 17px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 13px 130px 13px 130px; position: absolute; text-decoration: none; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-k5fQi .framer-v6xjk8, .framer-k5fQi .framer-vsyirc, .framer-k5fQi .framer-7qmtw4, .framer-k5fQi .framer-1fzxw2t, .framer-k5fQi .framer-e3386t, .framer-k5fQi .framer-1sxqw9o, .framer-k5fQi .framer-1t6s96i, .framer-k5fQi .framer-abf30p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-k5fQi .framer-1weu8ll { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-k5fQi .framer-1799jsa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-k5fQi .framer-x0smek, .framer-k5fQi .framer-qlo33a, .framer-k5fQi .framer-jx3prd, .framer-k5fQi .framer-19fyveg, .framer-k5fQi .framer-1fovc6a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-k5fQi .framer-1c7h1j4, .framer-k5fQi .framer-1dnm8fs, .framer-k5fQi .framer-1qxuke0, .framer-k5fQi .framer-j8ksq2, .framer-k5fQi .framer-r45rlk, .framer-k5fQi .framer-xqhwuw, .framer-k5fQi .framer-lxr829 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-v4hz0v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 730px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-k5fQi .framer-1dgyhh2, .framer-k5fQi .framer-hcdz8e, .framer-k5fQi .framer-1k4x2wg, .framer-k5fQi .framer-j6n2d2, .framer-k5fQi .framer-1hbb537, .framer-k5fQi .framer-84uqjj, .framer-k5fQi .framer-icpyq9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-k5fQi .framer-wdi46o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1ek145t-container, .framer-k5fQi .framer-1er3f3w-container, .framer-k5fQi .framer-4ronn3-container, .framer-k5fQi .framer-v1h92z-container, .framer-k5fQi .framer-izr4ub-container { flex: none; height: auto; position: relative; width: auto; }\",'.framer-k5fQi .framer-t3ft8o { -webkit-filter: blur(20px); background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(172, 189, 212, 0.2) 25.675675675675674%, var(--token-1837f4af-5fd8-4c89-9e1b-43eb48c38dd1, rgb(172, 189, 212)) /* {\"name\":\"Light Blue\"} */ 100%); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; filter: blur(20px); flex: none; height: 600px; left: 0px; opacity: 0.5; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }',\".framer-k5fQi .framer-1em37qt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-k5fQi .framer-1gdqr98, .framer-k5fQi .framer-73qo08, .framer-k5fQi .framer-nojq9n, .framer-k5fQi .framer-1ws7c2u, .framer-k5fQi .framer-1q0q6mo, .framer-k5fQi .framer-u4jv0m, .framer-k5fQi .framer-1clm7hj, .framer-k5fQi .framer-l1sdv0 { --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-k5fQi .framer-3zfb6k-container { flex: none; height: 68px; max-width: 1050px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1f6s6ps { aspect-ratio: 1.3303769401330376 / 1; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 62px; }\",\".framer-k5fQi .framer-1r9ezwx { height: 41px; overflow: hidden; position: relative; width: 185px; }\",\".framer-k5fQi .framer-1x1bttl { aspect-ratio: 4.524064171122995 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-k5fQi .framer-1qq8yl3 { aspect-ratio: 1.6762132060461417 / 1; height: var(--framer-aspect-ratio-supported, 68px); overflow: visible; position: relative; width: 113px; }\",\".framer-k5fQi .framer-k9au9q { aspect-ratio: 3.39438202247191 / 1; height: var(--framer-aspect-ratio-supported, 41px); overflow: visible; position: relative; width: 139px; }\",\".framer-k5fQi .framer-1uyb7sv { aspect-ratio: 4.527980535279806 / 1; height: var(--framer-aspect-ratio-supported, 41px); overflow: visible; position: relative; width: 186px; }\",\".framer-k5fQi .framer-13mkfh1 { aspect-ratio: 6.518461538461539 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 188px; }\",\".framer-k5fQi .framer-18q5sn0 { height: 41px; overflow: hidden; position: relative; width: 145px; }\",\".framer-k5fQi .framer-t6y1sg { aspect-ratio: 3.5428571428571427 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-k5fQi .framer-tv60hs { height: 30px; overflow: hidden; position: relative; width: 149px; }\",\".framer-k5fQi .framer-13n7ren { aspect-ratio: 5.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 50%; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 149px; }\",\".framer-k5fQi .framer-1kpyqvg { height: 53px; position: relative; width: 76px; }\",\".framer-k5fQi .framer-re46hj, .framer-k5fQi .framer-1e5aege { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-k5fQi .framer-1tr0uwk, .framer-k5fQi .framer-lbpn0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1050px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-tt24vx { 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: 1050px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1dkb1h6, .framer-k5fQi .framer-181ni0 { 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: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-3wz5ns { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1axw3oo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-k5fQi .framer-b2eyt7 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-55dbb1f5-fcda-4504-8d69-f75190f08e21, #ffffff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1cfuj0v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-13rw95f, .framer-k5fQi .framer-1mc5ufh, .framer-k5fQi .framer-12g8uz3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1u54cqn, .framer-k5fQi .framer-lp3u53, .framer-k5fQi .framer-jt9sf3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-k5fQi .framer-1wvjkft, .framer-k5fQi .framer-11773zp, .framer-k5fQi .framer-1ww4xx7 { --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.31); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 12px; --framer-input-border-radius-bottom-right: 12px; --framer-input-border-radius-top-left: 12px; --framer-input-border-radius-top-right: 12px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: var(--token-670d95aa-0345-4aef-abce-383794969845, #6562ff); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-2b03deb7-f616-4381-81cb-024606ccae99, #0e0c0e); --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 48px; position: relative; width: 100%; }',\".framer-k5fQi .framer-kq8oow { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-10cqhm { --framer-input-background: rgba(255, 254, 250, 0.2); --framer-input-boolean-checked-background: var(--token-bebd16a4-8a53-4186-b1a3-5fc9dee03c09, #0b25ed); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.2); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 4px; --framer-input-border-radius-bottom-right: 4px; --framer-input-border-radius-top-left: 4px; --framer-input-border-radius-top-right: 4px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-icon-color: #ffffff; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-k5fQi .framer-7a00p5 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-k5fQi .framer-1oc94dx-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1kzra67, .framer-k5fQi .framer-1we7il2 { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 0.85 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 48px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-k5fQi .framer-3kumkg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1b4eca6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-n1rtof { 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: 64px 0px 64px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-k5fQi .framer-6vyke3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 5; }\",\".framer-k5fQi .framer-1kkwnar { 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: 1050px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-nos8wd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-wh1h5z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-k5fQi .framer-1koyiyi, .framer-k5fQi .framer-1kv2lkv, .framer-k5fQi .framer-1q8efpy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-k4b0mr, .framer-k5fQi .framer-bpbded, .framer-k5fQi .framer-cipilg, .framer-k5fQi .framer-19bbedp, .framer-k5fQi .framer-1hiodio { align-content: center; align-items: center; background-color: #15294b; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9px 13.5px 9px 13.5px; position: relative; width: min-content; }\",\".framer-k5fQi .framer-28kng9, .framer-k5fQi .framer-1c4rkjs, .framer-k5fQi .framer-tmro0d, .framer-k5fQi .framer-1wes1k, .framer-k5fQi .framer-11mklml { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 20px; word-break: break-word; word-wrap: break-word; }\",\".framer-k5fQi .framer-4tghve, .framer-k5fQi .framer-jv3sd5, .framer-k5fQi .framer-1u66q7u, .framer-k5fQi .framer-1shgmk, .framer-k5fQi .framer-4yty07 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-k5fQi .framer-1cfznrv, .framer-k5fQi .framer-5mo64y, .framer-k5fQi .framer-mhdo39, .framer-k5fQi .framer-13bwsas, .framer-k5fQi .framer-1hjhvfg, .framer-k5fQi .framer-zpuy8w, .framer-k5fQi .framer-108cb8x, .framer-k5fQi .framer-syar16, .framer-k5fQi .framer-oc7d0m, .framer-k5fQi .framer-8m5eoq { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-k5fQi .framer-h687na, .framer-k5fQi .framer-1509sw8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-gb0tne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-k5fQi .framer-nexbrw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-idgu3u { 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: 800px; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-k5fQi .framer-bvg41v-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-k5fQi .framer-1155acf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 492px; justify-content: center; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-xhfy7e-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-k5fQi .framer-mky0xj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 74px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-k5fQi .framer-qg4118 { -webkit-filter: blur(35px); background: radial-gradient(50% 59% at 50% 50%, #a3c0ff 0%, rgba(255, 255, 255, 0) 100%); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; bottom: 0px; filter: blur(35px); flex: none; height: 708px; left: 0px; opacity: 0.2; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-k5fQi .framer-4oa3or, .framer-k5fQi .framer-1hvugk5, .framer-k5fQi .framer-1epffat { 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: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-18g9nur { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-k5fQi .framer-1il3g9j-container, .framer-k5fQi .framer-1m8f1te-container, .framer-k5fQi .framer-1swj86c-container, .framer-k5fQi .framer-17ztlx-container, .framer-k5fQi .framer-1tjlbij-container, .framer-k5fQi .framer-1p5xlzv-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1geswlj, .framer-k5fQi .framer-665zlg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-k5fQi .framer-12futxo, .framer-k5fQi .framer-1yq05ew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-k5fQi .framer-1ixakzw { 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: flex-start; max-width: 1050px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1hb7p7f { --border-bottom-width: 1px; --border-color: var(--token-b554c2e7-869d-481f-b00a-b48a4520ce88, #d1d9e2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f5f8ff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-k5fQi .framer-xvn5kp, .framer-k5fQi .framer-9dyite { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-k5fQi .framer-1bl0h3x, .framer-k5fQi .framer-19pp5s5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1obblfk, .framer-k5fQi .framer-1a5eniy, .framer-k5fQi .framer-vcmp3i { align-content: center; align-items: center; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 64px; }\",\".framer-k5fQi .framer-imgwc4, .framer-k5fQi .framer-14jb70, .framer-k5fQi .framer-19sn2mq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-hve6b6, .framer-k5fQi .framer-ueqf6b, .framer-k5fQi .framer-ztysv8 { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-k5fQi .framer-1ck06yx, .framer-k5fQi .framer-tg5mxi, .framer-k5fQi .framer-13o3umd { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-k5fQi .framer-xbhfce, .framer-k5fQi .framer-6yudpu { --border-bottom-width: 1px; --border-color: var(--token-b554c2e7-869d-481f-b00a-b48a4520ce88, #d1d9e2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: #f5f8ff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; height: auto; justify-content: space-between; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-k5fQi .framer-61mzj5 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 270px; word-break: break-word; word-wrap: break-word; }\",\".framer-k5fQi .framer-1j3z4m1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 270px; }\",\".framer-k5fQi .framer-4m2wcq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 138px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-k5fQi .framer-1p77rxz-container, .framer-k5fQi .framer-9uvset-container, .framer-k5fQi .framer-1qwxz4z-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-k5fQi .framer-158d2ms-container, .framer-k5fQi .framer-o5jqmn-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-k5fQi.framer-x23bs9, .framer-k5fQi .framer-12xv6dx, .framer-k5fQi .framer-1fj8a12, .framer-k5fQi .framer-x25nym, .framer-k5fQi .framer-1e46pxm, .framer-k5fQi .framer-9a286z, .framer-k5fQi .framer-10u2kc4, .framer-k5fQi .framer-1y7egv6, .framer-k5fQi .framer-tu5ee3, .framer-k5fQi .framer-19r6r3, .framer-k5fQi .framer-hzugg4, .framer-k5fQi .framer-1jlwpna, .framer-k5fQi .framer-iwi9ok, .framer-k5fQi .framer-1jy87uw, .framer-k5fQi .framer-frbq91, .framer-k5fQi .framer-1lb4o61, .framer-k5fQi .framer-1f2rfhg, .framer-k5fQi .framer-bpddlm, .framer-k5fQi .framer-1nybmuk, .framer-k5fQi .framer-j5iu8j, .framer-k5fQi .framer-zvze7h, .framer-k5fQi .framer-1ym49id, .framer-k5fQi .framer-irt9th, .framer-k5fQi .framer-jewchm, .framer-k5fQi .framer-1weu8ll, .framer-k5fQi .framer-1799jsa, .framer-k5fQi .framer-1c7h1j4, .framer-k5fQi .framer-wdi46o, .framer-k5fQi .framer-1em37qt, .framer-k5fQi .framer-re46hj, .framer-k5fQi .framer-1tr0uwk, .framer-k5fQi .framer-tt24vx, .framer-k5fQi .framer-1dkb1h6, .framer-k5fQi .framer-1dnm8fs, .framer-k5fQi .framer-3wz5ns, .framer-k5fQi .framer-1axw3oo, .framer-k5fQi .framer-b2eyt7, .framer-k5fQi .framer-1cfuj0v, .framer-k5fQi .framer-13rw95f, .framer-k5fQi .framer-1mc5ufh, .framer-k5fQi .framer-12g8uz3, .framer-k5fQi .framer-kq8oow, .framer-k5fQi .framer-1kzra67, .framer-k5fQi .framer-1e5aege, .framer-k5fQi .framer-3kumkg, .framer-k5fQi .framer-181ni0, .framer-k5fQi .framer-1qxuke0, .framer-k5fQi .framer-1b4eca6, .framer-k5fQi .framer-n1rtof, .framer-k5fQi .framer-6vyke3, .framer-k5fQi .framer-1kkwnar, .framer-k5fQi .framer-j8ksq2, .framer-k5fQi .framer-nos8wd, .framer-k5fQi .framer-1we7il2, .framer-k5fQi .framer-wh1h5z, .framer-k5fQi .framer-1koyiyi, .framer-k5fQi .framer-k4b0mr, .framer-k5fQi .framer-4tghve, .framer-k5fQi .framer-1kv2lkv, .framer-k5fQi .framer-bpbded, .framer-k5fQi .framer-jv3sd5, .framer-k5fQi .framer-1q8efpy, .framer-k5fQi .framer-cipilg, .framer-k5fQi .framer-1u66q7u, .framer-k5fQi .framer-h687na, .framer-k5fQi .framer-19bbedp, .framer-k5fQi .framer-1shgmk, .framer-k5fQi .framer-1509sw8, .framer-k5fQi .framer-1hiodio, .framer-k5fQi .framer-4yty07, .framer-k5fQi .framer-gb0tne, .framer-k5fQi .framer-nexbrw, .framer-k5fQi .framer-idgu3u, .framer-k5fQi .framer-r45rlk, .framer-k5fQi .framer-1155acf, .framer-k5fQi .framer-mky0xj, .framer-k5fQi .framer-lbpn0i, .framer-k5fQi .framer-4oa3or, .framer-k5fQi .framer-xqhwuw, .framer-k5fQi .framer-1geswlj, .framer-k5fQi .framer-12futxo, .framer-k5fQi .framer-1hvugk5, .framer-k5fQi .framer-1ixakzw, .framer-k5fQi .framer-1hb7p7f, .framer-k5fQi .framer-1bl0h3x, .framer-k5fQi .framer-1obblfk, .framer-k5fQi .framer-imgwc4, .framer-k5fQi .framer-19pp5s5, .framer-k5fQi .framer-1a5eniy, .framer-k5fQi .framer-14jb70, .framer-k5fQi .framer-1j3z4m1, .framer-k5fQi .framer-vcmp3i, .framer-k5fQi .framer-19sn2mq, .framer-k5fQi .framer-665zlg, .framer-k5fQi .framer-1yq05ew, .framer-k5fQi .framer-1epffat, .framer-k5fQi .framer-lxr829, .framer-k5fQi .framer-4m2wcq { gap: 0px; } .framer-k5fQi.framer-x23bs9 > *, .framer-k5fQi .framer-1obblfk > *, .framer-k5fQi .framer-1a5eniy > *, .framer-k5fQi .framer-vcmp3i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-k5fQi.framer-x23bs9 > :first-child, .framer-k5fQi .framer-1fj8a12 > :first-child, .framer-k5fQi .framer-x25nym > :first-child, .framer-k5fQi .framer-1weu8ll > :first-child, .framer-k5fQi .framer-1c7h1j4 > :first-child, .framer-k5fQi .framer-1em37qt > :first-child, .framer-k5fQi .framer-re46hj > :first-child, .framer-k5fQi .framer-1tr0uwk > :first-child, .framer-k5fQi .framer-tt24vx > :first-child, .framer-k5fQi .framer-1dkb1h6 > :first-child, .framer-k5fQi .framer-1dnm8fs > :first-child, .framer-k5fQi .framer-1axw3oo > :first-child, .framer-k5fQi .framer-b2eyt7 > :first-child, .framer-k5fQi .framer-1cfuj0v > :first-child, .framer-k5fQi .framer-13rw95f > :first-child, .framer-k5fQi .framer-1mc5ufh > :first-child, .framer-k5fQi .framer-12g8uz3 > :first-child, .framer-k5fQi .framer-1e5aege > :first-child, .framer-k5fQi .framer-3kumkg > :first-child, .framer-k5fQi .framer-181ni0 > :first-child, .framer-k5fQi .framer-1qxuke0 > :first-child, .framer-k5fQi .framer-1b4eca6 > :first-child, .framer-k5fQi .framer-6vyke3 > :first-child, .framer-k5fQi .framer-1kkwnar > :first-child, .framer-k5fQi .framer-j8ksq2 > :first-child, .framer-k5fQi .framer-wh1h5z > :first-child, .framer-k5fQi .framer-k4b0mr > :first-child, .framer-k5fQi .framer-4tghve > :first-child, .framer-k5fQi .framer-bpbded > :first-child, .framer-k5fQi .framer-jv3sd5 > :first-child, .framer-k5fQi .framer-cipilg > :first-child, .framer-k5fQi .framer-1u66q7u > :first-child, .framer-k5fQi .framer-19bbedp > :first-child, .framer-k5fQi .framer-1shgmk > :first-child, .framer-k5fQi .framer-1hiodio > :first-child, .framer-k5fQi .framer-4yty07 > :first-child, .framer-k5fQi .framer-gb0tne > :first-child, .framer-k5fQi .framer-nexbrw > :first-child, .framer-k5fQi .framer-idgu3u > :first-child, .framer-k5fQi .framer-r45rlk > :first-child, .framer-k5fQi .framer-mky0xj > :first-child, .framer-k5fQi .framer-lbpn0i > :first-child, .framer-k5fQi .framer-4oa3or > :first-child, .framer-k5fQi .framer-xqhwuw > :first-child, .framer-k5fQi .framer-1geswlj > :first-child, .framer-k5fQi .framer-12futxo > :first-child, .framer-k5fQi .framer-1hvugk5 > :first-child, .framer-k5fQi .framer-1hb7p7f > :first-child, .framer-k5fQi .framer-1bl0h3x > :first-child, .framer-k5fQi .framer-1obblfk > :first-child, .framer-k5fQi .framer-imgwc4 > :first-child, .framer-k5fQi .framer-19pp5s5 > :first-child, .framer-k5fQi .framer-1a5eniy > :first-child, .framer-k5fQi .framer-14jb70 > :first-child, .framer-k5fQi .framer-1j3z4m1 > :first-child, .framer-k5fQi .framer-vcmp3i > :first-child, .framer-k5fQi .framer-19sn2mq > :first-child, .framer-k5fQi .framer-665zlg > :first-child, .framer-k5fQi .framer-1yq05ew > :first-child, .framer-k5fQi .framer-1epffat > :first-child, .framer-k5fQi .framer-lxr829 > :first-child { margin-top: 0px; } .framer-k5fQi.framer-x23bs9 > :last-child, .framer-k5fQi .framer-1fj8a12 > :last-child, .framer-k5fQi .framer-x25nym > :last-child, .framer-k5fQi .framer-1weu8ll > :last-child, .framer-k5fQi .framer-1c7h1j4 > :last-child, .framer-k5fQi .framer-1em37qt > :last-child, .framer-k5fQi .framer-re46hj > :last-child, .framer-k5fQi .framer-1tr0uwk > :last-child, .framer-k5fQi .framer-tt24vx > :last-child, .framer-k5fQi .framer-1dkb1h6 > :last-child, .framer-k5fQi .framer-1dnm8fs > :last-child, .framer-k5fQi .framer-1axw3oo > :last-child, .framer-k5fQi .framer-b2eyt7 > :last-child, .framer-k5fQi .framer-1cfuj0v > :last-child, .framer-k5fQi .framer-13rw95f > :last-child, .framer-k5fQi .framer-1mc5ufh > :last-child, .framer-k5fQi .framer-12g8uz3 > :last-child, .framer-k5fQi .framer-1e5aege > :last-child, .framer-k5fQi .framer-3kumkg > :last-child, .framer-k5fQi .framer-181ni0 > :last-child, .framer-k5fQi .framer-1qxuke0 > :last-child, .framer-k5fQi .framer-1b4eca6 > :last-child, .framer-k5fQi .framer-6vyke3 > :last-child, .framer-k5fQi .framer-1kkwnar > :last-child, .framer-k5fQi .framer-j8ksq2 > :last-child, .framer-k5fQi .framer-wh1h5z > :last-child, .framer-k5fQi .framer-k4b0mr > :last-child, .framer-k5fQi .framer-4tghve > :last-child, .framer-k5fQi .framer-bpbded > :last-child, .framer-k5fQi .framer-jv3sd5 > :last-child, .framer-k5fQi .framer-cipilg > :last-child, .framer-k5fQi .framer-1u66q7u > :last-child, .framer-k5fQi .framer-19bbedp > :last-child, .framer-k5fQi .framer-1shgmk > :last-child, .framer-k5fQi .framer-1hiodio > :last-child, .framer-k5fQi .framer-4yty07 > :last-child, .framer-k5fQi .framer-gb0tne > :last-child, .framer-k5fQi .framer-nexbrw > :last-child, .framer-k5fQi .framer-idgu3u > :last-child, .framer-k5fQi .framer-r45rlk > :last-child, .framer-k5fQi .framer-mky0xj > :last-child, .framer-k5fQi .framer-lbpn0i > :last-child, .framer-k5fQi .framer-4oa3or > :last-child, .framer-k5fQi .framer-xqhwuw > :last-child, .framer-k5fQi .framer-1geswlj > :last-child, .framer-k5fQi .framer-12futxo > :last-child, .framer-k5fQi .framer-1hvugk5 > :last-child, .framer-k5fQi .framer-1hb7p7f > :last-child, .framer-k5fQi .framer-1bl0h3x > :last-child, .framer-k5fQi .framer-1obblfk > :last-child, .framer-k5fQi .framer-imgwc4 > :last-child, .framer-k5fQi .framer-19pp5s5 > :last-child, .framer-k5fQi .framer-1a5eniy > :last-child, .framer-k5fQi .framer-14jb70 > :last-child, .framer-k5fQi .framer-1j3z4m1 > :last-child, .framer-k5fQi .framer-vcmp3i > :last-child, .framer-k5fQi .framer-19sn2mq > :last-child, .framer-k5fQi .framer-665zlg > :last-child, .framer-k5fQi .framer-1yq05ew > :last-child, .framer-k5fQi .framer-1epffat > :last-child, .framer-k5fQi .framer-lxr829 > :last-child { margin-bottom: 0px; } .framer-k5fQi .framer-12xv6dx > *, .framer-k5fQi .framer-wdi46o > *, .framer-k5fQi .framer-kq8oow > *, .framer-k5fQi .framer-1kzra67 > *, .framer-k5fQi .framer-n1rtof > *, .framer-k5fQi .framer-1we7il2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-k5fQi .framer-12xv6dx > :first-child, .framer-k5fQi .framer-1e46pxm > :first-child, .framer-k5fQi .framer-9a286z > :first-child, .framer-k5fQi .framer-10u2kc4 > :first-child, .framer-k5fQi .framer-1y7egv6 > :first-child, .framer-k5fQi .framer-tu5ee3 > :first-child, .framer-k5fQi .framer-19r6r3 > :first-child, .framer-k5fQi .framer-hzugg4 > :first-child, .framer-k5fQi .framer-1jlwpna > :first-child, .framer-k5fQi .framer-iwi9ok > :first-child, .framer-k5fQi .framer-1jy87uw > :first-child, .framer-k5fQi .framer-frbq91 > :first-child, .framer-k5fQi .framer-1lb4o61 > :first-child, .framer-k5fQi .framer-1f2rfhg > :first-child, .framer-k5fQi .framer-bpddlm > :first-child, .framer-k5fQi .framer-1nybmuk > :first-child, .framer-k5fQi .framer-j5iu8j > :first-child, .framer-k5fQi .framer-zvze7h > :first-child, .framer-k5fQi .framer-1ym49id > :first-child, .framer-k5fQi .framer-irt9th > :first-child, .framer-k5fQi .framer-jewchm > :first-child, .framer-k5fQi .framer-1799jsa > :first-child, .framer-k5fQi .framer-wdi46o > :first-child, .framer-k5fQi .framer-3wz5ns > :first-child, .framer-k5fQi .framer-kq8oow > :first-child, .framer-k5fQi .framer-1kzra67 > :first-child, .framer-k5fQi .framer-n1rtof > :first-child, .framer-k5fQi .framer-nos8wd > :first-child, .framer-k5fQi .framer-1we7il2 > :first-child, .framer-k5fQi .framer-1koyiyi > :first-child, .framer-k5fQi .framer-1kv2lkv > :first-child, .framer-k5fQi .framer-1q8efpy > :first-child, .framer-k5fQi .framer-h687na > :first-child, .framer-k5fQi .framer-1509sw8 > :first-child, .framer-k5fQi .framer-1155acf > :first-child, .framer-k5fQi .framer-1ixakzw > :first-child, .framer-k5fQi .framer-4m2wcq > :first-child { margin-left: 0px; } .framer-k5fQi .framer-12xv6dx > :last-child, .framer-k5fQi .framer-1e46pxm > :last-child, .framer-k5fQi .framer-9a286z > :last-child, .framer-k5fQi .framer-10u2kc4 > :last-child, .framer-k5fQi .framer-1y7egv6 > :last-child, .framer-k5fQi .framer-tu5ee3 > :last-child, .framer-k5fQi .framer-19r6r3 > :last-child, .framer-k5fQi .framer-hzugg4 > :last-child, .framer-k5fQi .framer-1jlwpna > :last-child, .framer-k5fQi .framer-iwi9ok > :last-child, .framer-k5fQi .framer-1jy87uw > :last-child, .framer-k5fQi .framer-frbq91 > :last-child, .framer-k5fQi .framer-1lb4o61 > :last-child, .framer-k5fQi .framer-1f2rfhg > :last-child, .framer-k5fQi .framer-bpddlm > :last-child, .framer-k5fQi .framer-1nybmuk > :last-child, .framer-k5fQi .framer-j5iu8j > :last-child, .framer-k5fQi .framer-zvze7h > :last-child, .framer-k5fQi .framer-1ym49id > :last-child, .framer-k5fQi .framer-irt9th > :last-child, .framer-k5fQi .framer-jewchm > :last-child, .framer-k5fQi .framer-1799jsa > :last-child, .framer-k5fQi .framer-wdi46o > :last-child, .framer-k5fQi .framer-3wz5ns > :last-child, .framer-k5fQi .framer-kq8oow > :last-child, .framer-k5fQi .framer-1kzra67 > :last-child, .framer-k5fQi .framer-n1rtof > :last-child, .framer-k5fQi .framer-nos8wd > :last-child, .framer-k5fQi .framer-1we7il2 > :last-child, .framer-k5fQi .framer-1koyiyi > :last-child, .framer-k5fQi .framer-1kv2lkv > :last-child, .framer-k5fQi .framer-1q8efpy > :last-child, .framer-k5fQi .framer-h687na > :last-child, .framer-k5fQi .framer-1509sw8 > :last-child, .framer-k5fQi .framer-1155acf > :last-child, .framer-k5fQi .framer-1ixakzw > :last-child, .framer-k5fQi .framer-4m2wcq > :last-child { margin-right: 0px; } .framer-k5fQi .framer-1fj8a12 > * { margin: 0px; margin-bottom: calc(10.105891227722168px / 2); margin-top: calc(10.105891227722168px / 2); } .framer-k5fQi .framer-x25nym > * { margin: 0px; margin-bottom: calc(4.313352584838867px / 2); margin-top: calc(4.313352584838867px / 2); } .framer-k5fQi .framer-1e46pxm > * { margin: 0px; margin-left: calc(12.940057754516602px / 2); margin-right: calc(12.940057754516602px / 2); } .framer-k5fQi .framer-9a286z > *, .framer-k5fQi .framer-10u2kc4 > *, .framer-k5fQi .framer-1y7egv6 > *, .framer-k5fQi .framer-19r6r3 > *, .framer-k5fQi .framer-hzugg4 > *, .framer-k5fQi .framer-iwi9ok > *, .framer-k5fQi .framer-1lb4o61 > *, .framer-k5fQi .framer-1f2rfhg > *, .framer-k5fQi .framer-j5iu8j > *, .framer-k5fQi .framer-zvze7h > *, .framer-k5fQi .framer-1ym49id > * { margin: 0px; margin-left: calc(8.626705169677734px / 2); margin-right: calc(8.626705169677734px / 2); } .framer-k5fQi .framer-tu5ee3 > *, .framer-k5fQi .framer-1jy87uw > *, .framer-k5fQi .framer-bpddlm > *, .framer-k5fQi .framer-1nybmuk > *, .framer-k5fQi .framer-irt9th > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-k5fQi .framer-1jlwpna > * { margin: 0px; margin-left: calc(4.313352584838867px / 2); margin-right: calc(4.313352584838867px / 2); } .framer-k5fQi .framer-frbq91 > * { margin: 0px; margin-left: calc(12.940058708190918px / 2); margin-right: calc(12.940058708190918px / 2); } .framer-k5fQi .framer-jewchm > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-k5fQi .framer-1weu8ll > *, .framer-k5fQi .framer-1axw3oo > *, .framer-k5fQi .framer-b2eyt7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-k5fQi .framer-1799jsa > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-k5fQi .framer-1c7h1j4 > *, .framer-k5fQi .framer-1em37qt > *, .framer-k5fQi .framer-tt24vx > *, .framer-k5fQi .framer-1dnm8fs > *, .framer-k5fQi .framer-1qxuke0 > *, .framer-k5fQi .framer-j8ksq2 > *, .framer-k5fQi .framer-r45rlk > *, .framer-k5fQi .framer-xqhwuw > *, .framer-k5fQi .framer-1bl0h3x > *, .framer-k5fQi .framer-19pp5s5 > *, .framer-k5fQi .framer-1j3z4m1 > *, .framer-k5fQi .framer-lxr829 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-k5fQi .framer-re46hj > *, .framer-k5fQi .framer-1e5aege > *, .framer-k5fQi .framer-k4b0mr > *, .framer-k5fQi .framer-bpbded > *, .framer-k5fQi .framer-cipilg > *, .framer-k5fQi .framer-19bbedp > *, .framer-k5fQi .framer-1hiodio > *, .framer-k5fQi .framer-gb0tne > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-k5fQi .framer-1tr0uwk > *, .framer-k5fQi .framer-3kumkg > *, .framer-k5fQi .framer-6vyke3 > *, .framer-k5fQi .framer-nexbrw > *, .framer-k5fQi .framer-lbpn0i > *, .framer-k5fQi .framer-12futxo > *, .framer-k5fQi .framer-1yq05ew > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-k5fQi .framer-1dkb1h6 > *, .framer-k5fQi .framer-181ni0 > *, .framer-k5fQi .framer-1kkwnar > *, .framer-k5fQi .framer-idgu3u > *, .framer-k5fQi .framer-4oa3or > *, .framer-k5fQi .framer-1hvugk5 > *, .framer-k5fQi .framer-1hb7p7f > *, .framer-k5fQi .framer-1epffat > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-k5fQi .framer-3wz5ns > *, .framer-k5fQi .framer-nos8wd > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-k5fQi .framer-1cfuj0v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-k5fQi .framer-13rw95f > *, .framer-k5fQi .framer-1mc5ufh > *, .framer-k5fQi .framer-12g8uz3 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-k5fQi .framer-1b4eca6 > *, .framer-k5fQi .framer-wh1h5z > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-k5fQi .framer-1koyiyi > *, .framer-k5fQi .framer-1kv2lkv > *, .framer-k5fQi .framer-1q8efpy > *, .framer-k5fQi .framer-h687na > *, .framer-k5fQi .framer-1509sw8 > *, .framer-k5fQi .framer-1155acf > *, .framer-k5fQi .framer-1ixakzw > *, .framer-k5fQi .framer-4m2wcq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-k5fQi .framer-4tghve > *, .framer-k5fQi .framer-jv3sd5 > *, .framer-k5fQi .framer-1u66q7u > *, .framer-k5fQi .framer-1shgmk > *, .framer-k5fQi .framer-4yty07 > *, .framer-k5fQi .framer-imgwc4 > *, .framer-k5fQi .framer-14jb70 > *, .framer-k5fQi .framer-19sn2mq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-k5fQi .framer-mky0xj > * { margin: 0px; margin-bottom: calc(74px / 2); margin-top: calc(74px / 2); } .framer-k5fQi .framer-1geswlj > *, .framer-k5fQi .framer-665zlg > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-k5fQi[data-border=\"true\"]::after, .framer-k5fQi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 850px) and (max-width: 1199px) { .framer-k5fQi.framer-x23bs9 { width: 850px; } .framer-k5fQi .framer-qayan9 { bottom: 2px; height: 632px; left: -495px; right: -495px; top: unset; z-index: 1; } .framer-k5fQi .framer-1gx6spt { bottom: 30px; height: 352px; left: calc(50.00000000000002% - 1043px / 2); width: 1043px; } .framer-k5fQi .framer-1t3zpb3 { bottom: 85px; height: 377px; left: calc(49.51086956521741% - 893px / 2); top: unset; width: 893px; } .framer-k5fQi .framer-16s8ca2 { left: unset; right: -29px; top: 60px; } .framer-k5fQi .framer-1h08qc0 { left: 601px; top: 53%; transform: translateY(-50%); } .framer-k5fQi .framer-fgphxy { top: calc(48.80636604774538% - 78px / 2); } .framer-k5fQi .framer-bhlqnl { bottom: 0px; left: 13px; top: unset; } .framer-k5fQi .framer-1o8lr6x { height: 937px; left: calc(49.94565217391306% - 364px / 2); width: 364px; } .framer-k5fQi .framer-1lojkvo { height: var(--framer-aspect-ratio-supported, 742px); left: 0px; top: 0px; transform: unset; width: 363px; } .framer-k5fQi .framer-bh1f7i { height: var(--framer-aspect-ratio-supported, 708px); left: 50%; top: 16px; width: 328px; } .framer-k5fQi .framer-1fj8a12 { bottom: -30px; height: 262px; right: 520px; width: 406px; } .framer-k5fQi .framer-1weu8ll { max-width: 700px; } .framer-k5fQi .framer-t3ft8o { right: unset; width: 100%; } .framer-k5fQi .framer-re46hj, .framer-k5fQi .framer-1e5aege, .framer-k5fQi .framer-gb0tne, .framer-k5fQi .framer-mky0xj, .framer-k5fQi .framer-1geswlj, .framer-k5fQi .framer-665zlg { padding: 64px 24px 64px 24px; } .framer-k5fQi .framer-1dkb1h6, .framer-k5fQi .framer-181ni0 { max-width: 600px; width: 600px; } .framer-k5fQi .framer-3wz5ns { gap: 24px; } .framer-k5fQi .framer-b2eyt7, .framer-k5fQi .framer-xbhfce, .framer-k5fQi .framer-6yudpu { padding: 24px; } .framer-k5fQi .framer-1cfuj0v { gap: 16px; } .framer-k5fQi .framer-1kzra67 { flex: 1 0 0px; } .framer-k5fQi .framer-4ronn3-container, .framer-k5fQi .framer-v1h92z-container, .framer-k5fQi .framer-61mzj5, .framer-k5fQi .framer-1j3z4m1 { width: 100%; } .framer-k5fQi .framer-6vyke3 { padding: 0px 48px 0px 48px; } .framer-k5fQi .framer-1we7il2 { flex: 1 0 0px; order: 0; } .framer-k5fQi .framer-wh1h5z { gap: 24px; order: 1; } .framer-k5fQi .framer-idgu3u { max-width: 600px; width: 100%; } .framer-k5fQi .framer-1155acf { height: 549px; } .framer-k5fQi .framer-4oa3or, .framer-k5fQi .framer-1hvugk5 { max-width: 600px; } .framer-k5fQi .framer-4m2wcq { height: 158px; } .framer-k5fQi .framer-1qwxz4z-container { height: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-k5fQi .framer-3wz5ns, .framer-k5fQi .framer-1cfuj0v, .framer-k5fQi .framer-wh1h5z { gap: 0px; } .framer-k5fQi .framer-3wz5ns > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-k5fQi .framer-3wz5ns > :first-child { margin-left: 0px; } .framer-k5fQi .framer-3wz5ns > :last-child { margin-right: 0px; } .framer-k5fQi .framer-1cfuj0v > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-k5fQi .framer-1cfuj0v > :first-child, .framer-k5fQi .framer-wh1h5z > :first-child { margin-top: 0px; } .framer-k5fQi .framer-1cfuj0v > :last-child, .framer-k5fQi .framer-wh1h5z > :last-child { margin-bottom: 0px; } .framer-k5fQi .framer-wh1h5z > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 849px) { .framer-k5fQi.framer-x23bs9 { width: 390px; } .framer-k5fQi .framer-12xv6dx { flex-direction: column; justify-content: flex-start; padding: 32px 16px 470px 16px; } .framer-k5fQi .framer-qayan9 { bottom: -68px; height: 630px; left: -725px; order: 1; right: -725px; top: unset; z-index: 1; } .framer-k5fQi .framer-1gx6spt { bottom: 116px; height: 437px; left: calc(63.91304347826089% - 1293px / 2); width: 1293px; } .framer-k5fQi .framer-1t3zpb3 { bottom: 32px; top: unset; } .framer-k5fQi .framer-1h08qc0 { height: var(--framer-aspect-ratio-supported, 53px); left: 710px; top: -7px; width: 53px; } .framer-k5fQi .framer-fgphxy { height: 45px; left: 368px; top: 78px; width: 46px; } .framer-k5fQi .framer-1o8lr6x { bottom: 40px; height: 442px; left: calc(49.94565217391306% - 234px / 2); width: 234px; } .framer-k5fQi .framer-1lojkvo { bottom: -36px; height: var(--framer-aspect-ratio-supported, 478px); left: 0px; right: 0px; top: unset; transform: unset; width: unset; } .framer-k5fQi .framer-bh1f7i { bottom: -29px; height: var(--framer-aspect-ratio-supported, 463px); left: 49%; top: unset; width: 215px; } .framer-k5fQi .framer-1fj8a12 { bottom: -2px; height: 262px; right: 751px; width: 338px; } .framer-k5fQi .framer-x25nym, .framer-k5fQi .framer-1e46pxm, .framer-k5fQi .framer-11hf1qw, .framer-k5fQi .framer-frbq91, .framer-k5fQi .framer-1ayihrj, .framer-k5fQi .framer-1er3f3w-container, .framer-k5fQi .framer-4ronn3-container, .framer-k5fQi .framer-v1h92z-container, .framer-k5fQi .framer-61mzj5, .framer-k5fQi .framer-1j3z4m1 { width: 100%; } .framer-k5fQi .framer-9a286z, .framer-k5fQi .framer-19r6r3 { flex: 1 0 0px; width: 1px; } .framer-k5fQi .framer-j5iu8j { width: 191px; } .framer-k5fQi .framer-1xh47kr { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-k5fQi .framer-jewchm { bottom: 77px; padding: 13px 100px 13px 100px; } .framer-k5fQi .framer-1weu8ll { flex: none; order: 2; width: 100%; } .framer-k5fQi .framer-wdi46o, .framer-k5fQi .framer-3wz5ns, .framer-k5fQi .framer-1ixakzw { flex-direction: column; gap: 16px; } .framer-k5fQi .framer-t3ft8o { height: 500px; order: 0; overflow: hidden; right: unset; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-k5fQi .framer-1em37qt { padding: 32px 0px 32px 0px; } .framer-k5fQi .framer-re46hj, .framer-k5fQi .framer-1e5aege, .framer-k5fQi .framer-gb0tne, .framer-k5fQi .framer-1geswlj, .framer-k5fQi .framer-665zlg { padding: 32px 16px 32px 16px; } .framer-k5fQi .framer-1tr0uwk, .framer-k5fQi .framer-3kumkg, .framer-k5fQi .framer-nexbrw, .framer-k5fQi .framer-lbpn0i, .framer-k5fQi .framer-12futxo, .framer-k5fQi .framer-1yq05ew { gap: 48px; } .framer-k5fQi .framer-1dkb1h6, .framer-k5fQi .framer-181ni0, .framer-k5fQi .framer-4oa3or { max-width: 600px; } .framer-k5fQi .framer-1axw3oo { flex: none; order: 0; width: 100%; } .framer-k5fQi .framer-b2eyt7 { gap: 24px; padding: 16px; } .framer-k5fQi .framer-1cfuj0v, .framer-k5fQi .framer-1b4eca6 { gap: 16px; } .framer-k5fQi .framer-1wvjkft, .framer-k5fQi .framer-11773zp, .framer-k5fQi .framer-1ww4xx7 { --framer-input-font-size: 16px; } .framer-k5fQi .framer-1kzra67 { align-self: unset; flex: none; height: 400px; order: 1; width: 100%; } .framer-k5fQi .framer-n1rtof { flex-direction: column; padding: 32px 0px 32px 0px; } .framer-k5fQi .framer-6vyke3 { flex: none; gap: 48px; padding: 0px 16px 0px 16px; width: 100%; } .framer-k5fQi .framer-nos8wd { flex-direction: column; gap: 48px; } .framer-k5fQi .framer-1we7il2 { align-self: unset; flex: none; height: 400px; width: 100%; } .framer-k5fQi .framer-wh1h5z { flex: none; gap: 32px; width: 100%; } .framer-k5fQi .framer-idgu3u { max-width: 600px; width: 100%; } .framer-k5fQi .framer-1155acf, .framer-k5fQi .framer-4m2wcq { flex-direction: column; gap: 16px; height: min-content; } .framer-k5fQi .framer-xhfy7e-container { flex: none; height: auto; width: 100%; } .framer-k5fQi .framer-mky0xj { gap: 48px; padding: 32px 16px 32px 16px; } .framer-k5fQi .framer-18g9nur { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; max-width: 360px; } .framer-k5fQi .framer-1il3g9j-container, .framer-k5fQi .framer-1m8f1te-container, .framer-k5fQi .framer-1swj86c-container, .framer-k5fQi .framer-17ztlx-container, .framer-k5fQi .framer-1tjlbij-container, .framer-k5fQi .framer-1p5xlzv-container { align-self: unset; height: auto; width: 334px; } .framer-k5fQi .framer-1hb7p7f, .framer-k5fQi .framer-1p77rxz-container, .framer-k5fQi .framer-9uvset-container, .framer-k5fQi .framer-1qwxz4z-container { flex: none; width: 100%; } .framer-k5fQi .framer-xbhfce, .framer-k5fQi .framer-6yudpu { align-self: unset; flex: none; gap: 24px; height: min-content; justify-content: center; padding: 24px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-k5fQi .framer-12xv6dx, .framer-k5fQi .framer-wdi46o, .framer-k5fQi .framer-1tr0uwk, .framer-k5fQi .framer-3wz5ns, .framer-k5fQi .framer-b2eyt7, .framer-k5fQi .framer-1cfuj0v, .framer-k5fQi .framer-3kumkg, .framer-k5fQi .framer-1b4eca6, .framer-k5fQi .framer-n1rtof, .framer-k5fQi .framer-6vyke3, .framer-k5fQi .framer-nos8wd, .framer-k5fQi .framer-wh1h5z, .framer-k5fQi .framer-nexbrw, .framer-k5fQi .framer-1155acf, .framer-k5fQi .framer-mky0xj, .framer-k5fQi .framer-lbpn0i, .framer-k5fQi .framer-18g9nur, .framer-k5fQi .framer-12futxo, .framer-k5fQi .framer-1ixakzw, .framer-k5fQi .framer-xbhfce, .framer-k5fQi .framer-6yudpu, .framer-k5fQi .framer-1yq05ew, .framer-k5fQi .framer-4m2wcq { gap: 0px; } .framer-k5fQi .framer-12xv6dx > *, .framer-k5fQi .framer-n1rtof > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-k5fQi .framer-12xv6dx > :first-child, .framer-k5fQi .framer-wdi46o > :first-child, .framer-k5fQi .framer-1tr0uwk > :first-child, .framer-k5fQi .framer-3wz5ns > :first-child, .framer-k5fQi .framer-b2eyt7 > :first-child, .framer-k5fQi .framer-1cfuj0v > :first-child, .framer-k5fQi .framer-3kumkg > :first-child, .framer-k5fQi .framer-1b4eca6 > :first-child, .framer-k5fQi .framer-n1rtof > :first-child, .framer-k5fQi .framer-6vyke3 > :first-child, .framer-k5fQi .framer-nos8wd > :first-child, .framer-k5fQi .framer-wh1h5z > :first-child, .framer-k5fQi .framer-nexbrw > :first-child, .framer-k5fQi .framer-1155acf > :first-child, .framer-k5fQi .framer-mky0xj > :first-child, .framer-k5fQi .framer-lbpn0i > :first-child, .framer-k5fQi .framer-18g9nur > :first-child, .framer-k5fQi .framer-12futxo > :first-child, .framer-k5fQi .framer-1ixakzw > :first-child, .framer-k5fQi .framer-xbhfce > :first-child, .framer-k5fQi .framer-6yudpu > :first-child, .framer-k5fQi .framer-1yq05ew > :first-child, .framer-k5fQi .framer-4m2wcq > :first-child { margin-top: 0px; } .framer-k5fQi .framer-12xv6dx > :last-child, .framer-k5fQi .framer-wdi46o > :last-child, .framer-k5fQi .framer-1tr0uwk > :last-child, .framer-k5fQi .framer-3wz5ns > :last-child, .framer-k5fQi .framer-b2eyt7 > :last-child, .framer-k5fQi .framer-1cfuj0v > :last-child, .framer-k5fQi .framer-3kumkg > :last-child, .framer-k5fQi .framer-1b4eca6 > :last-child, .framer-k5fQi .framer-n1rtof > :last-child, .framer-k5fQi .framer-6vyke3 > :last-child, .framer-k5fQi .framer-nos8wd > :last-child, .framer-k5fQi .framer-wh1h5z > :last-child, .framer-k5fQi .framer-nexbrw > :last-child, .framer-k5fQi .framer-1155acf > :last-child, .framer-k5fQi .framer-mky0xj > :last-child, .framer-k5fQi .framer-lbpn0i > :last-child, .framer-k5fQi .framer-18g9nur > :last-child, .framer-k5fQi .framer-12futxo > :last-child, .framer-k5fQi .framer-1ixakzw > :last-child, .framer-k5fQi .framer-xbhfce > :last-child, .framer-k5fQi .framer-6yudpu > :last-child, .framer-k5fQi .framer-1yq05ew > :last-child, .framer-k5fQi .framer-4m2wcq > :last-child { margin-bottom: 0px; } .framer-k5fQi .framer-wdi46o > *, .framer-k5fQi .framer-3wz5ns > *, .framer-k5fQi .framer-1cfuj0v > *, .framer-k5fQi .framer-1b4eca6 > *, .framer-k5fQi .framer-1155acf > *, .framer-k5fQi .framer-18g9nur > *, .framer-k5fQi .framer-1ixakzw > *, .framer-k5fQi .framer-4m2wcq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-k5fQi .framer-1tr0uwk > *, .framer-k5fQi .framer-3kumkg > *, .framer-k5fQi .framer-6vyke3 > *, .framer-k5fQi .framer-nos8wd > *, .framer-k5fQi .framer-nexbrw > *, .framer-k5fQi .framer-mky0xj > *, .framer-k5fQi .framer-lbpn0i > *, .framer-k5fQi .framer-12futxo > *, .framer-k5fQi .framer-1yq05ew > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-k5fQi .framer-b2eyt7 > *, .framer-k5fQi .framer-xbhfce > *, .framer-k5fQi .framer-6yudpu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-k5fQi .framer-wh1h5z > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8211\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hNYv8ZIc5\":{\"layout\":[\"fixed\",\"auto\"]},\"IoT8G6S_J\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramernZhEWCx7R=withCSS(Component,css,\"framer-k5fQi\");export default FramernZhEWCx7R;FramernZhEWCx7R.displayName=\"Home\";FramernZhEWCx7R.defaultProps={height:8211,width:1200};addFonts(FramernZhEWCx7R,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...NavbarFonts,...ButtonFonts,...TickerFonts,...ButtonWhitePaperFonts,...CaseStudyFonts,...BlogCardFonts,...FeatureCardFonts,...ResourceCardFonts,...CTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernZhEWCx7R\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"8211\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hNYv8ZIc5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IoT8G6S_J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__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", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "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", "MotionDivWithFX", "withFX", "motion", "PhosphorControls", "getPropertyControls", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "header", "height", "icon", "id", "subHeader", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "hBEaJVWo2", "NIGWgfM3W", "ugTUK_E0z", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "MotionDivWithFX", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText2", "css", "Framerfc32EPQc9", "withCSS", "fc32EPQc9_default", "addPropertyControls", "PhosphorControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerFzDwBArix", "withCSS", "FzDwBArix_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "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", "icon", "id", "link", "name1", "newTab", "text", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Rw_OTxucH", "UWBPI7h3k", "ownL_xCBo", "NRuiw4Jg_", "A_W2ocZwn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "css", "FramernmLke3Xmd", "withCSS", "nmLke3Xmd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavbarFonts", "getFonts", "TV1ppVgJZ_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ImageWithFXWithOptimizedAppearEffect", "withFX", "Image2", "MotionDivWithOptimizedAppearEffect", "motion", "MotionDivWithFX", "MotionAWithFX", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonFonts", "yWlOGrdmU_default", "ContainerWithFX", "TickerFonts", "Ticker", "ButtonWhitePaperFonts", "FzDwBArix_default", "ImageWithFX", "CaseStudyFonts", "NyXmJdson_default", "BlogCardFonts", "cWbx1X6Ys_default", "FeatureCardFonts", "fc32EPQc9_default", "RichTextWithFX", "ResourceCardFonts", "nmLke3Xmd_default", "CTAFonts", "XDpYEQmB6_default", "FooterFonts", "ZgSTjvzHe_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transformTemplate1", "_", "t", "transition4", "animation5", "transition5", "animation6", "animation7", "transformTemplate2", "animation8", "animation9", "animation10", "transition6", "animation11", "transition7", "animation12", "animation13", "transition8", "transition9", "animation14", "transition10", "animation15", "transition11", "animation16", "animation17", "transition12", "textEffect", "transition13", "animation18", "transition14", "transformTemplate3", "animation19", "transition15", "formVariants", "form", "variants", "currentVariant", "animation20", "transition16", "addImageAlt", "image", "alt", "transition17", "animation21", "toResponsiveImage", "value", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "suffix", "toDateString", "date", "display", "dateOptions", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation22", "transition18", "animation23", "transition19", "transition20", "animation24", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "className", "layoutId", "variant", "g6rBkdHL1crcjS1QC_", "LQvrFkotlcrcjS1QC_", "g4YUUm96ocrcjS1QC_", "bSuzbVlCjcrcjS1QC_", "tNkTRure6crcjS1QC_", "WYguv7jwYcrcjS1QC_", "idcrcjS1QC_", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "SVG", "getLoadingLazyAtYPosition", "x", "Link", "ResolveLinks", "resolvedLinks", "FormContainer", "formState", "l", "FormPlainTextInput2", "FormBooleanInput", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "ChildrenCanSuspend", "hKe5G3eIl_default", "collection", "paginationInfo", "loadMore", "index", "PathVariablesContext", "resolvedLinks5", "enumToDisplayNameFunctions", "resolvedLinks6", "resolvedLinks7", "css", "FramernZhEWCx7R", "withCSS", "nZhEWCx7R_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
