{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yevww260oHitAFGt4Ffa/Ticker.js", "ssg:https://framerusercontent.com/modules/JBcRjsfU0Z26fT235jWM/nRVqiFO4OpVWh5DMAYpb/zsNUMdZlB.js", "ssg:https://framerusercontent.com/modules/fd6bJShKjtEPZXM7kZC8/RxnUmwXXkjmFewgv9PP7/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (e2fa450)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,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 cycleOrder=[\"RA3lWZcGb\",\"YNDovXqA_\",\"Oznh4y0N5\",\"LTrF_B_N5\",\"txymEmn0b\"];const serializationHash=\"framer-WCcKx\";const variantClassNames={LTrF_B_N5:\"framer-v-145s6e8\",Oznh4y0N5:\"framer-v-1tffniu\",RA3lWZcGb:\"framer-v-1tcvu7\",txymEmn0b:\"framer-v-13gssfz\",YNDovXqA_:\"framer-v-16y0rc7\"};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 inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Blue Folder\":\"LTrF_B_N5\",\"Purple Folder\":\"Oznh4y0N5\",\"Variant 5\":\"txymEmn0b\",Kiwi:\"YNDovXqA_\",Smiley:\"RA3lWZcGb\"};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:\"RA3lWZcGb\"};};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:\"RA3lWZcGb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Oznh4y0N5\",\"LTrF_B_N5\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Oznh4y0N5\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"LTrF_B_N5\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1tcvu7\",className,classNames),\"data-framer-name\":\"Smiley\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,layoutDependency:layoutDependency,layoutId:\"RA3lWZcGb\",onMouseDown:preventDefault,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({LTrF_B_N5:{\"data-framer-name\":\"Blue Folder\"},Oznh4y0N5:{\"data-framer-name\":\"Purple Folder\"},txymEmn0b:{\"data-framer-name\":\"Variant 5\"},YNDovXqA_:{\"data-framer-name\":\"Kiwi\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jd8601\",\"data-framer-name\":\"White Border\",layoutDependency:layoutDependency,layoutId:\"gykD6h_IG\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,boxShadow:\"0px 3px 8px 0px rgba(0, 0, 0, 0.07999999821186066)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10wke8m\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"EAv5jxSpr\",style:{backgroundColor:\"rgb(240, 247, 255)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U0YgUHJvLTcwMA==\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"699\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 122, 255))\"},children:\"\uD83E\uDD2A\"})}),className:\"framer-19d0lac\",\"data-framer-name\":\"Symbol\",fonts:[\"GF;SF Pro-700\"],layoutDependency:layoutDependency,layoutId:\"B8sOZUnLv\",style:{\"--extracted-r6o4lv\":\"rgb(0, 122, 255)\",\"--framer-paragraph-spacing\":\"0px\",rotate:10},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({txymEmn0b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U0YgUHJvLTcwMA==\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"699\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 122, 255))\"},children:\"\uD83D\uDC68\uD83C\uDFFB\u200D\uD83E\uDDB1\"})})},YNDovXqA_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U0YgUHJvLTcwMA==\",\"--framer-font-family\":'\"SF Pro\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"699\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 122, 255))\"},children:\"\uD83E\uDD5D\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1g1ujl4\",\"data-framer-name\":\"Folder\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"v5m2kPFKg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27 26\"><g transform=\"translate(0.919 2.605)\" id=\"ss1971508752_1\"><path d=\"M 9.966 21.407 L 23.041 13.858 C 23.784 13.429 24.156 13.214 24.356 12.906 C 24.532 12.635 24.618 12.314 24.601 11.991 C 24.582 11.624 24.367 11.253 23.939 10.51 L 18.773 1.562 C 18.344 0.819 18.129 0.447 17.821 0.247 C 17.549 0.071 17.229 -0.015 16.906 0.002 C 16.539 0.021 16.167 0.236 15.424 0.665 L 8.251 4.806 C 7.855 5.035 7.327 5.291 6.611 5.2 C 5.896 5.11 6.506 5.187 5.747 5.085 C 4.987 4.983 4.672 5.055 4.212 5.32 L 1.562 6.85 C 0.819 7.279 0.447 7.494 0.247 7.802 C 0.071 8.073 -0.015 8.394 0.002 8.717 C 0.021 9.084 0.236 9.455 0.665 10.198 L 6.618 20.51 C 7.047 21.253 7.261 21.624 7.57 21.824 C 7.841 22.001 8.161 22.086 8.484 22.069 C 8.852 22.05 9.223 21.836 9.966 21.407 Z\" fill=\"rgb(194,118,240)\"></path><path d=\"M 9.966 21.407 L 23.041 13.858 C 23.784 13.429 24.156 13.214 24.356 12.906 C 24.532 12.635 24.618 12.314 24.601 11.991 C 24.582 11.624 24.367 11.253 23.939 10.51 L 18.773 1.562 C 18.344 0.819 18.129 0.447 17.821 0.247 C 17.549 0.071 17.229 -0.015 16.906 0.002 C 16.539 0.021 16.167 0.236 15.424 0.665 L 8.251 4.806 C 7.855 5.035 7.327 5.291 6.611 5.2 C 5.896 5.11 6.506 5.187 5.747 5.085 C 4.987 4.983 4.672 5.055 4.212 5.32 L 1.562 6.85 C 0.819 7.279 0.447 7.494 0.247 7.802 C 0.071 8.073 -0.015 8.394 0.002 8.717 C 0.021 9.084 0.236 9.455 0.665 10.198 L 6.618 20.51 C 7.047 21.253 7.261 21.624 7.57 21.824 C 7.841 22.001 8.161 22.086 8.484 22.069 C 8.852 22.05 9.223 21.836 9.966 21.407 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0.865 0.545)\" id=\"ss1971508752_4\"><path d=\"M 8.305 21.322 C 7.573 21.745 6.979 22.087 6.979 22.087 L 0 10 C 0 10 0.594 9.657 1.327 9.234 L 15.994 0.766 C 16.727 0.343 17.321 0 17.321 0 L 24.299 12.087 C 24.299 12.087 23.705 12.43 22.973 12.853 Z\" fill=\"rgb(194,118,240)\"></path></g></g></svg>',svgContentId:1971508752,withExternalLayout:true,...addPropertyOverrides({Oznh4y0N5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27 26\"><g transform=\"translate(0.919 2.605)\" id=\"ss10051575822_1\"><path d=\"M 9.966 21.407 L 23.041 13.858 C 23.784 13.429 24.156 13.214 24.356 12.906 C 24.532 12.635 24.618 12.314 24.601 11.991 C 24.582 11.624 24.367 11.253 23.939 10.51 L 18.773 1.562 C 18.344 0.819 18.129 0.447 17.821 0.247 C 17.549 0.071 17.229 -0.015 16.906 0.002 C 16.539 0.021 16.167 0.236 15.424 0.665 L 8.251 4.806 C 7.855 5.035 7.327 5.291 6.611 5.2 C 5.896 5.11 6.506 5.187 5.747 5.085 C 4.987 4.983 4.672 5.055 4.212 5.32 L 1.562 6.85 C 0.819 7.279 0.447 7.494 0.247 7.802 C 0.071 8.073 -0.015 8.394 0.002 8.717 C 0.021 9.084 0.236 9.455 0.665 10.198 L 6.618 20.51 C 7.047 21.253 7.261 21.624 7.57 21.824 C 7.841 22.001 8.161 22.086 8.484 22.069 C 8.852 22.05 9.223 21.836 9.966 21.407 Z\" fill=\"rgb(194,118,240)\"></path><path d=\"M 9.966 21.407 L 23.041 13.858 C 23.784 13.429 24.156 13.214 24.356 12.906 C 24.532 12.635 24.618 12.314 24.601 11.991 C 24.582 11.624 24.367 11.253 23.939 10.51 L 18.773 1.562 C 18.344 0.819 18.129 0.447 17.821 0.247 C 17.549 0.071 17.229 -0.015 16.906 0.002 C 16.539 0.021 16.167 0.236 15.424 0.665 L 8.251 4.806 C 7.855 5.035 7.327 5.291 6.611 5.2 C 5.896 5.11 6.506 5.187 5.747 5.085 C 4.987 4.983 4.672 5.055 4.212 5.32 L 1.562 6.85 C 0.819 7.279 0.447 7.494 0.247 7.802 C 0.071 8.073 -0.015 8.394 0.002 8.717 C 0.021 9.084 0.236 9.455 0.665 10.198 L 6.618 20.51 C 7.047 21.253 7.261 21.624 7.57 21.824 C 7.841 22.001 8.161 22.086 8.484 22.069 C 8.852 22.05 9.223 21.836 9.966 21.407 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0.865 0.545)\" id=\"ss10051575822_4\"><path d=\"M 8.305 21.322 C 7.573 21.745 6.979 22.087 6.979 22.087 L 0 10 C 0 10 0.594 9.657 1.327 9.234 L 15.994 0.766 C 16.727 0.343 17.321 0 17.321 0 L 24.299 12.087 C 24.299 12.087 23.705 12.43 22.973 12.853 Z\" fill=\"rgb(194,118,240)\"></path></g></g></svg>',svgContentId:10051575822}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1waa5ny\",\"data-framer-name\":\"Folder\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Z6L2NuYjM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 23\"><g transform=\"translate(0.373 0.996)\" id=\"ss4062246608_1\"><path d=\"M 2.322 16.296 L 16.628 21.123 C 17.441 21.397 17.847 21.534 18.211 21.481 C 18.531 21.434 18.828 21.287 19.059 21.061 C 19.322 20.804 19.459 20.397 19.734 19.584 L 23.037 9.795 C 23.312 8.982 23.449 8.575 23.395 8.212 C 23.348 7.891 23.201 7.594 22.975 7.363 C 22.718 7.1 22.312 6.963 21.499 6.689 L 13.65 4.04 C 13.217 3.894 12.676 3.667 12.271 3.07 C 11.867 2.473 12.211 2.982 11.786 2.345 C 11.361 1.707 11.099 1.518 10.596 1.348 L 7.697 0.369 C 6.884 0.095 6.477 -0.042 6.113 0.011 C 5.793 0.058 5.496 0.205 5.265 0.432 C 5.002 0.689 4.865 1.095 4.591 1.908 L 0.784 13.189 C 0.509 14.002 0.372 14.409 0.426 14.773 C 0.473 15.093 0.62 15.39 0.846 15.621 C 1.103 15.884 1.509 16.021 2.322 16.296 Z\" fill=\"rgb(129,217,255)\"></path><path d=\"M 2.322 16.296 L 16.628 21.123 C 17.441 21.397 17.847 21.534 18.211 21.481 C 18.531 21.434 18.828 21.287 19.059 21.061 C 19.322 20.804 19.459 20.397 19.734 19.584 L 23.037 9.795 C 23.312 8.982 23.449 8.575 23.395 8.212 C 23.348 7.891 23.201 7.594 22.975 7.363 C 22.718 7.1 22.312 6.963 21.499 6.689 L 13.65 4.04 C 13.217 3.894 12.676 3.667 12.271 3.07 C 11.867 2.473 12.211 2.982 11.786 2.345 C 11.361 1.707 11.099 1.518 10.596 1.348 L 7.697 0.369 C 6.884 0.095 6.477 -0.042 6.113 0.011 C 5.793 0.058 5.496 0.205 5.265 0.432 C 5.002 0.689 4.865 1.095 4.591 1.908 L 0.784 13.189 C 0.509 14.002 0.372 14.409 0.426 14.773 C 0.473 15.093 0.62 15.39 0.846 15.621 C 1.103 15.884 1.509 16.021 2.322 16.296 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 2.287)\" id=\"ss4062246608_4\"><path d=\"M 1.451 13.715 C 0.65 13.444 0 13.225 0 13.225 L 4.463 0 C 4.463 0 5.113 0.219 5.914 0.49 L 21.961 5.905 C 22.763 6.176 23.413 6.395 23.413 6.395 L 18.95 19.62 C 18.95 19.62 18.3 19.4 17.499 19.13 Z\" fill=\"rgb(129,217,255)\"></path></g></g></svg>',svgContentId:4062246608,withExternalLayout:true,...addPropertyOverrides({LTrF_B_N5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 23\"><g transform=\"translate(0.373 0.996)\" id=\"ss10177301424_1\"><path d=\"M 2.322 16.296 L 16.628 21.123 C 17.441 21.397 17.847 21.534 18.211 21.481 C 18.531 21.434 18.828 21.287 19.059 21.061 C 19.322 20.804 19.459 20.397 19.734 19.584 L 23.037 9.795 C 23.312 8.982 23.449 8.575 23.395 8.212 C 23.348 7.891 23.201 7.594 22.975 7.363 C 22.718 7.1 22.312 6.963 21.499 6.689 L 13.65 4.04 C 13.217 3.894 12.676 3.667 12.271 3.07 C 11.867 2.473 12.211 2.982 11.786 2.345 C 11.361 1.707 11.099 1.518 10.596 1.348 L 7.697 0.369 C 6.884 0.095 6.477 -0.042 6.113 0.011 C 5.793 0.058 5.496 0.205 5.265 0.432 C 5.002 0.689 4.865 1.095 4.591 1.908 L 0.784 13.189 C 0.509 14.002 0.372 14.409 0.426 14.773 C 0.473 15.093 0.62 15.39 0.846 15.621 C 1.103 15.884 1.509 16.021 2.322 16.296 Z\" fill=\"rgb(129,217,255)\"></path><path d=\"M 2.322 16.296 L 16.628 21.123 C 17.441 21.397 17.847 21.534 18.211 21.481 C 18.531 21.434 18.828 21.287 19.059 21.061 C 19.322 20.804 19.459 20.397 19.734 19.584 L 23.037 9.795 C 23.312 8.982 23.449 8.575 23.395 8.212 C 23.348 7.891 23.201 7.594 22.975 7.363 C 22.718 7.1 22.312 6.963 21.499 6.689 L 13.65 4.04 C 13.217 3.894 12.676 3.667 12.271 3.07 C 11.867 2.473 12.211 2.982 11.786 2.345 C 11.361 1.707 11.099 1.518 10.596 1.348 L 7.697 0.369 C 6.884 0.095 6.477 -0.042 6.113 0.011 C 5.793 0.058 5.496 0.205 5.265 0.432 C 5.002 0.689 4.865 1.095 4.591 1.908 L 0.784 13.189 C 0.509 14.002 0.372 14.409 0.426 14.773 C 0.473 15.093 0.62 15.39 0.846 15.621 C 1.103 15.884 1.509 16.021 2.322 16.296 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 2.287)\" id=\"ss10177301424_4\"><path d=\"M 1.451 13.715 C 0.65 13.444 0 13.225 0 13.225 L 4.463 0 C 4.463 0 5.113 0.219 5.914 0.49 L 21.961 5.905 C 22.763 6.176 23.413 6.395 23.413 6.395 L 18.95 19.62 C 18.95 19.62 18.3 19.4 17.499 19.13 Z\" fill=\"rgb(129,217,255)\"></path></g></g></svg>',svgContentId:10177301424}},baseVariant,gestureVariant)})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WCcKx.framer-a0eg71, .framer-WCcKx .framer-a0eg71 { display: block; }\",\".framer-WCcKx.framer-1tcvu7 { align-content: flex-start; align-items: flex-start; cursor: grab; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WCcKx .framer-jd8601 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 47px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 47px; }\",\".framer-WCcKx .framer-10wke8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 40px; }\",\".framer-WCcKx .framer-19d0lac { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WCcKx .framer-1g1ujl4 { flex: none; height: 26px; position: relative; width: 27px; }\",\".framer-WCcKx .framer-1waa5ny { flex: none; height: 23px; position: relative; width: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WCcKx.framer-1tcvu7, .framer-WCcKx .framer-jd8601, .framer-WCcKx .framer-10wke8m { gap: 0px; } .framer-WCcKx.framer-1tcvu7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-WCcKx.framer-1tcvu7 > :first-child, .framer-WCcKx .framer-10wke8m > :first-child { margin-top: 0px; } .framer-WCcKx.framer-1tcvu7 > :last-child, .framer-WCcKx .framer-10wke8m > :last-child { margin-bottom: 0px; } .framer-WCcKx .framer-jd8601 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-WCcKx .framer-jd8601 > :first-child { margin-left: 0px; } .framer-WCcKx .framer-jd8601 > :last-child { margin-right: 0px; } .framer-WCcKx .framer-10wke8m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47\n * @framerIntrinsicWidth 47\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"YNDovXqA_\":{\"layout\":[\"auto\",\"auto\"]},\"Oznh4y0N5\":{\"layout\":[\"auto\",\"auto\"]},\"LTrF_B_N5\":{\"layout\":[\"auto\",\"auto\"]},\"txymEmn0b\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzsNUMdZlB=withCSS(Component,css,\"framer-WCcKx\");export default FramerzsNUMdZlB;FramerzsNUMdZlB.displayName=\"Hero Circle\";FramerzsNUMdZlB.defaultProps={height:47,width:47};addPropertyControls(FramerzsNUMdZlB,{variant:{options:[\"RA3lWZcGb\",\"YNDovXqA_\",\"Oznh4y0N5\",\"LTrF_B_N5\",\"txymEmn0b\"],optionTitles:[\"Smiley\",\"Kiwi\",\"Purple Folder\",\"Blue Folder\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerzsNUMdZlB,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzsNUMdZlB\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YNDovXqA_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Oznh4y0N5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LTrF_B_N5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"txymEmn0b\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"47\",\"framerIntrinsicHeight\":\"47\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zsNUMdZlB.map", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,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/yevww260oHitAFGt4Ffa/Ticker.js\";import Navbar from\"#framer/local/canvasComponent/pzdK18Nv6/pzdK18Nv6.js\";import CTAButton from\"#framer/local/canvasComponent/q7p3j8NmJ/q7p3j8NmJ.js\";import Footer from\"#framer/local/canvasComponent/zanPsjGVC/zanPsjGVC.js\";import HeroCircle from\"#framer/local/canvasComponent/zsNUMdZlB/zsNUMdZlB.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const HeroCircleFonts=getFonts(HeroCircle);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const CTAButtonFonts=getFonts(CTAButton);const ContainerWithFX=withFX(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const breakpoints={BfsqAstCU:\"(min-width: 1024px) and (max-width: 1439px)\",LA85W3Ouo:\"(min-width: 1728px)\",lOqq2VQGk:\"(min-width: 428px) and (max-width: 1023px)\",nMlihs96b:\"(max-width: 427px)\",WQLkyLRf1:\"(min-width: 1440px) and (max-width: 1727px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-J6qTT\";const variantClassNames={BfsqAstCU:\"framer-v-bazmqm\",LA85W3Ouo:\"framer-v-1fwzrfg\",lOqq2VQGk:\"framer-v-15r9829\",nMlihs96b:\"framer-v-1mrz06h\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:.5,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:-13,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:-13,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:-15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:-15,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation4={opacity:1,rotate:-15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation5={opacity:1,rotate:15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation6={opacity:.001,rotate:15,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation7={opacity:1,rotate:15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition3={damping:40,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:1,rotate:8,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const transition5={damping:40,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition6={damping:40,delay:.6,mass:1,stiffness:400,type:\"spring\"};const transition7={damping:40,delay:.8,mass:1,stiffness:400,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const transition8={damping:40,delay:1,mass:1,stiffness:400,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition9={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition9};const transition10={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-36};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:36};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:107,y:0};const transition11={damping:40,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:20};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition4};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:20};const transition12={damping:40,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:20};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:20};const transition13={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:42};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"iPad Pro\":\"BfsqAstCU\",\"iPhone 14\":\"lOqq2VQGk\",\"iPhone SE\":\"nMlihs96b\",\"Large Desktop\":\"LA85W3Ouo\",Desktop:\"WQLkyLRf1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"OWKCtoj9b\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"LA85W3Ouo\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"nMlihs96b\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"LA85W3Ouo\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"lOqq2VQGk\",\"nMlihs96b\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"lOqq2VQGk\",\"nMlihs96b\"].includes(baseVariant))return true;return false;};const elementId1=useRouteElementId(\"WWFJb8wA2\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"CODRjOOxP\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"TqVHWHkNe\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"gc6WL5Cil\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"sdANUxY8C\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eotznu\",\"data-framer-name\":\"Section / Header Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u3touf\",\"data-framer-name\":\"Header\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rw757r hidden-1fwzrfg\",\"data-framer-name\":\"Banner_upgrade\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tzzzrj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Lifetime offer ->\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" Pro for just \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(246, 232, 113)\"},children:\"$79\"})]})}),fonts:[\"GF;Inter Tight-500\",\"GF;Inter Tight-regular\",\"GF;Inter Tight-600\"],transformTemplate:undefined},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Lifetime offer ->\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" Pro for \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(246, 232, 113)\"},children:\"$79\"})]})}),fonts:[\"GF;Inter Tight-500\",\"GF;Inter Tight-regular\",\"GF;Inter Tight-600\"],transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-weight\":\"500\"},children:\"Lifetime offer ->\"}),\" Secure Marqly Pro for a lifetime at just \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(246, 232, 113)\"},children:\"$79\"})]})}),className:\"framer-1o7las\",\"data-framer-name\":\"Lifetime offer -> Secure Marqly Pro for a lifetime at just $89\",fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-500\",\"GF;Inter Tight-600\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vzpd9 hidden-1mrz06h\",\"data-border\":true,\"data-framer-name\":\"Upgrade_button\",children:/*#__PURE__*/_jsx(Link,{href:\"app.marqly.com\",motionChild:true,nodeId:\"D_ojr4Ebp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-v0iwnl framer-lux5qc\",\"data-framer-name\":\"inside\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 32, 183)\"},children:\"Upgrade now\"})}),className:\"framer-zfb28y\",\"data-framer-name\":\"Upgrade now\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xuof88\",\"data-framer-name\":\"Close_icon\",children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1a4x8ro hidden-1mrz06h\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"-1 -1 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.812951 0.812951C1.00821 0.617688 1.3248 0.617688 1.52006 0.812951L5.99984 5.29273L10.4796 0.812951C10.6749 0.617688 10.9915 0.617688 11.1867 0.812951C11.382 1.00821 11.382 1.3248 11.1867 1.52006L6.70694 5.99984L11.1867 10.4796C11.382 10.6749 11.382 10.9915 11.1867 11.1867C10.9915 11.382 10.6749 11.382 10.4796 11.1867L5.99984 6.70694L1.52006 11.1867C1.3248 11.382 1.00821 11.382 0.812951 11.1867C0.617688 10.9915 0.617688 10.6749 0.812951 10.4796L5.29273 5.99984L0.812951 1.52006C0.617688 1.3248 0.617688 1.00821 0.812951 0.812951Z\" fill=\"#F5F3FF\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7jcnoe\",\"data-framer-name\":\"Components / Navbar\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) - 80px, 1px)`,y:(componentViewport?.y||0)+24+0+0+0+0+66+0},lOqq2VQGk:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+24+0+0+0+0+55+0},nMlihs96b:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+24+0+0+0+0+55+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(${componentViewport?.width||\"100vw\"} - 140px, 1px)`,y:(componentViewport?.y||0)+24+0+0+0+0+63+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fo6gl9-container\",nodeId:\"MC23hT0Jx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{variant:\"PPBrlGFkw\"},nMlihs96b:{variant:\"PPBrlGFkw\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"MC23hT0Jx\",layoutId:\"MC23hT0Jx\",style:{width:\"100%\"},variant:\"I1:14843;1088:8824\",width:\"100%\"})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ef9cp hidden-72rtr7 hidden-bazmqm hidden-15r9829 hidden-1mrz06h\",\"data-framer-name\":\"Banner_upgrade\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wp6944\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-weight\":\"500\"},children:\"Lifetime offer ->\"}),\" Secure Marqly Pro for a lifetime at just \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(246, 232, 113)\"},children:\"$79\"})]})}),className:\"framer-xdz0ht\",\"data-framer-name\":\"Lifetime offer -> Secure Marqly Pro for a lifetime at just $89\",fonts:[\"GF;Inter Tight-regular\",\"GF;Inter Tight-500\",\"GF;Inter Tight-600\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kftj2n\",\"data-border\":true,\"data-framer-name\":\"Upgrade_button\",children:/*#__PURE__*/_jsx(Link,{href:\"app.marqly.com\",motionChild:true,nodeId:\"I96:16059;11:4857\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fgbwe0 framer-lux5qc\",\"data-framer-name\":\"inside\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(85, 32, 183)\"},children:\"Upgrade now\"})}),className:\"framer-88wmxe\",\"data-framer-name\":\"Upgrade now\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6otcud\",\"data-framer-name\":\"Close_icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l5xvqb\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"-1 -1 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.812951 0.812951C1.00821 0.617688 1.3248 0.617688 1.52006 0.812951L5.99984 5.29273L10.4796 0.812951C10.6749 0.617688 10.9915 0.617688 11.1867 0.812951C11.382 1.00821 11.382 1.3248 11.1867 1.52006L6.70694 5.99984L11.1867 10.4796C11.382 10.6749 11.382 10.9915 11.1867 11.1867C10.9915 11.382 10.6749 11.382 10.4796 11.1867L5.99984 6.70694L1.52006 11.1867C1.3248 11.382 1.00821 11.382 0.812951 11.1867C0.617688 10.9915 0.617688 10.6749 0.812951 10.4796L5.29273 5.99984L0.812951 1.52006C0.617688 1.3248 0.617688 1.00821 0.812951 0.812951Z\" fill=\"#F5F3FF\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7ewqj\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ku89ou\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v5n2cd\",\"data-framer-name\":\"Ellipse 203\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 828 520\"><g><defs><radialGradient id=\"idss9927857793_1g-525830180\" cy=\"0.5018555820614656\" cx=\"0.5\" r=\"0.4998520201607741\" gradientTransform=\"translate(0.5, 0.5018555820614656) scale(1 1) translate(-0.5, -0.5018555820614656)\"><stop offset=\"0\" stop-color=\"rgb(230,243,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(227,234,242,0)\" stop-opacity=\"0\"></stop></radialGradient></defs><path d=\"M 68 1.962 L 1 1.962 L 1 64.731 L 68 64.731 Z M 828 0.962 L 828 130.499 L 0 130.499 L 0 0.962 Z M 415 64.731 L 482 64.731 L 482 1.962 L 415 1.962 Z M 484 64.731 L 551 64.731 L 551 1.962 L 484 1.962 Z M 620 1.962 L 553 1.962 L 553 64.731 L 620 64.731 Z M 622 64.731 L 689 64.731 L 689 1.962 L 622 1.962 Z M 758 1.962 L 691 1.962 L 691 64.731 L 758 64.731 Z M 760 64.731 L 827 64.731 L 827 1.962 L 760 1.962 Z M 70 64.731 L 137 64.731 L 137 1.962 L 70 1.962 Z M 206 1.962 L 139 1.962 L 139 64.731 L 206 64.731 Z M 208 64.731 L 275 64.731 L 275 1.962 L 208 1.962 Z M 344 1.962 L 277 1.962 L 277 64.731 L 344 64.731 Z M 346 64.731 L 413 64.731 L 413 1.962 L 346 1.962 Z M 482 260.962 L 415 260.962 L 415 323.731 L 482 323.731 Z M 828 389.499 L 0 389.499 L 0 195.269 L 828 195.269 Z M 551 323.731 L 551 260.962 L 484 260.962 L 484 323.731 Z M 553 260.962 L 553 323.731 L 620 323.731 L 620 260.962 Z M 689 323.731 L 689 260.962 L 622 260.962 L 622 323.731 Z M 691 260.962 L 691 323.731 L 758 323.731 L 758 260.962 Z M 827 323.731 L 827 260.962 L 760 260.962 L 760 323.731 Z M 68 260.962 L 1 260.962 L 1 323.731 L 68 323.731 Z M 70 323.731 L 137 323.731 L 137 260.962 L 70 260.962 Z M 206 260.962 L 139 260.962 L 139 323.731 L 206 323.731 Z M 208 323.731 L 275 323.731 L 275 260.962 L 208 260.962 Z M 344 260.962 L 277 260.962 L 277 323.731 L 344 323.731 Z M 346 323.731 L 413 323.731 L 413 260.962 L 346 260.962 Z M 482 66.73 L 415 66.73 L 415 129.499 L 482 129.499 Z M 484 129.499 L 551 129.499 L 551 66.73 L 484 66.73 Z M 620 66.73 L 553 66.73 L 553 129.499 L 620 129.499 Z M 622 129.499 L 689 129.499 L 689 66.73 L 622 66.73 Z M 758 66.73 L 691 66.73 L 691 129.499 L 758 129.499 Z M 760 129.499 L 827 129.499 L 827 66.73 L 760 66.73 Z M 68 66.73 L 1 66.73 L 1 129.499 L 68 129.499 Z M 70 129.499 L 137 129.499 L 137 66.73 L 70 66.73 Z M 206 66.73 L 139 66.73 L 139 129.499 L 206 129.499 Z M 208 129.499 L 275 129.499 L 275 66.73 L 208 66.73 Z M 344 66.73 L 277 66.73 L 277 129.499 L 344 129.499 Z M 346 129.499 L 413 129.499 L 413 66.73 L 346 66.73 Z M 482 325.73 L 415 325.73 L 415 388.499 L 482 388.499 Z M 551 388.499 L 551 325.73 L 484 325.73 L 484 388.499 Z M 553 325.73 L 553 388.499 L 620 388.499 L 620 325.73 Z M 689 388.499 L 689 325.73 L 622 325.73 L 622 388.499 Z M 691 325.73 L 691 388.499 L 758 388.499 L 758 325.73 Z M 827 388.499 L 827 325.73 L 760 325.73 L 760 388.499 Z M 68 325.73 L 1 325.73 L 1 388.499 L 68 388.499 Z M 70 388.499 L 137 388.499 L 137 325.73 L 70 325.73 Z M 206 325.73 L 139 325.73 L 139 388.499 L 206 388.499 Z M 208 388.499 L 275 388.499 L 275 325.73 L 208 325.73 Z M 344 325.73 L 277 325.73 L 277 388.499 L 344 388.499 Z M 346 388.499 L 413 388.499 L 413 325.73 L 346 325.73 Z M 482 131.5 L 415 131.5 L 415 194.269 L 482 194.269 Z M 828 130.5 L 828 195.269 L 0 195.269 L 0 130.5 Z M 551 194.269 L 551 131.5 L 484 131.5 L 484 194.269 Z M 553 131.5 L 553 194.269 L 620 194.269 L 620 131.5 Z M 689 194.269 L 689 131.5 L 622 131.5 L 622 194.269 Z M 691 131.5 L 691 194.269 L 758 194.269 L 758 131.5 Z M 827 194.269 L 827 131.5 L 760 131.5 L 760 194.269 Z M 68 131.5 L 1 131.5 L 1 194.269 L 68 194.269 Z M 70 194.269 L 137 194.269 L 137 131.5 L 70 131.5 Z M 206 131.5 L 139 131.5 L 139 194.269 L 206 194.269 Z M 208 194.269 L 275 194.269 L 275 131.5 L 208 131.5 Z M 344 131.5 L 277 131.5 L 277 194.269 L 344 194.269 Z M 346 194.269 L 413 194.269 L 413 131.5 L 346 131.5 Z M 482 390.5 L 415 390.5 L 415 453.269 L 482 453.269 Z M 828 389.5 L 828 454.269 L 0 454.269 L 0 389.5 Z M 551 453.269 L 551 390.5 L 484 390.5 L 484 453.269 Z M 553 390.5 L 553 453.269 L 620 453.269 L 620 390.5 Z M 689 453.269 L 689 390.5 L 622 390.5 L 622 453.269 Z M 691 390.5 L 691 453.269 L 758 453.269 L 758 390.5 Z M 827 453.269 L 827 390.5 L 760 390.5 L 760 453.269 Z M 68 390.5 L 1 390.5 L 1 453.269 L 68 453.269 Z M 70 453.269 L 137 453.269 L 137 390.5 L 70 390.5 Z M 206 390.5 L 139 390.5 L 139 453.269 L 206 453.269 Z M 208 453.269 L 275 453.269 L 275 390.5 L 208 390.5 Z M 344 390.5 L 277 390.5 L 277 453.269 L 344 453.269 Z M 346 453.269 L 413 453.269 L 413 390.5 L 346 390.5 Z M 482 196.269 L 415 196.269 L 415 259.039 L 482 259.039 Z M 551 259.039 L 551 196.269 L 484 196.269 L 484 259.039 Z M 553 196.269 L 553 259.039 L 620 259.039 L 620 196.269 Z M 689 259.039 L 689 196.269 L 622 196.269 L 622 259.039 Z M 691 196.269 L 691 259.039 L 758 259.039 L 758 196.269 Z M 827 259.039 L 827 196.269 L 760 196.269 L 760 259.039 Z M 68 196.269 L 1 196.269 L 1 259.039 L 68 259.039 Z M 70 259.039 L 137 259.039 L 137 196.269 L 70 196.269 Z M 206 196.269 L 139 196.269 L 139 259.039 L 206 259.039 Z M 208 259.039 L 275 259.039 L 275 196.269 L 208 196.269 Z M 344 196.269 L 277 196.269 L 277 259.039 L 344 259.039 Z M 346 259.039 L 413 259.039 L 413 196.269 L 346 196.269 Z M 482 455.269 L 415 455.269 L 415 518.039 L 482 518.039 Z M 828 454.269 L 828 519.039 L 0 519.039 L 0 454.269 Z M 551 518.039 L 551 455.269 L 484 455.269 L 484 518.039 Z M 553 455.269 L 553 518.039 L 620 518.039 L 620 455.269 Z M 689 518.039 L 689 455.269 L 622 455.269 L 622 518.039 Z M 691 455.269 L 691 518.039 L 758 518.039 L 758 455.269 Z M 827 518.039 L 827 455.269 L 760 455.269 L 760 518.039 Z M 68 455.269 L 1 455.269 L 1 518.039 L 68 518.039 Z M 70 518.039 L 137 518.039 L 137 455.269 L 70 455.269 Z M 206 455.269 L 139 455.269 L 139 518.039 L 206 518.039 Z M 208 518.039 L 275 518.039 L 275 455.269 L 208 455.269 Z M 344 455.269 L 277 455.269 L 277 518.039 L 344 518.039 Z M 346 518.039 L 413 518.039 L 413 455.269 L 346 455.269 Z\" fill=\"url(#idss9927857793_1g-525830180)\"></path></g></svg>',svgContentId:9927857793},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 828 520\"><g><defs><radialGradient id=\"idss9927857793_1g-525830180\" cy=\"0.5018555820614656\" cx=\"0.5\" r=\"0.4998520201607741\" gradientTransform=\"translate(0.5, 0.5018555820614656) scale(1 1) translate(-0.5, -0.5018555820614656)\"><stop offset=\"0\" stop-color=\"rgb(230,243,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(227,234,242,0)\" stop-opacity=\"0\"></stop></radialGradient></defs><path d=\"M 68 1.962 L 1 1.962 L 1 64.731 L 68 64.731 Z M 828 0.962 L 828 130.499 L 0 130.499 L 0 0.962 Z M 415 64.731 L 482 64.731 L 482 1.962 L 415 1.962 Z M 484 64.731 L 551 64.731 L 551 1.962 L 484 1.962 Z M 620 1.962 L 553 1.962 L 553 64.731 L 620 64.731 Z M 622 64.731 L 689 64.731 L 689 1.962 L 622 1.962 Z M 758 1.962 L 691 1.962 L 691 64.731 L 758 64.731 Z M 760 64.731 L 827 64.731 L 827 1.962 L 760 1.962 Z M 70 64.731 L 137 64.731 L 137 1.962 L 70 1.962 Z M 206 1.962 L 139 1.962 L 139 64.731 L 206 64.731 Z M 208 64.731 L 275 64.731 L 275 1.962 L 208 1.962 Z M 344 1.962 L 277 1.962 L 277 64.731 L 344 64.731 Z M 346 64.731 L 413 64.731 L 413 1.962 L 346 1.962 Z M 482 260.962 L 415 260.962 L 415 323.731 L 482 323.731 Z M 828 389.499 L 0 389.499 L 0 195.269 L 828 195.269 Z M 551 323.731 L 551 260.962 L 484 260.962 L 484 323.731 Z M 553 260.962 L 553 323.731 L 620 323.731 L 620 260.962 Z M 689 323.731 L 689 260.962 L 622 260.962 L 622 323.731 Z M 691 260.962 L 691 323.731 L 758 323.731 L 758 260.962 Z M 827 323.731 L 827 260.962 L 760 260.962 L 760 323.731 Z M 68 260.962 L 1 260.962 L 1 323.731 L 68 323.731 Z M 70 323.731 L 137 323.731 L 137 260.962 L 70 260.962 Z M 206 260.962 L 139 260.962 L 139 323.731 L 206 323.731 Z M 208 323.731 L 275 323.731 L 275 260.962 L 208 260.962 Z M 344 260.962 L 277 260.962 L 277 323.731 L 344 323.731 Z M 346 323.731 L 413 323.731 L 413 260.962 L 346 260.962 Z M 482 66.73 L 415 66.73 L 415 129.499 L 482 129.499 Z M 484 129.499 L 551 129.499 L 551 66.73 L 484 66.73 Z M 620 66.73 L 553 66.73 L 553 129.499 L 620 129.499 Z M 622 129.499 L 689 129.499 L 689 66.73 L 622 66.73 Z M 758 66.73 L 691 66.73 L 691 129.499 L 758 129.499 Z M 760 129.499 L 827 129.499 L 827 66.73 L 760 66.73 Z M 68 66.73 L 1 66.73 L 1 129.499 L 68 129.499 Z M 70 129.499 L 137 129.499 L 137 66.73 L 70 66.73 Z M 206 66.73 L 139 66.73 L 139 129.499 L 206 129.499 Z M 208 129.499 L 275 129.499 L 275 66.73 L 208 66.73 Z M 344 66.73 L 277 66.73 L 277 129.499 L 344 129.499 Z M 346 129.499 L 413 129.499 L 413 66.73 L 346 66.73 Z M 482 325.73 L 415 325.73 L 415 388.499 L 482 388.499 Z M 551 388.499 L 551 325.73 L 484 325.73 L 484 388.499 Z M 553 325.73 L 553 388.499 L 620 388.499 L 620 325.73 Z M 689 388.499 L 689 325.73 L 622 325.73 L 622 388.499 Z M 691 325.73 L 691 388.499 L 758 388.499 L 758 325.73 Z M 827 388.499 L 827 325.73 L 760 325.73 L 760 388.499 Z M 68 325.73 L 1 325.73 L 1 388.499 L 68 388.499 Z M 70 388.499 L 137 388.499 L 137 325.73 L 70 325.73 Z M 206 325.73 L 139 325.73 L 139 388.499 L 206 388.499 Z M 208 388.499 L 275 388.499 L 275 325.73 L 208 325.73 Z M 344 325.73 L 277 325.73 L 277 388.499 L 344 388.499 Z M 346 388.499 L 413 388.499 L 413 325.73 L 346 325.73 Z M 482 131.5 L 415 131.5 L 415 194.269 L 482 194.269 Z M 828 130.5 L 828 195.269 L 0 195.269 L 0 130.5 Z M 551 194.269 L 551 131.5 L 484 131.5 L 484 194.269 Z M 553 131.5 L 553 194.269 L 620 194.269 L 620 131.5 Z M 689 194.269 L 689 131.5 L 622 131.5 L 622 194.269 Z M 691 131.5 L 691 194.269 L 758 194.269 L 758 131.5 Z M 827 194.269 L 827 131.5 L 760 131.5 L 760 194.269 Z M 68 131.5 L 1 131.5 L 1 194.269 L 68 194.269 Z M 70 194.269 L 137 194.269 L 137 131.5 L 70 131.5 Z M 206 131.5 L 139 131.5 L 139 194.269 L 206 194.269 Z M 208 194.269 L 275 194.269 L 275 131.5 L 208 131.5 Z M 344 131.5 L 277 131.5 L 277 194.269 L 344 194.269 Z M 346 194.269 L 413 194.269 L 413 131.5 L 346 131.5 Z M 482 390.5 L 415 390.5 L 415 453.269 L 482 453.269 Z M 828 389.5 L 828 454.269 L 0 454.269 L 0 389.5 Z M 551 453.269 L 551 390.5 L 484 390.5 L 484 453.269 Z M 553 390.5 L 553 453.269 L 620 453.269 L 620 390.5 Z M 689 453.269 L 689 390.5 L 622 390.5 L 622 453.269 Z M 691 390.5 L 691 453.269 L 758 453.269 L 758 390.5 Z M 827 453.269 L 827 390.5 L 760 390.5 L 760 453.269 Z M 68 390.5 L 1 390.5 L 1 453.269 L 68 453.269 Z M 70 453.269 L 137 453.269 L 137 390.5 L 70 390.5 Z M 206 390.5 L 139 390.5 L 139 453.269 L 206 453.269 Z M 208 453.269 L 275 453.269 L 275 390.5 L 208 390.5 Z M 344 390.5 L 277 390.5 L 277 453.269 L 344 453.269 Z M 346 453.269 L 413 453.269 L 413 390.5 L 346 390.5 Z M 482 196.269 L 415 196.269 L 415 259.039 L 482 259.039 Z M 551 259.039 L 551 196.269 L 484 196.269 L 484 259.039 Z M 553 196.269 L 553 259.039 L 620 259.039 L 620 196.269 Z M 689 259.039 L 689 196.269 L 622 196.269 L 622 259.039 Z M 691 196.269 L 691 259.039 L 758 259.039 L 758 196.269 Z M 827 259.039 L 827 196.269 L 760 196.269 L 760 259.039 Z M 68 196.269 L 1 196.269 L 1 259.039 L 68 259.039 Z M 70 259.039 L 137 259.039 L 137 196.269 L 70 196.269 Z M 206 196.269 L 139 196.269 L 139 259.039 L 206 259.039 Z M 208 259.039 L 275 259.039 L 275 196.269 L 208 196.269 Z M 344 196.269 L 277 196.269 L 277 259.039 L 344 259.039 Z M 346 259.039 L 413 259.039 L 413 196.269 L 346 196.269 Z M 482 455.269 L 415 455.269 L 415 518.039 L 482 518.039 Z M 828 454.269 L 828 519.039 L 0 519.039 L 0 454.269 Z M 551 518.039 L 551 455.269 L 484 455.269 L 484 518.039 Z M 553 455.269 L 553 518.039 L 620 518.039 L 620 455.269 Z M 689 518.039 L 689 455.269 L 622 455.269 L 622 518.039 Z M 691 455.269 L 691 518.039 L 758 518.039 L 758 455.269 Z M 827 518.039 L 827 455.269 L 760 455.269 L 760 518.039 Z M 68 455.269 L 1 455.269 L 1 518.039 L 68 518.039 Z M 70 518.039 L 137 518.039 L 137 455.269 L 70 455.269 Z M 206 455.269 L 139 455.269 L 139 518.039 L 206 518.039 Z M 208 518.039 L 275 518.039 L 275 455.269 L 208 455.269 Z M 344 455.269 L 277 455.269 L 277 518.039 L 344 518.039 Z M 346 518.039 L 413 518.039 L 413 455.269 L 346 455.269 Z\" fill=\"url(#idss9927857793_1g-525830180)\"></path></g></svg>',svgContentId:9927857793},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 828 520\"><g><defs><radialGradient id=\"idss9927857793_1g-525830180\" cy=\"0.5018555820614656\" cx=\"0.5\" r=\"0.4998520201607741\" gradientTransform=\"translate(0.5, 0.5018555820614656) scale(1 1) translate(-0.5, -0.5018555820614656)\"><stop offset=\"0\" stop-color=\"rgb(230,243,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(227,234,242,0)\" stop-opacity=\"0\"></stop></radialGradient></defs><path d=\"M 68 1.962 L 1 1.962 L 1 64.731 L 68 64.731 Z M 828 0.962 L 828 130.499 L 0 130.499 L 0 0.962 Z M 415 64.731 L 482 64.731 L 482 1.962 L 415 1.962 Z M 484 64.731 L 551 64.731 L 551 1.962 L 484 1.962 Z M 620 1.962 L 553 1.962 L 553 64.731 L 620 64.731 Z M 622 64.731 L 689 64.731 L 689 1.962 L 622 1.962 Z M 758 1.962 L 691 1.962 L 691 64.731 L 758 64.731 Z M 760 64.731 L 827 64.731 L 827 1.962 L 760 1.962 Z M 70 64.731 L 137 64.731 L 137 1.962 L 70 1.962 Z M 206 1.962 L 139 1.962 L 139 64.731 L 206 64.731 Z M 208 64.731 L 275 64.731 L 275 1.962 L 208 1.962 Z M 344 1.962 L 277 1.962 L 277 64.731 L 344 64.731 Z M 346 64.731 L 413 64.731 L 413 1.962 L 346 1.962 Z M 482 260.962 L 415 260.962 L 415 323.731 L 482 323.731 Z M 828 389.499 L 0 389.499 L 0 195.269 L 828 195.269 Z M 551 323.731 L 551 260.962 L 484 260.962 L 484 323.731 Z M 553 260.962 L 553 323.731 L 620 323.731 L 620 260.962 Z M 689 323.731 L 689 260.962 L 622 260.962 L 622 323.731 Z M 691 260.962 L 691 323.731 L 758 323.731 L 758 260.962 Z M 827 323.731 L 827 260.962 L 760 260.962 L 760 323.731 Z M 68 260.962 L 1 260.962 L 1 323.731 L 68 323.731 Z M 70 323.731 L 137 323.731 L 137 260.962 L 70 260.962 Z M 206 260.962 L 139 260.962 L 139 323.731 L 206 323.731 Z M 208 323.731 L 275 323.731 L 275 260.962 L 208 260.962 Z M 344 260.962 L 277 260.962 L 277 323.731 L 344 323.731 Z M 346 323.731 L 413 323.731 L 413 260.962 L 346 260.962 Z M 482 66.73 L 415 66.73 L 415 129.499 L 482 129.499 Z M 484 129.499 L 551 129.499 L 551 66.73 L 484 66.73 Z M 620 66.73 L 553 66.73 L 553 129.499 L 620 129.499 Z M 622 129.499 L 689 129.499 L 689 66.73 L 622 66.73 Z M 758 66.73 L 691 66.73 L 691 129.499 L 758 129.499 Z M 760 129.499 L 827 129.499 L 827 66.73 L 760 66.73 Z M 68 66.73 L 1 66.73 L 1 129.499 L 68 129.499 Z M 70 129.499 L 137 129.499 L 137 66.73 L 70 66.73 Z M 206 66.73 L 139 66.73 L 139 129.499 L 206 129.499 Z M 208 129.499 L 275 129.499 L 275 66.73 L 208 66.73 Z M 344 66.73 L 277 66.73 L 277 129.499 L 344 129.499 Z M 346 129.499 L 413 129.499 L 413 66.73 L 346 66.73 Z M 482 325.73 L 415 325.73 L 415 388.499 L 482 388.499 Z M 551 388.499 L 551 325.73 L 484 325.73 L 484 388.499 Z M 553 325.73 L 553 388.499 L 620 388.499 L 620 325.73 Z M 689 388.499 L 689 325.73 L 622 325.73 L 622 388.499 Z M 691 325.73 L 691 388.499 L 758 388.499 L 758 325.73 Z M 827 388.499 L 827 325.73 L 760 325.73 L 760 388.499 Z M 68 325.73 L 1 325.73 L 1 388.499 L 68 388.499 Z M 70 388.499 L 137 388.499 L 137 325.73 L 70 325.73 Z M 206 325.73 L 139 325.73 L 139 388.499 L 206 388.499 Z M 208 388.499 L 275 388.499 L 275 325.73 L 208 325.73 Z M 344 325.73 L 277 325.73 L 277 388.499 L 344 388.499 Z M 346 388.499 L 413 388.499 L 413 325.73 L 346 325.73 Z M 482 131.5 L 415 131.5 L 415 194.269 L 482 194.269 Z M 828 130.5 L 828 195.269 L 0 195.269 L 0 130.5 Z M 551 194.269 L 551 131.5 L 484 131.5 L 484 194.269 Z M 553 131.5 L 553 194.269 L 620 194.269 L 620 131.5 Z M 689 194.269 L 689 131.5 L 622 131.5 L 622 194.269 Z M 691 131.5 L 691 194.269 L 758 194.269 L 758 131.5 Z M 827 194.269 L 827 131.5 L 760 131.5 L 760 194.269 Z M 68 131.5 L 1 131.5 L 1 194.269 L 68 194.269 Z M 70 194.269 L 137 194.269 L 137 131.5 L 70 131.5 Z M 206 131.5 L 139 131.5 L 139 194.269 L 206 194.269 Z M 208 194.269 L 275 194.269 L 275 131.5 L 208 131.5 Z M 344 131.5 L 277 131.5 L 277 194.269 L 344 194.269 Z M 346 194.269 L 413 194.269 L 413 131.5 L 346 131.5 Z M 482 390.5 L 415 390.5 L 415 453.269 L 482 453.269 Z M 828 389.5 L 828 454.269 L 0 454.269 L 0 389.5 Z M 551 453.269 L 551 390.5 L 484 390.5 L 484 453.269 Z M 553 390.5 L 553 453.269 L 620 453.269 L 620 390.5 Z M 689 453.269 L 689 390.5 L 622 390.5 L 622 453.269 Z M 691 390.5 L 691 453.269 L 758 453.269 L 758 390.5 Z M 827 453.269 L 827 390.5 L 760 390.5 L 760 453.269 Z M 68 390.5 L 1 390.5 L 1 453.269 L 68 453.269 Z M 70 453.269 L 137 453.269 L 137 390.5 L 70 390.5 Z M 206 390.5 L 139 390.5 L 139 453.269 L 206 453.269 Z M 208 453.269 L 275 453.269 L 275 390.5 L 208 390.5 Z M 344 390.5 L 277 390.5 L 277 453.269 L 344 453.269 Z M 346 453.269 L 413 453.269 L 413 390.5 L 346 390.5 Z M 482 196.269 L 415 196.269 L 415 259.039 L 482 259.039 Z M 551 259.039 L 551 196.269 L 484 196.269 L 484 259.039 Z M 553 196.269 L 553 259.039 L 620 259.039 L 620 196.269 Z M 689 259.039 L 689 196.269 L 622 196.269 L 622 259.039 Z M 691 196.269 L 691 259.039 L 758 259.039 L 758 196.269 Z M 827 259.039 L 827 196.269 L 760 196.269 L 760 259.039 Z M 68 196.269 L 1 196.269 L 1 259.039 L 68 259.039 Z M 70 259.039 L 137 259.039 L 137 196.269 L 70 196.269 Z M 206 196.269 L 139 196.269 L 139 259.039 L 206 259.039 Z M 208 259.039 L 275 259.039 L 275 196.269 L 208 196.269 Z M 344 196.269 L 277 196.269 L 277 259.039 L 344 259.039 Z M 346 259.039 L 413 259.039 L 413 196.269 L 346 196.269 Z M 482 455.269 L 415 455.269 L 415 518.039 L 482 518.039 Z M 828 454.269 L 828 519.039 L 0 519.039 L 0 454.269 Z M 551 518.039 L 551 455.269 L 484 455.269 L 484 518.039 Z M 553 455.269 L 553 518.039 L 620 518.039 L 620 455.269 Z M 689 518.039 L 689 455.269 L 622 455.269 L 622 518.039 Z M 691 455.269 L 691 518.039 L 758 518.039 L 758 455.269 Z M 827 518.039 L 827 455.269 L 760 455.269 L 760 518.039 Z M 68 455.269 L 1 455.269 L 1 518.039 L 68 518.039 Z M 70 518.039 L 137 518.039 L 137 455.269 L 70 455.269 Z M 206 455.269 L 139 455.269 L 139 518.039 L 206 518.039 Z M 208 518.039 L 275 518.039 L 275 455.269 L 208 455.269 Z M 344 455.269 L 277 455.269 L 277 518.039 L 344 518.039 Z M 346 518.039 L 413 518.039 L 413 455.269 L 346 455.269 Z\" fill=\"url(#idss9927857793_1g-525830180)\"></path></g></svg>',svgContentId:9927857793},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 828 520\"><g><defs><radialGradient id=\"idss9927857793_1g-525830180\" cy=\"0.5018555820614656\" cx=\"0.5\" r=\"0.4998520201607741\" gradientTransform=\"translate(0.5, 0.5018555820614656) scale(1 1) translate(-0.5, -0.5018555820614656)\"><stop offset=\"0\" stop-color=\"rgb(230,243,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(227,234,242,0)\" stop-opacity=\"0\"></stop></radialGradient></defs><path d=\"M 68 1.962 L 1 1.962 L 1 64.731 L 68 64.731 Z M 828 0.962 L 828 130.499 L 0 130.499 L 0 0.962 Z M 415 64.731 L 482 64.731 L 482 1.962 L 415 1.962 Z M 484 64.731 L 551 64.731 L 551 1.962 L 484 1.962 Z M 620 1.962 L 553 1.962 L 553 64.731 L 620 64.731 Z M 622 64.731 L 689 64.731 L 689 1.962 L 622 1.962 Z M 758 1.962 L 691 1.962 L 691 64.731 L 758 64.731 Z M 760 64.731 L 827 64.731 L 827 1.962 L 760 1.962 Z M 70 64.731 L 137 64.731 L 137 1.962 L 70 1.962 Z M 206 1.962 L 139 1.962 L 139 64.731 L 206 64.731 Z M 208 64.731 L 275 64.731 L 275 1.962 L 208 1.962 Z M 344 1.962 L 277 1.962 L 277 64.731 L 344 64.731 Z M 346 64.731 L 413 64.731 L 413 1.962 L 346 1.962 Z M 482 260.962 L 415 260.962 L 415 323.731 L 482 323.731 Z M 828 389.499 L 0 389.499 L 0 195.269 L 828 195.269 Z M 551 323.731 L 551 260.962 L 484 260.962 L 484 323.731 Z M 553 260.962 L 553 323.731 L 620 323.731 L 620 260.962 Z M 689 323.731 L 689 260.962 L 622 260.962 L 622 323.731 Z M 691 260.962 L 691 323.731 L 758 323.731 L 758 260.962 Z M 827 323.731 L 827 260.962 L 760 260.962 L 760 323.731 Z M 68 260.962 L 1 260.962 L 1 323.731 L 68 323.731 Z M 70 323.731 L 137 323.731 L 137 260.962 L 70 260.962 Z M 206 260.962 L 139 260.962 L 139 323.731 L 206 323.731 Z M 208 323.731 L 275 323.731 L 275 260.962 L 208 260.962 Z M 344 260.962 L 277 260.962 L 277 323.731 L 344 323.731 Z M 346 323.731 L 413 323.731 L 413 260.962 L 346 260.962 Z M 482 66.73 L 415 66.73 L 415 129.499 L 482 129.499 Z M 484 129.499 L 551 129.499 L 551 66.73 L 484 66.73 Z M 620 66.73 L 553 66.73 L 553 129.499 L 620 129.499 Z M 622 129.499 L 689 129.499 L 689 66.73 L 622 66.73 Z M 758 66.73 L 691 66.73 L 691 129.499 L 758 129.499 Z M 760 129.499 L 827 129.499 L 827 66.73 L 760 66.73 Z M 68 66.73 L 1 66.73 L 1 129.499 L 68 129.499 Z M 70 129.499 L 137 129.499 L 137 66.73 L 70 66.73 Z M 206 66.73 L 139 66.73 L 139 129.499 L 206 129.499 Z M 208 129.499 L 275 129.499 L 275 66.73 L 208 66.73 Z M 344 66.73 L 277 66.73 L 277 129.499 L 344 129.499 Z M 346 129.499 L 413 129.499 L 413 66.73 L 346 66.73 Z M 482 325.73 L 415 325.73 L 415 388.499 L 482 388.499 Z M 551 388.499 L 551 325.73 L 484 325.73 L 484 388.499 Z M 553 325.73 L 553 388.499 L 620 388.499 L 620 325.73 Z M 689 388.499 L 689 325.73 L 622 325.73 L 622 388.499 Z M 691 325.73 L 691 388.499 L 758 388.499 L 758 325.73 Z M 827 388.499 L 827 325.73 L 760 325.73 L 760 388.499 Z M 68 325.73 L 1 325.73 L 1 388.499 L 68 388.499 Z M 70 388.499 L 137 388.499 L 137 325.73 L 70 325.73 Z M 206 325.73 L 139 325.73 L 139 388.499 L 206 388.499 Z M 208 388.499 L 275 388.499 L 275 325.73 L 208 325.73 Z M 344 325.73 L 277 325.73 L 277 388.499 L 344 388.499 Z M 346 388.499 L 413 388.499 L 413 325.73 L 346 325.73 Z M 482 131.5 L 415 131.5 L 415 194.269 L 482 194.269 Z M 828 130.5 L 828 195.269 L 0 195.269 L 0 130.5 Z M 551 194.269 L 551 131.5 L 484 131.5 L 484 194.269 Z M 553 131.5 L 553 194.269 L 620 194.269 L 620 131.5 Z M 689 194.269 L 689 131.5 L 622 131.5 L 622 194.269 Z M 691 131.5 L 691 194.269 L 758 194.269 L 758 131.5 Z M 827 194.269 L 827 131.5 L 760 131.5 L 760 194.269 Z M 68 131.5 L 1 131.5 L 1 194.269 L 68 194.269 Z M 70 194.269 L 137 194.269 L 137 131.5 L 70 131.5 Z M 206 131.5 L 139 131.5 L 139 194.269 L 206 194.269 Z M 208 194.269 L 275 194.269 L 275 131.5 L 208 131.5 Z M 344 131.5 L 277 131.5 L 277 194.269 L 344 194.269 Z M 346 194.269 L 413 194.269 L 413 131.5 L 346 131.5 Z M 482 390.5 L 415 390.5 L 415 453.269 L 482 453.269 Z M 828 389.5 L 828 454.269 L 0 454.269 L 0 389.5 Z M 551 453.269 L 551 390.5 L 484 390.5 L 484 453.269 Z M 553 390.5 L 553 453.269 L 620 453.269 L 620 390.5 Z M 689 453.269 L 689 390.5 L 622 390.5 L 622 453.269 Z M 691 390.5 L 691 453.269 L 758 453.269 L 758 390.5 Z M 827 453.269 L 827 390.5 L 760 390.5 L 760 453.269 Z M 68 390.5 L 1 390.5 L 1 453.269 L 68 453.269 Z M 70 453.269 L 137 453.269 L 137 390.5 L 70 390.5 Z M 206 390.5 L 139 390.5 L 139 453.269 L 206 453.269 Z M 208 453.269 L 275 453.269 L 275 390.5 L 208 390.5 Z M 344 390.5 L 277 390.5 L 277 453.269 L 344 453.269 Z M 346 453.269 L 413 453.269 L 413 390.5 L 346 390.5 Z M 482 196.269 L 415 196.269 L 415 259.039 L 482 259.039 Z M 551 259.039 L 551 196.269 L 484 196.269 L 484 259.039 Z M 553 196.269 L 553 259.039 L 620 259.039 L 620 196.269 Z M 689 259.039 L 689 196.269 L 622 196.269 L 622 259.039 Z M 691 196.269 L 691 259.039 L 758 259.039 L 758 196.269 Z M 827 259.039 L 827 196.269 L 760 196.269 L 760 259.039 Z M 68 196.269 L 1 196.269 L 1 259.039 L 68 259.039 Z M 70 259.039 L 137 259.039 L 137 196.269 L 70 196.269 Z M 206 196.269 L 139 196.269 L 139 259.039 L 206 259.039 Z M 208 259.039 L 275 259.039 L 275 196.269 L 208 196.269 Z M 344 196.269 L 277 196.269 L 277 259.039 L 344 259.039 Z M 346 259.039 L 413 259.039 L 413 196.269 L 346 196.269 Z M 482 455.269 L 415 455.269 L 415 518.039 L 482 518.039 Z M 828 454.269 L 828 519.039 L 0 519.039 L 0 454.269 Z M 551 518.039 L 551 455.269 L 484 455.269 L 484 518.039 Z M 553 455.269 L 553 518.039 L 620 518.039 L 620 455.269 Z M 689 518.039 L 689 455.269 L 622 455.269 L 622 518.039 Z M 691 455.269 L 691 518.039 L 758 518.039 L 758 455.269 Z M 827 518.039 L 827 455.269 L 760 455.269 L 760 518.039 Z M 68 455.269 L 1 455.269 L 1 518.039 L 68 518.039 Z M 70 518.039 L 137 518.039 L 137 455.269 L 70 455.269 Z M 206 455.269 L 139 455.269 L 139 518.039 L 206 518.039 Z M 208 518.039 L 275 518.039 L 275 455.269 L 208 455.269 Z M 344 455.269 L 277 455.269 L 277 518.039 L 344 518.039 Z M 346 518.039 L 413 518.039 L 413 455.269 L 346 455.269 Z\" fill=\"url(#idss9927857793_1g-525830180)\"></path></g></svg>',svgContentId:9927857793}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mng6gq\",\"data-framer-name\":\"Squares\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 828 520\"><g><defs><radialGradient id=\"idss1337923201_1g-525830180\" cy=\"0.5018555820614656\" cx=\"0.5\" r=\"0.4998520201607741\" gradientTransform=\"translate(0.5, 0.5018555820614656) scale(1 1) translate(-0.5, -0.5018555820614656)\"><stop offset=\"0\" stop-color=\"rgb(230,243,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(227,234,242,0)\" stop-opacity=\"0\"></stop></radialGradient></defs><path d=\"M 68 1.962 L 1 1.962 L 1 64.731 L 68 64.731 Z M 828 0.962 L 828 130.499 L 0 130.499 L 0 0.962 Z M 415 64.731 L 482 64.731 L 482 1.962 L 415 1.962 Z M 484 64.731 L 551 64.731 L 551 1.962 L 484 1.962 Z M 620 1.962 L 553 1.962 L 553 64.731 L 620 64.731 Z M 622 64.731 L 689 64.731 L 689 1.962 L 622 1.962 Z M 758 1.962 L 691 1.962 L 691 64.731 L 758 64.731 Z M 760 64.731 L 827 64.731 L 827 1.962 L 760 1.962 Z M 70 64.731 L 137 64.731 L 137 1.962 L 70 1.962 Z M 206 1.962 L 139 1.962 L 139 64.731 L 206 64.731 Z M 208 64.731 L 275 64.731 L 275 1.962 L 208 1.962 Z M 344 1.962 L 277 1.962 L 277 64.731 L 344 64.731 Z M 346 64.731 L 413 64.731 L 413 1.962 L 346 1.962 Z M 482 260.962 L 415 260.962 L 415 323.731 L 482 323.731 Z M 828 389.499 L 0 389.499 L 0 195.269 L 828 195.269 Z M 551 323.731 L 551 260.962 L 484 260.962 L 484 323.731 Z M 553 260.962 L 553 323.731 L 620 323.731 L 620 260.962 Z M 689 323.731 L 689 260.962 L 622 260.962 L 622 323.731 Z M 691 260.962 L 691 323.731 L 758 323.731 L 758 260.962 Z M 827 323.731 L 827 260.962 L 760 260.962 L 760 323.731 Z M 68 260.962 L 1 260.962 L 1 323.731 L 68 323.731 Z M 70 323.731 L 137 323.731 L 137 260.962 L 70 260.962 Z M 206 260.962 L 139 260.962 L 139 323.731 L 206 323.731 Z M 208 323.731 L 275 323.731 L 275 260.962 L 208 260.962 Z M 344 260.962 L 277 260.962 L 277 323.731 L 344 323.731 Z M 346 323.731 L 413 323.731 L 413 260.962 L 346 260.962 Z M 482 66.73 L 415 66.73 L 415 129.499 L 482 129.499 Z M 484 129.499 L 551 129.499 L 551 66.73 L 484 66.73 Z M 620 66.73 L 553 66.73 L 553 129.499 L 620 129.499 Z M 622 129.499 L 689 129.499 L 689 66.73 L 622 66.73 Z M 758 66.73 L 691 66.73 L 691 129.499 L 758 129.499 Z M 760 129.499 L 827 129.499 L 827 66.73 L 760 66.73 Z M 68 66.73 L 1 66.73 L 1 129.499 L 68 129.499 Z M 70 129.499 L 137 129.499 L 137 66.73 L 70 66.73 Z M 206 66.73 L 139 66.73 L 139 129.499 L 206 129.499 Z M 208 129.499 L 275 129.499 L 275 66.73 L 208 66.73 Z M 344 66.73 L 277 66.73 L 277 129.499 L 344 129.499 Z M 346 129.499 L 413 129.499 L 413 66.73 L 346 66.73 Z M 482 325.73 L 415 325.73 L 415 388.499 L 482 388.499 Z M 551 388.499 L 551 325.73 L 484 325.73 L 484 388.499 Z M 553 325.73 L 553 388.499 L 620 388.499 L 620 325.73 Z M 689 388.499 L 689 325.73 L 622 325.73 L 622 388.499 Z M 691 325.73 L 691 388.499 L 758 388.499 L 758 325.73 Z M 827 388.499 L 827 325.73 L 760 325.73 L 760 388.499 Z M 68 325.73 L 1 325.73 L 1 388.499 L 68 388.499 Z M 70 388.499 L 137 388.499 L 137 325.73 L 70 325.73 Z M 206 325.73 L 139 325.73 L 139 388.499 L 206 388.499 Z M 208 388.499 L 275 388.499 L 275 325.73 L 208 325.73 Z M 344 325.73 L 277 325.73 L 277 388.499 L 344 388.499 Z M 346 388.499 L 413 388.499 L 413 325.73 L 346 325.73 Z M 482 131.5 L 415 131.5 L 415 194.269 L 482 194.269 Z M 828 130.5 L 828 195.269 L 0 195.269 L 0 130.5 Z M 551 194.269 L 551 131.5 L 484 131.5 L 484 194.269 Z M 553 131.5 L 553 194.269 L 620 194.269 L 620 131.5 Z M 689 194.269 L 689 131.5 L 622 131.5 L 622 194.269 Z M 691 131.5 L 691 194.269 L 758 194.269 L 758 131.5 Z M 827 194.269 L 827 131.5 L 760 131.5 L 760 194.269 Z M 68 131.5 L 1 131.5 L 1 194.269 L 68 194.269 Z M 70 194.269 L 137 194.269 L 137 131.5 L 70 131.5 Z M 206 131.5 L 139 131.5 L 139 194.269 L 206 194.269 Z M 208 194.269 L 275 194.269 L 275 131.5 L 208 131.5 Z M 344 131.5 L 277 131.5 L 277 194.269 L 344 194.269 Z M 346 194.269 L 413 194.269 L 413 131.5 L 346 131.5 Z M 482 390.5 L 415 390.5 L 415 453.269 L 482 453.269 Z M 828 389.5 L 828 454.269 L 0 454.269 L 0 389.5 Z M 551 453.269 L 551 390.5 L 484 390.5 L 484 453.269 Z M 553 390.5 L 553 453.269 L 620 453.269 L 620 390.5 Z M 689 453.269 L 689 390.5 L 622 390.5 L 622 453.269 Z M 691 390.5 L 691 453.269 L 758 453.269 L 758 390.5 Z M 827 453.269 L 827 390.5 L 760 390.5 L 760 453.269 Z M 68 390.5 L 1 390.5 L 1 453.269 L 68 453.269 Z M 70 453.269 L 137 453.269 L 137 390.5 L 70 390.5 Z M 206 390.5 L 139 390.5 L 139 453.269 L 206 453.269 Z M 208 453.269 L 275 453.269 L 275 390.5 L 208 390.5 Z M 344 390.5 L 277 390.5 L 277 453.269 L 344 453.269 Z M 346 453.269 L 413 453.269 L 413 390.5 L 346 390.5 Z M 482 196.269 L 415 196.269 L 415 259.039 L 482 259.039 Z M 551 259.039 L 551 196.269 L 484 196.269 L 484 259.039 Z M 553 196.269 L 553 259.039 L 620 259.039 L 620 196.269 Z M 689 259.039 L 689 196.269 L 622 196.269 L 622 259.039 Z M 691 196.269 L 691 259.039 L 758 259.039 L 758 196.269 Z M 827 259.039 L 827 196.269 L 760 196.269 L 760 259.039 Z M 68 196.269 L 1 196.269 L 1 259.039 L 68 259.039 Z M 70 259.039 L 137 259.039 L 137 196.269 L 70 196.269 Z M 206 196.269 L 139 196.269 L 139 259.039 L 206 259.039 Z M 208 259.039 L 275 259.039 L 275 196.269 L 208 196.269 Z M 344 196.269 L 277 196.269 L 277 259.039 L 344 259.039 Z M 346 259.039 L 413 259.039 L 413 196.269 L 346 196.269 Z M 482 455.269 L 415 455.269 L 415 518.039 L 482 518.039 Z M 828 454.269 L 828 519.039 L 0 519.039 L 0 454.269 Z M 551 518.039 L 551 455.269 L 484 455.269 L 484 518.039 Z M 553 455.269 L 553 518.039 L 620 518.039 L 620 455.269 Z M 689 518.039 L 689 455.269 L 622 455.269 L 622 518.039 Z M 691 455.269 L 691 518.039 L 758 518.039 L 758 455.269 Z M 827 518.039 L 827 455.269 L 760 455.269 L 760 518.039 Z M 68 455.269 L 1 455.269 L 1 518.039 L 68 518.039 Z M 70 518.039 L 137 518.039 L 137 455.269 L 70 455.269 Z M 206 455.269 L 139 455.269 L 139 518.039 L 206 518.039 Z M 208 518.039 L 275 518.039 L 275 455.269 L 208 455.269 Z M 344 455.269 L 277 455.269 L 277 518.039 L 344 518.039 Z M 346 518.039 L 413 518.039 L 413 455.269 L 346 455.269 Z\" fill=\"url(#idss1337923201_1g-525830180)\"></path></g></svg>',svgContentId:1337923201,withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{y:(componentViewport?.y||0)+24+0+0+130+0+101}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+24+0+0+127+0+101,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1lzbt2z-container hidden-15r9829 hidden-1mrz06h\",\"data-framer-appear-id\":\"1lzbt2z\",initial:animation1,nodeId:\"gk3fXysxz\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-13,transformPerspective:1200},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HeroCircle,{height:\"100%\",id:\"gk3fXysxz\",layoutId:\"gk3fXysxz\",variant:\"RA3lWZcGb\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{y:(componentViewport?.y||0)+24+0+0+130+0+241}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+24+0+0+127+0+241,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-wt4ke3-container hidden-15r9829 hidden-1mrz06h\",\"data-framer-appear-id\":\"wt4ke3\",initial:animation3,nodeId:\"zKPcDMYTe\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-15,transformPerspective:1200},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HeroCircle,{height:\"100%\",id:\"zKPcDMYTe\",layoutId:\"zKPcDMYTe\",variant:\"YNDovXqA_\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{y:(componentViewport?.y||0)+24+0+0+130+0+390},lOqq2VQGk:{y:(componentViewport?.y||0)+24+0+0+119+0+340}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+24+0+0+127+0+390,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-14lupjv-container hidden-1mrz06h\",\"data-framer-appear-id\":\"14lupjv\",initial:animation3,nodeId:\"fTCptsfQ6\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-15,transformPerspective:1200},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HeroCircle,{height:\"100%\",id:\"fTCptsfQ6\",layoutId:\"fTCptsfQ6\",variant:\"Oznh4y0N5\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{y:(componentViewport?.y||0)+24+0+0+130+0+226}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+24+0+0+127+0+226,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-sobi4f-container hidden-15r9829 hidden-1mrz06h\",\"data-framer-appear-id\":\"sobi4f\",initial:animation6,nodeId:\"SKt3lnDEN\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:15,transformPerspective:1200},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HeroCircle,{height:\"100%\",id:\"SKt3lnDEN\",layoutId:\"SKt3lnDEN\",variant:\"LTrF_B_N5\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{y:(componentViewport?.y||0)+24+0+0+130+0+105},lOqq2VQGk:{y:(componentViewport?.y||0)+24+0+0+119+0+65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+24+0+0+127+0+105,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-pn4hby-container hidden-1mrz06h\",\"data-framer-appear-id\":\"pn4hby\",initial:animation6,nodeId:\"L4dmAkUzA\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:15,transformPerspective:1200},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HeroCircle,{height:\"100%\",id:\"L4dmAkUzA\",layoutId:\"L4dmAkUzA\",variant:\"txymEmn0b\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{y:(componentViewport?.y||0)+24+0+0+130+0+388}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+24+0+0+127+0+388,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1h4tgsy-container hidden-15r9829 hidden-1mrz06h\",\"data-framer-appear-id\":\"1h4tgsy\",initial:animation6,nodeId:\"ydUaUSrCj\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:15,transformPerspective:1200},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HeroCircle,{height:\"100%\",id:\"ydUaUSrCj\",layoutId:\"ydUaUSrCj\",variant:\"RA3lWZcGb\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlq7su\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b2faji\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lnd6fz\",\"data-border\":true,\"data-framer-name\":\"Badge\",style:{transformPerspective:1200},whileHover:animation9,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 87, 159)\"},children:\"Introducing Marqly 3.0\"})}),className:\"framer-s40e96\",\"data-framer-name\":\"Introducing Marqly 3.0\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oxoj8u\",\"data-framer-name\":\"Title & Subtitle\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j7qkph\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 73, 86)\"},children:\"Bookmark manager,\"})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"43px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 73, 86)\"},children:\"Bookmark manager,\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"74px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 73, 86)\"},children:\"Bookmark manager,\"})}),className:\"framer-1opf49o\",\"data-framer-name\":\"Bookmark manager,\\u2028revolutionized.\",fonts:[\"GF;Inter Tight-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(93deg, rgb(127, 196, 250) 0%, rgb(154, 152, 251) 36.0361%, rgb(163, 138, 251) 45.0451%, rgb(58, 167, 246) 100%)\"},children:\"revolutionized.\"})})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"43px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(93deg, rgb(127, 196, 250) 0%, rgb(154, 152, 251) 36.0361%, rgb(163, 138, 251) 45.0451%, rgb(58, 167, 246) 100%)\"},children:\"revolutionized.\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"74px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(93deg, rgb(127, 196, 250) 0%, rgb(154, 152, 251) 36.0361%, rgb(163, 138, 251) 45.0451%, rgb(58, 167, 246) 100%)\"},children:\"revolutionized.\"})})}),className:\"framer-1kv09sv\",\"data-framer-name\":\"Bookmark manager,\\u2028revolutionized.\",fonts:[\"GF;Inter Tight-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Easy-to-use, Marqly lets you save, customize, and manage all your bookmarks and texts online like a breeze.\"})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Easy-to-use, Marqly lets you save, customize, and manage all your bookmarks and texts online like a breeze.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Easy-to-use, Marqly lets you save, customize, and manage all your bookmarks and texts online like a breeze.\"})}),className:\"framer-5akyd9\",\"data-framer-name\":\"Easy-to-use, Marqly lets you save, customize, and manage all your bookmarks and texts online like a breeze.\",fonts:[\"GF;Inter Tight-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{y:(componentViewport?.y||0)+24+0+0+127+72+0+0+999.2},LA85W3Ouo:{y:(componentViewport?.y||0)+24+0+0+130+72+-11368683772161603e-29+0+999.2},lOqq2VQGk:{y:(componentViewport?.y||0)+24+0+0+119+72+0+0+689.2},nMlihs96b:{y:(componentViewport?.y||0)+24+0+0+119+72+0+0+639.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+24+0+0+127+72+-11368683772161603e-29+0+999.2,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v94zdc-container\",nodeId:\"qK0KMKIqR\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CTAButton,{height:\"100%\",id:\"qK0KMKIqR\",l1L88jkb3:\"Get Started for Free ->\",layoutId:\"qK0KMKIqR\",Lzl9l661F:false,UkItkESUo:false,variant:\"WGSivsoIs\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{whileHover:animation13}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-1wulmlo\",\"data-framer-appear-id\":\"1wulmlo\",\"data-framer-name\":\"No Card Required\",initial:animation12,optimized:true,style:{transformPerspective:1200},whileHover:animation10,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n556q4\",\"data-framer-name\":\"Solid/General/Card\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oxs5im\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"18\" viewBox=\"-1 -1 25 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.6841 0.627734L11.5 0.461426L4.31592 0.627734C2.86417 0.657234 1.63342 1.70376 1.37094 3.13189C0.78407 6.32498 0.784069 9.59829 1.37094 12.7914C1.63342 14.2195 2.86416 15.266 4.31592 15.2955L11.5 15.4618L18.6841 15.2955C20.1359 15.266 21.3666 14.2195 21.6291 12.7914C22.216 9.59829 22.216 6.32498 21.6291 3.13189C21.3666 1.70376 20.1359 0.657234 18.6841 0.627734ZM20.5 6.96161C20.5 7.51389 20.0523 7.96161 19.5 7.96161H3.5C2.94772 7.96161 2.5 7.51389 2.5 6.96161C2.5 6.40932 2.94772 5.96161 3.5 5.96161H19.5C20.0523 5.96161 20.5 6.40932 20.5 6.96161Z\" fill=\"#A8ABB8\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"No card required\"})}),className:\"framer-1hylvsm\",\"data-framer-name\":\"No card required\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+130+72+1135.1999999999998),positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) * 0.9014)`,src:\"https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png\",srcSet:\"https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png 1440w\"}}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vgqb76\",\"data-framer-name\":\"Image\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13m04vm hidden-15r9829 hidden-1mrz06h\",\"data-framer-name\":\"Shadow\"}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+127+72+1135.2+3),sizes:`calc((${componentViewport?.width||\"100vw\"} - 60px) * 0.92 - 8px)`,src:\"https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png\",srcSet:\"https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png 1440w\"}},LA85W3Ouo:{background:{alt:\"\",intrinsicHeight:1536,intrinsicWidth:2160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+130+72+1135.1999999999998+3),pixelHeight:1536,pixelWidth:2160,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nFMSMCY857T3dPRqBJmS9Eu7iA.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+127+72+1135.1999999999998+3),sizes:`calc((${componentViewport?.width||\"100vw\"} - 60px) * 0.9014 - 8px)`,src:\"https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png\",srcSet:\"https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ofk2ojzw0Sp4mcsPPyzEsqZmXL4.png 1440w\"},className:\"framer-1f2e51s hidden-15r9829 hidden-1mrz06h\",\"data-border\":true,\"data-framer-name\":\"Screen Component 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"74px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\"},children:\"\uD83E\uDDE0\"})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\"},children:\"\uD83E\uDDE0\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__loop:animation14,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition10,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"114px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\"},children:\"\uD83E\uDDE0\"})}),className:\"framer-3z4kdi\",\"data-framer-name\":\"\uD83E\uDDE0\",fonts:[\"GF;Inter Tight-700\"],style:{rotate:-26},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation15,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition10,__perspectiveFX:false,__targetOpacity:1,className:\"framer-521a34\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 114\"><g transform=\"translate(0.549 2.206)\" id=\"ss9586615695_1\"><path d=\"M 13.956 96.425 L 99.924 108.507 C 104.81 109.194 107.252 109.537 109.252 108.849 C 111.011 108.243 112.533 107.096 113.6 105.573 C 114.812 103.84 115.156 101.398 115.842 96.512 L 124.11 37.682 C 124.797 32.797 125.14 30.354 124.452 28.355 C 123.846 26.596 122.699 25.074 121.176 24.007 C 119.443 22.794 117.001 22.451 112.115 21.764 L 64.952 15.136 C 62.347 14.77 59.049 14.059 56.127 11.116 C 53.205 8.173 55.694 10.684 52.616 7.534 C 49.538 4.383 47.853 3.591 44.829 3.165 L 27.407 0.717 C 22.522 0.031 20.08 -0.313 18.08 0.376 C 16.321 0.981 14.799 2.128 13.732 3.652 C 12.519 5.384 12.176 7.827 11.489 12.712 L 1.961 80.508 C 1.275 85.393 0.932 87.835 1.62 89.835 C 2.226 91.594 3.373 93.116 4.896 94.183 C 6.629 95.396 9.071 95.739 13.956 96.425 Z\" fill=\"rgb(84,214,255)\"></path><path d=\"M 13.956 96.425 L 99.924 108.507 C 104.81 109.194 107.252 109.537 109.252 108.849 C 111.011 108.243 112.533 107.096 113.6 105.573 C 114.812 103.84 115.156 101.398 115.842 96.512 L 124.11 37.682 C 124.797 32.797 125.14 30.354 124.452 28.355 C 123.846 26.596 122.699 25.074 121.176 24.007 C 119.443 22.794 117.001 22.451 112.115 21.764 L 64.952 15.136 C 62.347 14.77 59.049 14.059 56.127 11.116 C 53.205 8.173 55.694 10.684 52.616 7.534 C 49.538 4.383 47.853 3.591 44.829 3.165 L 27.407 0.717 C 22.522 0.031 20.08 -0.313 18.08 0.376 C 16.321 0.981 14.799 2.128 13.732 3.652 C 12.519 5.384 12.176 7.827 11.489 12.712 L 1.961 80.508 C 1.275 85.393 0.932 87.835 1.62 89.835 C 2.226 91.594 3.373 93.116 4.896 94.183 C 6.629 95.396 9.071 95.739 13.956 96.425 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 14.99)\" id=\"ss9586615695_4\"><path d=\"M 8.723 80.7 C 3.905 80.023 0 79.474 0 79.474 L 11.169 0 C 11.169 0 15.075 0.549 19.892 1.226 L 116.327 14.779 C 121.145 15.456 125.05 16.005 125.05 16.005 L 113.881 95.479 C 113.881 95.479 109.976 94.93 105.158 94.253 Z\" fill=\"rgb(84,214,255)\"></path></g></g></svg>',svgContentId:9586615695},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 114\"><g transform=\"translate(0.549 2.206)\" id=\"ss9586615695_1\"><path d=\"M 13.956 96.425 L 99.924 108.507 C 104.81 109.194 107.252 109.537 109.252 108.849 C 111.011 108.243 112.533 107.096 113.6 105.573 C 114.812 103.84 115.156 101.398 115.842 96.512 L 124.11 37.682 C 124.797 32.797 125.14 30.354 124.452 28.355 C 123.846 26.596 122.699 25.074 121.176 24.007 C 119.443 22.794 117.001 22.451 112.115 21.764 L 64.952 15.136 C 62.347 14.77 59.049 14.059 56.127 11.116 C 53.205 8.173 55.694 10.684 52.616 7.534 C 49.538 4.383 47.853 3.591 44.829 3.165 L 27.407 0.717 C 22.522 0.031 20.08 -0.313 18.08 0.376 C 16.321 0.981 14.799 2.128 13.732 3.652 C 12.519 5.384 12.176 7.827 11.489 12.712 L 1.961 80.508 C 1.275 85.393 0.932 87.835 1.62 89.835 C 2.226 91.594 3.373 93.116 4.896 94.183 C 6.629 95.396 9.071 95.739 13.956 96.425 Z\" fill=\"rgb(84,214,255)\"></path><path d=\"M 13.956 96.425 L 99.924 108.507 C 104.81 109.194 107.252 109.537 109.252 108.849 C 111.011 108.243 112.533 107.096 113.6 105.573 C 114.812 103.84 115.156 101.398 115.842 96.512 L 124.11 37.682 C 124.797 32.797 125.14 30.354 124.452 28.355 C 123.846 26.596 122.699 25.074 121.176 24.007 C 119.443 22.794 117.001 22.451 112.115 21.764 L 64.952 15.136 C 62.347 14.77 59.049 14.059 56.127 11.116 C 53.205 8.173 55.694 10.684 52.616 7.534 C 49.538 4.383 47.853 3.591 44.829 3.165 L 27.407 0.717 C 22.522 0.031 20.08 -0.313 18.08 0.376 C 16.321 0.981 14.799 2.128 13.732 3.652 C 12.519 5.384 12.176 7.827 11.489 12.712 L 1.961 80.508 C 1.275 85.393 0.932 87.835 1.62 89.835 C 2.226 91.594 3.373 93.116 4.896 94.183 C 6.629 95.396 9.071 95.739 13.956 96.425 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 14.99)\" id=\"ss9586615695_4\"><path d=\"M 8.723 80.7 C 3.905 80.023 0 79.474 0 79.474 L 11.169 0 C 11.169 0 15.075 0.549 19.892 1.226 L 116.327 14.779 C 121.145 15.456 125.05 16.005 125.05 16.005 L 113.881 95.479 C 113.881 95.479 109.976 94.93 105.158 94.253 Z\" fill=\"rgb(84,214,255)\"></path></g></g></svg>',svgContentId:9586615695},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66 59\"><g transform=\"translate(0.197 0.267)\" id=\"ss11962761404_1\"><path d=\"M 7.196 50.661 L 51.523 56.914 C 54.043 57.27 55.302 57.447 56.333 57.091 C 57.24 56.777 58.025 56.184 58.575 55.396 C 59.2 54.499 59.377 53.235 59.731 50.706 L 63.994 20.259 C 64.348 17.731 64.525 16.467 64.171 15.432 C 63.858 14.521 63.267 13.734 62.481 13.182 C 61.588 12.554 60.329 12.376 57.809 12.021 L 33.491 8.59 C 32.148 8.401 30.447 8.033 28.941 6.51 C 27.434 4.987 28.717 6.286 27.13 4.656 C 25.543 3.025 24.674 2.615 23.115 2.395 L 14.132 1.128 C 11.613 0.773 10.354 0.595 9.323 0.951 C 8.416 1.265 7.631 1.858 7.081 2.647 C 6.455 3.543 6.278 4.808 5.924 7.336 L 1.011 42.423 C 0.657 44.951 0.48 46.216 0.835 47.25 C 1.148 48.161 1.739 48.948 2.525 49.501 C 3.418 50.128 4.677 50.306 7.196 50.661 Z\" fill=\"rgb(84,214,255)\"></path><path d=\"M 7.196 50.661 L 51.523 56.914 C 54.043 57.27 55.302 57.447 56.333 57.091 C 57.24 56.777 58.025 56.184 58.575 55.396 C 59.2 54.499 59.377 53.235 59.731 50.706 L 63.994 20.259 C 64.348 17.731 64.525 16.467 64.171 15.432 C 63.858 14.521 63.267 13.734 62.481 13.182 C 61.588 12.554 60.329 12.376 57.809 12.021 L 33.491 8.59 C 32.148 8.401 30.447 8.033 28.941 6.51 C 27.434 4.987 28.717 6.286 27.13 4.656 C 25.543 3.025 24.674 2.615 23.115 2.395 L 14.132 1.128 C 11.613 0.773 10.354 0.595 9.323 0.951 C 8.416 1.265 7.631 1.858 7.081 2.647 C 6.455 3.543 6.278 4.808 5.924 7.336 L 1.011 42.423 C 0.657 44.951 0.48 46.216 0.835 47.25 C 1.148 48.161 1.739 48.948 2.525 49.501 C 3.418 50.128 4.677 50.306 7.196 50.661 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 5.917)\" id=\"ss11962761404_4\"><path d=\"M 4.498 41.766 C 2.014 41.415 0 41.131 0 41.131 L 5.759 0 C 5.759 0 7.773 0.284 10.257 0.634 L 59.981 7.649 C 62.465 7.999 64.479 8.283 64.479 8.283 L 58.72 49.415 C 58.72 49.415 56.706 49.131 54.222 48.78 Z\" fill=\"rgb(84,214,255)\"></path></g></g></svg>',svgContentId:11962761404},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 49\"><g transform=\"translate(0.214 0.871)\" id=\"ss12122311332_1\"><path d=\"M 5.997 42.075 L 42.936 47.268 C 45.036 47.563 46.085 47.71 46.944 47.415 C 47.7 47.154 48.354 46.661 48.812 46.006 C 49.333 45.262 49.481 44.212 49.776 42.112 L 53.329 16.825 C 53.624 14.725 53.771 13.676 53.475 12.816 C 53.215 12.06 52.722 11.406 52.068 10.947 C 51.323 10.426 50.274 10.278 48.174 9.983 L 27.909 7.134 C 26.79 6.977 25.373 6.672 24.117 5.406 C 22.862 4.141 23.931 5.221 22.608 3.867 C 21.286 2.513 20.562 2.172 19.262 1.989 L 11.777 0.937 C 9.677 0.642 8.628 0.494 7.769 0.79 C 7.013 1.05 6.359 1.543 5.901 2.198 C 5.379 2.943 5.232 3.993 4.937 6.093 L 0.843 35.233 C 0.548 37.332 0.4 38.382 0.696 39.242 C 0.956 39.998 1.449 40.652 2.104 41.111 C 2.848 41.632 3.898 41.78 5.997 42.075 Z\" fill=\"rgb(84,214,255)\"></path><path d=\"M 5.997 42.075 L 42.936 47.268 C 45.036 47.563 46.085 47.71 46.944 47.415 C 47.7 47.154 48.354 46.661 48.812 46.006 C 49.333 45.262 49.481 44.212 49.776 42.112 L 53.329 16.825 C 53.624 14.725 53.771 13.676 53.475 12.816 C 53.215 12.06 52.722 11.406 52.068 10.947 C 51.323 10.426 50.274 10.278 48.174 9.983 L 27.909 7.134 C 26.79 6.977 25.373 6.672 24.117 5.406 C 22.862 4.141 23.931 5.221 22.608 3.867 C 21.286 2.513 20.562 2.172 19.262 1.989 L 11.777 0.937 C 9.677 0.642 8.628 0.494 7.769 0.79 C 7.013 1.05 6.359 1.543 5.901 2.198 C 5.379 2.943 5.232 3.993 4.937 6.093 L 0.843 35.233 C 0.548 37.332 0.4 38.382 0.696 39.242 C 0.956 39.998 1.449 40.652 2.104 41.111 C 2.848 41.632 3.898 41.78 5.997 42.075 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 5.917)\" id=\"ss12122311332_4\"><path d=\"M 3.748 34.687 C 1.678 34.396 0 34.16 0 34.16 L 4.799 0 C 4.799 0 6.477 0.236 8.547 0.527 L 49.984 6.352 C 52.054 6.643 53.733 6.879 53.733 6.879 L 48.933 41.039 C 48.933 41.039 47.255 40.803 45.185 40.512 Z\" fill=\"rgb(84,214,255)\"></path></g></g></svg>',svgContentId:12122311332}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1q3scf\",\"data-framer-name\":\"Folder\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 114\"><g transform=\"translate(0.549 2.206)\" id=\"ss996681103_1\"><path d=\"M 13.956 96.425 L 99.924 108.507 C 104.81 109.194 107.252 109.537 109.252 108.849 C 111.011 108.243 112.533 107.096 113.6 105.573 C 114.812 103.84 115.156 101.398 115.842 96.512 L 124.11 37.682 C 124.797 32.797 125.14 30.354 124.452 28.355 C 123.846 26.596 122.699 25.074 121.176 24.007 C 119.443 22.794 117.001 22.451 112.115 21.764 L 64.952 15.136 C 62.347 14.77 59.049 14.059 56.127 11.116 C 53.205 8.173 55.694 10.684 52.616 7.534 C 49.538 4.383 47.853 3.591 44.829 3.165 L 27.407 0.717 C 22.522 0.031 20.08 -0.313 18.08 0.376 C 16.321 0.981 14.799 2.128 13.732 3.652 C 12.519 5.384 12.176 7.827 11.489 12.712 L 1.961 80.508 C 1.275 85.393 0.932 87.835 1.62 89.835 C 2.226 91.594 3.373 93.116 4.896 94.183 C 6.629 95.396 9.071 95.739 13.956 96.425 Z\" fill=\"rgb(84,214,255)\"></path><path d=\"M 13.956 96.425 L 99.924 108.507 C 104.81 109.194 107.252 109.537 109.252 108.849 C 111.011 108.243 112.533 107.096 113.6 105.573 C 114.812 103.84 115.156 101.398 115.842 96.512 L 124.11 37.682 C 124.797 32.797 125.14 30.354 124.452 28.355 C 123.846 26.596 122.699 25.074 121.176 24.007 C 119.443 22.794 117.001 22.451 112.115 21.764 L 64.952 15.136 C 62.347 14.77 59.049 14.059 56.127 11.116 C 53.205 8.173 55.694 10.684 52.616 7.534 C 49.538 4.383 47.853 3.591 44.829 3.165 L 27.407 0.717 C 22.522 0.031 20.08 -0.313 18.08 0.376 C 16.321 0.981 14.799 2.128 13.732 3.652 C 12.519 5.384 12.176 7.827 11.489 12.712 L 1.961 80.508 C 1.275 85.393 0.932 87.835 1.62 89.835 C 2.226 91.594 3.373 93.116 4.896 94.183 C 6.629 95.396 9.071 95.739 13.956 96.425 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 14.99)\" id=\"ss996681103_4\"><path d=\"M 8.723 80.7 C 3.905 80.023 0 79.474 0 79.474 L 11.169 0 C 11.169 0 15.075 0.549 19.892 1.226 L 116.327 14.779 C 121.145 15.456 125.05 16.005 125.05 16.005 L 113.881 95.479 C 113.881 95.479 109.976 94.93 105.158 94.253 Z\" fill=\"rgb(84,214,255)\"></path></g></g></svg>',svgContentId:996681103,withExternalLayout:true})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6fi91x hidden-72rtr7 hidden-1fwzrfg hidden-bazmqm\",\"data-framer-name\":\"Components / Mockup / iPhone\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pk6kkn\",\"data-border\":true,\"data-framer-name\":\"Body\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+119+72+833.2+0+0+7.827728271484375),positionX:\"center\",positionY:\"center\",sizes:\"182px\",src:\"https://framerusercontent.com/images/bQDxR4rxxtMehYLRlrXDTF6uQo.png\",srcSet:\"https://framerusercontent.com/images/bQDxR4rxxtMehYLRlrXDTF6uQo.png 726w\"}},nMlihs96b:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+119+72+775.2+0+7.000000000000085),positionX:\"center\",positionY:\"center\",sizes:\"174px\",src:\"https://framerusercontent.com/images/bQDxR4rxxtMehYLRlrXDTF6uQo.png\",srcSet:\"https://framerusercontent.com/images/bQDxR4rxxtMehYLRlrXDTF6uQo.png 726w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"182px\",src:\"https://framerusercontent.com/images/bQDxR4rxxtMehYLRlrXDTF6uQo.png\",srcSet:\"https://framerusercontent.com/images/bQDxR4rxxtMehYLRlrXDTF6uQo.png 726w\"},className:\"framer-97zw0i\",\"data-framer-name\":\"\u2747\uFE0F REPLACE IMG FILL\"})})]})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fnjbg8\",\"data-framer-name\":\"Section / Feature 1 Section\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qz1ui7\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1evqjc4\",\"data-border\":true,\"data-framer-name\":\"Bookmark Icon\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 71\"><g transform=\"translate(0.5 0.507)\" id=\"ss12053943339_1\"><g><defs><linearGradient id=\"idss12053943339_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 35 69.986 C 15.67 69.986 0 69.986 0 69.986 L 0 0 C 0 0 15.67 0 35 0 L 35 0 C 54.33 0 70 0 70 0 L 70 69.986 C 70 69.986 54.33 69.986 35 69.986 Z\" fill=\"url(#idss12053943339_2g1897533719)\"></path></g><path d=\"M 24.496 28.189 C 24.496 24.431 27.543 21.385 31.301 21.385 L 38.624 21.385 C 42.383 21.385 45.43 24.431 45.43 28.189 L 45.43 36.767 L 45.504 36.802 L 45.504 48.601 C 42.461 48.008 36.151 45.751 35.259 41.476 C 35.259 41.471 35.257 41.465 35.256 41.46 C 35.084 41.455 34.912 41.46 34.74 41.474 L 34.74 41.476 C 33.849 45.751 27.539 48.007 24.496 48.6 L 24.496 37.914 L 24.497 37.914 C 24.496 37.87 24.496 37.826 24.496 37.782 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:12053943339},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 71\"><g transform=\"translate(0.5 0.507)\" id=\"ss12053943339_1\"><g><defs><linearGradient id=\"idss12053943339_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 35 69.986 C 15.67 69.986 0 69.986 0 69.986 L 0 0 C 0 0 15.67 0 35 0 L 35 0 C 54.33 0 70 0 70 0 L 70 69.986 C 70 69.986 54.33 69.986 35 69.986 Z\" fill=\"url(#idss12053943339_2g1897533719)\"></path></g><path d=\"M 24.496 28.189 C 24.496 24.431 27.543 21.385 31.301 21.385 L 38.624 21.385 C 42.383 21.385 45.43 24.431 45.43 28.189 L 45.43 36.767 L 45.504 36.802 L 45.504 48.601 C 42.461 48.008 36.151 45.751 35.259 41.476 C 35.259 41.471 35.257 41.465 35.256 41.46 C 35.084 41.455 34.912 41.46 34.74 41.474 L 34.74 41.476 C 33.849 45.751 27.539 48.007 24.496 48.6 L 24.496 37.914 L 24.497 37.914 C 24.496 37.87 24.496 37.826 24.496 37.782 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:12053943339},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 71\"><g transform=\"translate(0.5 0.507)\" id=\"ss12053943339_1\"><g><defs><linearGradient id=\"idss12053943339_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 35 69.986 C 15.67 69.986 0 69.986 0 69.986 L 0 0 C 0 0 15.67 0 35 0 L 35 0 C 54.33 0 70 0 70 0 L 70 69.986 C 70 69.986 54.33 69.986 35 69.986 Z\" fill=\"url(#idss12053943339_2g1897533719)\"></path></g><path d=\"M 24.496 28.189 C 24.496 24.431 27.543 21.385 31.301 21.385 L 38.624 21.385 C 42.383 21.385 45.43 24.431 45.43 28.189 L 45.43 36.767 L 45.504 36.802 L 45.504 48.601 C 42.461 48.008 36.151 45.751 35.259 41.476 C 35.259 41.471 35.257 41.465 35.256 41.46 C 35.084 41.455 34.912 41.46 34.74 41.474 L 34.74 41.476 C 33.849 45.751 27.539 48.007 24.496 48.6 L 24.496 37.914 L 24.497 37.914 C 24.496 37.87 24.496 37.826 24.496 37.782 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:12053943339},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 71\"><g transform=\"translate(0.5 0.507)\" id=\"ss12053943339_1\"><g><defs><linearGradient id=\"idss12053943339_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 35 69.986 C 15.67 69.986 0 69.986 0 69.986 L 0 0 C 0 0 15.67 0 35 0 L 35 0 C 54.33 0 70 0 70 0 L 70 69.986 C 70 69.986 54.33 69.986 35 69.986 Z\" fill=\"url(#idss12053943339_2g1897533719)\"></path></g><path d=\"M 24.496 28.189 C 24.496 24.431 27.543 21.385 31.301 21.385 L 38.624 21.385 C 42.383 21.385 45.43 24.431 45.43 28.189 L 45.43 36.767 L 45.504 36.802 L 45.504 48.601 C 42.461 48.008 36.151 45.751 35.259 41.476 C 35.259 41.471 35.257 41.465 35.256 41.46 C 35.084 41.455 34.912 41.46 34.74 41.474 L 34.74 41.476 C 33.849 45.751 27.539 48.007 24.496 48.6 L 24.496 37.914 L 24.497 37.914 C 24.496 37.87 24.496 37.826 24.496 37.782 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:12053943339}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xjc9r0\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,radius:40,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 71\"><g transform=\"translate(0.5 0.507)\" id=\"ss3464008747_1\"><g><defs><linearGradient id=\"idss3464008747_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 35 69.986 C 15.67 69.986 0 69.986 0 69.986 L 0 0 C 0 0 15.67 0 35 0 L 35 0 C 54.33 0 70 0 70 0 L 70 69.986 C 70 69.986 54.33 69.986 35 69.986 Z\" fill=\"url(#idss3464008747_2g1897533719)\"></path></g><path d=\"M 24.496 28.189 C 24.496 24.431 27.543 21.385 31.301 21.385 L 38.624 21.385 C 42.383 21.385 45.43 24.431 45.43 28.189 L 45.43 36.767 L 45.504 36.802 L 45.504 48.601 C 42.461 48.008 36.151 45.751 35.259 41.476 C 35.259 41.471 35.257 41.465 35.256 41.46 C 35.084 41.455 34.912 41.46 34.74 41.474 L 34.74 41.476 C 33.849 45.751 27.539 48.007 24.496 48.6 L 24.496 37.914 L 24.497 37.914 C 24.496 37.87 24.496 37.826 24.496 37.782 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:3464008747,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xilunt\",\"data-framer-name\":\"Title & Sub\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 6)\"},children:[\"The all-in-one\",/*#__PURE__*/_jsx(\"br\",{}),\"bookmark manager\"]})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 6)\"},children:[\"The all-in-one\",/*#__PURE__*/_jsx(\"br\",{}),\"bookmark manager\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"59px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 6)\"},children:[\"The all-in-one\",/*#__PURE__*/_jsx(\"br\",{}),\"bookmark manager\"]})}),className:\"framer-ufoxox\",\"data-framer-name\":\"The all-in-one\\u2028bookmark manager\",fonts:[\"GF;Inter Tight-600\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 73, 86)\"},children:\"Save and Organize Your Web Finds Seamlessly\"})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 73, 86)\"},children:\"Save and Organize Your Web Finds Seamlessly\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 73, 86)\"},children:\"Save and Organize Your Web Finds Seamlessly\"})}),className:\"framer-m8h7gi\",\"data-framer-name\":\"Save and Organize Your Web Finds Seamlessly\",fonts:[\"GF;Inter Tight-300\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b1py8b\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jw3oio\",\"data-framer-name\":\"Components / Feature 1\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3faz6\",\"data-framer-name\":\"Title & Sub\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Organize Like a Pro\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Organize Like a Pro\"})}),className:\"framer-1axx4kh\",\"data-framer-name\":\"Organize Like a Pro\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Effortless organization, unmatched simplicity.\"})}),className:\"framer-1tt0pkc\",\"data-framer-name\":\"Effortless organization, unmatched simplicity.\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sufcv6\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2072.2+0+439+0+0+40+234+0),positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 140px) * 1.1102 + 202px)`,src:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png\",srcSet:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=1024 928w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=2048 1857w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png 2420w\"}},LA85W3Ouo:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2340.2+0+439+0+40+234+0),positionX:\"center\",positionY:\"center\",sizes:\"722px\",src:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png\",srcSet:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=1024 928w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=2048 1857w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png 2420w\"}},lOqq2VQGk:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1546.2+0+319+0+0+40+234+0),positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 112px) * 1.193 + 176px)`,src:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png\",srcSet:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=1024 928w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=2048 1857w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png 2420w\"}},nMlihs96b:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1438.2+0+535+0+0+32+234+0),positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 96px) * 1.2143 + 178.5px)`,src:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png\",srcSet:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=1024 928w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=2048 1857w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png 2420w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2337.2+0+439+0+40+234+0),positionX:\"center\",positionY:\"center\",sizes:\"605px\",src:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png\",srcSet:\"https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=1024 928w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png?scale-down-to=2048 1857w,https://framerusercontent.com/images/X6Aa5sOkKY6vUFuanAadvnhD5z4.png 2420w\"},className:\"framer-mzff0h\",\"data-framer-name\":\"CleanShot 2023-11-24 at 22.03 1\",style:{transformPerspective:1200}})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ow29b\",\"data-framer-name\":\"Sub Content Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h048ud\",\"data-framer-name\":\"Sub Content 2\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1043iub\",\"data-framer-name\":\"Title & Sub\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Customizable Views\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Customizable Views\"})}),className:\"framer-17co7j6\",\"data-framer-name\":\"Customizable Views\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"View your bookmarks your way\"})}),className:\"framer-1h9pbke\",\"data-framer-name\":\"View your bookmarks your way\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y57ocs\",\"data-framer-name\":\"Image in Frame\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r0hdvy\",\"data-framer-name\":\"Group 136\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2072.2+0+439+0+432+0+0+40+234+0+16.764407018957826),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png\",srcSet:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png 1067w\"}},LA85W3Ouo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2340.2+0+439+0+0+0+40+234+0+16.764407018957826),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png\",srcSet:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png 1067w\"}},lOqq2VQGk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1546.2+0+319+0+432+0+0+40+234+0+16.764407018957826),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png\",srcSet:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png 1067w\"},whileHover:undefined},nMlihs96b:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1438.2+0+535+0+432+0+0+32+234+0+16.764407018957826),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png\",srcSet:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png 1067w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2337.2+0+439+0+0+0+40+234+0+16.764407018957826),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png\",srcSet:\"https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xgEeUNcyWsNF0ZcWGZET9AERRCQ.png 1067w\"},className:\"framer-b91hsd\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},whileHover:animation18})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2072.2+0+439+0+432+0+0+40+234+0+7.090978470351672),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png\",srcSet:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png 1026w\"}},LA85W3Ouo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2340.2+0+439+0+0+0+40+234+0+7.090978470351672),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png\",srcSet:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png 1026w\"}},lOqq2VQGk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1546.2+0+319+0+432+0+0+40+234+0+7.090978470351672),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png\",srcSet:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png 1026w\"},whileHover:undefined},nMlihs96b:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1438.2+0+535+0+432+0+0+32+234+0+7.090978470351672),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png\",srcSet:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png 1026w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2337.2+0+439+0+0+0+40+234+0+7.090978470351672),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png\",srcSet:\"https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iSA1SceunIgOPc9Vlzd59CikCdo.png 1026w\"},className:\"framer-d4bcyk\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},whileHover:animation18})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2072.2+0+439+0+432+0+0+40+234+0+-.16999256036609722),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png\",srcSet:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png 1027w\"}},LA85W3Ouo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2340.2+0+439+0+0+0+40+234+0+-.16999256036609722),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png\",srcSet:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png 1027w\"}},lOqq2VQGk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1546.2+0+319+0+432+0+0+40+234+0+-.16999256036609722),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png\",srcSet:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png 1027w\"},whileHover:undefined},nMlihs96b:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1438.2+0+535+0+432+0+0+32+234+0+-.16999256036609722),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png\",srcSet:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png 1027w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2337.2+0+439+0+0+0+40+234+0+-.16999256036609722),positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png\",srcSet:\"https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mzi8yIIlC650xtT7yYfrrERMjJg.png 1027w\"},className:\"framer-3atb1w\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},whileHover:animation18})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2072.2+0+439+0+432+0+0+40+234+0+14.481336338757188),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png\",srcSet:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=512 512w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png 1067w\"}},LA85W3Ouo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2340.2+0+439+0+0+0+40+234+0+14.481336338757188),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png\",srcSet:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=512 512w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png 1067w\"}},lOqq2VQGk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1546.2+0+319+0+432+0+0+40+234+0+14.481336338757188),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png\",srcSet:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=512 512w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png 1067w\"},whileHover:undefined},nMlihs96b:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+1438.2+0+535+0+432+0+0+32+234+0+14.481336338757188),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png\",srcSet:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=512 512w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png 1067w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+2337.2+0+439+0+0+0+40+234+0+14.481336338757188),positionX:\"center\",positionY:\"center\",sizes:\"264px\",src:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png\",srcSet:\"https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=512 512w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tJPQbhR5NpiuNudEI8KRKL05Lc.png 1067w\"},className:\"framer-l8ozfo\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},whileHover:animation18})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kmg3w2\",\"data-framer-name\":\"Sub Content 3 & 4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e48juv\",\"data-framer-name\":\"Sub Content 3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x15ebu\",\"data-framer-name\":\"Image\",style:{rotate:-180},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-60,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-z0qmyo\",\"data-framer-name\":\"Rotated Instances\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5rumso\",\"data-framer-name\":\"Rotated Instance 8\",style:{rotate:180,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.977 0.5)\" id=\"ss9811040681_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(129,217,255)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss9811040681_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(129,217,255)\"></path></g></g></svg>',svgContentId:9811040681},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.977 0.5)\" id=\"ss9811040681_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(129,217,255)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss9811040681_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(129,217,255)\"></path></g></g></svg>',svgContentId:9811040681},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.977 0.5)\" id=\"ss9811040681_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(129,217,255)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss9811040681_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(129,217,255)\"></path></g></g></svg>',svgContentId:9811040681},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.977 0.5)\" id=\"ss9811040681_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(129,217,255)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss9811040681_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(129,217,255)\"></path></g></g></svg>',svgContentId:9811040681}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ocuhx9\",\"data-framer-name\":\"Mask group\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.977 0.5)\" id=\"ss1221106089_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(129,217,255)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss1221106089_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(129,217,255)\"></path></g></g></svg>',svgContentId:1221106089,withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rawlj1\",\"data-framer-name\":\"Rotated Instance 7\",style:{rotate:180,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.021 0.5)\" id=\"ss11553109703_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(163,138,251)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss11553109703_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(163,138,251)\"></path></g></g></svg>',svgContentId:11553109703},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.021 0.5)\" id=\"ss11553109703_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(163,138,251)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss11553109703_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(163,138,251)\"></path></g></g></svg>',svgContentId:11553109703},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.021 0.5)\" id=\"ss11553109703_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(163,138,251)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss11553109703_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(163,138,251)\"></path></g></g></svg>',svgContentId:11553109703},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.021 0.5)\" id=\"ss11553109703_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(163,138,251)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss11553109703_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(163,138,251)\"></path></g></g></svg>',svgContentId:11553109703}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ndsenq\",\"data-framer-name\":\"Mask group\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.021 0.5)\" id=\"ss2963175111_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(163,138,251)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss2963175111_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(163,138,251)\"></path></g></g></svg>',svgContentId:2963175111,withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12ya812\",\"data-framer-name\":\"Rotated Instance 6\",style:{rotate:180,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.064 0.5)\" id=\"ss12387237901_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(123,218,173)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss12387237901_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(123,218,173)\"></path></g></g></svg>',svgContentId:12387237901},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.064 0.5)\" id=\"ss12387237901_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(123,218,173)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss12387237901_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(123,218,173)\"></path></g></g></svg>',svgContentId:12387237901},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.064 0.5)\" id=\"ss12387237901_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(123,218,173)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss12387237901_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(123,218,173)\"></path></g></g></svg>',svgContentId:12387237901},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.064 0.5)\" id=\"ss12387237901_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(123,218,173)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss12387237901_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(123,218,173)\"></path></g></g></svg>',svgContentId:12387237901}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1poxrjs\",\"data-framer-name\":\"Mask group\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.064 0.5)\" id=\"ss3797303309_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(123,218,173)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss3797303309_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(123,218,173)\"></path></g></g></svg>',svgContentId:3797303309,withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-euf8h3\",\"data-framer-name\":\"Rotated Instance 5\",style:{rotate:180,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.108 0.5)\" id=\"ss10679029667_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(224,227,230)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss10679029667_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(224,227,230)\"></path></g></g></svg>',svgContentId:10679029667},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.108 0.5)\" id=\"ss10679029667_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(224,227,230)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss10679029667_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(224,227,230)\"></path></g></g></svg>',svgContentId:10679029667},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.108 0.5)\" id=\"ss10679029667_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(224,227,230)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss10679029667_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(224,227,230)\"></path></g></g></svg>',svgContentId:10679029667},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.108 0.5)\" id=\"ss10679029667_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(224,227,230)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss10679029667_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(224,227,230)\"></path></g></g></svg>',svgContentId:10679029667}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ga1n7d\",\"data-framer-name\":\"Mask group\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 82 70\"><g transform=\"translate(0.108 0.5)\" id=\"ss2089095075_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(224,227,230)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.189 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.189 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.559 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss2089095075_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(224,227,230)\"></path></g></g></svg>',svgContentId:2089095075,withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12d0poj\",\"data-framer-name\":\"Rotated Instance 9\",style:{rotate:180,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.151 0.5)\" id=\"ss9340596651_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(255,212,129)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss9340596651_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(255,212,129)\"></path></g></g></svg>',svgContentId:9340596651},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.151 0.5)\" id=\"ss9340596651_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(255,212,129)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss9340596651_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(255,212,129)\"></path></g></g></svg>',svgContentId:9340596651},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.151 0.5)\" id=\"ss9340596651_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(255,212,129)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss9340596651_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(255,212,129)\"></path></g></g></svg>',svgContentId:9340596651},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.151 0.5)\" id=\"ss9340596651_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(255,212,129)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss9340596651_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(255,212,129)\"></path></g></g></svg>',svgContentId:9340596651}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lzw2ax\",\"data-framer-name\":\"Mask group\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 70\"><g transform=\"translate(0.151 0.5)\" id=\"ss750662059_1\"><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgb(255,212,129)\"></path><path d=\"M 10.034 68.807 L 71.838 68.807 C 75.35 68.807 77.107 68.807 78.448 68.124 C 79.628 67.523 80.587 66.563 81.188 65.383 C 81.872 64.042 81.872 62.286 81.872 58.773 L 81.872 16.479 C 81.872 12.967 81.872 11.211 81.188 9.869 C 80.587 8.689 79.628 7.73 78.448 7.129 C 77.107 6.445 75.35 6.445 71.838 6.445 L 37.931 6.445 C 36.059 6.445 33.663 6.271 31.312 4.486 C 28.96 2.7 30.963 4.224 28.481 2.308 C 25.999 0.392 24.733 0 22.558 0 L 10.034 0 C 6.522 0 4.766 0 3.424 0.683 C 2.244 1.285 1.285 2.244 0.684 3.424 C 0 4.765 0 6.522 0 10.034 L 0 58.773 C 0 62.286 0 64.042 0.684 65.383 C 1.285 66.563 2.244 67.523 3.424 68.124 C 4.766 68.807 6.522 68.807 10.034 68.807 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 11.669)\" id=\"ss750662059_4\"><path d=\"M 75.601 0 L 6.271 0 C 2.808 0 0 2.808 0 6.271 L 0 50.865 C 0 54.329 2.808 57.136 6.271 57.136 L 75.601 57.136 C 79.064 57.136 81.872 54.329 81.872 50.865 L 81.872 6.271 C 81.872 2.808 79.064 0 75.601 0 Z\" fill=\"rgb(255,212,129)\"></path></g></g></svg>',svgContentId:750662059,withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t5n38f\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d9k0b3\",\"data-framer-name\":\"Title & Sub\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Personalize to Your Liking\"})})},lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\"},children:\"Personalize to Your Liking\"})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\"},children:\"Personalize to Your Liking\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Personalize to Your Liking\"})}),className:\"framer-msd3qr\",\"data-framer-name\":\"Personalize to Your Liking\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Tailored experience: custom boards, icons, a seamless browsing experience\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Tailored experience: custom boards, icons, a seamless browsing experience\"})}),className:\"framer-6xhiv4\",\"data-framer-name\":\"Tailored experience: custom boards, icons, a seamless browsing experience\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-192t6v\",\"data-framer-name\":\"Sub Content 4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x701so\",\"data-framer-name\":\"Title & Sub\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Highlights\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Highlights\"})}),className:\"framer-16l374k\",\"data-framer-name\":\"Highlights\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Highlight and save texts on the web, easily.\"})}),className:\"framer-15rm81h\",\"data-framer-name\":\"Highlight and save texts on the web, easily.\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12hlwnp\",\"data-framer-name\":\"Image\",style:{rotate:-2,transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svgContentId:11720640872},LA85W3Ouo:{svgContentId:11720640872},lOqq2VQGk:{svgContentId:11720640872},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 367 215\"><path d=\"M 1.932 51.272 L 360.811 38.755\" fill=\"transparent\" stroke-width=\"0.75\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\"></path><path d=\"M 2.676 72.553 L 361.555 60.036\" fill=\"transparent\" stroke-width=\"0.75\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\"></path><path d=\"M 3.42 93.835 L 362.299 81.319\" fill=\"transparent\" stroke-width=\"0.75\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\"></path><path d=\"M 4.164 115.117 L 363.043 102.6\" fill=\"transparent\" stroke-width=\"0.75\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\"></path><path d=\"M 4.902 136.212 L 363.78 123.696\" fill=\"transparent\" stroke-width=\"0.75\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\"></path><path d=\"M 5.646 157.494 L 364.525 144.977\" fill=\"transparent\" stroke-width=\"0.75\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\"></path><path d=\"M 6.391 178.776 L 365.269 166.259\" fill=\"transparent\" stroke-width=\"0.75\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\"></path><path d=\"M 7.135 200.058 L 366.014 187.541\" fill=\"transparent\" stroke-width=\"0.75\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\"></path><path d=\"M 7.011 221.841 L 365.89 209.325\" fill=\"transparent\" stroke-width=\"0.75\" stroke=\"rgb(141,180,225)\" stroke-miterlimit=\"10\"></path><path d=\"M 28.522 214.38 L 21.472 12.762\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"rgb(251,214,234)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11705529707}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f0unwe\",\"data-framer-name\":\"Notebook Lines\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 387 227\"><path d=\"M 2.038 54.133 L 380.474 40.918\" fill=\"transparent\" stroke-width=\"0.788889\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 2.822 76.602 L 381.258 63.387\" fill=\"transparent\" stroke-width=\"0.788889\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 3.607 99.073 L 382.043 85.858\" fill=\"transparent\" stroke-width=\"0.788889\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 4.391 121.542 L 382.827 108.327\" fill=\"transparent\" stroke-width=\"0.788889\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 5.169 143.815 L 383.605 130.6\" fill=\"transparent\" stroke-width=\"0.788889\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 5.954 166.284 L 384.39 153.069\" fill=\"transparent\" stroke-width=\"0.788889\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.739 188.754 L 385.175 175.539\" fill=\"transparent\" stroke-width=\"0.788889\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 7.524 211.224 L 385.96 198.008\" fill=\"transparent\" stroke-width=\"0.788889\" stroke=\"rgb(202,221,241)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 7.393 234.223 L 385.829 221.008\" fill=\"transparent\" stroke-width=\"0.788889\" stroke=\"rgb(141,180,225)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 30.076 226.345 L 22.642 13.475\" fill=\"transparent\" stroke-width=\"1.97222\" stroke=\"rgb(251,214,234)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:3130706280,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2m5bos\",\"data-framer-name\":\"Group 106\",style:{rotate:-4},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18a7tp4\",\"data-framer-name\":\"Group 107\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7ybvwm\",\"data-framer-name\":\"Rectangle 5635\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:199,style:{rotate:6},svg:'<svg width=\"199\" height=\"45\" viewBox=\"0 0 199 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.27344 22.0447L193.181 1.29157L197.039 7.57838L193.72 22.9412L3.20875 44.3232L4.26676 31.2818L8.27344 22.0447Z\" fill=\"#FFC9F6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-line-height\":\"23.44px\",\"--framer-text-alignment\":\"center\"},children:\"Everyone thinks of changing the world, but no one thinks of changing himself.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"23.44px\",\"--framer-line-height\":\"23.44px\",\"--framer-text-alignment\":\"center\"},children:\"Everyone thinks of changing the world, but no one thinks of changing himself.\"})}),className:\"framer-kl90ps\",\"data-framer-name\":\"Everyone thinks of changing the world, but no one thinks of changing himself.\",fonts:[\"GF;Kalam-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-line-height\":\"24.24px\",\"--framer-text-alignment\":\"center\"},children:\"\u2014 Tolstoy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2FsYW0tcmVndWxhcg==\",\"--framer-font-family\":'\"Kalam\", sans-serif',\"--framer-font-size\":\"23.44px\",\"--framer-line-height\":\"24.24px\",\"--framer-text-alignment\":\"center\"},children:\"\u2014 Tolstoy\"})}),className:\"framer-1pavx6n\",\"data-framer-name\":\"\u2014 Tolstoy\",fonts:[\"GF;Kalam-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pjg1ir\",\"data-framer-name\":\"Section / Feature 2 Section\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p9wkfv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uxc2e\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4h15f7\",\"data-framer-name\":\"Frame 27072\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation22,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition13,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pw50nq\",\"data-border\":true,\"data-framer-name\":\"Frame 27074\",style:{rotate:9},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 23\"><g transform=\"translate(0.749 0.789)\" id=\"ss10999498260_1\"><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgb(74,196,143)\"></path><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 2.35)\" id=\"ss10999498260_4\"><path d=\"M 1.468 13.812 C 0.657 13.569 0 13.373 0 13.373 L 3.996 0 C 3.996 0 4.654 0.196 5.464 0.439 L 21.691 5.288 C 22.502 5.53 23.159 5.727 23.159 5.727 L 19.163 19.1 C 19.163 19.1 18.506 18.903 17.695 18.661 Z\" fill=\"rgb(74,196,143)\"></path></g></g></svg>',svgContentId:10999498260},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 23\"><g transform=\"translate(0.749 0.789)\" id=\"ss10999498260_1\"><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgb(74,196,143)\"></path><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 2.35)\" id=\"ss10999498260_4\"><path d=\"M 1.468 13.812 C 0.657 13.569 0 13.373 0 13.373 L 3.996 0 C 3.996 0 4.654 0.196 5.464 0.439 L 21.691 5.288 C 22.502 5.53 23.159 5.727 23.159 5.727 L 19.163 19.1 C 19.163 19.1 18.506 18.903 17.695 18.661 Z\" fill=\"rgb(74,196,143)\"></path></g></g></svg>',svgContentId:10999498260},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 23\"><g transform=\"translate(0.749 0.789)\" id=\"ss10999498260_1\"><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgb(74,196,143)\"></path><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 2.35)\" id=\"ss10999498260_4\"><path d=\"M 1.468 13.812 C 0.657 13.569 0 13.373 0 13.373 L 3.996 0 C 3.996 0 4.654 0.196 5.464 0.439 L 21.691 5.288 C 22.502 5.53 23.159 5.727 23.159 5.727 L 19.163 19.1 C 19.163 19.1 18.506 18.903 17.695 18.661 Z\" fill=\"rgb(74,196,143)\"></path></g></g></svg>',svgContentId:10999498260},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 23\"><g transform=\"translate(0.749 0.789)\" id=\"ss10999498260_1\"><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgb(74,196,143)\"></path><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 2.35)\" id=\"ss10999498260_4\"><path d=\"M 1.468 13.812 C 0.657 13.569 0 13.373 0 13.373 L 3.996 0 C 3.996 0 4.654 0.196 5.464 0.439 L 21.691 5.288 C 22.502 5.53 23.159 5.727 23.159 5.727 L 19.163 19.1 C 19.163 19.1 18.506 18.903 17.695 18.661 Z\" fill=\"rgb(74,196,143)\"></path></g></g></svg>',svgContentId:10999498260}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-116ucix\",\"data-framer-name\":\"Folder\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 23\"><g transform=\"translate(0.749 0.789)\" id=\"ss2409563668_1\"><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgb(74,196,143)\"></path><path d=\"M 2.348 16.425 L 16.814 20.748 C 17.636 20.993 18.047 21.116 18.409 21.05 C 18.727 20.992 19.019 20.834 19.242 20.6 C 19.496 20.334 19.619 19.923 19.864 19.101 L 22.823 9.202 C 23.068 8.38 23.191 7.969 23.125 7.607 C 23.067 7.289 22.909 6.997 22.675 6.774 C 22.409 6.52 21.998 6.397 21.176 6.152 L 13.24 3.78 C 12.802 3.649 12.253 3.441 11.828 2.858 C 11.402 2.276 11.764 2.773 11.317 2.151 C 10.87 1.528 10.602 1.348 10.093 1.196 L 7.161 0.32 C 6.339 0.074 5.928 -0.048 5.566 0.018 C 5.248 0.076 4.956 0.233 4.733 0.467 C 4.479 0.734 4.357 1.145 4.111 1.967 L 0.702 13.375 C 0.456 14.197 0.333 14.608 0.399 14.969 C 0.458 15.288 0.615 15.579 0.849 15.803 C 1.115 16.056 1.526 16.179 2.348 16.425 Z\" fill=\"rgba(0,0,0,0.3)\"></path><g transform=\"translate(0 2.35)\" id=\"ss2409563668_4\"><path d=\"M 1.468 13.812 C 0.657 13.569 0 13.373 0 13.373 L 3.996 0 C 3.996 0 4.654 0.196 5.464 0.439 L 21.691 5.288 C 22.502 5.53 23.159 5.727 23.159 5.727 L 19.163 19.1 C 19.163 19.1 18.506 18.903 17.695 18.661 Z\" fill=\"rgb(74,196,143)\"></path></g></g></svg>',svgContentId:2409563668,withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nMlihs96b:{__framer__exit:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wjqsit\",\"data-framer-name\":\"Group 109\",style:{rotate:-90,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 325 325\"><path d=\"M 320.516 162.698 C 320.516 75.516 249.842 4.841 162.659 4.841 C 75.477 4.841 4.802 75.516 4.802 162.698 C 4.802 249.88 75.477 320.555 162.659 320.555 C 249.842 320.555 320.516 249.88 320.516 162.698 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 311.34 162.698 C 311.34 80.584 244.774 14.018 162.66 14.018 C 80.546 14.018 13.98 80.584 13.98 162.698 C 13.98 244.812 80.546 311.378 162.66 311.378 C 244.774 311.378 311.34 244.812 311.34 162.698 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 302.163 162.699 C 302.163 85.653 239.705 23.195 162.66 23.195 C 85.614 23.195 23.157 85.653 23.157 162.699 C 23.157 239.743 85.614 302.201 162.66 302.201 C 239.705 302.201 302.163 239.743 302.163 162.699 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 292.985 162.699 C 292.985 90.721 234.637 32.372 162.659 32.372 C 90.682 32.372 32.334 90.722 32.334 162.699 C 32.334 234.675 90.682 293.025 162.659 293.025 C 234.637 293.025 292.985 234.675 292.985 162.699 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 283.808 162.699 C 283.808 95.79 229.568 41.55 162.659 41.55 C 95.75 41.55 41.51 95.79 41.51 162.699 C 41.51 229.607 95.75 283.847 162.659 283.847 C 229.568 283.847 283.808 229.607 283.808 162.699 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 274.631 162.698 C 274.631 100.858 224.499 50.726 162.659 50.726 C 100.819 50.726 50.687 100.858 50.687 162.698 C 50.687 224.538 100.819 274.67 162.659 274.67 C 224.499 274.67 274.631 224.538 274.631 162.698 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 265.46 162.697 C 265.46 105.923 219.434 59.898 162.66 59.898 C 105.885 59.898 59.86 105.923 59.86 162.697 C 59.86 219.472 105.885 265.498 162.66 265.498 C 219.434 265.498 265.46 219.472 265.46 162.697 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 256.282 162.699 C 256.282 110.992 214.366 69.076 162.659 69.076 C 110.953 69.076 69.037 110.992 69.037 162.699 C 69.037 214.405 110.953 256.321 162.659 256.321 C 214.366 256.321 256.282 214.405 256.282 162.699 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 247.105 162.698 C 247.105 116.06 209.297 78.252 162.659 78.252 C 116.021 78.252 78.214 116.06 78.214 162.698 C 78.214 209.336 116.021 247.144 162.659 247.144 C 209.297 247.144 247.105 209.336 247.105 162.698 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 237.928 162.699 C 237.928 121.129 204.229 87.43 162.66 87.43 C 121.091 87.43 87.392 121.129 87.392 162.699 C 87.392 204.269 121.091 237.968 162.66 237.968 C 204.229 237.968 237.928 204.269 237.928 162.699 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 228.751 162.698 C 228.751 126.197 199.161 96.607 162.66 96.607 C 126.159 96.607 96.568 126.197 96.568 162.698 C 96.568 199.199 126.159 228.79 162.66 228.79 C 199.161 228.79 228.751 199.199 228.751 162.698 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 219.579 162.699 C 219.579 131.263 194.096 105.779 162.659 105.779 C 131.224 105.779 105.74 131.263 105.74 162.699 C 105.74 194.134 131.224 219.618 162.659 219.618 C 194.096 219.618 219.579 194.134 219.579 162.699 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 210.402 162.699 C 210.402 136.331 189.027 114.956 162.659 114.956 C 136.292 114.956 114.917 136.331 114.917 162.699 C 114.917 189.066 136.292 210.441 162.659 210.441 C 189.027 210.441 210.402 189.066 210.402 162.699 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 201.225 162.699 C 201.225 141.4 183.958 124.134 162.659 124.134 C 141.36 124.134 124.094 141.4 124.094 162.699 C 124.094 183.998 141.36 201.264 162.659 201.264 C 183.958 201.264 201.225 183.998 201.225 162.699 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 192.048 162.697 C 192.048 146.466 178.891 133.309 162.66 133.309 C 146.429 133.309 133.272 146.466 133.272 162.697 C 133.272 178.928 146.429 192.085 162.66 192.085 C 178.891 192.085 192.048 178.928 192.048 162.697 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 182.871 162.697 C 182.871 151.535 173.822 142.486 162.66 142.486 C 151.497 142.486 142.448 151.535 142.448 162.697 C 142.448 173.86 151.497 182.909 162.66 182.909 C 173.822 182.909 182.871 173.86 182.871 162.697 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9963779306},LA85W3Ouo:{svgContentId:10612311081},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 347 347\"><path d=\"M 342.213 173.711 C 342.213 80.627 266.754 5.168 173.67 5.168 C 80.586 5.168 5.127 80.627 5.127 173.711 C 5.127 266.795 80.586 342.254 173.67 342.254 C 266.754 342.254 342.213 266.795 342.213 173.711 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 332.415 173.711 C 332.415 86.039 261.343 14.967 173.671 14.967 C 85.999 14.967 14.926 86.039 14.926 173.711 C 14.926 261.384 85.999 332.456 173.671 332.456 C 261.343 332.456 332.415 261.384 332.415 173.711 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 322.617 173.712 C 322.617 91.451 255.931 24.765 173.671 24.765 C 91.41 24.765 24.724 91.451 24.724 173.712 C 24.724 255.972 91.41 322.658 173.671 322.658 C 255.931 322.658 322.617 255.972 322.617 173.712 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 312.818 173.712 C 312.818 96.862 250.52 34.564 173.67 34.564 C 96.821 34.564 34.522 96.863 34.522 173.712 C 34.522 250.561 96.821 312.86 173.67 312.86 C 250.52 312.86 312.818 250.561 312.818 173.712 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 303.02 173.712 C 303.02 102.274 245.108 44.362 173.67 44.362 C 102.232 44.362 44.32 102.274 44.32 173.712 C 44.32 245.15 102.232 303.062 173.67 303.062 C 245.108 303.062 303.02 245.15 303.02 173.712 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 293.222 173.711 C 293.222 107.685 239.696 54.16 173.67 54.16 C 107.644 54.16 54.119 107.685 54.119 173.711 C 54.119 239.738 107.644 293.263 173.67 293.263 C 239.696 293.263 293.222 239.738 293.222 173.711 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 283.429 173.711 C 283.429 113.093 234.288 63.952 173.671 63.952 C 113.053 63.952 63.912 113.093 63.912 173.711 C 63.912 234.329 113.053 283.47 173.671 283.47 C 234.288 283.47 283.429 234.329 283.429 173.711 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 273.631 173.712 C 273.631 118.506 228.877 73.752 173.67 73.752 C 118.464 73.752 73.71 118.506 73.71 173.712 C 73.71 228.918 118.464 273.672 173.67 273.672 C 228.877 273.672 273.631 228.918 273.631 173.712 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 263.832 173.711 C 263.832 123.916 223.465 83.549 173.67 83.549 C 123.875 83.549 83.508 123.916 83.508 173.711 C 83.508 223.506 123.875 263.873 173.67 263.873 C 223.465 263.873 263.832 223.506 263.832 173.711 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 254.034 173.712 C 254.034 129.329 218.054 93.348 173.671 93.348 C 129.287 93.348 93.307 129.329 93.307 173.712 C 93.307 218.096 129.287 254.076 173.671 254.076 C 218.054 254.076 254.034 218.096 254.034 173.712 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 244.236 173.711 C 244.236 134.74 212.643 103.146 173.671 103.146 C 134.698 103.146 103.105 134.74 103.105 173.711 C 103.105 212.684 134.698 244.277 173.671 244.277 C 212.643 244.277 244.236 212.684 244.236 173.711 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 234.442 173.712 C 234.442 140.148 207.234 112.94 173.67 112.94 C 140.107 112.94 112.898 140.148 112.898 173.712 C 112.898 207.275 140.107 234.484 173.67 234.484 C 207.234 234.484 234.442 207.275 234.442 173.712 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 224.645 173.712 C 224.645 145.56 201.822 122.738 173.67 122.738 C 145.518 122.738 122.696 145.56 122.696 173.712 C 122.696 201.864 145.518 224.687 173.67 224.687 C 201.822 224.687 224.645 201.864 224.645 173.712 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 214.846 173.712 C 214.846 150.971 196.411 132.537 173.67 132.537 C 150.929 132.537 132.494 150.971 132.494 173.712 C 132.494 196.453 150.929 214.888 173.67 214.888 C 196.411 214.888 214.846 196.453 214.846 173.712 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 205.048 173.711 C 205.048 156.381 191 142.333 173.671 142.333 C 156.341 142.333 142.293 156.381 142.293 173.711 C 142.293 191.04 156.341 205.088 173.671 205.088 C 191 205.088 205.048 191.04 205.048 173.711 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 195.25 173.711 C 195.25 161.793 185.589 152.131 173.671 152.131 C 161.752 152.131 152.091 161.793 152.091 173.711 C 152.091 185.629 161.752 195.29 173.671 195.29 C 185.589 195.29 195.25 185.629 195.25 173.711 Z\" fill=\"transparent\" stroke-width=\"5.34\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8842849579},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 261 261\"><path d=\"M 257.399 130.659 C 257.399 60.645 200.642 3.888 130.628 3.888 C 60.614 3.888 3.856 60.645 3.856 130.659 C 3.856 200.673 60.614 257.43 130.628 257.43 C 200.642 257.43 257.399 200.673 257.399 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 250.03 130.659 C 250.03 64.715 196.572 11.257 130.628 11.257 C 64.685 11.257 11.227 64.715 11.227 130.659 C 11.227 196.603 64.685 250.061 130.628 250.061 C 196.572 250.061 250.03 196.603 250.03 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 242.66 130.659 C 242.66 68.786 192.501 18.628 130.628 18.628 C 68.755 18.628 18.597 68.786 18.597 130.659 C 18.597 192.532 68.755 242.691 130.628 242.691 C 192.501 242.691 242.66 192.532 242.66 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 235.29 130.659 C 235.29 72.856 188.431 25.998 130.628 25.998 C 72.825 25.998 25.966 72.856 25.966 130.659 C 25.966 188.462 72.825 235.321 130.628 235.321 C 188.431 235.321 235.29 188.462 235.29 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 227.92 130.659 C 227.92 76.926 184.361 33.368 130.628 33.368 C 76.895 33.368 33.336 76.926 33.336 130.659 C 33.336 184.392 76.895 227.951 130.628 227.951 C 184.361 227.951 227.92 184.392 227.92 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 220.55 130.659 C 220.55 80.997 180.29 40.737 130.628 40.737 C 80.966 40.737 40.706 80.997 40.706 130.659 C 40.706 180.321 80.966 220.581 130.628 220.581 C 180.29 220.581 220.55 180.321 220.55 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 213.184 130.658 C 213.184 85.064 176.223 48.102 130.628 48.102 C 85.034 48.102 48.072 85.064 48.072 130.658 C 48.072 176.253 85.034 213.215 130.628 213.215 C 176.223 213.215 213.184 176.253 213.184 130.658 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 205.814 130.659 C 205.814 89.135 172.153 55.473 130.628 55.473 C 89.104 55.473 55.442 89.135 55.442 130.659 C 55.442 172.184 89.104 205.845 130.628 205.845 C 172.153 205.845 205.814 172.184 205.814 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 198.444 130.659 C 198.444 93.205 168.082 62.842 130.628 62.842 C 93.174 62.842 62.812 93.205 62.812 130.659 C 62.812 168.113 93.174 198.475 130.628 198.475 C 168.082 198.475 198.444 168.113 198.444 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 191.075 130.659 C 191.075 97.276 164.012 70.213 130.628 70.213 C 97.245 70.213 70.182 97.276 70.182 130.659 C 70.182 164.044 97.245 191.106 130.628 191.106 C 164.012 191.106 191.075 164.044 191.075 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 183.705 130.659 C 183.705 101.346 159.942 77.583 130.628 77.583 C 101.315 77.583 77.552 101.346 77.552 130.659 C 77.552 159.972 101.315 183.736 130.628 183.736 C 159.942 183.736 183.705 159.972 183.705 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 176.339 130.659 C 176.339 105.414 155.874 84.949 130.628 84.949 C 105.383 84.949 84.917 105.414 84.917 130.659 C 84.917 155.905 105.383 176.37 130.628 176.37 C 155.874 176.37 176.339 155.905 176.339 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 168.969 130.659 C 168.969 109.484 151.803 92.319 130.628 92.319 C 109.453 92.319 92.287 109.484 92.287 130.659 C 92.287 151.835 109.453 169.001 130.628 169.001 C 151.803 169.001 168.969 151.835 168.969 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 161.599 130.659 C 161.599 113.555 147.733 99.689 130.628 99.689 C 113.523 99.689 99.657 113.555 99.657 130.659 C 99.657 147.765 113.523 161.631 130.628 161.631 C 147.733 161.631 161.599 147.765 161.599 130.659 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 154.229 130.658 C 154.229 117.624 143.663 107.057 130.628 107.057 C 117.594 107.057 107.027 117.624 107.027 130.658 C 107.027 143.693 117.594 154.259 130.628 154.259 C 143.663 154.259 154.229 143.693 154.229 130.658 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 146.859 130.658 C 146.859 121.694 139.593 114.427 130.628 114.427 C 121.664 114.427 114.397 121.694 114.397 130.658 C 114.397 139.623 121.664 146.89 130.628 146.89 C 139.593 146.89 146.859 139.623 146.859 130.658 Z\" fill=\"transparent\" stroke-width=\"4.02\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9190467915}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4o0ayg\",\"data-framer-name\":\"Circle 6\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 455 455\"><path d=\"M 448.723 227.777 C 448.723 105.722 349.778 6.777 227.723 6.777 C 105.668 6.777 6.723 105.722 6.723 227.777 C 6.723 349.832 105.668 448.777 227.723 448.777 C 349.778 448.777 448.723 349.832 448.723 227.777 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 435.876 227.777 C 435.876 112.818 342.683 19.625 227.724 19.625 C 112.765 19.625 19.572 112.818 19.572 227.777 C 19.572 342.737 112.765 435.93 227.724 435.93 C 342.683 435.93 435.876 342.737 435.876 227.777 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 423.028 227.778 C 423.028 119.914 335.587 32.473 227.724 32.473 C 119.86 32.473 32.419 119.914 32.419 227.778 C 32.419 335.641 119.86 423.082 227.724 423.082 C 335.587 423.082 423.028 335.641 423.028 227.778 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 410.179 227.778 C 410.179 127.009 328.492 45.321 227.723 45.321 C 126.955 45.321 45.267 127.01 45.267 227.778 C 45.267 328.546 126.955 410.234 227.723 410.234 C 328.492 410.234 410.179 328.546 410.179 227.778 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 397.331 227.778 C 397.331 134.106 321.395 58.17 227.723 58.17 C 134.051 58.17 58.115 134.106 58.115 227.778 C 58.115 321.45 134.051 397.386 227.723 397.386 C 321.395 397.386 397.331 321.45 397.331 227.778 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 384.484 227.777 C 384.484 141.201 314.299 71.016 227.723 71.016 C 141.147 71.016 70.962 141.201 70.962 227.777 C 70.962 314.353 141.147 384.538 227.723 384.538 C 314.299 384.538 384.484 314.353 384.484 227.777 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 371.643 227.776 C 371.643 148.292 307.208 83.857 227.724 83.857 C 148.239 83.857 83.804 148.292 83.804 227.776 C 83.804 307.261 148.239 371.697 227.724 371.697 C 307.208 371.697 371.643 307.261 371.643 227.776 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 358.795 227.778 C 358.795 155.389 300.113 96.706 227.723 96.706 C 155.334 96.706 96.652 155.389 96.652 227.778 C 96.652 300.167 155.334 358.849 227.723 358.849 C 300.113 358.849 358.795 300.167 358.795 227.778 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 345.947 227.777 C 345.947 162.484 293.016 109.553 227.723 109.553 C 162.43 109.553 109.499 162.484 109.499 227.777 C 109.499 293.07 162.43 346.001 227.723 346.001 C 293.016 346.001 345.947 293.07 345.947 227.777 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 333.1 227.778 C 333.1 169.581 285.921 122.402 227.724 122.402 C 169.527 122.402 122.348 169.581 122.348 227.778 C 122.348 285.976 169.527 333.155 227.724 333.155 C 285.921 333.155 333.1 285.976 333.1 227.778 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 320.252 227.777 C 320.252 176.676 278.826 135.249 227.724 135.249 C 176.622 135.249 135.195 176.676 135.195 227.777 C 135.195 278.879 176.622 320.306 227.724 320.306 C 278.826 320.306 320.252 278.879 320.252 227.777 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 307.41 227.778 C 307.41 183.768 271.734 148.091 227.723 148.091 C 183.713 148.091 148.036 183.768 148.036 227.778 C 148.036 271.788 183.713 307.465 227.723 307.465 C 271.734 307.465 307.41 271.788 307.41 227.778 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 294.563 227.778 C 294.563 190.863 264.638 160.939 227.723 160.939 C 190.808 160.939 160.884 190.863 160.884 227.778 C 160.884 264.693 190.808 294.618 227.723 294.618 C 264.638 294.618 294.563 264.693 294.563 227.778 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 281.715 227.778 C 281.715 197.96 257.541 173.787 227.723 173.787 C 197.904 173.787 173.731 197.96 173.731 227.778 C 173.731 257.597 197.904 281.77 227.723 281.77 C 257.541 281.77 281.715 257.597 281.715 227.778 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 268.867 227.776 C 268.867 205.053 250.447 186.633 227.724 186.633 C 205.001 186.633 186.58 205.053 186.58 227.776 C 186.58 250.499 205.001 268.92 227.724 268.92 C 250.447 268.92 268.867 250.499 268.867 227.776 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 256.019 227.776 C 256.019 212.149 243.351 199.481 227.724 199.481 C 212.096 199.481 199.428 212.149 199.428 227.776 C 199.428 243.404 212.096 256.072 227.724 256.072 C 243.351 256.072 256.019 243.404 256.019 227.776 Z\" fill=\"transparent\" stroke-width=\"7\" stroke=\"rgb(187, 223, 252)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:2022376489,withExternalLayout:true})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13u3v76\",\"data-framer-name\":\"iPhone Mockup\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15p2051\",\"data-border\":true,\"data-framer-name\":\"Body\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+3728.2+120+0+145.5+0+-34.41254752851711+0+4.4125475285171945),positionX:\"center\",positionY:\"center\",sizes:\"185px\",src:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png\",srcSet:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png?scale-down-to=2048 946w,https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png 965w\"}},LA85W3Ouo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+3564.2+120+0+38+0+-45+0+11),positionX:\"center\",positionY:\"center\",sizes:\"241px\",src:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png\",srcSet:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png?scale-down-to=2048 946w,https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png 965w\"}},lOqq2VQGk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+3466.7+120+0+0+0+0+-34.41254752851711+-.08745247148280555+7),positionX:\"center\",positionY:\"center\",sizes:\"187px\",src:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png\",srcSet:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png?scale-down-to=2048 946w,https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png 965w\"}},nMlihs96b:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+3802.007350158691+80+0+0+0+0+32.811787072243334+-2.1515669593601956+4),positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png\",srcSet:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png?scale-down-to=2048 946w,https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png 965w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+3561.2+120+0+13+0+-45+0+11),positionX:\"center\",positionY:\"center\",sizes:\"241px\",src:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png\",srcSet:\"https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png?scale-down-to=2048 946w,https://framerusercontent.com/images/QupTxcgtZ3DtoXAOcqQxS11ic.png 965w\"},className:\"framer-6s9h64\",\"data-framer-name\":\"\u2747\uFE0F REPLACE IMG FILL\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation14,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition13,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19cs5ca\",\"data-border\":true,\"data-framer-name\":\"Bookmark Icon\",style:{rotate:-30},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 71\"><g transform=\"translate(0.5 0.507)\" id=\"ss12053943339_1\"><g><defs><linearGradient id=\"idss12053943339_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 35 69.986 C 15.67 69.986 0 69.986 0 69.986 L 0 0 C 0 0 15.67 0 35 0 L 35 0 C 54.33 0 70 0 70 0 L 70 69.986 C 70 69.986 54.33 69.986 35 69.986 Z\" fill=\"url(#idss12053943339_2g1897533719)\"></path></g><path d=\"M 24.496 28.189 C 24.496 24.431 27.543 21.385 31.301 21.385 L 38.624 21.385 C 42.383 21.385 45.43 24.431 45.43 28.189 L 45.43 36.767 L 45.504 36.802 L 45.504 48.601 C 42.461 48.008 36.151 45.751 35.259 41.476 C 35.259 41.471 35.257 41.465 35.256 41.46 C 35.084 41.455 34.912 41.46 34.74 41.474 L 34.74 41.476 C 33.849 45.751 27.539 48.007 24.496 48.6 L 24.496 37.914 L 24.497 37.914 C 24.496 37.87 24.496 37.826 24.496 37.782 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:12053943339},LA85W3Ouo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 71\"><g transform=\"translate(0.5 0.507)\" id=\"ss12053943339_1\"><g><defs><linearGradient id=\"idss12053943339_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 35 69.986 C 15.67 69.986 0 69.986 0 69.986 L 0 0 C 0 0 15.67 0 35 0 L 35 0 C 54.33 0 70 0 70 0 L 70 69.986 C 70 69.986 54.33 69.986 35 69.986 Z\" fill=\"url(#idss12053943339_2g1897533719)\"></path></g><path d=\"M 24.496 28.189 C 24.496 24.431 27.543 21.385 31.301 21.385 L 38.624 21.385 C 42.383 21.385 45.43 24.431 45.43 28.189 L 45.43 36.767 L 45.504 36.802 L 45.504 48.601 C 42.461 48.008 36.151 45.751 35.259 41.476 C 35.259 41.471 35.257 41.465 35.256 41.46 C 35.084 41.455 34.912 41.46 34.74 41.474 L 34.74 41.476 C 33.849 45.751 27.539 48.007 24.496 48.6 L 24.496 37.914 L 24.497 37.914 C 24.496 37.87 24.496 37.826 24.496 37.782 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:12053943339},lOqq2VQGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 71\"><g transform=\"translate(0.5 0.507)\" id=\"ss12053943339_1\"><g><defs><linearGradient id=\"idss12053943339_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 35 69.986 C 15.67 69.986 0 69.986 0 69.986 L 0 0 C 0 0 15.67 0 35 0 L 35 0 C 54.33 0 70 0 70 0 L 70 69.986 C 70 69.986 54.33 69.986 35 69.986 Z\" fill=\"url(#idss12053943339_2g1897533719)\"></path></g><path d=\"M 24.496 28.189 C 24.496 24.431 27.543 21.385 31.301 21.385 L 38.624 21.385 C 42.383 21.385 45.43 24.431 45.43 28.189 L 45.43 36.767 L 45.504 36.802 L 45.504 48.601 C 42.461 48.008 36.151 45.751 35.259 41.476 C 35.259 41.471 35.257 41.465 35.256 41.46 C 35.084 41.455 34.912 41.46 34.74 41.474 L 34.74 41.476 C 33.849 45.751 27.539 48.007 24.496 48.6 L 24.496 37.914 L 24.497 37.914 C 24.496 37.87 24.496 37.826 24.496 37.782 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:12053943339},nMlihs96b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46 46\"><g transform=\"translate(0.23 -0.766)\" id=\"ss10814357183_1\"><g><defs><linearGradient id=\"idss10814357183_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 23.452 45.9 C 11.049 45.9 0.995 45.9 0.995 45.9 L 0.995 0.995 C 0.995 0.995 11.049 0.995 23.452 0.995 L 23.452 0.995 C 35.854 0.995 45.908 0.995 45.908 0.995 L 45.908 45.9 C 45.908 45.9 35.854 45.9 23.452 45.9 Z\" fill=\"url(#idss10814357183_2g1897533719)\"></path></g><path d=\"M 16.712 19.082 C 16.712 16.67 18.667 14.716 21.079 14.716 L 25.777 14.716 C 28.189 14.716 30.144 16.67 30.144 19.082 L 30.144 24.585 L 30.191 24.608 L 30.191 32.179 C 28.239 31.798 24.19 30.349 23.618 27.607 C 23.618 27.603 23.617 27.6 23.616 27.597 C 23.506 27.593 23.396 27.597 23.285 27.605 L 23.285 27.607 C 22.713 30.349 18.665 31.797 16.712 32.178 L 16.712 25.321 L 16.713 25.321 C 16.712 25.293 16.712 25.265 16.712 25.237 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:10814357183}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ov3721\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,radius:40,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71 71\"><g transform=\"translate(0.5 0.507)\" id=\"ss3464008747_1\"><g><defs><linearGradient id=\"idss3464008747_2g1897533719\" x1=\"0.49043531420431075\" x2=\"0.5024875621890548\" y1=\"-1.4225018449335232\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(58,167,246)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(58,167,246,0)\" stop-opacity=\"0\"></stop></linearGradient></defs><path d=\"M 35 69.986 C 15.67 69.986 0 69.986 0 69.986 L 0 0 C 0 0 15.67 0 35 0 L 35 0 C 54.33 0 70 0 70 0 L 70 69.986 C 70 69.986 54.33 69.986 35 69.986 Z\" fill=\"url(#idss3464008747_2g1897533719)\"></path></g><path d=\"M 24.496 28.189 C 24.496 24.431 27.543 21.385 31.301 21.385 L 38.624 21.385 C 42.383 21.385 45.43 24.431 45.43 28.189 L 45.43 36.767 L 45.504 36.802 L 45.504 48.601 C 42.461 48.008 36.151 45.751 35.259 41.476 C 35.259 41.471 35.257 41.465 35.256 41.46 C 35.084 41.455 34.912 41.46 34.74 41.474 L 34.74 41.476 C 33.849 45.751 27.539 48.007 24.496 48.6 L 24.496 37.914 L 24.497 37.914 C 24.496 37.87 24.496 37.826 24.496 37.782 Z\" fill=\"rgb(20,146,238)\"></path></g></svg>',svgContentId:3464008747,withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10bwblh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o9s7ot\",\"data-framer-name\":\"Title & Sub\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ot4v73\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Anywhere, Anytime.\"})}),className:\"framer-5unp6s\",\"data-framer-name\":\"Anywhere, Anytime.\",fonts:[\"GF;Inter Tight-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Mobile Experience\"})})},LA85W3Ouo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Mobile Experience\"})})},lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Mobile Experience\"})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"43px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Mobile Experience\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Mobile Experience\"})}),className:\"framer-1iipcfu\",\"data-framer-name\":\"Mobile Experience\",fonts:[\"GF;Inter Tight-600\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Access Marqly seamlessly on the go. Enjoy a great experience on mobile devices, ensuring your bookmarks are always at your fingertips.\"})})},LA85W3Ouo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Access Marqly seamlessly on the go. Enjoy a great experience on mobile devices, ensuring your bookmarks are always at your fingertips.\"})})},lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Access Marqly seamlessly on the go. Enjoy a great experience on mobile devices, ensuring your bookmarks are always at your fingertips.\"})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Access Marqly seamlessly on the go. Enjoy a great experience on mobile devices, ensuring your bookmarks are always at your fingertips.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(97, 100, 121)\"},children:\"Access Marqly seamlessly on the go. Enjoy a great experience on mobile devices, ensuring your bookmarks are always at your fingertips.\"})}),className:\"framer-1u0tsqc\",\"data-framer-name\":\"Access Marqly seamlessly on the go. Enjoy a great experience on mobile devices, ensuring your bookmarks are always at your fingertips.\",fonts:[\"GF;Inter Tight-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{y:(componentViewport?.y||0)+24+3728.2+120+0+0+0+592},LA85W3Ouo:{y:(componentViewport?.y||0)+24+3564.2+120+0+0+0+482},lOqq2VQGk:{y:(componentViewport?.y||0)+24+3466.7+120+0+0+413+0+562},nMlihs96b:{y:(componentViewport?.y||0)+24+3802.007350158691+80+0+0+413+0+577}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+24+3561.2+120+0+0+0+432,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w7lhz-container\",nodeId:\"FhgkFekzj\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CTAButton,{height:\"100%\",id:\"FhgkFekzj\",l1L88jkb3:\"Try Marqly Now ->\",layoutId:\"FhgkFekzj\",Lzl9l661F:false,UkItkESUo:false,variant:\"Pfgml7te0\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eo2y91\",\"data-framer-name\":\"Section / Testimonial Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jtlkno\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xiud22\",\"data-framer-name\":\"Title & Sub\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Loved by people.\"})})},lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Loved by people.\"})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Loved by people.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(37, 37, 37)\"},children:\"Loved by people.\"})}),className:\"framer-ay5ow\",\"data-framer-name\":\"Loved by people.\",fonts:[\"GF;Inter Tight-600\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(83, 85, 103)\"},children:\"What do people think about our product\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(83, 85, 103)\"},children:\"What do people think about our product\"})}),className:\"framer-1yw2dhg\",\"data-framer-name\":\"What do people think about our product\",fonts:[\"GF;Inter Tight-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{y:(componentViewport?.y||0)+24+4648.2+120+0+0+258},LA85W3Ouo:{y:(componentViewport?.y||0)+24+4374.2+120+0+0+266},lOqq2VQGk:{y:(componentViewport?.y||0)+24+4721.7+120+0+0+258},nMlihs96b:{y:(componentViewport?.y||0)+24+5032.007350158691+72+0+0+418}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+24+4321.2+120+0+0+258,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sz6uj4-container\",nodeId:\"ysJFb_hXR\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CTAButton,{height:\"100%\",id:\"ysJFb_hXR\",l1L88jkb3:\"Sign up now ->\",layoutId:\"ysJFb_hXR\",Lzl9l661F:false,UkItkESUo:false,variant:\"Pfgml7te0\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9pzvx1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"na4eJBpkN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"na4eJBpkN\",layoutId:\"na4eJBpkN\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l3fmw5\",\"data-framer-name\":\"Item 01\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"71px\",src:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png\",srcSet:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png 591w\"},className:\"framer-c98him\",\"data-border\":true,\"data-framer-name\":\"Frame 27078\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"71px\",src:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png\",srcSet:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png 591w\"},className:\"framer-1ku74uc\",\"data-framer-name\":\"Ellipse 205\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jyipvd\",\"data-framer-name\":\"Frame 27079\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(124, 128, 148)\"},children:\"Fantastic way to organize bookmarks. Highly recommended!\"})}),className:\"framer-1avsljx\",\"data-framer-name\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\"},children:\"Adrian\"})}),className:\"framer-xksd3v\",\"data-framer-name\":\"Amro\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7bgwx0\",\"data-framer-name\":\"Item 02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"71px\",src:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png\",srcSet:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png 591w\"},className:\"framer-6yad96\",\"data-border\":true,\"data-framer-name\":\"Frame 27078\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/QN0uDRAZHZ9OUKufDBNiN6DlP4w.png\"},className:\"framer-1kqtn8s\",\"data-framer-name\":\"Ellipse 205\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3tkb9i\",\"data-framer-name\":\"Frame 27079\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(124, 128, 148)\"},children:\"Great bookmarking tool with a user friendly interface , Absolutely a great way to save your bookmarks\"})}),className:\"framer-ye632t\",\"data-framer-name\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\"},children:\"Chenten\"})}),className:\"framer-zop3wn\",\"data-framer-name\":\"Jannet\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d16ni1\",\"data-framer-name\":\"Item 03\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"71px\",src:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png\",srcSet:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png 591w\"},className:\"framer-1wdxxoe\",\"data-border\":true,\"data-framer-name\":\"Frame 27078\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Rc5TvNDrbvc1LvIuCtrkhLh4uoQ.png\"},className:\"framer-1rzm632\",\"data-framer-name\":\"Ellipse 205\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n1is29\",\"data-framer-name\":\"Frame 27079\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(124, 128, 148)\"},children:\"I love the simplicity of Marqly. It allows me to manage all of my bookmarks in a single place.\"})}),className:\"framer-1y905yc\",\"data-framer-name\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\"},children:\"Tina\"})}),className:\"framer-h0655e\",\"data-framer-name\":\"Mo\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zb8asa\",\"data-framer-name\":\"Item 04\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"71px\",src:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png\",srcSet:\"https://framerusercontent.com/images/HdxMAOjEJY0eVOjFiSGiXFoi5vA.png 591w\"},className:\"framer-nbmnjv\",\"data-border\":true,\"data-framer-name\":\"Frame 27078\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/P3wW5LIoCzcNGuEW8AuF4IamFTE.png\"},className:\"framer-12kruiu\",\"data-framer-name\":\"Ellipse 205\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1os84or\",\"data-framer-name\":\"Frame 27079\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"rgb(124, 128, 148)\"},children:[\"My absolute favourite bookmarking tool.\",/*#__PURE__*/_jsx(\"br\",{}),\"Really the love the UI and easy of use.\"]})}),className:\"framer-1bli10s\",\"data-framer-name\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\"},children:\"Michael\"})}),className:\"framer-fj0q2h\",\"data-framer-name\":\"Michael\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1xutel2\",\"data-framer-name\":\"Section / CTA 2 Section\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+5260.2+150+0),positionX:\"center\",positionY:\"center\",sizes:\"282px\",src:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png\",srcSet:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png 1127w\"}},LA85W3Ouo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+4986.2+150+0),positionX:\"center\",positionY:\"center\",sizes:\"282px\",src:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png\",srcSet:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png 1127w\"}},lOqq2VQGk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+5333.7+120+0),positionX:\"center\",positionY:\"center\",sizes:\"282px\",src:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png\",srcSet:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png 1127w\"}},nMlihs96b:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+5922.007350158691+72+0),positionX:\"center\",positionY:\"center\",sizes:\"204px\",src:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png\",srcSet:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png 1127w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+4933.2+150+0),positionX:\"center\",positionY:\"center\",sizes:\"282px\",src:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png\",srcSet:\"https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I4LDmoZObWqBB8SyJOdCdiThQ.png 1127w\"},className:\"framer-12rggde\",\"data-framer-name\":\"Brand Logos\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16zso52\",\"data-framer-name\":\"Title & CTA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hkeft8\",\"data-framer-name\":\"Title & Sub\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mhmtep\",\"data-framer-name\":\"Frame 27070\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:\"Surf the Clouds\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:\"Marqly on Every Browser\"})]})})},lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Surf the Clouds\",/*#__PURE__*/_jsx(\"br\",{}),\"Marqly on Every Browser\"]})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Surf the Clouds\",/*#__PURE__*/_jsx(\"br\",{}),\"Marqly on Every Browser\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Surf the Clouds\",/*#__PURE__*/_jsx(\"br\",{}),\"Marqly on Every Browser\"]})}),className:\"framer-1jdr7j6\",\"data-framer-name\":\"Surf the Clouds\\u2028Marqly on Every Browser\",fonts:[\"GF;Inter Tight-600\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lOqq2VQGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Access Marqly through Chrome, Firefox, Safari, and Edge extensions, enabling you to effortlessly save and organize all your crucial web pages and information.\"})})},nMlihs96b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Access Marqly through Chrome, Firefox, Safari, and Edge extensions, enabling you to effortlessly save and organize all your crucial web pages and information.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Access Marqly through Chrome, Firefox, Safari, and Edge extensions, enabling you to effortlessly save and organize all your crucial web pages and information.\"})}),className:\"framer-es3osq\",\"data-framer-name\":\"Access Marqly through Chrome, Firefox, Safari, and Edge extensions, enabling you to effortlessly save and organize all your crucial web pages and information.\",fonts:[\"GF;Inter Tight-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{y:(componentViewport?.y||0)+24+5260.2+150+128+0+254},LA85W3Ouo:{y:(componentViewport?.y||0)+24+4986.2+150+128+0+254},lOqq2VQGk:{y:(componentViewport?.y||0)+24+5333.7+120+128+0+412},nMlihs96b:{y:(componentViewport?.y||0)+24+5922.007350158691+72+104+0+412}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+24+4933.2+150+128+0+254,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16a7wbn-container\",nodeId:\"X4RwkHMl0\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{l1L88jkb3:\"Coming Soon\"}},children:/*#__PURE__*/_jsx(CTAButton,{height:\"100%\",id:\"X4RwkHMl0\",l1L88jkb3:\"Install Extension ->\",layoutId:\"X4RwkHMl0\",Lzl9l661F:false,UkItkESUo:false,variant:\"E_IGyOoi7\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+5260.2+-150),sizes:`calc(${componentViewport?.width||\"100vw\"} + 574px)`,src:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png\",srcSet:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=512 512w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png 2214w\"}},LA85W3Ouo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+4986.2+-384),sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1440px) + 1268px)`,src:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png\",srcSet:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=512 512w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png 2214w\"}},lOqq2VQGk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+5333.7+-150),sizes:`calc(${componentViewport?.width||\"100vw\"} + 602px)`,src:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png\",srcSet:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=512 512w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png 2214w\"}},nMlihs96b:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+5922.007350158691+-150),sizes:`calc(${componentViewport?.width||\"100vw\"} + 602px)`,src:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png\",srcSet:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=512 512w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png 2214w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-160,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+4933.2+-150),sizes:`calc(${componentViewport?.width||\"100vw\"} + 574px)`,src:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png\",srcSet:\"https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=512 512w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CRYdEsbP8f95pFTmjg4v89xo09M.png 2214w\"},className:\"framer-jjm9o2\",\"data-framer-name\":\"Background Image\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BfsqAstCU:{y:(componentViewport?.y||0)+24+6030.2},LA85W3Ouo:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1440px)`,y:(componentViewport?.y||0)+24+5756.2},lOqq2VQGk:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+24+6201.7},nMlihs96b:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+24+6670.007350158691}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:304,width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,y:(componentViewport?.y||0)+24+5703.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19b33np-container\",nodeId:\"rxU1l6Z9s\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LA85W3Ouo:{style:{maxWidth:\"100%\",width:\"100%\"}},lOqq2VQGk:{variant:\"qw7O81_7v\"},nMlihs96b:{variant:\"Qdju5doYY\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"rxU1l6Z9s\",layoutId:\"rxU1l6Z9s\",style:{width:\"100%\"},variant:\"jfVnwBitk\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J6qTT.framer-lux5qc, .framer-J6qTT .framer-lux5qc { display: block; }\",\".framer-J6qTT.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 30px 24px 30px; position: relative; width: 1440px; }\",\".framer-J6qTT .framer-1eotznu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-1u3touf, .framer-J6qTT .framer-1o9s7ot { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-rw757r { align-content: center; align-items: center; background: linear-gradient(269.76874857558323deg, #5e34d1 0%, rgba(163, 138, 251, 1) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 39px; justify-content: center; overflow: visible; padding: 10px 20px 10px 20px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-1tzzzrj, .framer-J6qTT .framer-wp6944 { flex: none; height: 22px; overflow: hidden; position: relative; width: 512px; }\",\".framer-J6qTT .framer-1o7las, .framer-J6qTT .framer-xdz0ht { flex: none; height: auto; left: 0px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-J6qTT .framer-1vzpd9, .framer-J6qTT .framer-kftj2n { --border-bottom-width: 2px; --border-color: #c1b5fd; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: min-content; }\",\".framer-J6qTT .framer-v0iwnl, .framer-J6qTT .framer-1fgbwe0 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; box-shadow: 0px 1px 2px 0px rgba(43, 16, 101, 0.14); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 10px 4px 10px; position: relative; text-decoration: none; width: min-content; }\",\".framer-J6qTT .framer-zfb28y, .framer-J6qTT .framer-88wmxe { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-J6qTT .framer-xuof88, .framer-J6qTT .framer-6otcud { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: min-content; z-index: 1; }\",\".framer-J6qTT .framer-1a4x8ro, .framer-J6qTT .framer-1l5xvqb { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-J6qTT .framer-7jcnoe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-fo6gl9-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-J6qTT .framer-15ef9cp { align-content: center; align-items: center; background: linear-gradient(269.76874857558323deg, #5e34d1 0%, rgba(163, 138, 251, 1) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 42px; justify-content: center; overflow: visible; padding: 10px 20px 10px 20px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-1x7ewqj { 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: 72px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-1ku89ou { background-color: #e0effe; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 786px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-J6qTT .framer-v5n2cd { -webkit-filter: blur(239.07139587402344px); aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 0px 117.14423370361328px 0px #fdfdfd; filter: blur(239.07139587402344px); flex: none; height: var(--framer-aspect-ratio-supported, 1091px); left: 50%; position: absolute; top: 37%; transform: translate(-50%, -50%); width: 1091px; z-index: 0; }\",\".framer-J6qTT .framer-mng6gq { flex: none; height: 520px; left: calc(50.00000000000002% - 828px / 2); position: absolute; top: 31px; width: 828px; }\",\".framer-J6qTT .framer-1lzbt2z-container { flex: none; height: auto; left: 10%; position: absolute; top: 101px; transform: translateX(-50%); width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-wt4ke3-container { flex: none; height: auto; left: 17%; position: absolute; top: 241px; transform: translateX(-50%); width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-14lupjv-container { flex: none; height: auto; left: 12%; position: absolute; top: 390px; transform: translateX(-50%); width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-sobi4f-container { flex: none; height: auto; left: 80%; position: absolute; top: 226px; transform: translateX(-50%); width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-pn4hby-container { flex: none; height: auto; left: 87%; position: absolute; top: 105px; transform: translateX(-50%); width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-1h4tgsy-container { flex: none; height: auto; left: 87%; position: absolute; top: 388px; transform: translateX(-50%); width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-rlq7su { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-J6qTT .framer-b2faji { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-lnd6fz { --border-bottom-width: 1px; --border-color: #e0effe; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-s40e96, .framer-J6qTT .framer-1hylvsm, .framer-J6qTT .framer-ufoxox, .framer-J6qTT .framer-1axx4kh, .framer-J6qTT .framer-17co7j6, .framer-J6qTT .framer-msd3qr, .framer-J6qTT .framer-16l374k, .framer-J6qTT .framer-1iipcfu, .framer-J6qTT .framer-ay5ow, .framer-J6qTT .framer-xksd3v, .framer-J6qTT .framer-zop3wn, .framer-J6qTT .framer-h0655e, .framer-J6qTT .framer-fj0q2h, .framer-J6qTT .framer-1jdr7j6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-J6qTT .framer-1oxoj8u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-j7qkph { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-J6qTT .framer-1opf49o, .framer-J6qTT .framer-1kv09sv, .framer-J6qTT .framer-5unp6s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-5akyd9, .framer-J6qTT .framer-m8h7gi { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 707px; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-v94zdc-container, .framer-J6qTT .framer-1w7lhz-container, .framer-J6qTT .framer-sz6uj4-container, .framer-J6qTT .framer-16a7wbn-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-J6qTT .framer-1wulmlo { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-n556q4 { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-J6qTT .framer-oxs5im { bottom: 6px; flex: none; left: 0px; position: absolute; right: 3px; top: 3px; }\",\".framer-J6qTT .framer-1vgqb76 { aspect-ratio: 1.4077448747152619 / 1; background-color: rgba(255, 255, 255, 0.5); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 884px); overflow: visible; position: relative; width: 90%; z-index: 1; }\",\".framer-J6qTT .framer-13m04vm { -webkit-filter: blur(40.619998931884766px); background-color: rgba(9, 75, 131, 0.29); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 0px; filter: blur(40.619998931884766px); flex: none; height: 88%; position: absolute; right: 0px; width: 94%; }\",\".framer-J6qTT .framer-1f2e51s { --border-bottom-width: 1px; --border-color: #e4e5e9; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 2px; flex: none; left: 4px; position: absolute; right: 4px; top: 3px; }\",\".framer-J6qTT .framer-3z4kdi { --framer-paragraph-spacing: 0px; bottom: 191px; flex: none; height: auto; left: -78px; position: absolute; white-space: pre; width: auto; }\",\".framer-J6qTT .framer-521a34 { flex: none; height: 114px; overflow: hidden; position: absolute; right: -50px; top: 289px; width: 128px; }\",\".framer-J6qTT .framer-1q3scf { flex: none; height: 114px; left: calc(50.00000000000002% - 128px / 2); position: absolute; top: calc(50.00000000000002% - 114px / 2); width: 128px; }\",\".framer-J6qTT .framer-6fi91x { bottom: -76px; flex: none; left: calc(50.00000000000002% - 198px / 2); overflow: visible; position: absolute; top: -75px; width: 198px; }\",\".framer-J6qTT .framer-1pk6kkn { --border-bottom-width: 0.4606700837612152px; --border-color: rgba(0, 0, 0, 0.9); --border-left-width: 0.4606700837612152px; --border-right-width: 0.4606700837612152px; --border-style: solid; --border-top-width: 0.4606700837612152px; aspect-ratio: 0.48333332215896785 / 1; background-color: #181a22; border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; bottom: var(--framer-aspect-ratio-supported, 0px); box-shadow: 0px 1.5823522806167603px 1.2658817768096924px 0px rgba(0, 0, 0, 0.02), 0px 4.001887798309326px 3.201509952545166px 0px rgba(0, 0, 0, 0.029999999329447746), 0px 8.163475036621094px 6.53078031539917px 0px rgba(0, 0, 0, 0.029999999329447746), 0px 16.815216064453125px 13.452173233032227px 0px rgba(0, 0, 0, 0.03999999910593033), 0px 46.06700897216797px 36.853607177734375px 0px rgba(0, 0, 0, 0.05999999865889549); flex: none; height: 410px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-J6qTT .framer-97zw0i { flex: none; height: 394px; left: 8px; position: absolute; top: 8px; width: 182px; }\",\".framer-J6qTT .framer-fnjbg8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-qz1ui7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-1evqjc4 { --border-bottom-width: 5px; --border-color: #ffffff; --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; background-color: #ffffff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 6px 8px 0px rgba(5, 87, 159, 0.07); flex: none; height: 80px; overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J6qTT .framer-1xjc9r0, .framer-J6qTT .framer-1ov3721 { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 71px; left: calc(50.00000000000002% - 71px / 2); position: absolute; top: calc(50.00000000000002% - 71px / 2); width: 71px; }\",\".framer-J6qTT .framer-1xilunt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-b1py8b { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-jw3oio { align-content: flex-start; align-items: flex-start; background-color: #f4f4f7; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 745px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 443px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J6qTT .framer-1x3faz6 { 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: 353px; }\",\".framer-J6qTT .framer-1tt0pkc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 353px; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-1sufcv6 { --border-bottom-width: 1px; --border-color: #f4f4f7; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #f4f4f7; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 634px; overflow: visible; position: relative; width: 111%; }\",\".framer-J6qTT .framer-mzff0h { aspect-ratio: 0.9070464767616192 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 667px); left: 0px; position: absolute; right: -202px; top: 0px; }\",\".framer-J6qTT .framer-7ow29b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-1h048ud { align-content: flex-start; align-items: flex-start; background-color: #f0f7ff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 361px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 912px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J6qTT .framer-1043iub { 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: 580px; }\",\".framer-J6qTT .framer-1h9pbke { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 580px; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-y57ocs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 277px; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-r0hdvy { flex: none; height: 281px; overflow: visible; position: relative; width: 799px; }\",\".framer-J6qTT .framer-b91hsd { flex: none; height: 265px; left: 1px; position: absolute; top: 17px; width: 264px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-d4bcyk { flex: none; height: 256px; left: 151px; position: absolute; top: 7px; width: 256px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-3atb1w { flex: none; height: 256px; left: 361px; position: absolute; top: 0px; width: 256px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-l8ozfo { flex: none; height: 265px; left: 533px; position: absolute; top: 14px; width: 264px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J6qTT .framer-kmg3w2 { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-e48juv { align-content: flex-start; align-items: flex-start; background-color: #eefbf4; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 361px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J6qTT .framer-1x15ebu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 93px 0px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-z0qmyo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-5rumso, .framer-J6qTT .framer-rawlj1, .framer-J6qTT .framer-12ya812, .framer-J6qTT .framer-euf8h3, .framer-J6qTT .framer-12d0poj { flex: none; height: 69px; overflow: visible; position: relative; width: 82px; }\",\".framer-J6qTT .framer-ocuhx9, .framer-J6qTT .framer-1lzw2ax { flex: none; height: 70px; left: -1px; position: absolute; top: -1px; width: 83px; }\",\".framer-J6qTT .framer-ndsenq, .framer-J6qTT .framer-1poxrjs, .framer-J6qTT .framer-1ga1n7d { flex: none; height: 70px; left: 0px; position: absolute; top: -1px; width: 82px; }\",\".framer-J6qTT .framer-1t5n38f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-1d9k0b3 { 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: 340px; }\",\".framer-J6qTT .framer-6xhiv4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-192t6v { align-content: center; align-items: center; background-color: #f5f3ff; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 361px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-J6qTT .framer-x701so { 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: 372px; }\",\".framer-J6qTT .framer-15rm81h { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 372px; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-12hlwnp { background-color: #ffffff; box-shadow: 0px 4px 14px 0px rgba(163, 138, 251, 0.14); flex: none; height: 227px; overflow: hidden; position: relative; width: 333px; }\",\".framer-J6qTT .framer-f0unwe { flex: none; height: 227px; left: -4px; position: absolute; top: -7px; width: 387px; }\",\".framer-J6qTT .framer-2m5bos { flex: none; height: 130px; left: 28px; overflow: visible; position: absolute; top: 56px; width: 291px; }\",\".framer-J6qTT .framer-18a7tp4 { flex: none; height: 130px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 291px; }\",\".framer-J6qTT .framer-7ybvwm { flex: none; height: 45px; left: 11px; position: absolute; top: 10px; width: 199px; }\",\".framer-J6qTT .framer-kl90ps { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 11px; position: absolute; top: 0px; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-1pavx6n { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 105px; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-1pjg1ir { align-content: center; align-items: center; background-color: #f0f7ff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 120px 180px 120px 180px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-p9wkfv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-uxc2e { flex: none; height: 454px; overflow: visible; position: relative; width: 454px; }\",\".framer-J6qTT .framer-4h15f7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 454px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 454px; }\",\".framer-J6qTT .framer-pw50nq { --border-bottom-width: 6px; --border-color: #ffffff; --border-left-width: 6px; --border-right-width: 6px; --border-style: solid; --border-top-width: 6px; align-content: flex-start; align-items: flex-start; background-color: #d5f6e3; border-bottom-left-radius: 117px; border-bottom-right-radius: 117px; border-top-left-radius: 117px; border-top-right-radius: 117px; box-shadow: 0px 3.9117002487182617px 10.431200981140137px 0px rgba(0, 0, 0, 0.08); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: 52px; justify-content: flex-start; left: 330px; overflow: visible; padding: 15.739999771118164px 13.03900146484375px 8.039999961853027px 15.039999961853027px; position: absolute; top: 162px; width: 52px; z-index: 3; }\",\".framer-J6qTT .framer-116ucix { flex: none; height: 23px; position: relative; width: 26px; }\",\".framer-J6qTT .framer-1wjqsit { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-J6qTT .framer-4o0ayg { flex: none; height: 455px; left: calc(50.00000000000002% - 455px / 2); position: absolute; top: calc(50.00000000000002% - 455px / 2); width: 455px; }\",\".framer-J6qTT .framer-13u3v76 { flex: none; height: 544px; overflow: visible; position: relative; width: 263px; z-index: 2; }\",\".framer-J6qTT .framer-15p2051 { --border-bottom-width: 0.613053560256958px; --border-color: rgba(0, 0, 0, 0.9); --border-left-width: 0.613053560256958px; --border-right-width: 0.613053560256958px; --border-style: solid; --border-top-width: 0.613053560256958px; aspect-ratio: 0.4834558823529412 / 1; background-color: #181a22; border-bottom-left-radius: 45px; border-bottom-right-radius: 45px; border-top-left-radius: 45px; border-top-right-radius: 45px; bottom: var(--framer-aspect-ratio-supported, 0px); box-shadow: 0px 2.1057732105255127px 1.6846184730529785px 0px rgba(0, 0, 0, 0.02), 0px 5.325658321380615px 4.260526657104492px 0px rgba(0, 0, 0, 0.029999999329447746), 0px 10.863842964172363px 8.691075325012207px 0px rgba(0, 0, 0, 0.029999999329447746), 0px 22.37746238708496px 17.9019718170166px 0px rgba(0, 0, 0, 0.03999999910593033), 0px 61.305355072021484px 49.04428482055664px 0px rgba(0, 0, 0, 0.05999999865889549); flex: none; height: 544px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-J6qTT .framer-6s9h64 { bottom: 11px; flex: none; left: 11px; position: absolute; right: 11px; top: 11px; }\",\".framer-J6qTT .framer-19cs5ca { --border-bottom-width: 5px; --border-color: #ffffff; --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; background-color: #ffffff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 87px; box-shadow: 0px 6px 8px 0px rgba(5, 87, 159, 0.07); flex: none; height: 80px; left: 68px; overflow: hidden; position: absolute; width: 80px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-J6qTT .framer-10bwblh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 503px; }\",\".framer-J6qTT .framer-ot4v73 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-1u0tsqc, .framer-J6qTT .framer-1yw2dhg, .framer-J6qTT .framer-es3osq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 503px; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-eo2y91 { align-content: center; align-items: center; background-color: #eefbf4; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: 572px; justify-content: flex-start; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-J6qTT .framer-jtlkno { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-xiud22 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 503px; }\",\".framer-J6qTT .framer-9pzvx1-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-l3fmw5, .framer-J6qTT .framer-7bgwx0, .framer-J6qTT .framer-1d16ni1, .framer-J6qTT .framer-zb8asa { align-content: center; align-items: center; background: linear-gradient(180.0000000000002deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-c98him, .framer-J6qTT .framer-6yad96, .framer-J6qTT .framer-1wdxxoe, .framer-J6qTT .framer-nbmnjv { --border-bottom-width: 7px; --border-color: #ffffff; --border-left-width: 7px; --border-right-width: 7px; --border-style: solid; --border-top-width: 7px; border-bottom-left-radius: 90px; border-bottom-right-radius: 90px; border-top-left-radius: 90px; border-top-right-radius: 90px; box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08); flex: none; height: 71px; overflow: visible; position: relative; width: 71px; }\",\".framer-J6qTT .framer-1ku74uc, .framer-J6qTT .framer-1kqtn8s, .framer-J6qTT .framer-1rzm632, .framer-J6qTT .framer-12kruiu { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08); flex: none; height: var(--framer-aspect-ratio-supported, 71px); left: 0px; position: absolute; top: 0px; width: 71px; }\",\".framer-J6qTT .framer-1jyipvd, .framer-J6qTT .framer-1os84or { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J6qTT .framer-1avsljx, .framer-J6qTT .framer-ye632t, .framer-J6qTT .framer-1y905yc, .framer-J6qTT .framer-1bli10s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 278px; word-break: break-word; word-wrap: break-word; }\",\".framer-J6qTT .framer-3tkb9i, .framer-J6qTT .framer-n1is29 { 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-J6qTT .framer-1xutel2 { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 180px 150px 180px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-J6qTT .framer-12rggde { flex: none; height: 88px; position: relative; width: 282px; z-index: 2; }\",\".framer-J6qTT .framer-16zso52 { 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: 503px; z-index: 2; }\",\".framer-J6qTT .framer-hkeft8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-1mhmtep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J6qTT .framer-jjm9o2 { bottom: -150px; flex: none; left: -317px; position: absolute; right: -317px; top: -150px; z-index: 1; }\",\".framer-J6qTT .framer-19b33np-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-J6qTT.framer-72rtr7, .framer-J6qTT .framer-1eotznu, .framer-J6qTT .framer-1u3touf, .framer-J6qTT .framer-rw757r, .framer-J6qTT .framer-1vzpd9, .framer-J6qTT .framer-v0iwnl, .framer-J6qTT .framer-xuof88, .framer-J6qTT .framer-15ef9cp, .framer-J6qTT .framer-kftj2n, .framer-J6qTT .framer-1fgbwe0, .framer-J6qTT .framer-6otcud, .framer-J6qTT .framer-1x7ewqj, .framer-J6qTT .framer-rlq7su, .framer-J6qTT .framer-b2faji, .framer-J6qTT .framer-lnd6fz, .framer-J6qTT .framer-1oxoj8u, .framer-J6qTT .framer-j7qkph, .framer-J6qTT .framer-1wulmlo, .framer-J6qTT .framer-fnjbg8, .framer-J6qTT .framer-qz1ui7, .framer-J6qTT .framer-1xilunt, .framer-J6qTT .framer-b1py8b, .framer-J6qTT .framer-jw3oio, .framer-J6qTT .framer-1x3faz6, .framer-J6qTT .framer-7ow29b, .framer-J6qTT .framer-1h048ud, .framer-J6qTT .framer-1043iub, .framer-J6qTT .framer-y57ocs, .framer-J6qTT .framer-kmg3w2, .framer-J6qTT .framer-e48juv, .framer-J6qTT .framer-1x15ebu, .framer-J6qTT .framer-z0qmyo, .framer-J6qTT .framer-1t5n38f, .framer-J6qTT .framer-1d9k0b3, .framer-J6qTT .framer-192t6v, .framer-J6qTT .framer-x701so, .framer-J6qTT .framer-1pjg1ir, .framer-J6qTT .framer-p9wkfv, .framer-J6qTT .framer-4h15f7, .framer-J6qTT .framer-pw50nq, .framer-J6qTT .framer-10bwblh, .framer-J6qTT .framer-1o9s7ot, .framer-J6qTT .framer-ot4v73, .framer-J6qTT .framer-eo2y91, .framer-J6qTT .framer-jtlkno, .framer-J6qTT .framer-xiud22, .framer-J6qTT .framer-l3fmw5, .framer-J6qTT .framer-1jyipvd, .framer-J6qTT .framer-7bgwx0, .framer-J6qTT .framer-3tkb9i, .framer-J6qTT .framer-1d16ni1, .framer-J6qTT .framer-n1is29, .framer-J6qTT .framer-zb8asa, .framer-J6qTT .framer-1os84or, .framer-J6qTT .framer-1xutel2, .framer-J6qTT .framer-16zso52, .framer-J6qTT .framer-hkeft8, .framer-J6qTT .framer-1mhmtep { gap: 0px; } .framer-J6qTT.framer-72rtr7 > *, .framer-J6qTT .framer-1x7ewqj > *, .framer-J6qTT .framer-jw3oio > *, .framer-J6qTT .framer-1h048ud > *, .framer-J6qTT .framer-e48juv > *, .framer-J6qTT .framer-1xutel2 > *, .framer-J6qTT .framer-16zso52 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-J6qTT.framer-72rtr7 > :first-child, .framer-J6qTT .framer-1eotznu > :first-child, .framer-J6qTT .framer-1u3touf > :first-child, .framer-J6qTT .framer-1x7ewqj > :first-child, .framer-J6qTT .framer-rlq7su > :first-child, .framer-J6qTT .framer-b2faji > :first-child, .framer-J6qTT .framer-1oxoj8u > :first-child, .framer-J6qTT .framer-j7qkph > :first-child, .framer-J6qTT .framer-fnjbg8 > :first-child, .framer-J6qTT .framer-qz1ui7 > :first-child, .framer-J6qTT .framer-1xilunt > :first-child, .framer-J6qTT .framer-jw3oio > :first-child, .framer-J6qTT .framer-1x3faz6 > :first-child, .framer-J6qTT .framer-7ow29b > :first-child, .framer-J6qTT .framer-1h048ud > :first-child, .framer-J6qTT .framer-1043iub > :first-child, .framer-J6qTT .framer-e48juv > :first-child, .framer-J6qTT .framer-1x15ebu > :first-child, .framer-J6qTT .framer-1t5n38f > :first-child, .framer-J6qTT .framer-1d9k0b3 > :first-child, .framer-J6qTT .framer-192t6v > :first-child, .framer-J6qTT .framer-x701so > :first-child, .framer-J6qTT .framer-1pjg1ir > :first-child, .framer-J6qTT .framer-pw50nq > :first-child, .framer-J6qTT .framer-10bwblh > :first-child, .framer-J6qTT .framer-1o9s7ot > :first-child, .framer-J6qTT .framer-ot4v73 > :first-child, .framer-J6qTT .framer-eo2y91 > :first-child, .framer-J6qTT .framer-jtlkno > :first-child, .framer-J6qTT .framer-xiud22 > :first-child, .framer-J6qTT .framer-1jyipvd > :first-child, .framer-J6qTT .framer-3tkb9i > :first-child, .framer-J6qTT .framer-n1is29 > :first-child, .framer-J6qTT .framer-1os84or > :first-child, .framer-J6qTT .framer-1xutel2 > :first-child, .framer-J6qTT .framer-16zso52 > :first-child, .framer-J6qTT .framer-hkeft8 > :first-child, .framer-J6qTT .framer-1mhmtep > :first-child { margin-top: 0px; } .framer-J6qTT.framer-72rtr7 > :last-child, .framer-J6qTT .framer-1eotznu > :last-child, .framer-J6qTT .framer-1u3touf > :last-child, .framer-J6qTT .framer-1x7ewqj > :last-child, .framer-J6qTT .framer-rlq7su > :last-child, .framer-J6qTT .framer-b2faji > :last-child, .framer-J6qTT .framer-1oxoj8u > :last-child, .framer-J6qTT .framer-j7qkph > :last-child, .framer-J6qTT .framer-fnjbg8 > :last-child, .framer-J6qTT .framer-qz1ui7 > :last-child, .framer-J6qTT .framer-1xilunt > :last-child, .framer-J6qTT .framer-jw3oio > :last-child, .framer-J6qTT .framer-1x3faz6 > :last-child, .framer-J6qTT .framer-7ow29b > :last-child, .framer-J6qTT .framer-1h048ud > :last-child, .framer-J6qTT .framer-1043iub > :last-child, .framer-J6qTT .framer-e48juv > :last-child, .framer-J6qTT .framer-1x15ebu > :last-child, .framer-J6qTT .framer-1t5n38f > :last-child, .framer-J6qTT .framer-1d9k0b3 > :last-child, .framer-J6qTT .framer-192t6v > :last-child, .framer-J6qTT .framer-x701so > :last-child, .framer-J6qTT .framer-1pjg1ir > :last-child, .framer-J6qTT .framer-pw50nq > :last-child, .framer-J6qTT .framer-10bwblh > :last-child, .framer-J6qTT .framer-1o9s7ot > :last-child, .framer-J6qTT .framer-ot4v73 > :last-child, .framer-J6qTT .framer-eo2y91 > :last-child, .framer-J6qTT .framer-jtlkno > :last-child, .framer-J6qTT .framer-xiud22 > :last-child, .framer-J6qTT .framer-1jyipvd > :last-child, .framer-J6qTT .framer-3tkb9i > :last-child, .framer-J6qTT .framer-n1is29 > :last-child, .framer-J6qTT .framer-1os84or > :last-child, .framer-J6qTT .framer-1xutel2 > :last-child, .framer-J6qTT .framer-16zso52 > :last-child, .framer-J6qTT .framer-hkeft8 > :last-child, .framer-J6qTT .framer-1mhmtep > :last-child { margin-bottom: 0px; } .framer-J6qTT .framer-1eotznu > *, .framer-J6qTT .framer-1u3touf > *, .framer-J6qTT .framer-rlq7su > *, .framer-J6qTT .framer-1oxoj8u > *, .framer-J6qTT .framer-7ow29b > *, .framer-J6qTT .framer-1o9s7ot > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J6qTT .framer-rw757r > *, .framer-J6qTT .framer-15ef9cp > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-J6qTT .framer-rw757r > :first-child, .framer-J6qTT .framer-1vzpd9 > :first-child, .framer-J6qTT .framer-v0iwnl > :first-child, .framer-J6qTT .framer-xuof88 > :first-child, .framer-J6qTT .framer-15ef9cp > :first-child, .framer-J6qTT .framer-kftj2n > :first-child, .framer-J6qTT .framer-1fgbwe0 > :first-child, .framer-J6qTT .framer-6otcud > :first-child, .framer-J6qTT .framer-lnd6fz > :first-child, .framer-J6qTT .framer-1wulmlo > :first-child, .framer-J6qTT .framer-b1py8b > :first-child, .framer-J6qTT .framer-y57ocs > :first-child, .framer-J6qTT .framer-kmg3w2 > :first-child, .framer-J6qTT .framer-z0qmyo > :first-child, .framer-J6qTT .framer-p9wkfv > :first-child, .framer-J6qTT .framer-4h15f7 > :first-child, .framer-J6qTT .framer-l3fmw5 > :first-child, .framer-J6qTT .framer-7bgwx0 > :first-child, .framer-J6qTT .framer-1d16ni1 > :first-child, .framer-J6qTT .framer-zb8asa > :first-child { margin-left: 0px; } .framer-J6qTT .framer-rw757r > :last-child, .framer-J6qTT .framer-1vzpd9 > :last-child, .framer-J6qTT .framer-v0iwnl > :last-child, .framer-J6qTT .framer-xuof88 > :last-child, .framer-J6qTT .framer-15ef9cp > :last-child, .framer-J6qTT .framer-kftj2n > :last-child, .framer-J6qTT .framer-1fgbwe0 > :last-child, .framer-J6qTT .framer-6otcud > :last-child, .framer-J6qTT .framer-lnd6fz > :last-child, .framer-J6qTT .framer-1wulmlo > :last-child, .framer-J6qTT .framer-b1py8b > :last-child, .framer-J6qTT .framer-y57ocs > :last-child, .framer-J6qTT .framer-kmg3w2 > :last-child, .framer-J6qTT .framer-z0qmyo > :last-child, .framer-J6qTT .framer-p9wkfv > :last-child, .framer-J6qTT .framer-4h15f7 > :last-child, .framer-J6qTT .framer-l3fmw5 > :last-child, .framer-J6qTT .framer-7bgwx0 > :last-child, .framer-J6qTT .framer-1d16ni1 > :last-child, .framer-J6qTT .framer-zb8asa > :last-child { margin-right: 0px; } .framer-J6qTT .framer-1vzpd9 > *, .framer-J6qTT .framer-v0iwnl > *, .framer-J6qTT .framer-kftj2n > *, .framer-J6qTT .framer-1fgbwe0 > *, .framer-J6qTT .framer-lnd6fz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-J6qTT .framer-xuof88 > *, .framer-J6qTT .framer-6otcud > *, .framer-J6qTT .framer-y57ocs > *, .framer-J6qTT .framer-4h15f7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-J6qTT .framer-b2faji > *, .framer-J6qTT .framer-1xilunt > *, .framer-J6qTT .framer-ot4v73 > *, .framer-J6qTT .framer-xiud22 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-J6qTT .framer-j7qkph > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-J6qTT .framer-1wulmlo > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-J6qTT .framer-fnjbg8 > *, .framer-J6qTT .framer-eo2y91 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-J6qTT .framer-qz1ui7 > *, .framer-J6qTT .framer-10bwblh > *, .framer-J6qTT .framer-jtlkno > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-J6qTT .framer-b1py8b > *, .framer-J6qTT .framer-kmg3w2 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-J6qTT .framer-1x3faz6 > *, .framer-J6qTT .framer-1043iub > *, .framer-J6qTT .framer-1d9k0b3 > *, .framer-J6qTT .framer-x701so > *, .framer-J6qTT .framer-3tkb9i > *, .framer-J6qTT .framer-n1is29 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-J6qTT .framer-1x15ebu > *, .framer-J6qTT .framer-1t5n38f > *, .framer-J6qTT .framer-1pjg1ir > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-J6qTT .framer-z0qmyo > * { margin: 0px; margin-left: calc(21.084577560424805px / 2); margin-right: calc(21.084577560424805px / 2); } .framer-J6qTT .framer-192t6v > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-J6qTT .framer-p9wkfv > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-J6qTT .framer-pw50nq > * { margin: 0px; margin-bottom: calc(13.03900146484375px / 2); margin-top: calc(13.03900146484375px / 2); } .framer-J6qTT .framer-l3fmw5 > *, .framer-J6qTT .framer-7bgwx0 > *, .framer-J6qTT .framer-1d16ni1 > *, .framer-J6qTT .framer-zb8asa > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } .framer-J6qTT .framer-1jyipvd > *, .framer-J6qTT .framer-1os84or > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-J6qTT .framer-hkeft8 > *, .framer-J6qTT .framer-1mhmtep > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",'.framer-J6qTT[data-border=\"true\"]::after, .framer-J6qTT [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: 1728px) { .framer-J6qTT.framer-72rtr7 { width: 1728px; } .framer-J6qTT .framer-1eotznu, .framer-J6qTT .framer-fnjbg8, .framer-J6qTT .framer-1pjg1ir, .framer-J6qTT .framer-eo2y91, .framer-J6qTT .framer-1xutel2, .framer-J6qTT .framer-19b33np-container { max-width: 1440px; } .framer-J6qTT .framer-7jcnoe { order: 1; } .framer-J6qTT .framer-15ef9cp { order: 0; } .framer-J6qTT .framer-1vgqb76 { background-color: unset; height: var(--framer-aspect-ratio-supported, 923px); } .framer-J6qTT .framer-b1py8b, .framer-J6qTT .framer-1h048ud, .framer-J6qTT .framer-1u0tsqc { width: 100%; } .framer-J6qTT .framer-jw3oio { width: 560px; } .framer-J6qTT .framer-1sufcv6 { background-color: unset; width: 108%; } .framer-J6qTT .framer-mzff0h { height: var(--framer-aspect-ratio-supported, 796px); left: 35px; right: -237px; } .framer-J6qTT .framer-7ow29b, .framer-J6qTT .framer-10bwblh { flex: 1 0 0px; width: 1px; } .framer-J6qTT .framer-p9wkfv { justify-content: center; width: 100%; } .framer-J6qTT .framer-xiud22 { gap: 24px; } .framer-J6qTT .framer-16zso52 { width: 840px; } .framer-J6qTT .framer-jjm9o2 { bottom: unset; height: 1490px; left: -634px; right: -634px; top: -384px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-J6qTT .framer-xiud22 { gap: 0px; } .framer-J6qTT .framer-xiud22 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J6qTT .framer-xiud22 > :first-child { margin-top: 0px; } .framer-J6qTT .framer-xiud22 > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 1024px) and (max-width: 1439px) { .framer-J6qTT.framer-72rtr7 { width: 1024px; } .framer-J6qTT .framer-1vgqb76 { height: var(--framer-aspect-ratio-supported, 630px); width: 92%; } .framer-J6qTT .framer-3z4kdi { left: -58px; } .framer-J6qTT .framer-521a34 { right: -40px; top: calc(54.920634920634946% - 114px / 2); } .framer-J6qTT .framer-b1py8b { flex-direction: column; width: 100%; } .framer-J6qTT .framer-jw3oio { height: 408px; width: 100%; } .framer-J6qTT .framer-mzff0h { height: var(--framer-aspect-ratio-supported, 1305px); } .framer-J6qTT .framer-7ow29b, .framer-J6qTT .framer-1h048ud, .framer-J6qTT .framer-p9wkfv, .framer-J6qTT .framer-1u0tsqc { width: 100%; } .framer-J6qTT .framer-1pjg1ir { padding: 120px 70px 120px 70px; } .framer-J6qTT .framer-uxc2e, .framer-J6qTT .framer-4h15f7 { height: 349px; width: 349px; } .framer-J6qTT .framer-pw50nq { left: 250px; top: calc(53.8681948424069% - 52px / 2); } .framer-J6qTT .framer-1wjqsit { bottom: 0px; height: unset; right: 0px; width: unset; } .framer-J6qTT .framer-4o0ayg { height: 325px; left: calc(50.14326647564472% - 325px / 2); top: calc(50.14326647564472% - 325px / 2); width: 325px; } .framer-J6qTT .framer-13u3v76 { height: 418px; width: 202px; } .framer-J6qTT .framer-15p2051 { aspect-ratio: unset; border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; bottom: 0px; height: unset; } .framer-J6qTT .framer-6s9h64 { bottom: unset; height: 409px; left: calc(50.00000000000002% - 185px / 2); right: unset; top: calc(50.00000000000002% - 409px / 2); width: 185px; } .framer-J6qTT .framer-10bwblh { flex: 1 0 0px; width: 1px; } .framer-J6qTT .framer-1iipcfu { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-J6qTT .framer-b1py8b { gap: 0px; } .framer-J6qTT .framer-b1py8b > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J6qTT .framer-b1py8b > :first-child { margin-top: 0px; } .framer-J6qTT .framer-b1py8b > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 428px) and (max-width: 1023px) { .framer-J6qTT.framer-72rtr7 { padding: 24px 16px 24px 16px; width: 428px; } .framer-J6qTT .framer-1eotznu { padding: 0px 0px 72px 0px; } .framer-J6qTT .framer-1u3touf { gap: 16px; } .framer-J6qTT .framer-1tzzzrj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: min-content; } .framer-J6qTT .framer-1o7las { left: unset; position: relative; top: unset; transform: unset; } .framer-J6qTT .framer-1vzpd9 { position: relative; right: unset; top: unset; transform: unset; } .framer-J6qTT .framer-v0iwnl { order: 0; } .framer-J6qTT .framer-7jcnoe { padding: 0px; } .framer-J6qTT .framer-1x7ewqj { gap: 48px; justify-content: flex-start; } .framer-J6qTT .framer-14lupjv-container { left: 10%; top: 340px; } .framer-J6qTT .framer-pn4hby-container { left: 90%; top: 65px; } .framer-J6qTT .framer-rlq7su { padding: 0px 16px 0px 16px; width: 100%; } .framer-J6qTT .framer-b2faji, .framer-J6qTT .framer-1oxoj8u, .framer-J6qTT .framer-5akyd9, .framer-J6qTT .framer-qz1ui7, .framer-J6qTT .framer-1xilunt, .framer-J6qTT .framer-m8h7gi, .framer-J6qTT .framer-1x3faz6, .framer-J6qTT .framer-1tt0pkc, .framer-J6qTT .framer-7ow29b, .framer-J6qTT .framer-1h048ud, .framer-J6qTT .framer-1043iub, .framer-J6qTT .framer-1h9pbke, .framer-J6qTT .framer-1d9k0b3, .framer-J6qTT .framer-6xhiv4, .framer-J6qTT .framer-x701so, .framer-J6qTT .framer-15rm81h, .framer-J6qTT .framer-10bwblh, .framer-J6qTT .framer-1u0tsqc, .framer-J6qTT .framer-jtlkno, .framer-J6qTT .framer-xiud22, .framer-J6qTT .framer-1yw2dhg, .framer-J6qTT .framer-16zso52, .framer-J6qTT .framer-es3osq { width: 100%; } .framer-J6qTT .framer-j7qkph { align-self: unset; width: 100%; } .framer-J6qTT .framer-1vgqb76 { align-content: center; align-items: center; aspect-ratio: unset; background-color: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 396px; } .framer-J6qTT .framer-3z4kdi { bottom: 110px; left: 53px; z-index: 1; } .framer-J6qTT .framer-521a34 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 275px; padding: 0px; right: unset; top: 110px; width: min-content; z-index: 1; } .framer-J6qTT .framer-1q3scf { height: 59px; left: unset; position: relative; top: unset; width: 66px; } .framer-J6qTT .framer-6fi91x { bottom: unset; height: 410px; left: unset; position: relative; top: unset; } .framer-J6qTT .framer-fnjbg8 { gap: 48px; } .framer-J6qTT .framer-b1py8b, .framer-J6qTT .framer-p9wkfv { flex-direction: column; width: 100%; } .framer-J6qTT .framer-jw3oio { height: 408px; width: 100%; } .framer-J6qTT .framer-1sufcv6 { width: 119%; } .framer-J6qTT .framer-mzff0h { height: var(--framer-aspect-ratio-supported, 610px); right: -176px; } .framer-J6qTT .framer-b91hsd, .framer-J6qTT .framer-d4bcyk, .framer-J6qTT .framer-3atb1w, .framer-J6qTT .framer-l8ozfo { will-change: unset; } .framer-J6qTT .framer-kmg3w2 { flex-direction: column; } .framer-J6qTT .framer-e48juv, .framer-J6qTT .framer-192t6v { flex: none; width: 100%; } .framer-J6qTT .framer-msd3qr, .framer-J6qTT .framer-1iipcfu, .framer-J6qTT .framer-1jdr7j6 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-J6qTT .framer-1pjg1ir { padding: 120px 24px 72px 24px; } .framer-J6qTT .framer-uxc2e, .framer-J6qTT .framer-4h15f7 { height: 349px; width: 349px; } .framer-J6qTT .framer-pw50nq { left: 250px; top: 82px; } .framer-J6qTT .framer-1wjqsit { bottom: 0px; height: unset; right: 0px; width: unset; } .framer-J6qTT .framer-4o0ayg { height: 347px; left: calc(50.14326647564472% - 347px / 2); top: calc(50.14326647564472% - 347px / 2); width: 347px; } .framer-J6qTT .framer-13u3v76 { aspect-ratio: 0.4834558823529412 / 1; height: var(--framer-aspect-ratio-supported, 418px); width: 202px; } .framer-J6qTT .framer-15p2051 { aspect-ratio: unset; border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; bottom: unset; height: 418px; left: calc(50.00000000000002% - 202px / 2); right: unset; top: calc(50.00000000000002% - 418px / 2); width: 202px; } .framer-J6qTT .framer-6s9h64 { bottom: 6px; left: 7px; right: 8px; top: 7px; } .framer-J6qTT .framer-1xutel2 { padding: 120px 24px 120px 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-J6qTT .framer-1u3touf, .framer-J6qTT .framer-1tzzzrj, .framer-J6qTT .framer-1x7ewqj, .framer-J6qTT .framer-1vgqb76, .framer-J6qTT .framer-521a34, .framer-J6qTT .framer-fnjbg8, .framer-J6qTT .framer-b1py8b, .framer-J6qTT .framer-kmg3w2, .framer-J6qTT .framer-p9wkfv { gap: 0px; } .framer-J6qTT .framer-1u3touf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-J6qTT .framer-1u3touf > :first-child, .framer-J6qTT .framer-1x7ewqj > :first-child, .framer-J6qTT .framer-1vgqb76 > :first-child, .framer-J6qTT .framer-fnjbg8 > :first-child, .framer-J6qTT .framer-b1py8b > :first-child, .framer-J6qTT .framer-kmg3w2 > :first-child, .framer-J6qTT .framer-p9wkfv > :first-child { margin-top: 0px; } .framer-J6qTT .framer-1u3touf > :last-child, .framer-J6qTT .framer-1x7ewqj > :last-child, .framer-J6qTT .framer-1vgqb76 > :last-child, .framer-J6qTT .framer-fnjbg8 > :last-child, .framer-J6qTT .framer-b1py8b > :last-child, .framer-J6qTT .framer-kmg3w2 > :last-child, .framer-J6qTT .framer-p9wkfv > :last-child { margin-bottom: 0px; } .framer-J6qTT .framer-1tzzzrj > *, .framer-J6qTT .framer-521a34 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-J6qTT .framer-1tzzzrj > :first-child, .framer-J6qTT .framer-521a34 > :first-child { margin-left: 0px; } .framer-J6qTT .framer-1tzzzrj > :last-child, .framer-J6qTT .framer-521a34 > :last-child { margin-right: 0px; } .framer-J6qTT .framer-1x7ewqj > *, .framer-J6qTT .framer-fnjbg8 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-J6qTT .framer-1vgqb76 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-J6qTT .framer-b1py8b > *, .framer-J6qTT .framer-kmg3w2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J6qTT .framer-p9wkfv > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\",\"@media (max-width: 427px) { .framer-J6qTT.framer-72rtr7 { padding: 24px 16px 24px 16px; width: 320px; } .framer-J6qTT .framer-1eotznu { order: 0; padding: 0px 0px 72px 0px; } .framer-J6qTT .framer-1u3touf { gap: 16px; } .framer-J6qTT .framer-1tzzzrj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: 1px; } .framer-J6qTT .framer-1o7las { left: unset; position: relative; top: unset; transform: unset; } .framer-J6qTT .framer-xuof88 { min-height: 14px; min-width: 14px; } .framer-J6qTT .framer-7jcnoe, .framer-J6qTT .framer-1t5n38f { padding: 0px; } .framer-J6qTT .framer-1x7ewqj { justify-content: flex-start; } .framer-J6qTT .framer-rlq7su { padding: 0px 16px 0px 16px; width: 100%; } .framer-J6qTT .framer-b2faji, .framer-J6qTT .framer-1oxoj8u, .framer-J6qTT .framer-5akyd9, .framer-J6qTT .framer-qz1ui7, .framer-J6qTT .framer-1xilunt, .framer-J6qTT .framer-m8h7gi, .framer-J6qTT .framer-1x3faz6, .framer-J6qTT .framer-1tt0pkc, .framer-J6qTT .framer-7ow29b, .framer-J6qTT .framer-6xhiv4, .framer-J6qTT .framer-x701so, .framer-J6qTT .framer-15rm81h, .framer-J6qTT .framer-10bwblh, .framer-J6qTT .framer-1u0tsqc, .framer-J6qTT .framer-xiud22, .framer-J6qTT .framer-1yw2dhg, .framer-J6qTT .framer-16zso52, .framer-J6qTT .framer-es3osq { width: 100%; } .framer-J6qTT .framer-j7qkph { align-self: unset; width: 100%; } .framer-J6qTT .framer-1vgqb76 { align-content: center; align-items: center; aspect-ratio: unset; background-color: unset; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 288px; } .framer-J6qTT .framer-3z4kdi { bottom: 99px; left: 23px; z-index: 1; } .framer-J6qTT .framer-521a34 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 209px; padding: 0px; right: unset; top: 90px; width: min-content; z-index: 1; } .framer-J6qTT .framer-1q3scf { height: 49px; left: unset; position: relative; top: unset; width: 55px; } .framer-J6qTT .framer-6fi91x { bottom: unset; height: 360px; left: unset; position: relative; top: unset; width: 174px; } .framer-J6qTT .framer-1pk6kkn { bottom: unset; height: var(--framer-aspect-ratio-supported, 360px); } .framer-J6qTT .framer-97zw0i { height: 346px; left: 0px; right: 0px; top: calc(50.00000000000002% - 346px / 2); width: unset; } .framer-J6qTT .framer-fnjbg8, .framer-J6qTT .framer-9pzvx1-container { order: 1; } .framer-J6qTT .framer-ufoxox, .framer-J6qTT .framer-msd3qr, .framer-J6qTT .framer-1iipcfu, .framer-J6qTT .framer-ay5ow, .framer-J6qTT .framer-1jdr7j6 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-J6qTT .framer-b1py8b, .framer-J6qTT .framer-p9wkfv { flex-direction: column; width: 100%; } .framer-J6qTT .framer-jw3oio { height: 408px; padding: 32px; width: 100%; } .framer-J6qTT .framer-1sufcv6 { width: 121%; } .framer-J6qTT .framer-mzff0h { height: var(--framer-aspect-ratio-supported, 497px); right: -178px; } .framer-J6qTT .framer-1h048ud { padding: 32px; width: 100%; } .framer-J6qTT .framer-kmg3w2 { flex-direction: column; } .framer-J6qTT .framer-e48juv { flex: none; height: min-content; width: 100%; } .framer-J6qTT .framer-1d9k0b3 { padding: 0px 32px 32px 32px; width: 100%; } .framer-J6qTT .framer-192t6v { flex: none; padding: 32px; width: 100%; } .framer-J6qTT .framer-12hlwnp { height: 194px; width: 245px; } .framer-J6qTT .framer-f0unwe { height: 215px; left: calc(73.46938775510206% - 367px / 2); top: calc(46.391752577319615% - 215px / 2); width: 367px; } .framer-J6qTT .framer-2m5bos { bottom: 4px; height: 130px; left: calc(51.836734693877574% - 197px / 2); top: unset; width: 197px; } .framer-J6qTT .framer-18a7tp4 { height: 130px; left: 0px; top: 0px; width: 228px; } .framer-J6qTT .framer-kl90ps { left: 11px; top: 0px; width: 190px; } .framer-J6qTT .framer-1pavx6n { bottom: 11px; left: 0px; top: unset; width: 213px; } .framer-J6qTT .framer-1pjg1ir { order: 2; padding: 80px 24px 72px 24px; } .framer-J6qTT .framer-uxc2e, .framer-J6qTT .framer-4h15f7 { height: 349px; width: 349px; } .framer-J6qTT .framer-pw50nq { left: 220px; top: 82px; } .framer-J6qTT .framer-1wjqsit { height: 263px; left: calc(49.85673352435532% - 263px / 2); top: calc(49.85673352435532% - 263px / 2); width: 263px; } .framer-J6qTT .framer-4o0ayg { height: 261px; left: calc(50.14326647564472% - 261px / 2); top: calc(50.14326647564472% - 261px / 2); width: 261px; } .framer-J6qTT .framer-13u3v76 { aspect-ratio: 0.4834558823529412 / 1; height: var(--framer-aspect-ratio-supported, 283px); width: 137px; } .framer-J6qTT .framer-15p2051 { aspect-ratio: unset; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: unset; height: 287px; left: calc(50.00000000000002% - 137px / 2); right: unset; top: calc(49.880095923261415% - 287px / 2); width: 137px; } .framer-J6qTT .framer-6s9h64 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 4px; left: 4px; right: 4px; top: 4px; } .framer-J6qTT .framer-19cs5ca { aspect-ratio: 1 / 1; bottom: 107px; height: var(--framer-aspect-ratio-supported, 60px); width: 60px; } .framer-J6qTT .framer-1ov3721 { height: 46px; left: calc(50.00000000000002% - 46px / 2); top: calc(50.00000000000002% - 46px / 2); width: 46px; } .framer-J6qTT .framer-eo2y91 { gap: 40px; height: min-content; order: 4; padding: 72px 24px 72px 24px; } .framer-J6qTT .framer-jtlkno { order: 0; width: 100%; } .framer-J6qTT .framer-1xutel2 { order: 5; padding: 72px 24px 72px 24px; } .framer-J6qTT .framer-12rggde { height: 64px; width: 204px; } .framer-J6qTT .framer-19b33np-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-J6qTT .framer-1u3touf, .framer-J6qTT .framer-1tzzzrj, .framer-J6qTT .framer-1vgqb76, .framer-J6qTT .framer-521a34, .framer-J6qTT .framer-b1py8b, .framer-J6qTT .framer-kmg3w2, .framer-J6qTT .framer-p9wkfv, .framer-J6qTT .framer-eo2y91 { gap: 0px; } .framer-J6qTT .framer-1u3touf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-J6qTT .framer-1u3touf > :first-child, .framer-J6qTT .framer-b1py8b > :first-child, .framer-J6qTT .framer-kmg3w2 > :first-child, .framer-J6qTT .framer-p9wkfv > :first-child, .framer-J6qTT .framer-eo2y91 > :first-child { margin-top: 0px; } .framer-J6qTT .framer-1u3touf > :last-child, .framer-J6qTT .framer-b1py8b > :last-child, .framer-J6qTT .framer-kmg3w2 > :last-child, .framer-J6qTT .framer-p9wkfv > :last-child, .framer-J6qTT .framer-eo2y91 > :last-child { margin-bottom: 0px; } .framer-J6qTT .framer-1tzzzrj > *, .framer-J6qTT .framer-1vgqb76 > *, .framer-J6qTT .framer-521a34 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-J6qTT .framer-1tzzzrj > :first-child, .framer-J6qTT .framer-1vgqb76 > :first-child, .framer-J6qTT .framer-521a34 > :first-child { margin-left: 0px; } .framer-J6qTT .framer-1tzzzrj > :last-child, .framer-J6qTT .framer-1vgqb76 > :last-child, .framer-J6qTT .framer-521a34 > :last-child { margin-right: 0px; } .framer-J6qTT .framer-b1py8b > *, .framer-J6qTT .framer-kmg3w2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J6qTT .framer-p9wkfv > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-J6qTT .framer-eo2y91 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5253\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LA85W3Ouo\":{\"layout\":[\"fixed\",\"auto\"]},\"BfsqAstCU\":{\"layout\":[\"fixed\",\"auto\"]},\"lOqq2VQGk\":{\"layout\":[\"fixed\",\"auto\"]},\"nMlihs96b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"OWKCtoj9b\":{\"pattern\":\":OWKCtoj9b\",\"name\":\"hero\"},\"WWFJb8wA2\":{\"pattern\":\":WWFJb8wA2\",\"name\":\"features1\"},\"CODRjOOxP\":{\"pattern\":\":CODRjOOxP\",\"name\":\"organizelikeapro\"},\"TqVHWHkNe\":{\"pattern\":\":TqVHWHkNe\",\"name\":\"customizable-views\"},\"gc6WL5Cil\":{\"pattern\":\":gc6WL5Cil\",\"name\":\"features2\"},\"sdANUxY8C\":{\"pattern\":\":sdANUxY8C\",\"name\":\"last-cta\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-J6qTT\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5253,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qWSRToK8EPg.woff2\",weight:\"300\"},{family:\"Kalam\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kalam/v17/YA9dr0Wd4kDdMuhTMibDszkB.woff2\",weight:\"400\"}]},...NavbarFonts,...HeroCircleFonts,...CTAButtonFonts,...TickerFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5253\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LA85W3Ouo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BfsqAstCU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lOqq2VQGk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nMlihs96b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"OWKCtoj9b\\\":{\\\"pattern\\\":\\\":OWKCtoj9b\\\",\\\"name\\\":\\\"hero\\\"},\\\"WWFJb8wA2\\\":{\\\"pattern\\\":\\\":WWFJb8wA2\\\",\\\"name\\\":\\\"features1\\\"},\\\"CODRjOOxP\\\":{\\\"pattern\\\":\\\":CODRjOOxP\\\",\\\"name\\\":\\\"organizelikeapro\\\"},\\\"TqVHWHkNe\\\":{\\\"pattern\\\":\\\":TqVHWHkNe\\\",\\\"name\\\":\\\"customizable-views\\\"},\\\"gc6WL5Cil\\\":{\\\"pattern\\\":\\\":gc6WL5Cil\\\",\\\"name\\\":\\\"features2\\\"},\\\"sdANUxY8C\\\":{\\\"pattern\\\":\\\":sdANUxY8C\\\",\\\"name\\\":\\\"last-cta\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__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", "i", "h", "u", "d", "f", "l", "g", "glide", "c", "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", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "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", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "inertia", "preventDefault", "e", "transition1", "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", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "SVG", "css", "FramerzsNUMdZlB", "withCSS", "zsNUMdZlB_default", "addPropertyControls", "ControlType", "addFonts", "NavbarFonts", "getFonts", "pzdK18Nv6_default", "HeroCircleFonts", "zsNUMdZlB_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "CTAButtonFonts", "q7p3j8NmJ_default", "ContainerWithFX", "MotionDivWithOptimizedAppearEffect", "ImageWithFX", "Image2", "TickerFonts", "Ticker", "FooterFonts", "zanPsjGVC_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "animation8", "transition3", "transition4", "animation9", "transition5", "transition6", "transition7", "animation10", "transition8", "animation11", "animation12", "transition9", "animation13", "transition10", "animation14", "animation15", "animation16", "transition11", "animation17", "animation18", "animation19", "transition12", "animation20", "animation21", "transition13", "animation22", "animation23", "animation24", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "x", "Link", "SVG", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
