{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js", "ssg:https://framerusercontent.com/modules/VBqZ2jTdLuDakOzwJ9Tr/DCHl9DyIjCkGbpyVThQS/dLKgDaUrY.js", "ssg:https://framerusercontent.com/modules/q9Fp5yetZFbaSqrBp8xb/rhLUlNbAiNqChPMUS9mb/q8dplMS_Q.js", "ssg:https://framerusercontent.com/modules/qc6uudMvPoaDfukooHeb/00wnKTDiEWXKlHHRpuOB/dyz77fVFe.js", "ssg:https://framerusercontent.com/modules/A5DdfR8ImIiynadkILGq/9Z7goq1udwmvFGxUYaEo/mrWSw81Lm.js", "ssg:https://framerusercontent.com/modules/kBArEB0ZNe6IpQywt1CI/NdZIM59YGHRmYPHur2iD/p1ik0tlLx.js", "ssg:https://framerusercontent.com/modules/AN7ePEVHgbcQZ5qHBRhC/QDykQbqC4pQN9jgVRMIi/r3Ip11frV.js", "ssg:https://framerusercontent.com/modules/89MHd6VafJHeID8qHUi8/MX9wFXKMXihj4WKU9JBo/t_oTMlfm9.js", "ssg:https://framerusercontent.com/modules/UYX3atrdkOcuoJ6nMOqI/0SlZ1WieTkJL4qUqMbmm/UJJoASFq5.js", "ssg:https://framerusercontent.com/modules/w6eKz7T7d1uSyFzS7p5l/n7KPpMlToBx8P8kegyx8/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"XPr8EQtZU\",\"Dyp_2QGdA\",\"fFv15wZAg\",\"pkkXDbJuS\"];const serializationHash=\"framer-9b3tU\";const variantClassNames={Dyp_2QGdA:\"framer-v-i8szq0\",fFv15wZAg:\"framer-v-42y3is\",pkkXDbJuS:\"framer-v-104c1ao\",XPr8EQtZU:\"framer-v-x4vxfu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.5,delay:0,duration:2,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"XPr8EQtZU\",\"Variant 2\":\"Dyp_2QGdA\",\"Variant 3\":\"fFv15wZAg\",\"Variant 4\":\"pkkXDbJuS\"};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:\"XPr8EQtZU\"};};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:\"XPr8EQtZU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearxsdi7m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Dyp_2QGdA\"),1e3);});const onAppear1d7s6ma=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fFv15wZAg\"),1500);});const onAppear12x2qtt=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pkkXDbJuS\"),1500);});const onAppearg565ij=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"XPr8EQtZU\"),1500);});useOnVariantChange(baseVariant,{default:onAppearxsdi7m,Dyp_2QGdA:onAppear1d7s6ma,fFv15wZAg:onAppear12x2qtt,pkkXDbJuS:onAppearg565ij});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-x4vxfu\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XPr8EQtZU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Dyp_2QGdA:{\"data-framer-name\":\"Variant 2\"},fFv15wZAg:{\"data-framer-name\":\"Variant 3\"},pkkXDbJuS:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xv5cqf\",layoutDependency:layoutDependency,layoutId:\"iGdpi5U0g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-101cl5e\",\"data-framer-name\":\"Back\",layoutDependency:layoutDependency,layoutId:\"lWHGJJDPD\",style:{background:\"linear-gradient(180.0000000013428deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:30.7,borderBottomRightRadius:30.7,borderTopLeftRadius:30.7,borderTopRightRadius:30.7}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Roboto Mono\", monospace',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.45))\"},children:\"Please\"})}),className:\"framer-t2f9y8\",\"data-framer-name\":\"Please\",fonts:[\"GF;Roboto Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"SftMdLW5C\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.45)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Roboto Mono\", monospace',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.45))\"},children:\"this\"})}),className:\"framer-10p4ou8\",\"data-framer-name\":\"this\",fonts:[\"GF;Roboto Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"ZuFmH0sKp\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.45)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iq156e\",\"data-framer-name\":\"loop\",layoutDependency:layoutDependency,layoutId:\"D4ICEeTsX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17qnsya\",\"data-framer-name\":\"rectangle\",layoutDependency:layoutDependency,layoutId:\"LFJnWmVLM\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.30000001192092896) 100%)\",borderBottomLeftRadius:7.33,borderBottomRightRadius:7.33,borderTopLeftRadius:7.33,borderTopRightRadius:7.33,boxShadow:\"inset 0px 2.4441144466400146px 4.888228893280029px 0px rgba(255, 255, 255, 1), inset 0px -1.2220572233200073px 2.9329373836517334px 0px rgba(0, 102, 255, 0.38999998569488525)\",rotate:-32}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1380r2d\",\"data-framer-name\":\"rectangle\",layoutDependency:layoutDependency,layoutId:\"q0MKWihE7\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.30000001192092896) 100%)\",borderBottomLeftRadius:7.33,borderBottomRightRadius:7.33,borderTopLeftRadius:7.33,borderTopRightRadius:7.33,boxShadow:\"inset 0px 2.4441144466400146px 4.888228893280029px 0px rgba(255, 255, 255, 1), inset 0px -1.2220572233200073px 2.9329373836517334px 0px rgba(0, 102, 255, 0.38999998569488525)\",rotate:-32}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:286.5,intrinsicWidth:286.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||224)-0)*.5000000000000002-110)+20),pixelHeight:573,pixelWidth:573,sizes:\"130px\",src:\"https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png 573w\"},className:\"framer-1wyd07h\",\"data-framer-name\":\"cirlce\",layoutDependency:layoutDependency,layoutId:\"TBM_tppvL\",transformTemplate:transformTemplate1,...addPropertyOverrides({Dyp_2QGdA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:286.5,intrinsicWidth:286.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-4+20),pixelHeight:573,pixelWidth:573,sizes:\"130px\",src:\"https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png 573w\"}},fFv15wZAg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:286.5,intrinsicWidth:286.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||224)-0)-210+20),pixelHeight:573,pixelWidth:573,sizes:\"130px\",src:\"https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png 573w\"}},pkkXDbJuS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:286.5,intrinsicWidth:286.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-9+20),pixelHeight:573,pixelWidth:573,sizes:\"130px\",src:\"https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/akTHDeJKIlZ5YllVV58CVRM8w.png 573w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Roboto Mono\", monospace',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.45))\"},children:\"chek\"})}),className:\"framer-1wq5ds2\",\"data-framer-name\":\"chek\",fonts:[\"GF;Roboto Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"RmJ3jEkA5\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.45)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fy3k5j\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:71,layoutDependency:layoutDependency,layoutId:\"E1L2inzCG\",svg:'<svg width=\"71\" height=\"7\" viewBox=\"-1 -1 71 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.714844 3.71818L1.47671 2.44841C1.91377 1.71998 2.99116 1.78958 3.33086 2.56819L3.36613 2.64902C3.72808 3.47863 4.91479 3.44915 5.23511 2.6026L5.26834 2.51476C5.58574 1.67593 6.77235 1.67593 7.08974 2.51476V2.51476C7.40714 3.35359 8.59375 3.35359 8.91114 2.51476V2.51476C9.22854 1.67593 10.4151 1.67593 10.7325 2.51476V2.51476C11.0499 3.35359 12.2365 3.35359 12.5539 2.51476V2.51476C12.8713 1.67593 14.0579 1.67593 14.3753 2.51476V2.51476C14.6927 3.35359 15.8793 3.35359 16.1967 2.51476V2.51476C16.5141 1.67593 17.7007 1.67593 18.0181 2.51476V2.51476C18.3355 3.35359 19.5221 3.35359 19.8395 2.51476V2.51476C20.1569 1.67593 21.3435 1.67593 21.6609 2.51476V2.51476C21.9783 3.35359 23.1649 3.35359 23.4823 2.51476V2.51476C23.7997 1.67593 24.9863 1.67593 25.3037 2.51476V2.51476C25.6211 3.35359 26.8077 3.35359 27.1251 2.51476V2.51476C27.4425 1.67593 28.6291 1.67593 28.9465 2.51476V2.51476C29.2639 3.35359 30.4505 3.35359 30.7679 2.51476V2.51476C31.0853 1.67593 32.2719 1.67593 32.5893 2.51476V2.51476C32.9067 3.35359 34.0933 3.35359 34.4107 2.51476V2.51476C34.7281 1.67593 35.9147 1.67593 36.2321 2.51476V2.51476C36.5495 3.35359 37.7361 3.35359 38.0535 2.51476V2.51476C38.3709 1.67593 39.5575 1.67593 39.8749 2.51476V2.51476C40.1923 3.35359 41.3789 3.35359 41.6963 2.51476V2.51476C42.0137 1.67593 43.2003 1.67593 43.5177 2.51476V2.51476C43.8351 3.35359 45.0217 3.35359 45.3391 2.51476V2.51476C45.6565 1.67593 46.8431 1.67593 47.1605 2.51476V2.51476C47.4779 3.35359 48.6645 3.35359 48.9819 2.51476V2.51476C49.2993 1.67593 50.4859 1.67593 50.8033 2.51476V2.51476C51.1207 3.35359 52.3073 3.35359 52.6247 2.51476V2.51476C52.9421 1.67593 54.1287 1.67593 54.4461 2.51476V2.51476C54.7635 3.35359 55.9501 3.35359 56.2675 2.51476V2.51476C56.5849 1.67593 57.7715 1.67593 58.0889 2.51476V2.51476C58.4063 3.35359 59.5929 3.35359 59.9103 2.51476V2.51476C60.2277 1.67593 61.4143 1.67593 61.7317 2.51476V2.51476C62.0491 3.35359 63.2357 3.35359 63.5531 2.51476L63.5864 2.42692C63.9067 1.58037 65.0934 1.55089 65.4553 2.38049L65.5456 2.58731C65.883 3.36076 66.9294 3.48274 67.4357 2.80765L68.1066 1.91305\" stroke=\"#FF7A00\" stroke-width=\"0.601712\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9b3tU.framer-1fing2b, .framer-9b3tU .framer-1fing2b { display: block; }\",\".framer-9b3tU.framer-x4vxfu { height: 224px; position: relative; width: 370px; }\",\".framer-9b3tU .framer-xv5cqf { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-9b3tU .framer-101cl5e { flex: none; height: 70px; left: calc(50.00000000000002% - 313px / 2); position: absolute; top: 54px; width: 313px; }\",\".framer-9b3tU .framer-t2f9y8 { flex: none; height: auto; left: 73px; position: absolute; top: 80px; white-space: pre; width: auto; }\",\".framer-9b3tU .framer-10p4ou8 { flex: none; height: auto; position: absolute; right: 94px; top: 80px; white-space: pre; width: auto; }\",\".framer-9b3tU .framer-1iq156e { flex: none; height: 220px; left: calc(50.00000000000002% - 180px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 220px / 2); width: 180px; }\",\".framer-9b3tU .framer-17qnsya { bottom: 67px; flex: none; height: 10px; position: absolute; right: 44px; width: 14px; }\",\".framer-9b3tU .framer-1380r2d { bottom: -1px; flex: none; height: 73px; position: absolute; right: 20px; width: 14px; }\",\".framer-9b3tU .framer-1wyd07h { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 130px); left: 49%; overflow: visible; position: absolute; top: 20px; width: 130px; }\",\".framer-9b3tU .framer-1wq5ds2 { flex: none; height: auto; left: 50%; position: absolute; top: 76px; white-space: pre; width: auto; }\",\".framer-9b3tU .framer-1fy3k5j { flex: none; height: 5px; left: calc(50.00000000000002% - 55px / 2); position: absolute; top: calc(45.982142857142875% - 5px / 2); width: 55px; }\",\".framer-9b3tU.framer-v-i8szq0 .framer-1iq156e { left: calc(53.783783783783804% - 180px / 2); top: -4px; }\",\".framer-9b3tU.framer-v-42y3is .framer-1iq156e { bottom: -10px; left: calc(47.29729729729732% - 180px / 2); top: unset; }\",\".framer-9b3tU.framer-v-104c1ao .framer-1iq156e { left: 73px; top: -9px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 224\n * @framerIntrinsicWidth 370\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Dyp_2QGdA\":{\"layout\":[\"fixed\",\"fixed\"]},\"fFv15wZAg\":{\"layout\":[\"fixed\",\"fixed\"]},\"pkkXDbJuS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdLKgDaUrY=withCSS(Component,css,\"framer-9b3tU\");export default FramerdLKgDaUrY;FramerdLKgDaUrY.displayName=\"bento-search\";FramerdLKgDaUrY.defaultProps={height:224,width:370};addPropertyControls(FramerdLKgDaUrY,{variant:{options:[\"XPr8EQtZU\",\"Dyp_2QGdA\",\"fFv15wZAg\",\"pkkXDbJuS\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdLKgDaUrY,[{explicitInter:true,fonts:[{family:\"Roboto Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPRu-5Ip2sSQ.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdLKgDaUrY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Dyp_2QGdA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fFv15wZAg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pkkXDbJuS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"224\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"370\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dLKgDaUrY.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ihpaYFshV\",\"u19drcR09\"];const serializationHash=\"framer-TWQbf\";const variantClassNames={ihpaYFshV:\"framer-v-wmmpfx\",u19drcR09:\"framer-v-17hqb61\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={default:\"ihpaYFshV\",mobile:\"u19drcR09\"};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:\"ihpaYFshV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);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:\"ihpaYFshV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wmmpfx\",className,classNames),\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"ihpaYFshV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"inset 0px -1px 1px 0px rgba(10, 114, 237, 0.64)\",...style},...addPropertyOverrides({u19drcR09:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:71.5,intrinsicWidth:74.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||30)*.5000000000000002-8.5)),pixelHeight:143,pixelWidth:149,src:\"https://framerusercontent.com/images/e5K44DoOqwEsWQKkBBVRNE8m6M.png\"},className:\"framer-1g5zhr4\",\"data-framer-name\":\"star\",layoutDependency:layoutDependency,layoutId:\"lfuTCGWUc\",transformTemplate:transformTemplate1,...addPropertyOverrides({u19drcR09:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:71.5,intrinsicWidth:74.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||20)*.5000000000000002-6.75)),pixelHeight:143,pixelWidth:149,src:\"https://framerusercontent.com/images/e5K44DoOqwEsWQKkBBVRNE8m6M.png\"}}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TWQbf.framer-cfcirj, .framer-TWQbf .framer-cfcirj { display: block; }\",\".framer-TWQbf.framer-wmmpfx { height: 30px; overflow: hidden; position: relative; width: 30px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TWQbf .framer-1g5zhr4 { aspect-ratio: 1.0419580419580419 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 18px; }\",\".framer-TWQbf.framer-v-17hqb61.framer-wmmpfx { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\".framer-TWQbf.framer-v-17hqb61 .framer-1g5zhr4 { height: var(--framer-aspect-ratio-supported, 12px); width: 12px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"u19drcR09\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerq8dplMS_Q=withCSS(Component,css,\"framer-TWQbf\");export default Framerq8dplMS_Q;Framerq8dplMS_Q.displayName=\"star-rating\";Framerq8dplMS_Q.defaultProps={height:30,width:30};addPropertyControls(Framerq8dplMS_Q,{variant:{options:[\"ihpaYFshV\",\"u19drcR09\"],optionTitles:[\"default\",\"mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerq8dplMS_Q,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerq8dplMS_Q\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"30\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u19drcR09\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"30\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./q8dplMS_Q.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/e9g92O1TzYylB9IFs7JA/d9MTFBrZIPNHMv7R75Fd/qyLrSg2zc.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pkuKbYNiGMcrgDo7JpkH/KZ88E62pp9DErTBe1sRh/RZRCGW1H5.js\";import StarRating from\"https://framerusercontent.com/modules/q9Fp5yetZFbaSqrBp8xb/rhLUlNbAiNqChPMUS9mb/q8dplMS_Q.js\";const StarRatingFonts=getFonts(StarRating);const cycleOrder=[\"vMAEfH4Se\",\"OoX1I922v\"];const serializationHash=\"framer-aMn85\";const variantClassNames={OoX1I922v:\"framer-v-t8k9fj\",vMAEfH4Se:\"framer-v-ttrqgk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.8,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Desktop:\"vMAEfH4Se\",Mobile:\"OoX1I922v\"};const getProps=({description,height,icon,id,name1,star,star2,star3,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6;return{...props,eWCOK5vem:(_ref=star!==null&&star!==void 0?star:props.eWCOK5vem)!==null&&_ref!==void 0?_ref:true,gL9wCDKLZ:(_ref1=star3!==null&&star3!==void 0?star3:props.gL9wCDKLZ)!==null&&_ref1!==void 0?_ref1:true,oFT7eDP8G:(_ref2=description!==null&&description!==void 0?description:props.oFT7eDP8G)!==null&&_ref2!==void 0?_ref2:\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna. Somethin else should be written here\",orK8NDzCR:(_ref3=name1!==null&&name1!==void 0?name1:props.orK8NDzCR)!==null&&_ref3!==void 0?_ref3:\"Max Mustermann\",rtkvAOQyh:(_ref4=icon!==null&&icon!==void 0?icon:props.rtkvAOQyh)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/scPVkZ1RKiteEDc2padYCYfu3Po.png\"},variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"vMAEfH4Se\",ZFIA3cQ03:(_ref6=star2!==null&&star2!==void 0?star2:props.ZFIA3cQ03)!==null&&_ref6!==void 0?_ref6:true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,oFT7eDP8G,orK8NDzCR,rtkvAOQyh,eWCOK5vem,ZFIA3cQ03,gL9wCDKLZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vMAEfH4Se\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ttrqgk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"vMAEfH4Se\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(179.9999999999999deg, rgba(255, 255, 255, 1) 0%, rgb(181, 216, 255) 100%)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},variants:{OoX1I922v:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},...addPropertyOverrides({OoX1I922v:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k7v3ke\",\"data-styles-preset\":\"RZRCGW1H5\",style:{\"--framer-text-alignment\":\"left\"},children:\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna. Somethin else should be written here\"})}),className:\"framer-p3ky7f\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ib0k9nWQ1\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.9},text:oFT7eDP8G,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wyxjek\",\"data-framer-name\":\"person\",layoutDependency:layoutDependency,layoutId:\"aPLXxmdbo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+38+159.9+0),sizes:\"80px\",...toResponsiveImage(rtkvAOQyh),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1jk03aw\",\"data-border\":true,\"data-framer-name\":\"memoji\",layoutDependency:layoutDependency,layoutId:\"JJgzMzKsH\",style:{\"--border-bottom-width\":\"1.8176472187042236px\",\"--border-color\":\"rgb(251, 251, 248)\",\"--border-left-width\":\"1.8176472187042236px\",\"--border-right-width\":\"1.8176472187042236px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.8176472187042236px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 5px 10px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 20px 15px 0px rgba(0, 0, 0, 0.17)\"},...addPropertyOverrides({OoX1I922v:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||279)-40-211.9)/2+135.9+24)+0),sizes:\"52px\",...toResponsiveImage(rtkvAOQyh),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lopf12\",\"data-framer-name\":\"review\",layoutDependency:layoutDependency,layoutId:\"BtPF8_zuy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1spabvc\",\"data-styles-preset\":\"qyLrSg2zc\",children:\"Max Mustermann\"})}),className:\"framer-atoijp\",\"data-framer-name\":\"Max Mustermann\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q8dCoTGRf\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:orK8NDzCR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-emktl3\",\"data-framer-name\":\"rating\",layoutDependency:layoutDependency,layoutId:\"mjAPwAUwr\",children:[eWCOK5vem&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+38+159.9+6.920000000000002+0+36.16+0,...addPropertyOverrides({OoX1I922v:{height:15,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||279)-40-211.9)/2+135.9+24)+1.9200000000000017+0+32.16+.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6pp177-container\",layoutDependency:layoutDependency,layoutId:\"pLsy9Rgim-container\",children:/*#__PURE__*/_jsx(StarRating,{height:\"100%\",id:\"pLsy9Rgim\",layoutId:\"pLsy9Rgim\",style:{height:\"100%\",width:\"100%\"},variant:\"ihpaYFshV\",width:\"100%\",...addPropertyOverrides({OoX1I922v:{variant:\"u19drcR09\"}},baseVariant,gestureVariant)})})}),ZFIA3cQ03&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+38+159.9+6.920000000000002+0+36.16+0,...addPropertyOverrides({OoX1I922v:{height:15,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||279)-40-211.9)/2+135.9+24)+1.9200000000000017+0+32.16+.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ts0fzz-container\",layoutDependency:layoutDependency,layoutId:\"udoLUqqUV-container\",children:/*#__PURE__*/_jsx(StarRating,{height:\"100%\",id:\"udoLUqqUV\",layoutId:\"udoLUqqUV\",style:{height:\"100%\",width:\"100%\"},variant:\"ihpaYFshV\",width:\"100%\",...addPropertyOverrides({OoX1I922v:{variant:\"u19drcR09\"}},baseVariant,gestureVariant)})})}),gL9wCDKLZ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+38+159.9+6.920000000000002+0+36.16+0,...addPropertyOverrides({OoX1I922v:{height:15,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||279)-40-211.9)/2+135.9+24)+1.9200000000000017+0+32.16+.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19x990x-container\",layoutDependency:layoutDependency,layoutId:\"nh0tyaxug-container\",children:/*#__PURE__*/_jsx(StarRating,{height:\"100%\",id:\"nh0tyaxug\",layoutId:\"nh0tyaxug\",style:{height:\"100%\",width:\"100%\"},variant:\"ihpaYFshV\",width:\"100%\",...addPropertyOverrides({OoX1I922v:{variant:\"u19drcR09\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+38+159.9+6.920000000000002+0+36.16+0,...addPropertyOverrides({OoX1I922v:{height:15,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||279)-40-211.9)/2+135.9+24)+1.9200000000000017+0+32.16+.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1thyk5-container\",layoutDependency:layoutDependency,layoutId:\"tl7blzWo2-container\",children:/*#__PURE__*/_jsx(StarRating,{height:\"100%\",id:\"tl7blzWo2\",layoutId:\"tl7blzWo2\",style:{height:\"100%\",width:\"100%\"},variant:\"ihpaYFshV\",width:\"100%\",...addPropertyOverrides({OoX1I922v:{variant:\"u19drcR09\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+38+159.9+6.920000000000002+0+36.16+0,...addPropertyOverrides({OoX1I922v:{height:16,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||279)-40-211.9)/2+135.9+24)+1.9200000000000017+0+32.16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14hsfuu-container\",layoutDependency:layoutDependency,layoutId:\"ktXU_4n7O-container\",children:/*#__PURE__*/_jsx(StarRating,{height:\"100%\",id:\"ktXU_4n7O\",layoutId:\"ktXU_4n7O\",style:{height:\"100%\",width:\"100%\"},variant:\"ihpaYFshV\",width:\"100%\",...addPropertyOverrides({OoX1I922v:{variant:\"u19drcR09\"}},baseVariant,gestureVariant)})})})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aMn85.framer-skgtwp, .framer-aMn85 .framer-skgtwp { display: block; }\",\".framer-aMn85.framer-ttrqgk { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 38px 48px 38px 48px; position: relative; width: 580px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aMn85 .framer-p3ky7f { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 484px; word-break: break-word; word-wrap: break-word; }\",\".framer-aMn85 .framer-1wyxjek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aMn85 .framer-1jk03aw { flex: none; height: 80px; overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aMn85 .framer-1lopf12 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aMn85 .framer-atoijp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aMn85 .framer-emktl3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aMn85 .framer-6pp177-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-aMn85 .framer-ts0fzz-container, .framer-aMn85 .framer-19x990x-container, .framer-aMn85 .framer-1thyk5-container, .framer-aMn85 .framer-14hsfuu-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aMn85.framer-ttrqgk, .framer-aMn85 .framer-1wyxjek, .framer-aMn85 .framer-1lopf12, .framer-aMn85 .framer-emktl3 { gap: 0px; } .framer-aMn85.framer-ttrqgk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-aMn85.framer-ttrqgk > :first-child, .framer-aMn85 .framer-1lopf12 > :first-child { margin-top: 0px; } .framer-aMn85.framer-ttrqgk > :last-child, .framer-aMn85 .framer-1lopf12 > :last-child { margin-bottom: 0px; } .framer-aMn85 .framer-1wyxjek > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-aMn85 .framer-1wyxjek > :first-child, .framer-aMn85 .framer-emktl3 > :first-child { margin-left: 0px; } .framer-aMn85 .framer-1wyxjek > :last-child, .framer-aMn85 .framer-emktl3 > :last-child { margin-right: 0px; } .framer-aMn85 .framer-1lopf12 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-aMn85 .framer-emktl3 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-aMn85.framer-v-t8k9fj.framer-ttrqgk { justify-content: center; padding: 20px 24px 20px 24px; width: 300px; }\",\".framer-aMn85.framer-v-t8k9fj .framer-p3ky7f { width: 100%; }\",\".framer-aMn85.framer-v-t8k9fj .framer-1jk03aw { aspect-ratio: 1 / 1; height: 52px; width: var(--framer-aspect-ratio-supported, 52px); }\",\".framer-aMn85.framer-v-t8k9fj .framer-1lopf12 { gap: 8px; }\",\".framer-aMn85.framer-v-t8k9fj .framer-emktl3 { gap: 6px; }\",\".framer-aMn85.framer-v-t8k9fj .framer-6pp177-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\".framer-aMn85.framer-v-t8k9fj .framer-ts0fzz-container, .framer-aMn85.framer-v-t8k9fj .framer-19x990x-container, .framer-aMn85.framer-v-t8k9fj .framer-1thyk5-container, .framer-aMn85.framer-v-t8k9fj .framer-14hsfuu-container { height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aMn85.framer-v-t8k9fj .framer-1lopf12, .framer-aMn85.framer-v-t8k9fj .framer-emktl3 { gap: 0px; } .framer-aMn85.framer-v-t8k9fj .framer-1lopf12 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-aMn85.framer-v-t8k9fj .framer-1lopf12 > :first-child { margin-top: 0px; } .framer-aMn85.framer-v-t8k9fj .framer-1lopf12 > :last-child { margin-bottom: 0px; } .framer-aMn85.framer-v-t8k9fj .framer-emktl3 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-aMn85.framer-v-t8k9fj .framer-emktl3 > :first-child { margin-left: 0px; } .framer-aMn85.framer-v-t8k9fj .framer-emktl3 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-aMn85[data-border=\"true\"]::after, .framer-aMn85 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 261.5\n * @framerIntrinsicWidth 580\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OoX1I922v\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"oFT7eDP8G\":\"description\",\"orK8NDzCR\":\"name1\",\"rtkvAOQyh\":\"icon\",\"eWCOK5vem\":\"star\",\"ZFIA3cQ03\":\"star2\",\"gL9wCDKLZ\":\"star3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerdyz77fVFe=withCSS(Component,css,\"framer-aMn85\");export default Framerdyz77fVFe;Framerdyz77fVFe.displayName=\"testimonials\";Framerdyz77fVFe.defaultProps={height:261.5,width:580};addPropertyControls(Framerdyz77fVFe,{variant:{options:[\"vMAEfH4Se\",\"OoX1I922v\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},oFT7eDP8G:{defaultValue:\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna. Somethin else should be written here\",displayTextArea:false,title:\"Description\",type:ControlType.String},orK8NDzCR:{defaultValue:\"Max Mustermann\",displayTextArea:false,title:\"Name\",type:ControlType.String},rtkvAOQyh:{__defaultAssetReference:\"data:framer/asset-reference,scPVkZ1RKiteEDc2padYCYfu3Po.png?originalFilename=Memoji+Min.png&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},eWCOK5vem:{defaultValue:true,title:\"Star \",type:ControlType.Boolean},ZFIA3cQ03:{defaultValue:true,title:\"Star 2\",type:ControlType.Boolean},gL9wCDKLZ:{defaultValue:true,title:\"Star 3\",type:ControlType.Boolean}});addFonts(Framerdyz77fVFe,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...StarRatingFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerdyz77fVFe\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"261.5\",\"framerIntrinsicWidth\":\"580\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OoX1I922v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"oFT7eDP8G\\\":\\\"description\\\",\\\"orK8NDzCR\\\":\\\"name1\\\",\\\"rtkvAOQyh\\\":\\\"icon\\\",\\\"eWCOK5vem\\\":\\\"star\\\",\\\"ZFIA3cQ03\\\":\\\"star2\\\",\\\"gL9wCDKLZ\\\":\\\"star3\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dyz77fVFe.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"xlwGT7Wj2\",\"durhi8bMW\",\"Q2k9DmdPR\",\"MnV37cyOr\",\"KyStoZw0S\"];const serializationHash=\"framer-E0UVl\";const variantClassNames={durhi8bMW:\"framer-v-di3fut\",KyStoZw0S:\"framer-v-1iuosg2\",MnV37cyOr:\"framer-v-am13mu\",Q2k9DmdPR:\"framer-v-1bcnzgi\",xlwGT7Wj2:\"framer-v-9yh0z5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.4,delay:0,duration:2,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"xlwGT7Wj2\",\"Variant 2\":\"durhi8bMW\",\"Variant 3\":\"Q2k9DmdPR\",\"Variant 4\":\"MnV37cyOr\",\"Variant 5\":\"KyStoZw0S\"};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:\"xlwGT7Wj2\"};};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:\"xlwGT7Wj2\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearni3zgg=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"durhi8bMW\"),600);});const onAppear1xcjdcl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Q2k9DmdPR\"),800);});const onAppear1pgth9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MnV37cyOr\"),600);});const onAppeardtv8y5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KyStoZw0S\"),1e3);});const onAppear1ozb93x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xlwGT7Wj2\"),1e3);});useOnVariantChange(baseVariant,{default:onAppearni3zgg,durhi8bMW:onAppear1xcjdcl,KyStoZw0S:onAppear1ozb93x,MnV37cyOr:onAppeardtv8y5,Q2k9DmdPR:onAppear1pgth9});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9yh0z5\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xlwGT7Wj2\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({durhi8bMW:{\"data-framer-name\":\"Variant 2\"},KyStoZw0S:{\"data-framer-name\":\"Variant 5\"},MnV37cyOr:{\"data-framer-name\":\"Variant 4\"},Q2k9DmdPR:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mfgbbm\",\"data-framer-name\":\"Back\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:717,intrinsicWidth:1027,layoutDependency:layoutDependency,layoutId:\"qQktU3HBO\",svg:'<svg width=\"1027\" height=\"717\" viewBox=\"0 0 1027 717\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_299_331)\">\\n<path d=\"M21.384 327.743L0 353.116L513.215 716.805L1026.43 353.116L1005.05 327.743L536.735 15.6732C522.492 6.18157 503.939 6.18157 489.695 15.6732L21.384 327.743Z\" fill=\"#EBEBEB\" fill-opacity=\"0.79\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_299_331\" x=\"0\" y=\"8.55469\" width=\"1026.43\" height=\"721.326\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"13.0755\"/>\\n<feGaussianBlur stdDeviation=\"58.1862\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_299_331\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"13.0755\"/>\\n<feGaussianBlur stdDeviation=\"5.39366\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.65 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_299_331\" result=\"effect2_innerShadow_299_331\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14ihrc5\",\"data-framer-name\":\"Paper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:705,intrinsicWidth:895,layoutDependency:layoutDependency,layoutId:\"jjZlseoj4\",style:{rotate:0},svg:'<svg width=\"895\" height=\"705\" viewBox=\"-5 -5 895 705\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddddi_299_332)\">\\n<path d=\"M390.437 77.6243C238.658 99.9907 0.481445 125.235 0.481445 125.235L116.108 694.298L884.683 417.702L828.004 0.540039C828.004 0.540039 562.095 52.3285 390.437 77.6243Z\" fill=\"url(#paint0_linear_299_332)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ddddi_299_332\" x=\"-3.12754\" y=\"-31.9408\" width=\"916.683\" height=\"738.606\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"1.80449\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_299_332\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"3.60899\" dy=\"-3.60899\"/>\\n<feGaussianBlur stdDeviation=\"3.60899\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_299_332\" result=\"effect2_dropShadow_299_332\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"10.827\" dy=\"-10.827\"/>\\n<feGaussianBlur stdDeviation=\"5.41348\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect2_dropShadow_299_332\" result=\"effect3_dropShadow_299_332\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"18.0449\" dy=\"-21.6539\"/>\\n<feGaussianBlur stdDeviation=\"5.41348\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.01 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_dropShadow_299_332\" result=\"effect4_dropShadow_299_332\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect4_dropShadow_299_332\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"12.3666\"/>\\n<feGaussianBlur stdDeviation=\"6.18332\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.92 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect5_innerShadow_299_332\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_299_332\" x1=\"444.387\" y1=\"233.32\" x2=\"442.582\" y2=\"694.298\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F5F5F5\"/>\\n<stop offset=\"1\" stop-color=\"#D5D5D5\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',variants:{KyStoZw0S:{rotate:15},MnV37cyOr:{rotate:5}},withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1458nw8\",\"data-framer-name\":\"letter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:683,intrinsicWidth:1027,layoutDependency:layoutDependency,layoutId:\"K0A4IY4Ii\",svg:'<svg width=\"1027\" height=\"683\" viewBox=\"0 0 1027 683\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_dddd_299_334)\">\\n<g filter=\"url(#filter1_i_299_334)\">\\n<path d=\"M0.00585938 62.7735V648.963C0.00585938 667.703 15.1976 682.895 33.9375 682.895H992.505C1011.24 682.895 1026.44 667.703 1026.44 648.963V63.0589C1026.44 36.0316 996.378 19.8522 973.819 34.7361L533.951 324.939C522.655 332.392 508.01 332.42 496.686 325.01L52.5159 34.3799C29.9486 19.6136 0.00585938 35.8044 0.00585938 62.7735Z\" fill=\"url(#paint0_linear_299_334)\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_dddd_299_334\" x=\"-6.53191\" y=\"22.2479\" width=\"1039.51\" height=\"667.184\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"1.63444\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_299_334\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"1.63444\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.09 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_299_334\" result=\"effect2_dropShadow_299_334\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"1.63444\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect2_dropShadow_299_334\" result=\"effect3_dropShadow_299_334\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"3.26889\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.01 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_dropShadow_299_334\" result=\"effect4_dropShadow_299_334\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect4_dropShadow_299_334\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_i_299_334\" x=\"0.00585938\" y=\"28.7856\" width=\"1026.43\" height=\"667.184\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"13.0755\"/>\\n<feGaussianBlur stdDeviation=\"31.0544\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_299_334\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_299_334\" x1=\"513.221\" y1=\"0.0214844\" x2=\"513.221\" y2=\"682.895\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.507718\" stop-color=\"#F6F6F6\"/>\\n<stop offset=\"1\" stop-color=\"#CBE0F0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vtu9qs\",\"data-framer-name\":\"botto\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:405,intrinsicWidth:995,layoutDependency:layoutDependency,layoutId:\"NxzpYZDzZ\",svg:'<svg width=\"995\" height=\"405\" viewBox=\"-5 -5 995 405\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_i_299_336)\">\\n<path d=\"M3.70852 389.596L0.208008 394.774H492.216H984.224L980.723 389.596C971.709 376.261 960.643 364.436 947.935 354.559L528.659 28.6464C507.221 11.9825 477.211 11.9825 455.773 28.6464L36.4966 354.559C23.7889 364.436 12.7229 376.261 3.70852 389.596Z\" fill=\"url(#paint0_linear_299_336)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_i_299_336\" x=\"0.208008\" y=\"16.1484\" width=\"984.016\" height=\"378.625\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"11.6045\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.61 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_299_336\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_299_336\" x1=\"492.216\" y1=\"21.5261\" x2=\"492.216\" y2=\"394.773\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.34\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1brtism\",\"data-framer-name\":\"eye white mask\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:165,intrinsicWidth:334,layoutDependency:layoutDependency,layoutId:\"h5ICxW1Cm\",style:{filter:\"drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.15))\",WebkitFilter:\"drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.15))\"},svg:'<svg width=\"334\" height=\"165\" viewBox=\"0 0 334 165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M333.55 82.0462C333.55 82.0462 258.909 164.066 166.836 164.066C74.7631 164.066 0.123047 82.0462 0.123047 82.0462C0.123047 82.0462 74.7631 0.0268555 166.836 0.0268555C258.909 0.0268555 333.55 82.0462 333.55 82.0462Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s0277d\",\"data-framer-name\":\"circle\",layoutDependency:layoutDependency,layoutId:\"NE4V0YnRw\",style:{backgroundColor:\"rgb(24, 24, 24)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"inset 0px 6.474300861358643px 14.486246109008789px 0px rgba(255, 255, 255, 0.47999998927116394), inset 0px 1.6185752153396606px 1.4567174911499023px 0px rgba(255, 255, 255, 1), inset 0px -4.046437740325928px 3.479936361312866px 0px rgba(0, 0, 0, 1)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gd34km\",\"data-framer-name\":\"circle\",layoutDependency:layoutDependency,layoutId:\"CGSwsuDxg\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E0UVl.framer-gi32a6, .framer-E0UVl .framer-gi32a6 { display: block; }\",\".framer-E0UVl.framer-9yh0z5 { height: 224px; position: relative; width: 268px; }\",\".framer-E0UVl .framer-mfgbbm { flex: none; height: 151px; left: calc(50.00000000000002% - 216px / 2); position: absolute; top: 13px; width: 216px; }\",\".framer-E0UVl .framer-14ihrc5 { flex: none; height: 149px; left: calc(49.253731343283604% - 190px / 2); position: absolute; top: calc(50.89285714285716% - 149px / 2); width: 190px; }\",\".framer-E0UVl .framer-1458nw8 { bottom: 5px; flex: none; height: 143px; left: calc(50.00000000000002% - 216px / 2); position: absolute; width: 216px; }\",\".framer-E0UVl .framer-vtu9qs { bottom: 4px; flex: none; height: 86px; left: calc(49.253731343283604% - 209px / 2); position: absolute; width: 209px; }\",\".framer-E0UVl .framer-1brtism { bottom: 59px; flex: none; height: 36px; left: calc(51.11940298507464% - 70px / 2); position: absolute; width: 70px; }\",\".framer-E0UVl .framer-1s0277d { bottom: 66px; flex: none; height: 24px; left: calc(50.746268656716445% - 23px / 2); position: absolute; width: 23px; }\",\".framer-E0UVl .framer-1gd34km { bottom: 79px; flex: none; height: 5px; left: calc(52.611940298507484% - 8px / 2); position: absolute; width: 8px; }\",\".framer-E0UVl.framer-v-di3fut .framer-14ihrc5 { top: 21px; }\",\".framer-E0UVl.framer-v-1bcnzgi .framer-14ihrc5 { left: calc(45.52238805970151% - 190px / 2); top: 21px; }\",\".framer-E0UVl.framer-v-1bcnzgi .framer-1s0277d, .framer-E0UVl.framer-v-am13mu .framer-1s0277d { left: unset; right: 108px; }\",\".framer-E0UVl.framer-v-1bcnzgi .framer-1gd34km, .framer-E0UVl.framer-v-am13mu .framer-1gd34km { left: unset; right: 112px; }\",\".framer-E0UVl.framer-v-am13mu .framer-14ihrc5 { top: 17px; }\",\".framer-E0UVl.framer-v-1iuosg2 .framer-14ihrc5 { top: 15px; }\",\".framer-E0UVl.framer-v-1iuosg2 .framer-1s0277d { left: calc(47.38805970149256% - 23px / 2); }\",\".framer-E0UVl.framer-v-1iuosg2 .framer-1gd34km { left: calc(48.8805970149254% - 8px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 224\n * @framerIntrinsicWidth 268\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"durhi8bMW\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q2k9DmdPR\":{\"layout\":[\"fixed\",\"fixed\"]},\"MnV37cyOr\":{\"layout\":[\"fixed\",\"fixed\"]},\"KyStoZw0S\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermrWSw81Lm=withCSS(Component,css,\"framer-E0UVl\");export default FramermrWSw81Lm;FramermrWSw81Lm.displayName=\"bento-eye\";FramermrWSw81Lm.defaultProps={height:224,width:268};addPropertyControls(FramermrWSw81Lm,{variant:{options:[\"xlwGT7Wj2\",\"durhi8bMW\",\"Q2k9DmdPR\",\"MnV37cyOr\",\"KyStoZw0S\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermrWSw81Lm,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermrWSw81Lm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"durhi8bMW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q2k9DmdPR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MnV37cyOr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KyStoZw0S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"224\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"268\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mrWSw81Lm.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"yKU0cMI70\",\"h2GZL8cgt\",\"NTodNtxyD\",\"w7qs1pKLp\",\"Waem7hIbn\",\"VoKmZp0zg\"];const serializationHash=\"framer-qxsEI\";const variantClassNames={h2GZL8cgt:\"framer-v-dwd07i\",NTodNtxyD:\"framer-v-1ttr12r\",VoKmZp0zg:\"framer-v-zxbe1p\",w7qs1pKLp:\"framer-v-jsopr\",Waem7hIbn:\"framer-v-6vnrwd\",yKU0cMI70:\"framer-v-4c3ge1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.5,delay:0,duration:1.2,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"default blue\":\"NTodNtxyD\",\"default orange\":\"w7qs1pKLp\",\"mobile blue\":\"VoKmZp0zg\",\"mobile orange\":\"Waem7hIbn\",default:\"yKU0cMI70\",mobile:\"h2GZL8cgt\"};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:\"yKU0cMI70\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);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:\"yKU0cMI70\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1nmg720=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"NTodNtxyD\"),600);});const onAppearh427fl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Waem7hIbn\"),600);});const onAppearm2cnks=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"w7qs1pKLp\"),600);});const onAppear1s2hqtr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"yKU0cMI70\"),600);});const onAppear1kor6za=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VoKmZp0zg\"),600);});const onAppearis9bvu=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"h2GZL8cgt\"),600);});useOnVariantChange(baseVariant,{default:onAppear1nmg720,h2GZL8cgt:onAppearh427fl,NTodNtxyD:onAppearm2cnks,VoKmZp0zg:onAppearis9bvu,w7qs1pKLp:onAppear1s2hqtr,Waem7hIbn:onAppear1kor6za});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/ujKm7nIhStFI4gcZ5SUlcqqPY.png\",srcSet:\"https://framerusercontent.com/images/ujKm7nIhStFI4gcZ5SUlcqqPY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ujKm7nIhStFI4gcZ5SUlcqqPY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ujKm7nIhStFI4gcZ5SUlcqqPY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ujKm7nIhStFI4gcZ5SUlcqqPY.png 2680w\"},className:cx(scopingClassNames,\"framer-4c3ge1\",className,classNames),\"data-border\":true,\"data-framer-name\":\"default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yKU0cMI70\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"3.559999942779541px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"3.559999942779541px\",\"--border-right-width\":\"3.559999942779541px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3.559999942779541px\",borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopLeftRadius:46,borderTopRightRadius:46,...style},...addPropertyOverrides({h2GZL8cgt:{\"data-framer-name\":\"mobile\"},NTodNtxyD:{\"data-framer-name\":\"default blue\"},VoKmZp0zg:{\"data-framer-name\":\"mobile blue\"},w7qs1pKLp:{\"data-framer-name\":\"default orange\"},Waem7hIbn:{\"data-framer-name\":\"mobile orange\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lswlw0\",\"data-framer-name\":\"tag\",layoutDependency:layoutDependency,layoutId:\"dUDjGZoFM\",style:{backgroundColor:\"rgb(0, 10, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"inset 0px 5.246430397033691px 16.43881607055664px 0px rgba(0, 255, 255, 1)\"},variants:{h2GZL8cgt:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},VoKmZp0zg:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},Waem7hIbn:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}},...addPropertyOverrides({h2GZL8cgt:{transformTemplate:transformTemplate1},VoKmZp0zg:{transformTemplate:transformTemplate1},Waem7hIbn:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"IT-Team\"})}),className:\"framer-r4lz75\",\"data-framer-name\":\"IT-Team\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tMx7RYkpY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h2GZL8cgt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"IT-Team\"})})},VoKmZp0zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"IT-Team\"})})},Waem7hIbn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"IT-Team\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rmk047\",\"data-framer-name\":\"tag\",layoutDependency:layoutDependency,layoutId:\"Goyye7Esr\",style:{backgroundColor:\"rgb(255, 76, 0)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"inset 0px 5.246430397033691px 16.43881607055664px 0px rgba(255, 214, 0, 1)\"},variants:{h2GZL8cgt:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},VoKmZp0zg:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},Waem7hIbn:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}},...addPropertyOverrides({h2GZL8cgt:{transformTemplate:transformTemplate1},VoKmZp0zg:{transformTemplate:transformTemplate1},Waem7hIbn:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Work\"})}),className:\"framer-1kmn5al\",\"data-framer-name\":\"Work\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"istjh874C\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h2GZL8cgt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Work\"})})},VoKmZp0zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Work\"})})},Waem7hIbn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Work\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ywykvw\",\"data-framer-name\":\"notification\",layoutDependency:layoutDependency,layoutId:\"oKA66OThr\",style:{background:\"linear-gradient(178.99109696882633deg, rgba(255, 255, 255, 1) 0%, rgb(196, 228, 251) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72},transformTemplate:transformTemplate2,variants:{h2GZL8cgt:{borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56},VoKmZp0zg:{borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56},Waem7hIbn:{borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56}},...addPropertyOverrides({h2GZL8cgt:{transformTemplate:undefined},VoKmZp0zg:{transformTemplate:undefined},Waem7hIbn:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cuimja\",\"data-border\":true,\"data-framer-name\":\"memoji\",layoutDependency:layoutDependency,layoutId:\"zHQixTYZT\",style:{\"--border-bottom-width\":\"1.8176472187042236px\",\"--border-color\":\"rgb(251, 251, 248)\",\"--border-left-width\":\"1.8176472187042236px\",\"--border-right-width\":\"1.8176472187042236px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.8176472187042236px\",background:\"linear-gradient(178.54469421904003deg, rgba(232, 240, 255, 1) 0%, rgba(166, 199, 255, 1) 100%)\",borderBottomLeftRadius:312.19,borderBottomRightRadius:312.19,borderTopLeftRadius:312.19,borderTopRightRadius:312.19,boxShadow:\"0px 4.816714286804199px 9.633428573608398px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 19.266857147216797px 19.266857147216797px 0px rgba(0, 0, 0, 0.09000000357627869), 0px 38.533714294433594px 24.083572387695312px 0px rgba(0, 0, 0, 0.05000000074505806), 0px 72.25071716308594px 28.900285720825195px 0px rgba(0, 0, 0, 0.019999999552965164), 0px 115.60114288330078px 33.71699905395508px 0px rgba(0, 0, 0, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)*.45200000000000023-151.6)+76.6+.625),src:\"https://framerusercontent.com/images/E3taK89otlzdIR6McZAxomrQPyo.png\"},className:\"framer-h29whb\",\"data-framer-name\":\"memoji\",layoutDependency:layoutDependency,layoutId:\"dLJkNtYJH\",...addPropertyOverrides({h2GZL8cgt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+107+76.18+.625),src:\"https://framerusercontent.com/images/E3taK89otlzdIR6McZAxomrQPyo.png\"}},VoKmZp0zg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+107+76.18+.625),src:\"https://framerusercontent.com/images/E3taK89otlzdIR6McZAxomrQPyo.png\"}},Waem7hIbn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+107+76.18+.625),src:\"https://framerusercontent.com/images/E3taK89otlzdIR6McZAxomrQPyo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-95ismc\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"fHjhbhFyz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Google Inc.\"})}),className:\"framer-2iuq6v\",\"data-framer-name\":\"Google Inc.\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"C5QtFPN9h\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.83)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h2GZL8cgt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Google Inc.\"})})},VoKmZp0zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Google Inc.\"})})},Waem7hIbn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Google Inc.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Add User to Workspace\"})}),className:\"framer-g8tfsu\",\"data-framer-name\":\"Add User to Workspace\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MYT8h08v4\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.83)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h2GZL8cgt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Add User to Workspace\"})})},VoKmZp0zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Add User to Workspace\"})})},Waem7hIbn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Add User to Workspace\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TSBQTFVTIDEtcmVndWxhcg==\",\"--framer-font-family\":'\"M PLUS 1\", \"M PLUS 1 Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"New user has been added to your workspace. You can now collaborate seamlessly within your Google Workspace account.\"})}),className:\"framer-zxl1ta\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna.\",fonts:[\"GF;M PLUS 1-regular\"],layoutDependency:layoutDependency,layoutId:\"Wx8eoXKr0\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.83)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.3},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h2GZL8cgt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TSBQTFVTIDEtcmVndWxhcg==\",\"--framer-font-family\":'\"M PLUS 1\", \"M PLUS 1 Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"New user has been added to your workspace. You can now collaborate seamlessly within your Google Workspace account.\"})})},VoKmZp0zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TSBQTFVTIDEtcmVndWxhcg==\",\"--framer-font-family\":'\"M PLUS 1\", \"M PLUS 1 Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"New user has been added to your workspace. You can now collaborate seamlessly within your Google Workspace account.\"})})},Waem7hIbn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TSBQTFVTIDEtcmVndWxhcg==\",\"--framer-font-family\":'\"M PLUS 1\", \"M PLUS 1 Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"New user has been added to your workspace. You can now collaborate seamlessly within your Google Workspace account.\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6i7u1g\",\"data-framer-name\":\"notification\",layoutDependency:layoutDependency,layoutId:\"yu1y4vqZJ\",style:{background:\"linear-gradient(178.99109696882633deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.30000001192092896) 100%)\",borderBottomLeftRadius:72,borderBottomRightRadius:72,borderTopLeftRadius:72,borderTopRightRadius:72},transformTemplate:transformTemplate2,variants:{h2GZL8cgt:{borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56},VoKmZp0zg:{borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56},Waem7hIbn:{borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fnplac\",\"data-border\":true,\"data-framer-name\":\"memoji\",layoutDependency:layoutDependency,layoutId:\"qXu_xxTZW\",style:{\"--border-bottom-width\":\"1.8176472187042236px\",\"--border-color\":\"rgb(251, 251, 248)\",\"--border-left-width\":\"1.8176472187042236px\",\"--border-right-width\":\"1.8176472187042236px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.8176472187042236px\",background:\"linear-gradient(178.54469421904003deg, rgba(232, 240, 255, 1) 0%, rgba(166, 199, 255, 1) 100%)\",borderBottomLeftRadius:312.19,borderBottomRightRadius:312.19,borderTopLeftRadius:312.19,borderTopRightRadius:312.19,boxShadow:\"0px 4.816714286804199px 9.633428573608398px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 19.266857147216797px 19.266857147216797px 0px rgba(0, 0, 0, 0.09000000357627869), 0px 38.533714294433594px 24.083572387695312px 0px rgba(0, 0, 0, 0.05000000074505806), 0px 72.25071716308594px 28.900285720825195px 0px rgba(0, 0, 0, 0.019999999552965164), 0px 115.60114288330078px 33.71699905395508px 0px rgba(0, 0, 0, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||500)*.9600000000000002-151.6)+76.6+.625),src:\"https://framerusercontent.com/images/E3taK89otlzdIR6McZAxomrQPyo.png\"},className:\"framer-1liqwab\",\"data-framer-name\":\"memoji\",layoutDependency:layoutDependency,layoutId:\"M8NkLfgXI\",...addPropertyOverrides({h2GZL8cgt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||450)*.8933333333333335-126.18)+76.18+.625),src:\"https://framerusercontent.com/images/E3taK89otlzdIR6McZAxomrQPyo.png\"}},VoKmZp0zg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||450)*.8933333333333335-126.18)+76.18+.625),src:\"https://framerusercontent.com/images/E3taK89otlzdIR6McZAxomrQPyo.png\"}},Waem7hIbn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||450)*.8933333333333335-126.18)+76.18+.625),src:\"https://framerusercontent.com/images/E3taK89otlzdIR6McZAxomrQPyo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rwp4c8\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"b3B9MqV0F\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Slack\"})}),className:\"framer-117cnoz\",\"data-framer-name\":\"Google Inc.\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"L3Zx4k5ie\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.83)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h2GZL8cgt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Slack\"})})},VoKmZp0zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Slack\"})})},Waem7hIbn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Slack\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"You\u2019ve Been Mentioned\"})}),className:\"framer-1eca311\",\"data-framer-name\":\"Add User to Workspace\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"KhPyzbt8R\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.83)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h2GZL8cgt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"You\u2019ve Been Mentioned\"})})},VoKmZp0zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"You\u2019ve Been Mentioned\"})})},Waem7hIbn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"You\u2019ve Been Mentioned\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Someone in #general just mentioned you! Tap here to check the message and stay in the loop with your team.\"})}),className:\"framer-1o0vl29\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QDKqewqjL\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.83)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.3},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h2GZL8cgt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Someone in #general just mentioned you! Tap here to check the message and stay in the loop with your team.\"})})},VoKmZp0zg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Someone in #general just mentioned you! Tap here to check the message and stay in the loop with your team.\"})})},Waem7hIbn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.83))\"},children:\"Someone in #general just mentioned you! Tap here to check the message and stay in the loop with your team.\"})})}},baseVariant,gestureVariant)})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qxsEI.framer-1rvhesu, .framer-qxsEI .framer-1rvhesu { display: block; }\",\".framer-qxsEI.framer-4c3ge1 { height: 500px; overflow: hidden; position: relative; width: 652px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qxsEI .framer-1lswlw0 { align-content: center; align-items: center; bottom: 338px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 261px; overflow: hidden; padding: 20px 32px 64px 32px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-qxsEI .framer-r4lz75, .framer-qxsEI .framer-1kmn5al, .framer-qxsEI .framer-2iuq6v, .framer-qxsEI .framer-g8tfsu, .framer-qxsEI .framer-117cnoz, .framer-qxsEI .framer-1eca311 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qxsEI .framer-1rmk047 { align-content: center; align-items: center; bottom: 342px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 105px; overflow: hidden; padding: 16px 32px 64px 32px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-qxsEI .framer-ywykvw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; left: 46px; overflow: hidden; padding: 42px 48px 42px 48px; position: absolute; top: 45%; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-qxsEI .framer-cuimja, .framer-qxsEI .framer-1fnplac { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: hidden; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qxsEI .framer-h29whb, .framer-qxsEI .framer-1liqwab { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); left: 0px; position: absolute; right: 0px; top: 1px; }\",\".framer-qxsEI .framer-95ismc, .framer-qxsEI .framer-1rwp4c8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qxsEI .framer-zxl1ta, .framer-qxsEI .framer-1o0vl29 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 837px; word-break: break-word; word-wrap: break-word; }\",\".framer-qxsEI .framer-6i7u1g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; left: 46px; overflow: hidden; padding: 42px 48px 42px 48px; position: absolute; top: 96%; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qxsEI .framer-1lswlw0, .framer-qxsEI .framer-1rmk047, .framer-qxsEI .framer-ywykvw, .framer-qxsEI .framer-95ismc, .framer-qxsEI .framer-6i7u1g, .framer-qxsEI .framer-1rwp4c8 { gap: 0px; } .framer-qxsEI .framer-1lswlw0 > *, .framer-qxsEI .framer-1rmk047 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qxsEI .framer-1lswlw0 > :first-child, .framer-qxsEI .framer-1rmk047 > :first-child, .framer-qxsEI .framer-ywykvw > :first-child, .framer-qxsEI .framer-6i7u1g > :first-child { margin-left: 0px; } .framer-qxsEI .framer-1lswlw0 > :last-child, .framer-qxsEI .framer-1rmk047 > :last-child, .framer-qxsEI .framer-ywykvw > :last-child, .framer-qxsEI .framer-6i7u1g > :last-child { margin-right: 0px; } .framer-qxsEI .framer-ywykvw > *, .framer-qxsEI .framer-6i7u1g > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-qxsEI .framer-95ismc > *, .framer-qxsEI .framer-1rwp4c8 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-qxsEI .framer-95ismc > :first-child, .framer-qxsEI .framer-1rwp4c8 > :first-child { margin-top: 0px; } .framer-qxsEI .framer-95ismc > :last-child, .framer-qxsEI .framer-1rwp4c8 > :last-child { margin-bottom: 0px; } }\",\".framer-qxsEI.framer-v-dwd07i.framer-4c3ge1, .framer-qxsEI.framer-v-6vnrwd.framer-4c3ge1, .framer-qxsEI.framer-v-zxbe1p.framer-4c3ge1 { height: 450px; width: 350px; }\",\".framer-qxsEI.framer-v-dwd07i .framer-1lswlw0, .framer-qxsEI.framer-v-6vnrwd .framer-1lswlw0 { bottom: unset; left: 37%; padding: 16px 0px 64px 0px; top: 23%; width: 110px; }\",\".framer-qxsEI.framer-v-dwd07i .framer-1rmk047, .framer-qxsEI.framer-v-zxbe1p .framer-1rmk047 { bottom: unset; left: 73%; padding: 16px 0px 64px 0px; top: 23%; width: 110px; }\",\".framer-qxsEI.framer-v-dwd07i .framer-ywykvw, .framer-qxsEI.framer-v-6vnrwd .framer-ywykvw, .framer-qxsEI.framer-v-zxbe1p .framer-ywykvw { gap: 32px; left: 22px; padding: 30px 32px 30px 32px; top: 107px; }\",\".framer-qxsEI.framer-v-dwd07i .framer-cuimja, .framer-qxsEI.framer-v-dwd07i .framer-1fnplac, .framer-qxsEI.framer-v-6vnrwd .framer-cuimja, .framer-qxsEI.framer-v-6vnrwd .framer-1fnplac, .framer-qxsEI.framer-v-zxbe1p .framer-cuimja, .framer-qxsEI.framer-v-zxbe1p .framer-1fnplac { height: var(--framer-aspect-ratio-supported, 100px); width: 100px; }\",\".framer-qxsEI.framer-v-dwd07i .framer-h29whb, .framer-qxsEI.framer-v-dwd07i .framer-1liqwab, .framer-qxsEI.framer-v-6vnrwd .framer-h29whb, .framer-qxsEI.framer-v-6vnrwd .framer-1liqwab, .framer-qxsEI.framer-v-zxbe1p .framer-h29whb, .framer-qxsEI.framer-v-zxbe1p .framer-1liqwab { height: var(--framer-aspect-ratio-supported, 100px); }\",\".framer-qxsEI.framer-v-dwd07i .framer-6i7u1g, .framer-qxsEI.framer-v-6vnrwd .framer-6i7u1g, .framer-qxsEI.framer-v-zxbe1p .framer-6i7u1g { gap: 32px; left: 22px; padding: 30px 32px 30px 32px; top: 89%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qxsEI.framer-v-dwd07i .framer-ywykvw, .framer-qxsEI.framer-v-dwd07i .framer-6i7u1g { gap: 0px; } .framer-qxsEI.framer-v-dwd07i .framer-ywykvw > *, .framer-qxsEI.framer-v-dwd07i .framer-6i7u1g > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-qxsEI.framer-v-dwd07i .framer-ywykvw > :first-child, .framer-qxsEI.framer-v-dwd07i .framer-6i7u1g > :first-child { margin-left: 0px; } .framer-qxsEI.framer-v-dwd07i .framer-ywykvw > :last-child, .framer-qxsEI.framer-v-dwd07i .framer-6i7u1g > :last-child { margin-right: 0px; } }\",\".framer-qxsEI.framer-v-1ttr12r .framer-1lswlw0 { bottom: 349px; }\",\".framer-qxsEI.framer-v-jsopr .framer-1rmk047 { bottom: 352px; }\",\".framer-qxsEI.framer-v-6vnrwd .framer-1rmk047 { bottom: unset; left: 73%; padding: 16px 0px 64px 0px; top: 20%; width: 110px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qxsEI.framer-v-6vnrwd .framer-ywykvw, .framer-qxsEI.framer-v-6vnrwd .framer-6i7u1g { gap: 0px; } .framer-qxsEI.framer-v-6vnrwd .framer-ywykvw > *, .framer-qxsEI.framer-v-6vnrwd .framer-6i7u1g > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-qxsEI.framer-v-6vnrwd .framer-ywykvw > :first-child, .framer-qxsEI.framer-v-6vnrwd .framer-6i7u1g > :first-child { margin-left: 0px; } .framer-qxsEI.framer-v-6vnrwd .framer-ywykvw > :last-child, .framer-qxsEI.framer-v-6vnrwd .framer-6i7u1g > :last-child { margin-right: 0px; } }\",\".framer-qxsEI.framer-v-zxbe1p .framer-1lswlw0 { bottom: unset; left: 37%; padding: 16px 0px 64px 0px; top: 20%; width: 110px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qxsEI.framer-v-zxbe1p .framer-ywykvw, .framer-qxsEI.framer-v-zxbe1p .framer-6i7u1g { gap: 0px; } .framer-qxsEI.framer-v-zxbe1p .framer-ywykvw > *, .framer-qxsEI.framer-v-zxbe1p .framer-6i7u1g > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-qxsEI.framer-v-zxbe1p .framer-ywykvw > :first-child, .framer-qxsEI.framer-v-zxbe1p .framer-6i7u1g > :first-child { margin-left: 0px; } .framer-qxsEI.framer-v-zxbe1p .framer-ywykvw > :last-child, .framer-qxsEI.framer-v-zxbe1p .framer-6i7u1g > :last-child { margin-right: 0px; } }\",'.framer-qxsEI[data-border=\"true\"]::after, .framer-qxsEI [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 652\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"h2GZL8cgt\":{\"layout\":[\"fixed\",\"fixed\"]},\"NTodNtxyD\":{\"layout\":[\"fixed\",\"fixed\"]},\"w7qs1pKLp\":{\"layout\":[\"fixed\",\"fixed\"]},\"Waem7hIbn\":{\"layout\":[\"fixed\",\"fixed\"]},\"VoKmZp0zg\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp1ik0tlLx=withCSS(Component,css,\"framer-qxsEI\");export default Framerp1ik0tlLx;Framerp1ik0tlLx.displayName=\"features\";Framerp1ik0tlLx.defaultProps={height:500,width:652};addPropertyControls(Framerp1ik0tlLx,{variant:{options:[\"yKU0cMI70\",\"h2GZL8cgt\",\"NTodNtxyD\",\"w7qs1pKLp\",\"Waem7hIbn\",\"VoKmZp0zg\"],optionTitles:[\"default\",\"mobile\",\"default blue\",\"default orange\",\"mobile orange\",\"mobile blue\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerp1ik0tlLx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"M PLUS 1\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mplus1/v12/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa793ZcsGGycA.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp1ik0tlLx\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"652\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h2GZL8cgt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NTodNtxyD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w7qs1pKLp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Waem7hIbn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VoKmZp0zg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"500\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./p1ik0tlLx.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"E_iaKuD_O\",\"Ph4Y3wNYt\",\"h3b2b2vUN\",\"YlxvU0Evm\",\"vMuF4fIGH\",\"WOknoDK2o\",\"Jp9AiZolw\",\"TUWYJOHMW\"];const serializationHash=\"framer-hChkg\";const variantClassNames={E_iaKuD_O:\"framer-v-2n5pn\",h3b2b2vUN:\"framer-v-1yfg54m\",Jp9AiZolw:\"framer-v-oul5p8\",Ph4Y3wNYt:\"framer-v-8fzckk\",TUWYJOHMW:\"framer-v-1f5gbgq\",vMuF4fIGH:\"framer-v-1b95t22\",WOknoDK2o:\"framer-v-cii1dg\",YlxvU0Evm:\"framer-v-rwez4k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.5,delay:0,duration:2,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"E_iaKuD_O\",\"Variant 2\":\"Ph4Y3wNYt\",\"Variant 3\":\"h3b2b2vUN\",\"Variant 4\":\"YlxvU0Evm\",\"Variant 5\":\"vMuF4fIGH\",\"Variant 6\":\"WOknoDK2o\",\"Variant 7\":\"Jp9AiZolw\",\"Variant 8\":\"TUWYJOHMW\"};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:\"E_iaKuD_O\"};};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:\"E_iaKuD_O\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear4qp96q=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Ph4Y3wNYt\"),300);});const onAppeari72xh4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"h3b2b2vUN\"),300);});const onAppear1jan6ok=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YlxvU0Evm\"),300);});const onAppeard5lwuh=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vMuF4fIGH\"),300);});const onAppearl42cwq=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"WOknoDK2o\"),300);});const onAppearphxhwz=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Jp9AiZolw\"),300);});const onAppear11sbia7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"TUWYJOHMW\"),300);});const onAppearc9k1km=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"E_iaKuD_O\"),300);});useOnVariantChange(baseVariant,{default:onAppear4qp96q,h3b2b2vUN:onAppear1jan6ok,Jp9AiZolw:onAppear11sbia7,Ph4Y3wNYt:onAppeari72xh4,TUWYJOHMW:onAppearc9k1km,vMuF4fIGH:onAppearl42cwq,WOknoDK2o:onAppearphxhwz,YlxvU0Evm:onAppeard5lwuh});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2n5pn\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"E_iaKuD_O\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({h3b2b2vUN:{\"data-framer-name\":\"Variant 3\"},Jp9AiZolw:{\"data-framer-name\":\"Variant 7\"},Ph4Y3wNYt:{\"data-framer-name\":\"Variant 2\"},TUWYJOHMW:{\"data-framer-name\":\"Variant 8\"},vMuF4fIGH:{\"data-framer-name\":\"Variant 5\"},WOknoDK2o:{\"data-framer-name\":\"Variant 6\"},YlxvU0Evm:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qiemtg\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1249,intrinsicWidth:1069,layoutDependency:layoutDependency,layoutId:\"hAZJDgKfZ\",svg:'<svg width=\"1069\" height=\"1249\" viewBox=\"-2 -2 1069 1249\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M98.9846 1009.1L442.349 1195.23C498.562 1225.7 566.366 1225.7 622.579 1195.23L965.944 1009.1C1026.94 976.043 1064.93 912.236 1064.93 842.858V307.523C1064.93 225.148 1011.6 152.25 933.095 127.303L589.73 18.1967C552.471 6.35724 512.457 6.35724 475.198 18.1967L131.833 127.303C53.3259 152.25 0 225.148 0 307.523V842.858C0 912.236 37.9913 976.043 98.9846 1009.1Z\" fill=\"url(#paint0_linear_195_284)\" fill-opacity=\"0.2\" stroke=\"url(#paint1_linear_195_284)\" stroke-width=\"3.17889\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_195_284\" x1=\"532.464\" y1=\"-122.876\" x2=\"532.464\" y2=\"1828.9\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.2\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_195_284\" x1=\"898.44\" y1=\"-459.838\" x2=\"533.964\" y2=\"1724.01\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"0.786673\" stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k9hc0r\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:988,intrinsicWidth:847,layoutDependency:layoutDependency,layoutId:\"lc0GhElMH\",svg:'<svg width=\"847\" height=\"988\" viewBox=\"-4 -4 847 988\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_195_285)\">\\n<path d=\"M78.2099 794.756L348.524 941.281C392.778 965.269 446.157 965.269 490.41 941.281L760.725 794.756C808.742 768.728 838.65 718.495 838.65 663.878V242.434C838.65 177.584 796.669 120.195 734.864 100.556L464.55 14.6618C435.217 5.34117 403.717 5.34117 374.384 14.6618L104.07 100.556C42.2651 120.195 0.28418 177.584 0.28418 242.434V663.878C0.28418 718.495 30.1929 768.728 78.2099 794.756Z\" fill=\"url(#paint0_linear_195_285)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_195_285\" x=\"0.28418\" y=\"7.67139\" width=\"838.366\" height=\"970.674\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"80.3033\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_195_285\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"41.3256\"/>\\n<feGaussianBlur stdDeviation=\"9.53667\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_195_285\" result=\"effect2_innerShadow_195_285\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_195_285\" x1=\"419.467\" y1=\"-96.3981\" x2=\"419.467\" y2=\"1440.14\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.2\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10zj5l9\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:657,intrinsicWidth:571,layoutDependency:layoutDependency,layoutId:\"knRuEhFZw\",svg:'<svg width=\"571\" height=\"657\" viewBox=\"-3 -3 571 657\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_i_195_286)\">\\n<path d=\"M57.8135 529.033L230.188 622.47C262.796 640.145 302.128 640.145 334.736 622.47L507.11 529.033C542.491 509.855 564.529 472.842 564.529 432.597V163.925C564.529 115.051 532.194 72.0728 485.235 58.5286L367.143 24.4685C311.817 8.51101 253.107 8.51101 197.78 24.4685L79.6887 58.5286C32.7289 72.0728 0.394531 115.051 0.394531 163.925V432.597C0.394531 472.842 22.4326 509.855 57.8135 529.033Z\" fill=\"white\" fill-opacity=\"0.7\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_i_195_286\" x=\"0.394531\" y=\"12.5005\" width=\"564.135\" height=\"623.226\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"44.9698\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_195_286\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p04eb3\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:196,intrinsicWidth:151,layoutDependency:layoutDependency,layoutId:\"tjubmaYJx\",svg:'<svg width=\"151\" height=\"196\" viewBox=\"0 0 151 196\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_195_288)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.363 188.499L150.551 195.746V74.0883C150.297 54.0442 142.274 35.2997 127.908 21.3154C113.571 7.33115 94.4446 0.395515 74.5558 0C33.7189 0.522644 1.20199 32.9266 0.538086 73.9471L0.538086 117.999L21.7264 110.739V74.1025C22.1925 44.8062 45.5138 21.5697 74.8383 21.1883C89.4018 20.7928 102.835 26.443 113.133 36.4862C123.416 46.5295 129.193 59.9628 129.363 74.2155V188.499Z\" fill=\"url(#paint0_angular_195_288)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.363 188.499L150.551 195.746V74.0883C150.297 54.0442 142.274 35.2997 127.908 21.3154C113.571 7.33115 94.4446 0.395515 74.5558 0C33.7189 0.522644 1.20199 32.9266 0.538086 73.9471L0.538086 117.999L21.7264 110.739V74.1025C22.1925 44.8062 45.5138 21.5697 74.8383 21.1883C89.4018 20.7928 102.835 26.443 113.133 36.4862C123.416 46.5295 129.193 59.9628 129.363 74.2155V188.499Z\" fill=\"url(#paint1_angular_195_288)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_195_288\" x=\"0.538086\" y=\"0\" width=\"150.013\" height=\"195.746\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"8.28113\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_195_288\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"2.06628\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_195_288\" result=\"effect2_innerShadow_195_288\"/>\\n</filter>\\n<radialGradient id=\"paint0_angular_195_288\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(75.5516 140.316) rotate(90) scale(140.316 115.271)\">\\n<stop stop-color=\"#0C7DFF\"/>\\n<stop offset=\"1\" stop-color=\"#ABE2FF\"/>\\n</radialGradient>\\n<radialGradient id=\"paint1_angular_195_288\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(75.5516 140.316) rotate(90) scale(140.316 115.271)\">\\n<stop stop-color=\"#444343\"/>\\n<stop offset=\"1\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jmsomx\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:192,intrinsicWidth:231,layoutDependency:layoutDependency,layoutId:\"wDEnvJr8p\",svg:'<svg width=\"231\" height=\"192\" viewBox=\"0 0 231 192\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_195_287)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M169.363 5.33101C154.588 1.89851 136.775 0.330566 115.545 0.330566C94.3139 0.330566 76.5016 1.89851 61.7263 5.33101L40.538 12.5915C11.8067 26.2933 0.280273 52.4396 0.280273 95.9745C0.280273 166.602 30.4524 191.632 115.545 191.632C200.651 191.632 230.823 166.602 230.823 95.9745C230.823 52.4396 219.282 26.2791 190.551 12.5774L169.363 5.33101ZM115.545 124.678C121.393 124.678 126.139 119.931 126.139 114.083V82.7106C126.139 76.8626 121.393 72.1165 115.545 72.1165C109.697 72.1165 104.95 76.8626 104.95 82.7106V114.083C104.95 119.931 109.697 124.678 115.545 124.678Z\" fill=\"url(#paint0_angular_195_287)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M169.363 5.33101C154.588 1.89851 136.775 0.330566 115.545 0.330566C94.3139 0.330566 76.5016 1.89851 61.7263 5.33101L40.538 12.5915C11.8067 26.2933 0.280273 52.4396 0.280273 95.9745C0.280273 166.602 30.4524 191.632 115.545 191.632C200.651 191.632 230.823 166.602 230.823 95.9745C230.823 52.4396 219.282 26.2791 190.551 12.5774L169.363 5.33101ZM115.545 124.678C121.393 124.678 126.139 119.931 126.139 114.083V82.7106C126.139 76.8626 121.393 72.1165 115.545 72.1165C109.697 72.1165 104.95 76.8626 104.95 82.7106V114.083C104.95 119.931 109.697 124.678 115.545 124.678Z\" fill=\"url(#paint1_angular_195_287)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_195_287\" x=\"0.280273\" y=\"0.330566\" width=\"230.543\" height=\"191.302\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"8.28113\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_195_287\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"2.06628\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_195_287\" result=\"effect2_innerShadow_195_287\"/>\\n</filter>\\n<radialGradient id=\"paint0_angular_195_287\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(115.552 51.3166) rotate(90) scale(140.316 115.271)\">\\n<stop stop-color=\"#0C7DFF\"/>\\n<stop offset=\"1\" stop-color=\"#ABE2FF\"/>\\n</radialGradient>\\n<radialGradient id=\"paint1_angular_195_287\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(115.552 51.3166) rotate(90) scale(140.316 115.271)\">\\n<stop stop-color=\"#444343\"/>\\n<stop offset=\"1\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hChkg.framer-10stmzh, .framer-hChkg .framer-10stmzh { display: block; }\",\".framer-hChkg.framer-2n5pn { height: 224px; position: relative; width: 218px; }\",\".framer-hChkg .framer-1qiemtg { flex: none; height: 205px; left: calc(50.00000000000002% - 176px / 2); position: absolute; top: calc(49.55357142857145% - 205px / 2); width: 176px; }\",\".framer-hChkg .framer-1k9hc0r { flex: none; height: 163px; left: calc(49.54128440366975% - 140px / 2); position: absolute; top: calc(49.55357142857145% - 163px / 2); width: 140px; }\",\".framer-hChkg .framer-10zj5l9 { flex: none; height: 108px; left: calc(49.54128440366975% - 94px / 2); position: absolute; top: calc(49.107142857142875% - 108px / 2); width: 94px; }\",\".framer-hChkg .framer-1p04eb3 { flex: none; height: 32px; left: calc(49.54128440366975% - 24px / 2); position: absolute; top: 82px; width: 24px; }\",\".framer-hChkg .framer-jmsomx { flex: none; height: 32px; left: calc(49.54128440366975% - 38px / 2); position: absolute; top: calc(50.89285714285716% - 32px / 2); width: 38px; }\",\".framer-hChkg.framer-v-8fzckk .framer-1qiemtg, .framer-hChkg.framer-v-1yfg54m .framer-1qiemtg, .framer-hChkg.framer-v-rwez4k .framer-1qiemtg, .framer-hChkg.framer-v-1b95t22 .framer-1qiemtg, .framer-hChkg.framer-v-cii1dg .framer-1qiemtg { height: 217px; left: calc(50.00000000000002% - 186px / 2); top: calc(50.00000000000002% - 217px / 2); width: 186px; }\",\".framer-hChkg.framer-v-1yfg54m .framer-1k9hc0r, .framer-hChkg.framer-v-rwez4k .framer-1k9hc0r, .framer-hChkg.framer-v-1b95t22 .framer-1k9hc0r, .framer-hChkg.framer-v-cii1dg .framer-1k9hc0r { height: 175px; left: calc(50.00000000000002% - 150px / 2); top: calc(50.00000000000002% - 175px / 2); width: 150px; }\",\".framer-hChkg.framer-v-rwez4k .framer-10zj5l9, .framer-hChkg.framer-v-1b95t22 .framer-10zj5l9, .framer-hChkg.framer-v-cii1dg .framer-10zj5l9 { height: 121px; left: calc(50.00000000000002% - 105px / 2); top: calc(50.00000000000002% - 121px / 2); width: 105px; }\",\".framer-hChkg.framer-v-1b95t22 .framer-1p04eb3, .framer-hChkg.framer-v-cii1dg .framer-1p04eb3, .framer-hChkg.framer-v-oul5p8 .framer-1p04eb3 { top: 74px; }\",\".framer-hChkg.framer-v-1f5gbgq .framer-1p04eb3 { top: 86px; }\",\".framer-hChkg.framer-v-1f5gbgq .framer-jmsomx { top: 102px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 224\n * @framerIntrinsicWidth 218\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ph4Y3wNYt\":{\"layout\":[\"fixed\",\"fixed\"]},\"h3b2b2vUN\":{\"layout\":[\"fixed\",\"fixed\"]},\"YlxvU0Evm\":{\"layout\":[\"fixed\",\"fixed\"]},\"vMuF4fIGH\":{\"layout\":[\"fixed\",\"fixed\"]},\"WOknoDK2o\":{\"layout\":[\"fixed\",\"fixed\"]},\"Jp9AiZolw\":{\"layout\":[\"fixed\",\"fixed\"]},\"TUWYJOHMW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerr3Ip11frV=withCSS(Component,css,\"framer-hChkg\");export default Framerr3Ip11frV;Framerr3Ip11frV.displayName=\"bento-lock\";Framerr3Ip11frV.defaultProps={height:224,width:218};addPropertyControls(Framerr3Ip11frV,{variant:{options:[\"E_iaKuD_O\",\"Ph4Y3wNYt\",\"h3b2b2vUN\",\"YlxvU0Evm\",\"vMuF4fIGH\",\"WOknoDK2o\",\"Jp9AiZolw\",\"TUWYJOHMW\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerr3Ip11frV,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr3Ip11frV\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"224\",\"framerIntrinsicWidth\":\"218\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ph4Y3wNYt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h3b2b2vUN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YlxvU0Evm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vMuF4fIGH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WOknoDK2o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Jp9AiZolw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TUWYJOHMW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./r3Ip11frV.map", "// Generated by Framer (c90df04)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"RzaTsC4vN\",\"rEENBLnBp\",\"G_d9_rGL_\",\"sqrnIsTWg\",\"e6IXGbROI\",\"apw6OtIh7\"];const serializationHash=\"framer-SgEgg\";const variantClassNames={apw6OtIh7:\"framer-v-v39flw\",e6IXGbROI:\"framer-v-6tdsv6\",G_d9_rGL_:\"framer-v-1cexx2j\",rEENBLnBp:\"framer-v-1qry7dq\",RzaTsC4vN:\"framer-v-1sqn2bl\",sqrnIsTWg:\"framer-v-v18t0j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.8,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"green-mobile\":\"apw6OtIh7\",\"orange-moible\":\"e6IXGbROI\",blue:\"rEENBLnBp\",green:\"G_d9_rGL_\",orange:\"RzaTsC4vN\",yellow:\"sqrnIsTWg\"};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:\"RzaTsC4vN\"};};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:\"RzaTsC4vN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1sqn2bl\",className,classNames),\"data-framer-name\":\"orange\",layoutDependency:layoutDependency,layoutId:\"RzaTsC4vN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(253, 106, 24)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"inset 0px -4px 20px 0px rgba(255, 198, 0, 1), -13px 20px 30px 0px rgba(245, 107, 25, 0.3100000023841858)\",...style},variants:{apw6OtIh7:{backgroundColor:\"rgb(83, 253, 24)\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80,boxShadow:\"inset 0px 3px 14px 2px rgba(204, 255, 0, 1), -9px 16px 30px 0px rgba(24, 216, 62, 0.3100000023841858)\"},G_d9_rGL_:{backgroundColor:\"rgb(83, 253, 24)\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80,boxShadow:\"inset 0px 3px 14px 2px rgba(204, 255, 0, 1), -9px 16px 30px 0px rgba(24, 216, 62, 0.3100000023841858)\"},rEENBLnBp:{backgroundColor:\"rgb(24, 106, 253)\",borderBottomLeftRadius:120,borderBottomRightRadius:120,borderTopLeftRadius:120,borderTopRightRadius:120,boxShadow:\"inset 0px -5px 35px 3px rgba(0, 255, 224, 1), 0px 15px 30px 0px rgba(10, 177, 239, 0.3100000023841858)\"},sqrnIsTWg:{backgroundColor:\"rgb(253, 188, 24)\",borderBottomLeftRadius:90,borderBottomRightRadius:90,borderTopLeftRadius:90,borderTopRightRadius:90,boxShadow:\"inset 0px -4px 21px 3px rgba(249, 255, 0, 1), 2px 20px 30px 0px rgba(240, 176, 0, 0.3100000023841858)\"}},...addPropertyOverrides({apw6OtIh7:{\"data-framer-name\":\"green-mobile\"},e6IXGbROI:{\"data-framer-name\":\"orange-moible\"},G_d9_rGL_:{\"data-framer-name\":\"green\"},rEENBLnBp:{\"data-framer-name\":\"blue\"},sqrnIsTWg:{\"data-framer-name\":\"yellow\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"151%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFJvdW5kZWQtNzAw\",\"--framer-font-family\":'\"SF Pro Rounded\"',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 0.8700000047683716))\"},children:\"\uD83E\uDDD1\u200D\uD83D\uDCBB\"})})}),className:\"framer-cm393n\",\"data-framer-name\":\"\uD83E\uDDD1\u200D\uD83D\uDCBB\",fonts:[\"GF;SF Pro Rounded-700\"],layoutDependency:layoutDependency,layoutId:\"YTjpgHTO8\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 0.8700000047683716)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{apw6OtIh7:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.87)\"},e6IXGbROI:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.87)\"},G_d9_rGL_:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.87)\"},rEENBLnBp:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.87)\"},sqrnIsTWg:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.87)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({apw6OtIh7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFJvdW5kZWQtNzAw\",\"--framer-font-family\":'\"SF Pro Rounded\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"699\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"\uD83D\uDC68\u200D\uD83C\uDFA8\"})})},e6IXGbROI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFJvdW5kZWQtNzAw\",\"--framer-font-family\":'\"SF Pro Rounded\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"699\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"\uD83E\uDDD1\u200D\uD83D\uDCBB\"})})},G_d9_rGL_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFJvdW5kZWQtNzAw\",\"--framer-font-family\":'\"SF Pro Rounded\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"699\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"\uD83D\uDC68\u200D\uD83C\uDFA8\"})})},rEENBLnBp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFJvdW5kZWQtNzAw\",\"--framer-font-family\":'\"SF Pro Rounded\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"699\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"\uD83D\uDCBC\"})})},sqrnIsTWg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFJvdW5kZWQtNzAw\",\"--framer-font-family\":'\"SF Pro Rounded\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"699\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"\u2728\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"IT-Team\"})}),className:\"framer-zfryrn\",\"data-framer-name\":\"IT-Team\",fonts:[\"Inter-ExtraBold\"],layoutDependency:layoutDependency,layoutId:\"a8OIfW954\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.87)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({apw6OtIh7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TSBQTFVTIFJvdW5kZWQgMWMtODAw\",\"--framer-font-family\":'\"M PLUS Rounded 1c\", \"M PLUS Rounded 1c Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"Design\"})}),fonts:[\"GF;M PLUS Rounded 1c-800\"]},e6IXGbROI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"IT-Team\"})})},G_d9_rGL_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"Design\"})})},rEENBLnBp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"Work\"})})},sqrnIsTWg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.87))\"},children:\"Family\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SgEgg.framer-1xqaof2, .framer-SgEgg .framer-1xqaof2 { display: block; }\",\".framer-SgEgg.framer-1sqn2bl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 48px 32px 48px; position: relative; width: min-content; }\",\".framer-SgEgg .framer-cm393n, .framer-SgEgg .framer-zfryrn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SgEgg.framer-1sqn2bl { gap: 0px; } .framer-SgEgg.framer-1sqn2bl > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-SgEgg.framer-1sqn2bl > :first-child { margin-left: 0px; } .framer-SgEgg.framer-1sqn2bl > :last-child { margin-right: 0px; } }\",\".framer-SgEgg.framer-v-1qry7dq.framer-1sqn2bl { gap: 26px; padding: 32px 56px 32px 56px; }\",\".framer-SgEgg.framer-v-1qry7dq .framer-cm393n, .framer-SgEgg.framer-v-1qry7dq .framer-zfryrn, .framer-SgEgg.framer-v-1cexx2j .framer-cm393n, .framer-SgEgg.framer-v-1cexx2j .framer-zfryrn, .framer-SgEgg.framer-v-v18t0j .framer-cm393n, .framer-SgEgg.framer-v-v18t0j .framer-zfryrn, .framer-SgEgg.framer-v-v39flw .framer-cm393n, .framer-SgEgg.framer-v-v39flw .framer-zfryrn { overflow: visible; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SgEgg.framer-v-1qry7dq.framer-1sqn2bl { gap: 0px; } .framer-SgEgg.framer-v-1qry7dq.framer-1sqn2bl > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } .framer-SgEgg.framer-v-1qry7dq.framer-1sqn2bl > :first-child { margin-left: 0px; } .framer-SgEgg.framer-v-1qry7dq.framer-1sqn2bl > :last-child { margin-right: 0px; } }\",\".framer-SgEgg.framer-v-1cexx2j.framer-1sqn2bl { gap: 17px; padding: 24px 38px 24px 38px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SgEgg.framer-v-1cexx2j.framer-1sqn2bl { gap: 0px; } .framer-SgEgg.framer-v-1cexx2j.framer-1sqn2bl > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-SgEgg.framer-v-1cexx2j.framer-1sqn2bl > :first-child { margin-left: 0px; } .framer-SgEgg.framer-v-1cexx2j.framer-1sqn2bl > :last-child { margin-right: 0px; } }\",\".framer-SgEgg.framer-v-v18t0j.framer-1sqn2bl { gap: 20px; padding: 28px 43.19999694824219px 28px 43.19999694824219px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SgEgg.framer-v-v18t0j.framer-1sqn2bl { gap: 0px; } .framer-SgEgg.framer-v-v18t0j.framer-1sqn2bl > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-SgEgg.framer-v-v18t0j.framer-1sqn2bl > :first-child { margin-left: 0px; } .framer-SgEgg.framer-v-v18t0j.framer-1sqn2bl > :last-child { margin-right: 0px; } }\",\".framer-SgEgg.framer-v-6tdsv6.framer-1sqn2bl { padding: 20px 32px 20px 32px; }\",\".framer-SgEgg.framer-v-v39flw.framer-1sqn2bl { gap: 17px; padding: 20px 32px 20px 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SgEgg.framer-v-v39flw.framer-1sqn2bl { gap: 0px; } .framer-SgEgg.framer-v-v39flw.framer-1sqn2bl > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-SgEgg.framer-v-v39flw.framer-1sqn2bl > :first-child { margin-left: 0px; } .framer-SgEgg.framer-v-v39flw.framer-1sqn2bl > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 133.5\n * @framerIntrinsicWidth 349.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"rEENBLnBp\":{\"layout\":[\"auto\",\"auto\"]},\"G_d9_rGL_\":{\"layout\":[\"auto\",\"auto\"]},\"sqrnIsTWg\":{\"layout\":[\"auto\",\"auto\"]},\"e6IXGbROI\":{\"layout\":[\"auto\",\"auto\"]},\"apw6OtIh7\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framert_oTMlfm9=withCSS(Component,css,\"framer-SgEgg\");export default Framert_oTMlfm9;Framert_oTMlfm9.displayName=\"gradient tag\";Framert_oTMlfm9.defaultProps={height:133.5,width:349.5};addPropertyControls(Framert_oTMlfm9,{variant:{options:[\"RzaTsC4vN\",\"rEENBLnBp\",\"G_d9_rGL_\",\"sqrnIsTWg\",\"e6IXGbROI\",\"apw6OtIh7\"],optionTitles:[\"orange\",\"blue\",\"green\",\"yellow\",\"orange-moible\",\"green-mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framert_oTMlfm9,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{family:\"M PLUS Rounded 1c\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mplusrounded1c/v16/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psPxeqmzgRK.woff2\",weight:\"800\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framert_oTMlfm9\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"133.5\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"349.5\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rEENBLnBp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"G_d9_rGL_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sqrnIsTWg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"e6IXGbROI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"apw6OtIh7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./t_oTMlfm9.map", "// Generated by Framer (c56cc2c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Montserrat-black\",\"FS;Montserrat-black\",\"FS;Montserrat-black italic\",\"FS;Montserrat-black italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/M2RQDXLDLQ2S4ZZ66VQTDSO3OSHWKVY7/JAIF7WXHMOCSPDMQNJH4MHWPR2PHW2YE/C5NBF6PXS6YLHRF7TAQGFAEBX23GMCRA.woff2\",weight:\"900\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XJQZ5FAAHWM4Y24NF2Z7WYOSV6YPTE5O/EO2YIKJILBXPJTK6LHM7BXB3WCNBRFIW/3ITIUZWY6HV7DWK4WDWMNDJF4FUBLRZN.woff2\",weight:\"900\"}]}];export const css=['.framer-U2twX .framer-styles-preset-q3qdrb:not(.rich-text-wrapper), .framer-U2twX .framer-styles-preset-q3qdrb.rich-text-wrapper h1 { --framer-font-family: \"Montserrat\", sans-serif; --framer-font-family-bold: \"Montserrat\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", sans-serif; --framer-font-family-italic: \"Montserrat\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 90px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 900; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: rgba(255, 255, 255, 0.94); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-U2twX .framer-styles-preset-q3qdrb:not(.rich-text-wrapper), .framer-U2twX .framer-styles-preset-q3qdrb.rich-text-wrapper h1 { --framer-font-family: \"Montserrat\", sans-serif; --framer-font-family-bold: \"Montserrat\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", sans-serif; --framer-font-family-italic: \"Montserrat\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 90px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 900; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: rgba(255, 255, 255, 0.94); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 834px) { .framer-U2twX .framer-styles-preset-q3qdrb:not(.rich-text-wrapper), .framer-U2twX .framer-styles-preset-q3qdrb.rich-text-wrapper h1 { --framer-font-family: \"Montserrat\", sans-serif; --framer-font-family-bold: \"Montserrat\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", sans-serif; --framer-font-family-italic: \"Montserrat\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 900; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 10px; --framer-text-alignment: center; --framer-text-color: rgba(255, 255, 255, 0.94); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 833px) and (min-width: 0px) { .framer-U2twX .framer-styles-preset-q3qdrb:not(.rich-text-wrapper), .framer-U2twX .framer-styles-preset-q3qdrb.rich-text-wrapper h1 { --framer-font-family: \"Montserrat\", sans-serif; --framer-font-family-bold: \"Montserrat\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", sans-serif; --framer-font-family-italic: \"Montserrat\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 41px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 900; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: rgba(255, 255, 255, 0.94); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-U2twX\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1a7d5b8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,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 Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import ToolsIntegrations from\"#framer/local/canvasComponent/azrtPezHG/azrtPezHG.js\";import BentoSearch from\"#framer/local/canvasComponent/dLKgDaUrY/dLKgDaUrY.js\";import Testimonials from\"#framer/local/canvasComponent/dyz77fVFe/dyz77fVFe.js\";import Navbar from\"#framer/local/canvasComponent/gwX_5PGgl/gwX_5PGgl.js\";import TagContainer from\"#framer/local/canvasComponent/L5UFS0E21/L5UFS0E21.js\";import Kicker from\"#framer/local/canvasComponent/LSm7vMGWM/LSm7vMGWM.js\";import FAQ from\"#framer/local/canvasComponent/m8Vjou_Vk/m8Vjou_Vk.js\";import BentoEye from\"#framer/local/canvasComponent/mrWSw81Lm/mrWSw81Lm.js\";import Features from\"#framer/local/canvasComponent/p1ik0tlLx/p1ik0tlLx.js\";import BentoLock from\"#framer/local/canvasComponent/r3Ip11frV/r3Ip11frV.js\";import Pricing from\"#framer/local/canvasComponent/RzxQXmhAc/RzxQXmhAc.js\";import Footer from\"#framer/local/canvasComponent/SD1xoIxdW/SD1xoIxdW.js\";import GradientTag from\"#framer/local/canvasComponent/t_oTMlfm9/t_oTMlfm9.js\";import CtaSection from\"#framer/local/canvasComponent/xrVUMRukg/xrVUMRukg.js\";import MainBtn from\"#framer/local/canvasComponent/yjV0S7LpS/yjV0S7LpS.js\";import*as sharedStyle1 from\"#framer/local/css/BPA6Em9kx/BPA6Em9kx.js\";import*as sharedStyle2 from\"#framer/local/css/RZRCGW1H5/RZRCGW1H5.js\";import*as sharedStyle from\"#framer/local/css/UJJoASFq5/UJJoASFq5.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const KickerFonts=getFonts(Kicker);const MainBtnFonts=getFonts(MainBtn);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const BentoLockFonts=getFonts(BentoLock);const BentoEyeFonts=getFonts(BentoEye);const BentoSearchFonts=getFonts(BentoSearch);const MotionSectionWithFX=withFX(motion.section);const GradientTagFonts=getFonts(GradientTag);const TagContainerFonts=getFonts(TagContainer);const FeaturesFonts=getFonts(Features);const TestimonialsFonts=getFonts(Testimonials);const TickerFonts=getFonts(Ticker);const SlideshowFonts=getFonts(Slideshow);const CtaSectionFonts=getFonts(CtaSection);const ToolsIntegrationsFonts=getFonts(ToolsIntegrations);const FAQFonts=getFonts(FAQ);const PricingFonts=getFonts(Pricing);const FooterFonts=getFonts(Footer);const breakpoints={a7omOwK3Y:\"(max-width: 833px)\",v_YqPO6_O:\"(min-width: 834px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AhP9b\";const variantClassNames={a7omOwK3Y:\"framer-v-1aihhig\",v_YqPO6_O:\"framer-v-l3u4ek\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.2,delay:0,duration:1.6,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={bounce:.1,delay:0,duration:2.2,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:1,rotate:12,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-130,y:-10};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition3={bounce:.2,delay:0,duration:2.6,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:200,y:0};const transition4={bounce:.2,delay:0,duration:1.8,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:50,y:100};const transition5={bounce:.1,delay:0,duration:1.4,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition6={bounce:.1,delay:0,duration:2.6,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:100};const transition7={bounce:.1,delay:0,duration:2,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:-150};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition8={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:150};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"a7omOwK3Y\",Tablet:\"v_YqPO6_O\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"a7omOwK3Y\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"v_YqPO6_O\",\"a7omOwK3Y\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"v_YqPO6_O\")return false;return true;};const elementId=useRouteElementId(\"yhDp88D5G\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"ehECsA_PU\");const ref3=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"a7omOwK3Y\")return true;return false;};const elementId2=useRouteElementId(\"lP73f2hAY\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"nr8ZJEn3D\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();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(249, 249, 249); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{width:\"max(min(84.6154vw, 450px), 300px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ogbyb-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"lRbisxLVF\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"P0Ma9F4i1\",layoutId:\"P0Ma9F4i1\",variant:\"tkHakFePi\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1a1cd85\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-8g94jg\",\"data-framer-appear-id\":\"8g94jg\",\"data-framer-name\":\"main structure\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x05tp6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"Id7yoVca_\"}},children:/*#__PURE__*/_jsx(Kicker,{height:\"100%\",id:\"ewexgF36D\",layoutId:\"ewexgF36D\",v5pD9mCEP:\"Contact Us\",variant:\"pPLTFn1OP\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m0vnj5\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-q3qdrb\",\"data-styles-preset\":\"UJJoASFq5\",children:\"The best email,\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-q3qdrb\",\"data-styles-preset\":\"UJJoASFq5\",children:\"ever made.\"})]}),className:\"framer-1x9ris3\",\"data-framer-name\":\"The best email, ever made.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"151%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.69)\"},children:[\"Get \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"real-time notifications\"}),\" with our email app, ensuring you never miss an \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"important message. \"})]})}),className:\"framer-1093xas\",\"data-framer-name\":\"Get real-time notifications with our email app, ensuring you never miss an important message.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v3eajy\",\"data-framer-name\":\"btns\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hq2s55-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"Hzjy8RxiU\"}},children:/*#__PURE__*/_jsx(MainBtn,{dnqIDW8wg:\"https://skale.lemonsqueezy.com/buy/e815c4e9-cc11-4140-b1a0-047b78cf4535\",height:\"100%\",id:\"WAHAvdo7K\",layoutId:\"WAHAvdo7K\",uWSnr4s5o:\"Get Started\",variant:\"DjCNapTYo\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4cozv1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{style:{width:\"100%\"},variant:\"BNgzG3XdE\"}},children:/*#__PURE__*/_jsx(MainBtn,{dnqIDW8wg:\"https://x.com/MarkKnd\",height:\"100%\",id:\"o6jScMgSL\",layoutId:\"o6jScMgSL\",uWSnr4s5o:\"\uD835\uDD4F  Reach us\",variant:\"LAnsU8K5S\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1i6nkte hidden-1aihhig\",\"data-framer-name\":\"vectors\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"36\" viewBox=\"-1 -1 40 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.8498 29.2968L4.56028 24.5552M26.5752 22.6803L13.596 12.0478M35.4295 15.4347L26.6114 1.25805\" stroke=\"white\" stroke-width=\"1.10995\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-truvf1 hidden-1aihhig\",\"data-framer-name\":\"vectors\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"23\" viewBox=\"-1 -1 26 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.3127 18.3147L20.8708 15.3505M7.10836 14.1784L15.2222 7.53159M1.57313 9.64885L7.08572 0.78643\" stroke=\"white\" stroke-width=\"0.693876\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v8zyfq hidden-l3u4ek hidden-1aihhig\",\"data-framer-name\":\"circles\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16njf0i\",\"data-border\":true,\"data-framer-name\":\"circle 3\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bfqoni\",\"data-border\":true,\"data-framer-name\":\"circle 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mtvf9d\",\"data-border\":true,\"data-framer-name\":\"circle 1\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c3nczp\",\"data-framer-name\":\"mails\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1gqber0\",\"data-framer-appear-id\":\"1gqber0\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"158px\",src:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png\",srcSet:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png 1066w\"},className:\"framer-16twy6u\",\"data-framer-name\":\"mail\",style:{rotate:12},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-17eq9d7\",\"data-framer-appear-id\":\"17eq9d7\",initial:animation5,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"124px\",src:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png\",srcSet:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png 1066w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"183px\",src:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png\",srcSet:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png 1066w\"},className:\"framer-6dq68u\",\"data-framer-name\":\"mail\",style:{rotate:-33}})})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1ouwz6r hidden-l3u4ek hidden-1aihhig\",\"data-framer-appear-id\":\"1ouwz6r\",initial:animation7,optimized:true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"337px\",src:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png\",srcSet:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png 1066w\"},className:\"framer-14x458\",\"data-framer-name\":\"mail\",style:{rotate:-28}})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-bdw8fm hidden-1aihhig\",\"data-framer-appear-id\":\"bdw8fm\",initial:animation9,optimized:true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"89px\",src:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png\",srcSet:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png 1066w\"},className:\"framer-t6jvuw\",\"data-framer-name\":\"mail\",style:{rotate:25},transformTemplate:transformTemplate1})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-kn2vhf hidden-l3u4ek\",\"data-framer-appear-id\":\"kn2vhf\",initial:animation11,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png\",srcSet:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png 1066w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"267px\",src:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png\",srcSet:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png 1066w\"},className:\"framer-1rtn38x\",\"data-framer-name\":\"mail\",style:{rotate:34}})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation12,className:\"framer-oszwwy\",\"data-framer-appear-id\":\"oszwwy\",initial:animation13,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"182px\",src:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png\",srcSet:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png 1066w\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"337px\",src:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png\",srcSet:\"https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OEgOgKnJfYyJzdDPysfJV8oaYI.png 1066w\"},className:\"framer-d6806m\",\"data-framer-name\":\"mail\",style:{rotate:3},transformTemplate:transformTemplate1})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xbqhss\",\"data-framer-name\":\"benefits-custom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ua266o\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-581fi3\",\"data-styles-preset\":\"BPA6Em9kx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Features you will love.\"})}),className:\"framer-18tlj95\",\"data-framer-name\":\"Features you will love.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k7v3ke\",\"data-styles-preset\":\"RZRCGW1H5\",style:{\"--framer-text-alignment\":\"left\"},children:\"Manage emails for over 5,000 startups all over the world, making the process seamless and efficient\"})})},v_YqPO6_O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k7v3ke\",\"data-styles-preset\":\"RZRCGW1H5\",style:{\"--framer-text-alignment\":\"left\"},children:\"Manage emails for over 5,000 startups all over the world, making the process seamless and efficient\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k7v3ke\",\"data-styles-preset\":\"RZRCGW1H5\",children:\"Manage emails for over 5,000 startups all over the world, making the process seamless and efficient\"})}),className:\"framer-a805on\",\"data-framer-name\":\"Secure funding for your startup from over 5,000 investors, making the process seamless and efficient.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uhfj7o\",\"data-framer-name\":\"bentos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`,src:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png\",srcSet:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png 1688w\"}},v_YqPO6_O:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px)`,src:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png\",srcSet:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png 1688w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 144px) / 3, 1px)`,src:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png\",srcSet:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png 1688w\"},className:\"framer-drdztk\",\"data-border\":true,\"data-framer-name\":\"first\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kuaaye\",\"data-framer-name\":\"main\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:\"218px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-l2mpkp-container\",children:/*#__PURE__*/_jsx(BentoLock,{height:\"100%\",id:\"aC3P2baOf\",layoutId:\"aC3P2baOf\",style:{height:\"100%\",width:\"100%\"},variant:\"E_iaKuD_O\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j1ojou\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:[\"We ensure every message stays \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"secure with advanced encryption\"}),\", giving you full control over who sees what and when.\"]})}),className:\"framer-s5kzz2\",\"data-framer-name\":\"Read check real-time notifications with our email app, ensuring you never miss an important message. Customize alerts to stay organized and connected.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`,src:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png\",srcSet:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png 1688w\"}},v_YqPO6_O:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px)`,src:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png\",srcSet:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png 1688w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 144px) / 3, 1px)`,src:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png\",srcSet:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png 1688w\"},className:\"framer-1801d2\",\"data-border\":true,\"data-framer-name\":\"second\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pjavco\",\"data-framer-name\":\"main\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:\"268px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o3llvh-container\",children:/*#__PURE__*/_jsx(BentoEye,{height:\"100%\",id:\"Plv5p7WYB\",layoutId:\"Plv5p7WYB\",style:{height:\"100%\",width:\"100%\"},variant:\"xlwGT7Wj2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-asqyq2\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:[\"Never miss an \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"important message\"}),\". Get notified instantly, ensuring \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"you\u2019re always in the loop\"}),\" and ready.\"]})}),className:\"framer-gj9nwk\",\"data-framer-name\":\"Read check real-time notifications with our email app, ensuring you never miss an important message. Customize alerts to stay organized and connected.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`,src:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png\",srcSet:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png 1688w\"}},v_YqPO6_O:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px)`,src:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png\",srcSet:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png 1688w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 144px) / 3, 1px)`,src:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png\",srcSet:\"https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJye89YVvKBDFznCkwoTw92iS0.png 1688w\"},className:\"framer-8acfni\",\"data-border\":true,\"data-framer-name\":\"third\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3sls84\",\"data-framer-name\":\"main\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:224,width:\"370px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ju86h-container\",children:/*#__PURE__*/_jsx(BentoSearch,{height:\"100%\",id:\"BfkmqY0aB\",layoutId:\"BfkmqY0aB\",style:{height:\"100%\",width:\"100%\"},variant:\"XPr8EQtZU\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-166ip3b\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"151%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:[\"Identify errors with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"smart notifications and search tools\"}),\", helping you stay organized and solve problems \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"quickly\"}),\".\"]})}),className:\"framer-44hhtn\",\"data-framer-name\":\"Read check real-time notifications with our email app, ensuring you never miss an important message. Customize alerts to stay organized and connected.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qoa4j6\",\"data-framer-name\":\"tags\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-104s6p8\",\"data-border\":true,\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8a9un9\",\"data-border\":true,\"data-framer-name\":\"circle 4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18uy7ip\",\"data-border\":true,\"data-framer-name\":\"circle 3\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gl22vj\",\"data-border\":true,\"data-framer-name\":\"circle 2\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q9yhcf hidden-l3u4ek hidden-1aihhig\",\"data-border\":true,\"data-framer-name\":\"circle 1\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{transformTemplate:transformTemplate3},v_YqPO6_O:{transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-5ve2if-container\",style:{rotate:6},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"e6IXGbROI\"}},children:/*#__PURE__*/_jsx(GradientTag,{height:\"100%\",id:\"VuO9qrs99\",layoutId:\"VuO9qrs99\",variant:\"RzaTsC4vN\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{transformTemplate:transformTemplate3},v_YqPO6_O:{transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-14reeoy-container\",style:{rotate:-2},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"apw6OtIh7\"}},children:/*#__PURE__*/_jsx(GradientTag,{height:\"100%\",id:\"WCqUm7IGz\",layoutId:\"WCqUm7IGz\",variant:\"G_d9_rGL_\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14l2wfw-container hidden-l3u4ek hidden-1aihhig\",style:{rotate:10},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(GradientTag,{height:\"100%\",id:\"eGZS1BZo6\",layoutId:\"eGZS1BZo6\",variant:\"sqrnIsTWg\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l4ssmb-container hidden-l3u4ek hidden-1aihhig\",style:{rotate:-8},transformTemplate:transformTemplate3,children:/*#__PURE__*/_jsx(GradientTag,{height:\"100%\",id:\"UYy0QfxnN\",layoutId:\"UYy0QfxnN\",variant:\"rEENBLnBp\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15oyrho\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.31)\"},children:\"AI-TAGS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.31)\"},children:\"AI-TAGS\"})}),className:\"framer-17cknpn\",\"data-framer-name\":\"AI-TAGS\",fonts:[\"Inter-Black\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-581fi3\",\"data-styles-preset\":\"BPA6Em9kx\",style:{\"--framer-text-alignment\":\"center\"},children:\"Categorization?\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-581fi3\",\"data-styles-preset\":\"BPA6Em9kx\",style:{\"--framer-text-alignment\":\"center\"},children:\"Done for you!\"})]}),className:\"framer-1kga8vp\",\"data-framer-name\":\"Categorization? Done for you!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9gt00v\",\"data-framer-name\":\"features\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uam04x\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-581fi3\",\"data-styles-preset\":\"BPA6Em9kx\",children:\"Organize all the things you do.\"})}),className:\"framer-bkgrpp\",\"data-framer-name\":\"Features you will love.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jbcvth\",\"data-framer-name\":\"tags\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mqo8j2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"qbxgBpJhk\"}},children:/*#__PURE__*/_jsx(TagContainer,{height:\"100%\",id:\"PC6XAsdHv\",layoutId:\"PC6XAsdHv\",variant:\"meSZSVM80\",width:\"100%\",zELqBPgph:\"Custom Inboxes\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10mhurw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"qbxgBpJhk\"}},children:/*#__PURE__*/_jsx(TagContainer,{height:\"100%\",id:\"yWhafuBt4\",layoutId:\"yWhafuBt4\",variant:\"meSZSVM80\",width:\"100%\",zELqBPgph:\"Read Checker\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jzj40-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"qbxgBpJhk\"}},children:/*#__PURE__*/_jsx(TagContainer,{height:\"100%\",id:\"RlzK8VwqQ\",layoutId:\"RlzK8VwqQ\",variant:\"meSZSVM80\",width:\"100%\",zELqBPgph:\"Scheduling\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,children:/*#__PURE__*/_jsx(Container,{className:\"framer-147k9p6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"qbxgBpJhk\"}},children:/*#__PURE__*/_jsx(TagContainer,{height:\"100%\",id:\"FDbgurrJG\",layoutId:\"FDbgurrJG\",variant:\"meSZSVM80\",width:\"100%\",zELqBPgph:\"Book Meetings\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aq0yob-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"qbxgBpJhk\"}},children:/*#__PURE__*/_jsx(TagContainer,{height:\"100%\",id:\"t3eakNQk7\",layoutId:\"t3eakNQk7\",variant:\"meSZSVM80\",width:\"100%\",zELqBPgph:\"Team Support\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18qs784-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"qbxgBpJhk\"}},children:/*#__PURE__*/_jsx(TagContainer,{height:\"100%\",id:\"Lwamq_y05\",layoutId:\"Lwamq_y05\",variant:\"meSZSVM80\",width:\"100%\",zELqBPgph:\"AI Writer\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s1sfvh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"qbxgBpJhk\"}},children:/*#__PURE__*/_jsx(TagContainer,{height:\"100%\",id:\"UzyZEDZEV\",layoutId:\"UzyZEDZEV\",variant:\"meSZSVM80\",width:\"100%\",zELqBPgph:\"Advanced Spam Detection\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qoopsa\",\"data-framer-name\":\"tag container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"151%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFJvdW5kZWQtcmVndWxhcg==\",\"--framer-font-family\":'\"SF Pro Rounded\"',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:\"And so much more...\"})})}),className:\"framer-1ic87vr\",\"data-framer-name\":\"And so much more...\",fonts:[\"GF;SF Pro Rounded-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{height:450,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`},v_YqPO6_O:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 748px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fcts1k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"h2GZL8cgt\"}},children:/*#__PURE__*/_jsx(Features,{height:\"100%\",id:\"uQjtS584h\",layoutId:\"uQjtS584h\",style:{height:\"100%\",width:\"100%\"},variant:\"yKU0cMI70\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vs78dk\",\"data-framer-name\":\"testimonials\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`,src:\"https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png\",srcSet:\"https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png 3936w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px)`,src:\"https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png\",srcSet:\"https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yMAhDhr9iryU4Epb3dfNY9SaY8.png 3936w\"},className:\"framer-10w93nz\",\"data-framer-name\":\"main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16u7ve\",\"data-framer-name\":\"testimonials\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a6v74o\",\"data-framer-name\":\"star\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6a46x\",\"data-framer-name\":\"star\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/DYvLYOLEnO8jaoO2nuqt55GyIU.png\"},className:\"framer-z2vba5\",\"data-framer-name\":\"star\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-93jp69\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.75)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(103, 103, 103) 0%, rgb(61, 61, 61) 100%)\"},children:\"Testimonials\"})})}),className:\"framer-dzja4o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Why \"}),\"people\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"love Maily.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Why \"}),\"people\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"love Maily.\"})]}),className:\"framer-xx8a0f\",\"data-framer-name\":\"Why people love Maily.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zn1dlq hidden-1aihhig\",\"data-framer-name\":\"tickers\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f1upw3-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:1,id:\"cGKJPlSMh\",layoutId:\"cGKJPlSMh\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"580px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-159btwa-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"mB8jB276S\",layoutId:\"mB8jB276S\",oFT7eDP8G:\"I can\u2019t imagine running my day without it. The notifications are instant, and the categorization makes life much easier. A game-changer for staying organized!\",orK8NDzCR:\"Samantha Collins\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/YkpUok2fGo3ld57plHxrpJnqs.jpg\",srcSet:\"https://framerusercontent.com/images/YkpUok2fGo3ld57plHxrpJnqs.jpg 640w\"},\"\"),style:{width:\"100%\"},variant:\"vMAEfH4Se\",width:\"100%\",ZFIA3cQ03:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"580px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i7skj-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"dkdOJdkPe\",layoutId:\"dkdOJdkPe\",oFT7eDP8G:\"The best productivity tool I\u2019ve used. It keeps my team on track and ensures I never miss an important message. Simple yet powerful\",orK8NDzCR:\"David Nguyen\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/yQgwOMluRZbGnTNDvxzNruhpY0.jpg\",srcSet:\"https://framerusercontent.com/images/yQgwOMluRZbGnTNDvxzNruhpY0.jpg 640w\"},\"\"),style:{width:\"100%\"},variant:\"vMAEfH4Se\",width:\"100%\",ZFIA3cQ03:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"580px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e7en1h-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"X9fGTVEXN\",layoutId:\"X9fGTVEXN\",oFT7eDP8G:\"Finally, a solution that feels intuitive and just works. I love the AI-tagging system\u2014it keeps everything in order with zero effort from me\",orK8NDzCR:\"Emily Johnson\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/rWhc7kSjY60xoaZdt0mdcw3KjuQ.jpg\",srcSet:\"https://framerusercontent.com/images/rWhc7kSjY60xoaZdt0mdcw3KjuQ.jpg 640w\"},\"\"),style:{width:\"100%\"},variant:\"vMAEfH4Se\",width:\"100%\",ZFIA3cQ03:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"580px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nec1fa-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"IhdXoccQf\",layoutId:\"IhdXoccQf\",oFT7eDP8G:\"This app has completely transformed how I manage my emails. The real-time notifications and seamless organization save me so much time every day\",orK8NDzCR:\"Michael Reed\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/Q2dWweOEWDwbqzoF1bucaMRFXgY.jpg\",srcSet:\"https://framerusercontent.com/images/Q2dWweOEWDwbqzoF1bucaMRFXgY.jpg 640w\"},\"\"),style:{width:\"100%\"},variant:\"vMAEfH4Se\",width:\"100%\",ZFIA3cQ03:true})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xlda5l-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:1,id:\"ALfSDZJa2\",layoutId:\"ALfSDZJa2\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"580px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-159btwa-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"mB8jB276S\",layoutId:\"mB8jB276S\",oFT7eDP8G:\"I can\u2019t imagine running my day without it. The notifications are instant, and the categorization makes life much easier. A game-changer for staying organized!\",orK8NDzCR:\"Samantha Collins\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/YkpUok2fGo3ld57plHxrpJnqs.jpg\",srcSet:\"https://framerusercontent.com/images/YkpUok2fGo3ld57plHxrpJnqs.jpg 640w\"},\"\"),style:{width:\"100%\"},variant:\"vMAEfH4Se\",width:\"100%\",ZFIA3cQ03:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"580px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i7skj-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"dkdOJdkPe\",layoutId:\"dkdOJdkPe\",oFT7eDP8G:\"The best productivity tool I\u2019ve used. It keeps my team on track and ensures I never miss an important message. Simple yet powerful\",orK8NDzCR:\"David Nguyen\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/yQgwOMluRZbGnTNDvxzNruhpY0.jpg\",srcSet:\"https://framerusercontent.com/images/yQgwOMluRZbGnTNDvxzNruhpY0.jpg 640w\"},\"\"),style:{width:\"100%\"},variant:\"vMAEfH4Se\",width:\"100%\",ZFIA3cQ03:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"580px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e7en1h-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"X9fGTVEXN\",layoutId:\"X9fGTVEXN\",oFT7eDP8G:\"Finally, a solution that feels intuitive and just works. I love the AI-tagging system\u2014it keeps everything in order with zero effort from me\",orK8NDzCR:\"Emily Johnson\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/rWhc7kSjY60xoaZdt0mdcw3KjuQ.jpg\",srcSet:\"https://framerusercontent.com/images/rWhc7kSjY60xoaZdt0mdcw3KjuQ.jpg 640w\"},\"\"),style:{width:\"100%\"},variant:\"vMAEfH4Se\",width:\"100%\",ZFIA3cQ03:true})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c1vmkt-container hidden-72rtr7 hidden-l3u4ek\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:0,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:50,overflow:true},gap:16,height:\"100%\",id:\"S1bhCvSge\",intervalControl:1.2,itemAmount:1,layoutId:\"S1bhCvSge\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13jof4i-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"Y6eOlGd3K\",layoutId:\"Y6eOlGd3K\",oFT7eDP8G:\"I can\u2019t imagine running my day without it. The notifications are instant, and the categorization makes life much easier. A game-changer for staying organized!\",orK8NDzCR:\"Samantha Collins\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/zXpj6X9uzLxGHmuvQx5hXWTTE.jpg\",srcSet:\"https://framerusercontent.com/images/zXpj6X9uzLxGHmuvQx5hXWTTE.jpg 640w\"},\"\"),variant:\"OoX1I922v\",width:\"100%\",ZFIA3cQ03:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-127vw45-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"aBcZXv45i\",layoutId:\"aBcZXv45i\",oFT7eDP8G:\"The best productivity tool I\u2019ve used. It keeps my team on track and ensures I never miss an important message. Simple yet powerful\",orK8NDzCR:\"David Nguyen\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/6C8R2xZzcqvjmBIa3l54o2w2Uk.jpg\",srcSet:\"https://framerusercontent.com/images/6C8R2xZzcqvjmBIa3l54o2w2Uk.jpg 640w\"},\"\"),variant:\"OoX1I922v\",width:\"100%\",ZFIA3cQ03:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a7fwsw-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"T_XeHV8cP\",layoutId:\"T_XeHV8cP\",oFT7eDP8G:\"Finally, a solution that feels intuitive and just works. I love the AI-tagging system\u2014it keeps everything in order with zero effort from me\",orK8NDzCR:\"Emily Johnson\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/wZTKEdoI3hcxBWXOfkGUkJhNpJU.jpg\",srcSet:\"https://framerusercontent.com/images/wZTKEdoI3hcxBWXOfkGUkJhNpJU.jpg 640w\"},\"\"),variant:\"OoX1I922v\",width:\"100%\",ZFIA3cQ03:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cypuo8-container\",children:/*#__PURE__*/_jsx(Testimonials,{eWCOK5vem:true,gL9wCDKLZ:true,height:\"100%\",id:\"a_eTT8eWF\",layoutId:\"a_eTT8eWF\",oFT7eDP8G:\"This app has completely transformed how I manage my emails. The real-time notifications and seamless organization save me so much time every day\",orK8NDzCR:\"Michael Reed\",rtkvAOQyh:addImageAlt({src:\"https://framerusercontent.com/images/lStwoiJF2YbA1tQsOpKGK5ucs.jpg\",srcSet:\"https://framerusercontent.com/images/lStwoiJF2YbA1tQsOpKGK5ucs.jpg 640w\"},\"\"),variant:\"OoX1I922v\",width:\"100%\",ZFIA3cQ03:true})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g4gmkg\",\"data-framer-name\":\"cta section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:455,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zpmslr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"RSUzcrysq\"},v_YqPO6_O:{variant:\"SxKug5zwC\"}},children:/*#__PURE__*/_jsx(CtaSection,{height:\"100%\",id:\"IDsGjY0y6\",layoutId:\"IDsGjY0y6\",style:{width:\"100%\"},variant:\"pBKLAiidI\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{width:componentViewport?.width||\"100vw\"},v_YqPO6_O:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:760,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dnx05l-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"uw3GFLmRl\"},v_YqPO6_O:{variant:\"cd0DHtuOr\"}},children:/*#__PURE__*/_jsx(ToolsIntegrations,{height:\"100%\",id:\"SfpMbP9OE\",layoutId:\"SfpMbP9OE\",style:{width:\"100%\"},variant:\"gUNmiUb1a\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kn2vzz\",\"data-framer-name\":\"faq\",id:elementId2,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kusv0\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-581fi3\",\"data-styles-preset\":\"BPA6Em9kx\",children:\"Frequently asked \"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-581fi3\",\"data-styles-preset\":\"BPA6Em9kx\",children:\"questions\"})]}),className:\"framer-180fvbv\",\"data-framer-name\":\"Frequently asked questions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k7v3ke\",\"data-styles-preset\":\"RZRCGW1H5\",style:{\"--framer-text-alignment\":\"left\"},children:\"Got questions? We\u2019ve got the answers to help you get started smoothly.\"})}),className:\"framer-t1oksf\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`},v_YqPO6_O:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:444,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tnmncj-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"hpVZzPBqk\",layoutId:\"hpVZzPBqk\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jcnslc\",\"data-framer-name\":\"footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9aj84o\",\"data-framer-name\":\"pricing\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2fx3v8\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-581fi3\",\"data-styles-preset\":\"BPA6Em9kx\",children:\"Simple pricing\"})}),className:\"framer-1012w1s\",\"data-framer-name\":\"Simple pricing\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k7v3ke\",\"data-styles-preset\":\"RZRCGW1H5\",style:{\"--framer-text-alignment\":\"left\"},children:\"Get everything you need to manage emails efficiently and collaborate with your team\"})})},v_YqPO6_O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k7v3ke\",\"data-styles-preset\":\"RZRCGW1H5\",style:{\"--framer-text-alignment\":\"left\"},children:\"Get everything you need to manage emails efficiently and collaborate with your team\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k7v3ke\",\"data-styles-preset\":\"RZRCGW1H5\",children:\"Get everything you need to manage emails efficiently and collaborate with your team\"})}),className:\"framer-1ffqq98\",\"data-framer-name\":\"Secure funding for your startup from over 5,000 investors, making the process seamless and efficient.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rtvif1\",\"data-framer-name\":\"pricing\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1440px)`},v_YqPO6_O:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:632,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 48px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-50k5n4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{style:{width:\"100%\"},variant:\"tyEoXPYr3\"},v_YqPO6_O:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Pricing,{height:\"100%\",id:\"nat6pYWoc\",layoutId:\"nat6pYWoc\",style:{height:\"100%\",width:\"100%\"},variant:\"vQb3rSC4T\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1440px)`},v_YqPO6_O:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:632,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 48px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ygxtzo-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{style:{width:\"100%\"},variant:\"jC1FhmYJE\"},v_YqPO6_O:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Pricing,{height:\"100%\",id:\"EilhTfsGq\",layoutId:\"EilhTfsGq\",style:{height:\"100%\",width:\"100%\"},variant:\"UkogdSzKI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1440px)`},v_YqPO6_O:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:632,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 48px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u8rw1h-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"h9MmPL_mx\"}},children:/*#__PURE__*/_jsx(Pricing,{height:\"100%\",id:\"IKWmxl9yI\",layoutId:\"IKWmxl9yI\",style:{width:\"100%\"},variant:\"Bdogu4mDu\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mn0lg0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a7omOwK3Y:{variant:\"HpMHm5YFA\"},v_YqPO6_O:{variant:\"HpMHm5YFA\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"SDQv8k89U\",layoutId:\"SDQv8k89U\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"l4HSCRr1k\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AhP9b.framer-lux5qc, .framer-AhP9b .framer-lux5qc { display: block; }\",\".framer-AhP9b.framer-72rtr7 { align-content: center; align-items: center; background-color: #f9f9f9; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-AhP9b .framer-11ogbyb-container { flex: none; height: auto; left: 50%; position: fixed; top: 32px; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-AhP9b .framer-1a1cd85 { align-content: center; align-items: center; background: radial-gradient(62.41569446875758% 80.11014942970601% at 52.548115021246446% 31.507288140638245%, #1d7fff 5.539991334080696%, rgba(142, 208, 242, 1) 78.50944399833679%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 192px 0px 192px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AhP9b .framer-8g94jg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-AhP9b .framer-x05tp6-container, .framer-AhP9b .framer-1hq2s55-container, .framer-AhP9b .framer-4cozv1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AhP9b .framer-1m0vnj5 { 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-AhP9b .framer-1x9ris3, .framer-AhP9b .framer-1kga8vp, .framer-AhP9b .framer-1ic87vr, .framer-AhP9b .framer-xx8a0f, .framer-AhP9b .framer-180fvbv, .framer-AhP9b .framer-1012w1s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AhP9b .framer-1093xas { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 510px; word-break: break-word; word-wrap: break-word; }\",\".framer-AhP9b .framer-v3eajy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AhP9b .framer-1i6nkte { flex: none; height: 36px; left: calc(10.462776659959781% - 40px / 2); position: absolute; top: calc(33.669064748201464% - 36px / 2); width: 40px; z-index: 1; }\",\".framer-AhP9b .framer-truvf1 { flex: none; height: 23px; left: calc(87.5922199865862% - 26px / 2); position: absolute; top: calc(33.669064748201464% - 23px / 2); width: 26px; z-index: 1; }\",\".framer-AhP9b .framer-v8zyfq { flex: none; height: 1558px; left: calc(50.00000000000002% - 1558px / 2); overflow: visible; position: absolute; top: calc(55.76470588235296% - 1558px / 2); width: 1558px; z-index: 1; }\",\".framer-AhP9b .framer-16njf0i { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.59); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: blur(0px); aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(0px); flex: none; height: var(--framer-aspect-ratio-supported, 1224px); left: 167px; opacity: 0.6; position: absolute; top: 149px; width: 1223px; }\",\".framer-AhP9b .framer-bfqoni { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.59); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: blur(0px); aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(0px); flex: none; height: var(--framer-aspect-ratio-supported, 904px); left: 327px; opacity: 0.4; position: absolute; top: 309px; width: 904px; }\",\".framer-AhP9b .framer-mtvf9d { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.59); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: blur(0px); aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(0px); flex: none; height: var(--framer-aspect-ratio-supported, 1558px); left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 1558px; }\",\".framer-AhP9b .framer-c3nczp { flex: none; height: 1042px; left: calc(53.50000000000003% - 1647px / 2); overflow: visible; position: absolute; top: -30px; width: 1647px; z-index: 1; }\",\".framer-AhP9b .framer-1gqber0 { flex: none; height: 133px; left: 109px; overflow: visible; position: absolute; top: 128px; width: 176px; }\",\".framer-AhP9b .framer-16twy6u { -webkit-filter: blur(4px); aspect-ratio: 1.5614035087719298 / 1; filter: blur(4px); flex: none; height: var(--framer-aspect-ratio-supported, 101px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 158px; }\",\".framer-AhP9b .framer-17eq9d7 { flex: none; height: 198px; left: 1205px; overflow: visible; position: absolute; top: calc(46.308724832214786% - 198px / 2); width: 218px; }\",\".framer-AhP9b .framer-6dq68u { flex: none; height: 117px; left: calc(50.00000000000002% - 183px / 2); position: absolute; top: calc(50.00000000000002% - 117px / 2); width: 183px; }\",\".framer-AhP9b .framer-1ouwz6r { bottom: 7px; flex: none; height: 350px; left: 1193px; overflow: visible; position: absolute; width: 400px; }\",\".framer-AhP9b .framer-14x458 { -webkit-filter: blur(5px); filter: blur(5px); flex: none; height: 216px; left: calc(50.00000000000002% - 337px / 2); position: absolute; top: calc(50.00000000000002% - 216px / 2); width: 337px; }\",\".framer-AhP9b .framer-bdw8fm { flex: none; height: 90px; left: 239px; overflow: visible; position: absolute; top: calc(45.68138195777354% - 90px / 2); width: 105px; }\",\".framer-AhP9b .framer-t6jvuw { aspect-ratio: 1.5614035087719298 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 89px; }\",\".framer-AhP9b .framer-kn2vhf { bottom: 65px; cursor: grab; flex: none; height: 293px; left: 127px; overflow: visible; position: absolute; width: 317px; }\",\".framer-AhP9b .framer-1rtn38x { -webkit-filter: blur(2px); filter: blur(2px); flex: none; height: 171px; left: calc(49.84227129337542% - 267px / 2); position: absolute; top: calc(49.829351535836196% - 171px / 2); width: 267px; }\",\".framer-AhP9b .framer-oszwwy { cursor: grab; flex: none; height: 234px; overflow: visible; position: absolute; right: -8px; top: 0px; width: 349px; }\",\".framer-AhP9b .framer-d6806m { -webkit-filter: blur(8px); aspect-ratio: 1.5614035087719298 / 1; filter: blur(8px); flex: none; height: var(--framer-aspect-ratio-supported, 216px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 337px; }\",\".framer-AhP9b .framer-1xbqhss, .framer-AhP9b .framer-qoa4j6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-AhP9b .framer-1ua266o, .framer-AhP9b .framer-2fx3v8 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AhP9b .framer-18tlj95 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 410px; word-break: break-word; word-wrap: break-word; }\",\".framer-AhP9b .framer-a805on { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 373px; word-break: break-word; word-wrap: break-word; }\",\".framer-AhP9b .framer-1uhfj7o, .framer-AhP9b .framer-rtvif1 { 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-AhP9b .framer-drdztk, .framer-AhP9b .framer-1801d2, .framer-AhP9b .framer-8acfni { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1), 0px 1.5px 1.5px 0px rgba(0, 0, 0, 0.09000000357627869), 0px 4px 2.5px 0px rgba(0, 0, 0, 0.05000000074505806); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 8px 32px 8px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AhP9b .framer-1kuaaye, .framer-AhP9b .framer-pjavco, .framer-AhP9b .framer-3sls84 { background: linear-gradient(180deg, #1e80ff 0%, rgba(143, 209, 243, 1) 100%); border-top-left-radius: 44px; border-top-right-radius: 44px; flex: none; height: 258px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AhP9b .framer-l2mpkp-container { flex: none; height: 224px; left: calc(50.06165228113443% - 218px / 2); position: absolute; top: calc(50.00000000000002% - 224px / 2); width: 218px; }\",\".framer-AhP9b .framer-1j1ojou, .framer-AhP9b .framer-asqyq2, .framer-AhP9b .framer-166ip3b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-AhP9b .framer-s5kzz2, .framer-AhP9b .framer-gj9nwk, .framer-AhP9b .framer-44hhtn { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; mix-blend-mode: color-burn; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AhP9b .framer-1o3llvh-container { flex: none; height: 224px; left: calc(50.12345679012348% - 268px / 2); position: absolute; top: calc(50.00000000000002% - 224px / 2); width: 268px; }\",\".framer-AhP9b .framer-16ju86h-container { flex: none; height: 224px; left: calc(50.06165228113443% - 370px / 2); position: absolute; top: calc(53.87596899224808% - 224px / 2); width: 370px; }\",\".framer-AhP9b .framer-104s6p8 { --border-bottom-width: 3.5999999046325684px; --border-color: rgba(255, 255, 255, 0.24); --border-left-width: 3.5999999046325684px; --border-right-width: 3.5999999046325684px; --border-style: solid; --border-top-width: 3.5999999046325684px; background: radial-gradient(87.67857282840629% 87.6785728284063% at 49.99999477394949% 50.00000000000124%, #f8f8f8 0%, rgba(235, 235, 235, 1) 100%); border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; flex: none; height: 720px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AhP9b .framer-8a9un9 { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.7); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; -webkit-filter: blur(0px); aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(0px); flex: none; height: var(--framer-aspect-ratio-supported, 518px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 518px; }\",\".framer-AhP9b .framer-18uy7ip { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.7); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 700px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 700px; }\",\".framer-AhP9b .framer-gl22vj { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.7); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -86px; flex: none; left: 50%; position: absolute; top: -85px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 892px); }\",\".framer-AhP9b .framer-1q9yhcf { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.7); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -194px; flex: none; height: var(--framer-aspect-ratio-supported, 1108px); left: -2px; position: absolute; right: -2px; }\",\".framer-AhP9b .framer-5ve2if-container { flex: none; height: auto; left: 20%; position: absolute; top: 81%; transform: translate(-50%, -50%); width: auto; }\",\".framer-AhP9b .framer-14reeoy-container { flex: none; height: auto; left: 20%; position: absolute; top: 18%; transform: translate(-50%, -50%); width: auto; }\",\".framer-AhP9b .framer-14l2wfw-container { flex: none; height: auto; left: 81%; position: absolute; top: 21%; transform: translate(-50%, -50%); width: auto; }\",\".framer-AhP9b .framer-l4ssmb-container { bottom: 80px; flex: none; height: auto; left: 77%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-AhP9b .framer-15oyrho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 262px; transform: translateX(-50%); width: min-content; }\",\".framer-AhP9b .framer-17cknpn { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-AhP9b .framer-9gt00v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 56px 48px 56px 48px; position: relative; scroll-margin-top: 1px; width: 100%; }\",\".framer-AhP9b .framer-1uam04x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 604px; }\",\".framer-AhP9b .framer-bkgrpp { --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-AhP9b .framer-jbcvth { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 604px; }\",\".framer-AhP9b .framer-mqo8j2-container { flex: none; height: auto; position: relative; width: auto; z-index: 7; }\",\".framer-AhP9b .framer-10mhurw-container { flex: none; height: auto; position: relative; width: auto; z-index: 6; }\",\".framer-AhP9b .framer-jzj40-container { flex: none; height: auto; position: relative; width: auto; z-index: 5; }\",\".framer-AhP9b .framer-147k9p6-container { flex: none; height: auto; position: relative; width: auto; z-index: 4; }\",\".framer-AhP9b .framer-1aq0yob-container { flex: none; height: auto; position: relative; width: auto; z-index: 3; }\",\".framer-AhP9b .framer-18qs784-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-AhP9b .framer-s1sfvh-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-AhP9b .framer-qoopsa { align-content: center; align-items: center; 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: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 21px 0px 21px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AhP9b .framer-fcts1k-container { flex: 1 0 0px; height: 500px; position: relative; width: 1px; }\",\".framer-AhP9b .framer-vs78dk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 56px 48px 56px 48px; position: relative; scroll-margin-top: 2px; width: 100%; }\",\".framer-AhP9b .framer-10w93nz { align-content: center; align-items: center; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 97px 1px 97px 1px; position: relative; width: 100%; }\",\".framer-AhP9b .framer-16u7ve { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: -52px; transform: translateX(-50%); width: 283px; z-index: 1; }\",\".framer-AhP9b .framer-1a6v74o { background-color: #ffffff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.08); flex: none; height: 100px; overflow: hidden; position: relative; width: 100px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AhP9b .framer-6a46x { aspect-ratio: 1 / 1; background: linear-gradient(180deg, #b0e0fe 0%, rgb(25, 133, 253) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: inset 0px -1px 0px 0px #0066ff, inset 0px 0.5px 1.5px 0px rgba(255, 255, 255, 0.7799999713897705), 0px 4px 8px 0px rgba(158, 174, 255, 0.27000001072883606), 0px 14px 14px 0px rgba(158, 174, 255, 0.23999999463558197); flex: none; height: var(--framer-aspect-ratio-supported, 68px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 68px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-AhP9b .framer-z2vba5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 50%; overflow: visible; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 60px; }\",\".framer-AhP9b .framer-93jp69 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-right-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 73px; justify-content: flex-start; left: 51px; overflow: hidden; padding: 0px 28px 0px 54px; position: absolute; top: 50%; transform: translateY(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AhP9b .framer-dzja4o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AhP9b .framer-zn1dlq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AhP9b .framer-1f1upw3-container, .framer-AhP9b .framer-1xlda5l-container { flex: none; height: 300px; position: relative; width: 1690px; }\",\".framer-AhP9b .framer-159btwa-container, .framer-AhP9b .framer-1i7skj-container, .framer-AhP9b .framer-1e7en1h-container, .framer-AhP9b .framer-1nec1fa-container { height: auto; position: relative; width: 580px; }\",\".framer-AhP9b .framer-c1vmkt-container { flex: none; height: 352px; position: relative; width: 301px; }\",\".framer-AhP9b .framer-13jof4i-container, .framer-AhP9b .framer-127vw45-container, .framer-AhP9b .framer-1a7fwsw-container, .framer-AhP9b .framer-cypuo8-container { height: auto; position: relative; width: auto; }\",\".framer-AhP9b .framer-g4gmkg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-AhP9b .framer-zpmslr-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AhP9b .framer-dnx05l-container { flex: none; height: auto; position: relative; width: 1200px; }\",\".framer-AhP9b .framer-kn2vzz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 56px 48px 56px 48px; position: relative; scroll-margin-top: 3px; width: 100%; }\",\".framer-AhP9b .framer-kusv0 { 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: min-content; }\",\".framer-AhP9b .framer-t1oksf { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; opacity: 0.9; position: relative; width: 490px; }\",\".framer-AhP9b .framer-tnmncj-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-AhP9b .framer-jcnslc { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(13, 126, 255, 0) 13%, rgba(13, 126, 255, 0.15) 29.025900900900897%, rgb(14, 126, 255) 55.78941441441443%, rgb(57, 149, 254) 104%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 48px 100px 48px; position: relative; width: 100%; }\",\".framer-AhP9b .framer-9aj84o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 4px; width: 100%; }\",\".framer-AhP9b .framer-1ffqq98 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 435px; word-break: break-word; word-wrap: break-word; }\",\".framer-AhP9b .framer-50k5n4-container, .framer-AhP9b .framer-ygxtzo-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-AhP9b .framer-1u8rw1h-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-AhP9b .framer-mn0lg0-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AhP9b.framer-72rtr7, .framer-AhP9b .framer-1a1cd85, .framer-AhP9b .framer-8g94jg, .framer-AhP9b .framer-1m0vnj5, .framer-AhP9b .framer-v3eajy, .framer-AhP9b .framer-1xbqhss, .framer-AhP9b .framer-1uhfj7o, .framer-AhP9b .framer-drdztk, .framer-AhP9b .framer-1j1ojou, .framer-AhP9b .framer-1801d2, .framer-AhP9b .framer-asqyq2, .framer-AhP9b .framer-8acfni, .framer-AhP9b .framer-166ip3b, .framer-AhP9b .framer-qoa4j6, .framer-AhP9b .framer-15oyrho, .framer-AhP9b .framer-9gt00v, .framer-AhP9b .framer-1uam04x, .framer-AhP9b .framer-jbcvth, .framer-AhP9b .framer-qoopsa, .framer-AhP9b .framer-vs78dk, .framer-AhP9b .framer-10w93nz, .framer-AhP9b .framer-16u7ve, .framer-AhP9b .framer-93jp69, .framer-AhP9b .framer-zn1dlq, .framer-AhP9b .framer-g4gmkg, .framer-AhP9b .framer-kn2vzz, .framer-AhP9b .framer-kusv0, .framer-AhP9b .framer-jcnslc, .framer-AhP9b .framer-9aj84o, .framer-AhP9b .framer-rtvif1 { gap: 0px; } .framer-AhP9b.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-AhP9b.framer-72rtr7 > :first-child, .framer-AhP9b .framer-1a1cd85 > :first-child, .framer-AhP9b .framer-8g94jg > :first-child, .framer-AhP9b .framer-1m0vnj5 > :first-child, .framer-AhP9b .framer-1xbqhss > :first-child, .framer-AhP9b .framer-drdztk > :first-child, .framer-AhP9b .framer-1801d2 > :first-child, .framer-AhP9b .framer-8acfni > :first-child, .framer-AhP9b .framer-qoa4j6 > :first-child, .framer-AhP9b .framer-15oyrho > :first-child, .framer-AhP9b .framer-1uam04x > :first-child, .framer-AhP9b .framer-vs78dk > :first-child, .framer-AhP9b .framer-10w93nz > :first-child, .framer-AhP9b .framer-zn1dlq > :first-child, .framer-AhP9b .framer-g4gmkg > :first-child, .framer-AhP9b .framer-kusv0 > :first-child, .framer-AhP9b .framer-jcnslc > :first-child, .framer-AhP9b .framer-9aj84o > :first-child { margin-top: 0px; } .framer-AhP9b.framer-72rtr7 > :last-child, .framer-AhP9b .framer-1a1cd85 > :last-child, .framer-AhP9b .framer-8g94jg > :last-child, .framer-AhP9b .framer-1m0vnj5 > :last-child, .framer-AhP9b .framer-1xbqhss > :last-child, .framer-AhP9b .framer-drdztk > :last-child, .framer-AhP9b .framer-1801d2 > :last-child, .framer-AhP9b .framer-8acfni > :last-child, .framer-AhP9b .framer-qoa4j6 > :last-child, .framer-AhP9b .framer-15oyrho > :last-child, .framer-AhP9b .framer-1uam04x > :last-child, .framer-AhP9b .framer-vs78dk > :last-child, .framer-AhP9b .framer-10w93nz > :last-child, .framer-AhP9b .framer-zn1dlq > :last-child, .framer-AhP9b .framer-g4gmkg > :last-child, .framer-AhP9b .framer-kusv0 > :last-child, .framer-AhP9b .framer-jcnslc > :last-child, .framer-AhP9b .framer-9aj84o > :last-child { margin-bottom: 0px; } .framer-AhP9b .framer-1a1cd85 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-AhP9b .framer-8g94jg > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-AhP9b .framer-1m0vnj5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AhP9b .framer-v3eajy > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-AhP9b .framer-v3eajy > :first-child, .framer-AhP9b .framer-1uhfj7o > :first-child, .framer-AhP9b .framer-1j1ojou > :first-child, .framer-AhP9b .framer-asqyq2 > :first-child, .framer-AhP9b .framer-166ip3b > :first-child, .framer-AhP9b .framer-9gt00v > :first-child, .framer-AhP9b .framer-jbcvth > :first-child, .framer-AhP9b .framer-qoopsa > :first-child, .framer-AhP9b .framer-16u7ve > :first-child, .framer-AhP9b .framer-93jp69 > :first-child, .framer-AhP9b .framer-kn2vzz > :first-child, .framer-AhP9b .framer-rtvif1 > :first-child { margin-left: 0px; } .framer-AhP9b .framer-v3eajy > :last-child, .framer-AhP9b .framer-1uhfj7o > :last-child, .framer-AhP9b .framer-1j1ojou > :last-child, .framer-AhP9b .framer-asqyq2 > :last-child, .framer-AhP9b .framer-166ip3b > :last-child, .framer-AhP9b .framer-9gt00v > :last-child, .framer-AhP9b .framer-jbcvth > :last-child, .framer-AhP9b .framer-qoopsa > :last-child, .framer-AhP9b .framer-16u7ve > :last-child, .framer-AhP9b .framer-93jp69 > :last-child, .framer-AhP9b .framer-kn2vzz > :last-child, .framer-AhP9b .framer-rtvif1 > :last-child { margin-right: 0px; } .framer-AhP9b .framer-1xbqhss > *, .framer-AhP9b .framer-qoa4j6 > *, .framer-AhP9b .framer-1uam04x > *, .framer-AhP9b .framer-vs78dk > *, .framer-AhP9b .framer-10w93nz > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-AhP9b .framer-1uhfj7o > *, .framer-AhP9b .framer-rtvif1 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-AhP9b .framer-drdztk > *, .framer-AhP9b .framer-1801d2 > *, .framer-AhP9b .framer-8acfni > *, .framer-AhP9b .framer-kusv0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-AhP9b .framer-1j1ojou > *, .framer-AhP9b .framer-asqyq2 > *, .framer-AhP9b .framer-166ip3b > *, .framer-AhP9b .framer-qoopsa > *, .framer-AhP9b .framer-93jp69 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AhP9b .framer-15oyrho > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AhP9b .framer-9gt00v > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-AhP9b .framer-jbcvth > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-AhP9b .framer-16u7ve > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AhP9b .framer-zn1dlq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AhP9b .framer-g4gmkg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AhP9b .framer-kn2vzz > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-AhP9b .framer-jcnslc > *, .framer-AhP9b .framer-9aj84o > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-AhP9b[data-border=\"true\"]::after, .framer-AhP9b [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: 834px) and (max-width: 1199px) { .framer-AhP9b.framer-72rtr7 { width: 834px; } .framer-AhP9b .framer-11ogbyb-container { order: 0; } .framer-AhP9b .framer-1a1cd85 { order: 1; } .framer-AhP9b .framer-1i6nkte { left: 34px; top: 70px; } .framer-AhP9b .framer-truvf1 { left: 455px; top: 79px; } .framer-AhP9b .framer-1gqber0 { left: 309px; top: 228px; } .framer-AhP9b .framer-17eq9d7 { left: 1135px; top: calc(53.93474088291749% - 198px / 2); } .framer-AhP9b .framer-6dq68u { left: 18px; } .framer-AhP9b .framer-bdw8fm { left: 389px; top: calc(52.399232245681404% - 90px / 2); } .framer-AhP9b .framer-oszwwy { left: 1122px; right: unset; top: 160px; } .framer-AhP9b .framer-1xbqhss { order: 2; } .framer-AhP9b .framer-1ua266o, .framer-AhP9b .framer-2fx3v8 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-AhP9b .framer-18tlj95 { width: 311px; } .framer-AhP9b .framer-a805on { width: 336px; } .framer-AhP9b .framer-1uhfj7o { flex-direction: column; } .framer-AhP9b .framer-drdztk, .framer-AhP9b .framer-1801d2, .framer-AhP9b .framer-8acfni, .framer-AhP9b .framer-fcts1k-container, .framer-AhP9b .framer-tnmncj-container, .framer-AhP9b .framer-1u8rw1h-container { flex: none; width: 100%; } .framer-AhP9b .framer-1j1ojou, .framer-AhP9b .framer-asqyq2, .framer-AhP9b .framer-166ip3b { padding: 0px 32px 0px 32px; } .framer-AhP9b .framer-qoa4j6 { order: 3; } .framer-AhP9b .framer-5ve2if-container { left: 50%; top: 74px; transform: translateX(-50%); } .framer-AhP9b .framer-14reeoy-container { left: 50%; top: 534px; transform: translateX(-50%); } .framer-AhP9b .framer-9gt00v { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 4; } .framer-AhP9b .framer-1uam04x, .framer-AhP9b .framer-jbcvth { width: 100%; } .framer-AhP9b .framer-bkgrpp { --framer-text-wrap-override: balance; } .framer-AhP9b .framer-vs78dk { order: 5; } .framer-AhP9b .framer-g4gmkg { order: 6; } .framer-AhP9b .framer-dnx05l-container { order: 7; width: 100%; } .framer-AhP9b .framer-kn2vzz { flex-direction: column; order: 8; } .framer-AhP9b .framer-jcnslc { order: 9; } .framer-AhP9b .framer-9aj84o { gap: 56px; } .framer-AhP9b .framer-rtvif1 { flex-direction: column; gap: 48px; } .framer-AhP9b .framer-50k5n4-container, .framer-AhP9b .framer-ygxtzo-container { align-self: unset; flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AhP9b .framer-1ua266o, .framer-AhP9b .framer-1uhfj7o, .framer-AhP9b .framer-9gt00v, .framer-AhP9b .framer-kn2vzz, .framer-AhP9b .framer-9aj84o, .framer-AhP9b .framer-2fx3v8, .framer-AhP9b .framer-rtvif1 { gap: 0px; } .framer-AhP9b .framer-1ua266o > *, .framer-AhP9b .framer-1uhfj7o > *, .framer-AhP9b .framer-2fx3v8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AhP9b .framer-1ua266o > :first-child, .framer-AhP9b .framer-1uhfj7o > :first-child, .framer-AhP9b .framer-9gt00v > :first-child, .framer-AhP9b .framer-kn2vzz > :first-child, .framer-AhP9b .framer-9aj84o > :first-child, .framer-AhP9b .framer-2fx3v8 > :first-child, .framer-AhP9b .framer-rtvif1 > :first-child { margin-top: 0px; } .framer-AhP9b .framer-1ua266o > :last-child, .framer-AhP9b .framer-1uhfj7o > :last-child, .framer-AhP9b .framer-9gt00v > :last-child, .framer-AhP9b .framer-kn2vzz > :last-child, .framer-AhP9b .framer-9aj84o > :last-child, .framer-AhP9b .framer-2fx3v8 > :last-child, .framer-AhP9b .framer-rtvif1 > :last-child { margin-bottom: 0px; } .framer-AhP9b .framer-9gt00v > *, .framer-AhP9b .framer-rtvif1 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-AhP9b .framer-kn2vzz > *, .framer-AhP9b .framer-9aj84o > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }}\",\"@media (max-width: 833px) { .framer-AhP9b.framer-72rtr7 { width: 390px; } .framer-AhP9b .framer-11ogbyb-container { max-width: 450px; min-width: 300px; order: 0; width: 85%; } .framer-AhP9b .framer-1a1cd85 { border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; order: 1; padding: 170px 0px 170px 0px; } .framer-AhP9b .framer-8g94jg { width: 98%; } .framer-AhP9b .framer-1m0vnj5 { gap: 32px; width: 100%; } .framer-AhP9b .framer-1x9ris3, .framer-AhP9b .framer-1kga8vp, .framer-AhP9b .framer-180fvbv, .framer-AhP9b .framer-1012w1s { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-AhP9b .framer-1093xas { width: 355px; } .framer-AhP9b .framer-v3eajy, .framer-AhP9b .framer-1uhfj7o { flex-direction: column; } .framer-AhP9b .framer-4cozv1-container { align-self: stretch; } .framer-AhP9b .framer-1gqber0 { left: 509px; top: 88px; } .framer-AhP9b .framer-16twy6u { left: 49%; } .framer-AhP9b .framer-17eq9d7 { bottom: 151px; left: 915px; top: unset; } .framer-AhP9b .framer-6dq68u { -webkit-filter: blur(3px); filter: blur(3px); height: 79px; left: 48px; top: calc(50.00000000000002% - 79px / 2); width: 124px; } .framer-AhP9b .framer-kn2vhf { bottom: 265px; left: 427px; } .framer-AhP9b .framer-1rtn38x { height: 106px; left: 95px; top: calc(54.26621160409558% - 106px / 2); width: 165px; } .framer-AhP9b .framer-oszwwy { left: 902px; right: unset; top: 120px; } .framer-AhP9b .framer-d6806m { -webkit-filter: blur(5px); filter: blur(5px); height: var(--framer-aspect-ratio-supported, 117px); left: 65px; top: 47%; transform: translateY(-50%); width: 182px; } .framer-AhP9b .framer-1xbqhss { order: 2; padding: 0px 16px 0px 16px; } .framer-AhP9b .framer-1ua266o, .framer-AhP9b .framer-2fx3v8 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-AhP9b .framer-18tlj95, .framer-AhP9b .framer-a805on, .framer-AhP9b .framer-15oyrho, .framer-AhP9b .framer-kusv0, .framer-AhP9b .framer-t1oksf, .framer-AhP9b .framer-1ffqq98 { width: 100%; } .framer-AhP9b .framer-drdztk, .framer-AhP9b .framer-1801d2, .framer-AhP9b .framer-8acfni { flex: none; gap: 24px; padding: 8px 8px 24px 8px; width: 100%; } .framer-AhP9b .framer-s5kzz2, .framer-AhP9b .framer-gj9nwk, .framer-AhP9b .framer-44hhtn { flex: none; width: 90%; } .framer-AhP9b .framer-qoa4j6 { order: 3; padding: 0px 16px 0px 16px; } .framer-AhP9b .framer-5ve2if-container { left: 50%; top: 103px; transform: translateX(-50%); } .framer-AhP9b .framer-14reeoy-container { bottom: 169px; left: 50%; top: unset; transform: translateX(-50%); } .framer-AhP9b .framer-17cknpn { align-self: unset; width: 100%; } .framer-AhP9b .framer-9gt00v { flex-direction: column; order: 4; padding: 56px 16px 56px 16px; } .framer-AhP9b .framer-1uam04x { align-content: center; align-items: center; gap: 32px; width: 100%; } .framer-AhP9b .framer-bkgrpp, .framer-AhP9b .framer-16u7ve { order: 0; } .framer-AhP9b .framer-jbcvth { order: 1; width: 100%; } .framer-AhP9b .framer-qoopsa { padding: 12px 0px 12px 0px; } .framer-AhP9b .framer-fcts1k-container { flex: none; height: 450px; width: 100%; } .framer-AhP9b .framer-vs78dk { order: 5; padding: 56px 16px 0px 16px; } .framer-AhP9b .framer-10w93nz { gap: 72px; padding: 97px 0px 32px 0px; } .framer-AhP9b .framer-xx8a0f { order: 1; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-AhP9b .framer-c1vmkt-container { order: 3; } .framer-AhP9b .framer-g4gmkg { order: 6; padding: 0px 16px 0px 16px; } .framer-AhP9b .framer-dnx05l-container { order: 7; width: 100%; } .framer-AhP9b .framer-kn2vzz { flex-direction: column; order: 8; padding: 0px 16px 56px 16px; } .framer-AhP9b .framer-tnmncj-container { flex: none; width: 100%; } .framer-AhP9b .framer-jcnslc { order: 9; padding: 48px 16px 72px 16px; } .framer-AhP9b .framer-9aj84o { gap: 56px; } .framer-AhP9b .framer-rtvif1 { flex-direction: column; gap: 48px; } .framer-AhP9b .framer-50k5n4-container { align-self: unset; flex: none; order: 0; width: 100%; } .framer-AhP9b .framer-ygxtzo-container { align-self: unset; flex: none; order: 1; width: 100%; } .framer-AhP9b .framer-1u8rw1h-container { flex: none; order: 2; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AhP9b .framer-1m0vnj5, .framer-AhP9b .framer-v3eajy, .framer-AhP9b .framer-1ua266o, .framer-AhP9b .framer-1uhfj7o, .framer-AhP9b .framer-drdztk, .framer-AhP9b .framer-1801d2, .framer-AhP9b .framer-8acfni, .framer-AhP9b .framer-9gt00v, .framer-AhP9b .framer-1uam04x, .framer-AhP9b .framer-10w93nz, .framer-AhP9b .framer-kn2vzz, .framer-AhP9b .framer-9aj84o, .framer-AhP9b .framer-2fx3v8, .framer-AhP9b .framer-rtvif1 { gap: 0px; } .framer-AhP9b .framer-1m0vnj5 > *, .framer-AhP9b .framer-1uam04x > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-AhP9b .framer-1m0vnj5 > :first-child, .framer-AhP9b .framer-v3eajy > :first-child, .framer-AhP9b .framer-1ua266o > :first-child, .framer-AhP9b .framer-1uhfj7o > :first-child, .framer-AhP9b .framer-drdztk > :first-child, .framer-AhP9b .framer-1801d2 > :first-child, .framer-AhP9b .framer-8acfni > :first-child, .framer-AhP9b .framer-9gt00v > :first-child, .framer-AhP9b .framer-1uam04x > :first-child, .framer-AhP9b .framer-10w93nz > :first-child, .framer-AhP9b .framer-kn2vzz > :first-child, .framer-AhP9b .framer-9aj84o > :first-child, .framer-AhP9b .framer-2fx3v8 > :first-child, .framer-AhP9b .framer-rtvif1 > :first-child { margin-top: 0px; } .framer-AhP9b .framer-1m0vnj5 > :last-child, .framer-AhP9b .framer-v3eajy > :last-child, .framer-AhP9b .framer-1ua266o > :last-child, .framer-AhP9b .framer-1uhfj7o > :last-child, .framer-AhP9b .framer-drdztk > :last-child, .framer-AhP9b .framer-1801d2 > :last-child, .framer-AhP9b .framer-8acfni > :last-child, .framer-AhP9b .framer-9gt00v > :last-child, .framer-AhP9b .framer-1uam04x > :last-child, .framer-AhP9b .framer-10w93nz > :last-child, .framer-AhP9b .framer-kn2vzz > :last-child, .framer-AhP9b .framer-9aj84o > :last-child, .framer-AhP9b .framer-2fx3v8 > :last-child, .framer-AhP9b .framer-rtvif1 > :last-child { margin-bottom: 0px; } .framer-AhP9b .framer-v3eajy > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-AhP9b .framer-1ua266o > *, .framer-AhP9b .framer-1uhfj7o > *, .framer-AhP9b .framer-drdztk > *, .framer-AhP9b .framer-1801d2 > *, .framer-AhP9b .framer-8acfni > *, .framer-AhP9b .framer-2fx3v8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AhP9b .framer-9gt00v > *, .framer-AhP9b .framer-rtvif1 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-AhP9b .framer-10w93nz > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-AhP9b .framer-kn2vzz > *, .framer-AhP9b .framer-9aj84o > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8013.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"v_YqPO6_O\":{\"layout\":[\"fixed\",\"auto\"]},\"a7omOwK3Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"yhDp88D5G\":{\"pattern\":\":yhDp88D5G\",\"name\":\"features\"},\"ehECsA_PU\":{\"pattern\":\":ehECsA_PU\",\"name\":\"testimonials\"},\"lP73f2hAY\":{\"pattern\":\":lP73f2hAY\",\"name\":\"faq\"},\"nr8ZJEn3D\":{\"pattern\":\":nr8ZJEn3D\",\"name\":\"pricing\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-AhP9b\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8013.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...NavbarFonts,...KickerFonts,...MainBtnFonts,...BentoLockFonts,...BentoEyeFonts,...BentoSearchFonts,...GradientTagFonts,...TagContainerFonts,...FeaturesFonts,...TestimonialsFonts,...TickerFonts,...SlideshowFonts,...CtaSectionFonts,...ToolsIntegrationsFonts,...FAQFonts,...PricingFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v_YqPO6_O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a7omOwK3Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"yhDp88D5G\\\":{\\\"pattern\\\":\\\":yhDp88D5G\\\",\\\"name\\\":\\\"features\\\"},\\\"ehECsA_PU\\\":{\\\"pattern\\\":\\\":ehECsA_PU\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"lP73f2hAY\\\":{\\\"pattern\\\":\\\":lP73f2hAY\\\",\\\"name\\\":\\\"faq\\\"},\\\"nr8ZJEn3D\\\":{\\\"pattern\\\":\\\":nr8ZJEn3D\\\",\\\"name\\\":\\\"pricing\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8013.5\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "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", "n", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "t", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearxsdi7m", "args", "onAppear1d7s6ma", "onAppear12x2qtt", "onAppearg565ij", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "FramerdLKgDaUrY", "withCSS", "dLKgDaUrY_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "Framerq8dplMS_Q", "withCSS", "q8dplMS_Q_default", "addPropertyControls", "ControlType", "addFonts", "StarRatingFonts", "getFonts", "q8dplMS_Q_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "description", "height", "icon", "id", "name1", "star", "star2", "star3", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "oFT7eDP8G", "orK8NDzCR", "rtkvAOQyh", "eWCOK5vem", "ZFIA3cQ03", "gL9wCDKLZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "Framerdyz77fVFe", "withCSS", "dyz77fVFe_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearni3zgg", "args", "onAppear1xcjdcl", "onAppear1pgth9", "onAppeardtv8y5", "onAppear1ozb93x", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramermrWSw81Lm", "withCSS", "mrWSw81Lm_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1nmg720", "args", "onAppearh427fl", "onAppearm2cnks", "onAppear1s2hqtr", "onAppear1kor6za", "onAppearis9bvu", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerp1ik0tlLx", "withCSS", "p1ik0tlLx_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear4qp96q", "args", "onAppeari72xh4", "onAppear1jan6ok", "onAppeard5lwuh", "onAppearl42cwq", "onAppearphxhwz", "onAppear11sbia7", "onAppearc9k1km", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "Framerr3Ip11frV", "withCSS", "r3Ip11frV_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "Framert_oTMlfm9", "withCSS", "t_oTMlfm9_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "gwX_5PGgl_default", "KickerFonts", "LSm7vMGWM_default", "MainBtnFonts", "yjV0S7LpS_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "BentoLockFonts", "r3Ip11frV_default", "BentoEyeFonts", "mrWSw81Lm_default", "BentoSearchFonts", "dLKgDaUrY_default", "MotionSectionWithFX", "withFX", "GradientTagFonts", "t_oTMlfm9_default", "TagContainerFonts", "L5UFS0E21_default", "FeaturesFonts", "p1ik0tlLx_default", "TestimonialsFonts", "dyz77fVFe_default", "TickerFonts", "Ticker", "SlideshowFonts", "Slideshow", "CtaSectionFonts", "xrVUMRukg_default", "ToolsIntegrationsFonts", "azrtPezHG_default", "FAQFonts", "m8Vjou_Vk_default", "PricingFonts", "RzxQXmhAc_default", "FooterFonts", "SD1xoIxdW_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transformTemplate1", "_", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "animation9", "transition6", "animation10", "animation11", "transition7", "animation12", "animation13", "transformTemplate2", "animation14", "transition8", "animation15", "animation16", "transformTemplate3", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed3", "elementId2", "ref4", "elementId3", "ref5", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "x", "SVG", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
