{
  "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.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js", "ssg:https://framerusercontent.com/modules/3KMesRYjCrlKqFlZDLMq/gGPAD15v6oyGb0AZCqPk/EP5tdr86h.js", "ssg:https://framerusercontent.com/modules/VVJ7QEoC6HSpiV9ua1Ok/weZBrly6yeBtKKhncfuL/fFm_3gGAP.js", "ssg:https://framerusercontent.com/modules/5Gnpe3MVexbQnXb118mm/WDSHg52mc9Sxar0GdluD/OYt2SphkL.js", "ssg:https://framerusercontent.com/modules/CXYEKiKOHtW8aFP9cndz/r02EXSQSvqvrFWluqydo/UyAS9z2T4.js", "ssg:https://framerusercontent.com/modules/iuPcaBWEudVVOyvjY5Y9/xrnORUvw56TUUy50qOcU/JU45j_9aT.js", "ssg:https://framerusercontent.com/modules/f9AhlFo74OJsVBXjWlFH/SeoKSEjdf16zgxKZoDsr/RXufId4Os.js", "ssg:https://framerusercontent.com/modules/yPAhjDtmBwH8ACk4d4oM/XbUMyYxd8DynRNyjRxx1/ee9lpAKv_.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,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[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 $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);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]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;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){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.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 r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}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=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.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(u));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=f.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 r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}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 i(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 l(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){d(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:g(i,s,o[r]),easing:m(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,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));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,O(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=x((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 U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;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=G.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&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=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 J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}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 Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(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}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;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=w(p(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 s=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:i(t)?()=>t(n):scrubAnimation(t,n[s])}}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 oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.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()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.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 re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,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 ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(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 ce={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 le={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 fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=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 ue)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)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[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(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[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:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.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)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.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{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));/*if (snap && (snapEdge === \"start\" || snapEdge === \"end\") && delta >= 1)\n            delta = delta + 0.4 // this ensures it doesn't snap back to previous page*/gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.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 (fe89999)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/bcZcrQ9BHRCskdmJxvoZ/zErKTh0lrctNjdgUcSN0/jc8et8OCO.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/n4z0ebZpczCBk4JhRa5x/eCupSCypIKHuJx4fwcpN/KIzWe41r9.js\";const cycleOrder=[\"pQ3cneO1h\",\"qs30O22rt\"];const serializationHash=\"framer-eHkQ2\";const variantClassNames={pQ3cneO1h:\"framer-v-1yrajsu\",qs30O22rt:\"framer-v-agzdl3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"pQ3cneO1h\",\"Variant 2\":\"qs30O22rt\"};const getProps=({autor,height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,N1VQ2RhFr:(_ref=text!==null&&text!==void 0?text:props.N1VQ2RhFr)!==null&&_ref!==void 0?_ref:\"Thank you for building such an empowering tool, especially for designers! The site went from Figma to Framer in less than a week.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"pQ3cneO1h\",WFkjd4h49:(_ref2=autor!==null&&autor!==void 0?autor:props.WFkjd4h49)!==null&&_ref2!==void 0?_ref2:\"Kayla Ray\"};};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,N1VQ2RhFr,WFkjd4h49,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pQ3cneO1h\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yrajsu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"pQ3cneO1h\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({qs30O22rt:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q291c3RhcmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Coustard\", \"Coustard Placeholder\", serif',\"--framer-font-size\":\"180px\",\"--framer-line-height\":\"0.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, rgb(46, 161, 178)))\"},children:'\"'})}),className:\"framer-xafj2f\",fonts:[\"GF;Coustard-regular\"],layoutDependency:layoutDependency,layoutId:\"h5Um_xLRv\",style:{\"--extracted-gdpscs\":\"var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, rgb(46, 161, 178))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qs30O22rt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q291c3RhcmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Coustard\", \"Coustard Placeholder\", serif',\"--framer-font-size\":\"120px\",\"--framer-line-height\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, rgb(46, 161, 178)))\"},children:'\"'})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1clgyh5\",\"data-styles-preset\":\"jc8et8OCO\",children:\"\u201CThank you for building such an empowering tool, especially for designers! The site went from Figma to Framer in less than a week.\u201D\"})}),className:\"framer-1lw70cj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lGA6q5Xc4\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:N1VQ2RhFr,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qs30O22rt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-alignment\":\"center\"},children:\"Thank you for building such an empowering tool, especially for designers! The site went from Figma to Framer in less than a week.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4y8643\",layoutDependency:layoutDependency,layoutId:\"BR0Jac7pm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94)))\"},children:\"Kayla Ray\"})}),className:\"framer-yzdiv7\",fonts:[\"GF;Ubuntu-700\"],layoutDependency:layoutDependency,layoutId:\"AFU83NysC\",style:{\"--extracted-1eung3n\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:WFkjd4h49,variants:{qs30O22rt:{\"--extracted-1lwpl3i\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qs30O22rt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94)))\"},children:\"Kayla Ray\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eHkQ2.framer-1virinl, .framer-eHkQ2 .framer-1virinl { display: block; }\",\".framer-eHkQ2.framer-1yrajsu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 75px 0px 0px 0px; position: relative; width: 500px; }\",\".framer-eHkQ2 .framer-xafj2f, .framer-eHkQ2 .framer-1lw70cj { flex: none; height: auto; max-width: 500px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eHkQ2 .framer-4y8643 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-eHkQ2 .framer-yzdiv7 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eHkQ2.framer-1yrajsu, .framer-eHkQ2 .framer-4y8643 { gap: 0px; } .framer-eHkQ2.framer-1yrajsu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eHkQ2.framer-1yrajsu > :first-child { margin-top: 0px; } .framer-eHkQ2.framer-1yrajsu > :last-child { margin-bottom: 0px; } .framer-eHkQ2 .framer-4y8643 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-eHkQ2 .framer-4y8643 > :first-child { margin-left: 0px; } .framer-eHkQ2 .framer-4y8643 > :last-child { margin-right: 0px; } }\",\".framer-eHkQ2.framer-v-agzdl3.framer-1yrajsu { align-content: center; align-items: center; padding: 50px 0px 0px 0px; }\",\".framer-eHkQ2.framer-v-agzdl3 .framer-4y8643 { width: 100%; }\",\".framer-eHkQ2.framer-v-agzdl3 .framer-yzdiv7 { flex: 1 0 0px; order: 0; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 248\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qs30O22rt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"N1VQ2RhFr\":\"text\",\"WFkjd4h49\":\"autor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEP5tdr86h=withCSS(Component,css,\"framer-eHkQ2\");export default FramerEP5tdr86h;FramerEP5tdr86h.displayName=\"Review\";FramerEP5tdr86h.defaultProps={height:248,width:500};addPropertyControls(FramerEP5tdr86h,{variant:{options:[\"pQ3cneO1h\",\"qs30O22rt\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},N1VQ2RhFr:{defaultValue:\"Thank you for building such an empowering tool, especially for designers! The site went from Figma to Framer in less than a week.\",description:\"Text\",displayTextArea:true,placeholder:\"Thank you for building such an empowering tool, especially for designers! The site went from Figma to Framer in less than a week.\",title:\"Text\",type:ControlType.String},WFkjd4h49:{defaultValue:\"Kayla Ray\",description:\"Autor\",displayTextArea:false,placeholder:\"Kayla Ray\",title:\"Autor\",type:ControlType.String}});addFonts(FramerEP5tdr86h,[{explicitInter:true,fonts:[{family:\"Coustard\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UKvWXuROTd.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/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:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTsmaMH4V_gg.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEP5tdr86h\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"248\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"N1VQ2RhFr\\\":\\\"text\\\",\\\"WFkjd4h49\\\":\\\"autor\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qs30O22rt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"500\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EP5tdr86h.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/n4z0ebZpczCBk4JhRa5x/eCupSCypIKHuJx4fwcpN/KIzWe41r9.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/8yBqVAGs8oaPo8dS29fO/ntsjlLtUshL47uQROe7h/lS3kqyBWT.js\";const serializationHash=\"framer-wkGQz\";const variantClassNames={BFnKLNB1Z:\"framer-v-nytaxj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,texto,width,...props})=>{var _ref;return{...props,IoWlB_t2_:(_ref=texto!==null&&texto!==void 0?texto:props.IoWlB_t2_)!==null&&_ref!==void 0?_ref:\"Texto\"};};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,IoWlB_t2_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"BFnKLNB1Z\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nytaxj\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BFnKLNB1Z\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dr5g3x\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"WHy5ygvGx\",style:{backgroundColor:\"rgba(46, 161, 178, 0.05)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)))\"},children:\"You\u2019ve never made a website this fast before. You\u2019ve never made a website this fast before.\"})}),className:\"framer-k234lp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c0tx2LN3j\",style:{\"--extracted-1eung3n\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\",\"--framer-paragraph-spacing\":\"0px\"},text:IoWlB_t2_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rmrz9l\",\"data-framer-name\":\"Bot\\xe3o\",layoutDependency:layoutDependency,layoutId:\"sWyCJdvM9\",style:{backgroundColor:\"rgba(46, 161, 178, 0.1)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1sc12sm\",\"data-styles-preset\":\"lS3kqyBWT\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94)))\"},children:\"Learn more\"})}),className:\"framer-189ekqy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iyGDe9Fik\",style:{\"--extracted-1w1cjl5\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-trd6f7\",layoutDependency:layoutDependency,layoutId:\"fqmiAL0TN\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ygazk8\",\"data-framer-name\":\"Seta Direita\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gzdHBqQou\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 14\"><path d=\"M 24.542 5.892 L 19.825 1.175 L 19.118 1.882 L 23.736 6.5 L 1 6.5 L 1 7.5 L 23.734 7.5 L 19.117 12.117 L 19.824 12.824 L 24.542 8.106 C 25.152 7.496 25.152 6.502 24.542 5.892 Z\" fill=\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)) /* {&quot;name&quot;:&quot;Main 2&quot;} */\" stroke-width=\"0.6\" stroke=\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)) /* {&quot;name&quot;:&quot;Main 2&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"bevel\"></path></svg>',svgContentId:9960488728,withExternalLayout:true})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wkGQz.framer-bmhyms, .framer-wkGQz .framer-bmhyms { display: block; }\",\".framer-wkGQz.framer-nytaxj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 327px; }\",\".framer-wkGQz .framer-1dr5g3x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; padding: 50px; position: relative; width: 100%; }\",\".framer-wkGQz .framer-k234lp { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wkGQz .framer-rmrz9l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px 25px 0px 25px; position: relative; width: 100%; }\",\".framer-wkGQz .framer-189ekqy { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-wkGQz .framer-trd6f7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-wkGQz .framer-1ygazk8 { flex: none; height: 14px; position: relative; width: 26px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wkGQz.framer-nytaxj, .framer-wkGQz .framer-1dr5g3x, .framer-wkGQz .framer-rmrz9l, .framer-wkGQz .framer-trd6f7 { gap: 0px; } .framer-wkGQz.framer-nytaxj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wkGQz.framer-nytaxj > :first-child, .framer-wkGQz .framer-1dr5g3x > :first-child { margin-top: 0px; } .framer-wkGQz.framer-nytaxj > :last-child, .framer-wkGQz .framer-1dr5g3x > :last-child { margin-bottom: 0px; } .framer-wkGQz .framer-1dr5g3x > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-wkGQz .framer-rmrz9l > *, .framer-wkGQz .framer-trd6f7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wkGQz .framer-rmrz9l > :first-child, .framer-wkGQz .framer-trd6f7 > :first-child { margin-left: 0px; } .framer-wkGQz .framer-rmrz9l > :last-child, .framer-wkGQz .framer-trd6f7 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 271\n * @framerIntrinsicWidth 327\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"IoWlB_t2_\":\"texto\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfFm_3gGAP=withCSS(Component,css,\"framer-wkGQz\");export default FramerfFm_3gGAP;FramerfFm_3gGAP.displayName=\"Post\";FramerfFm_3gGAP.defaultProps={height:271,width:327};addPropertyControls(FramerfFm_3gGAP,{IoWlB_t2_:{defaultValue:\"Texto\",description:\"Texto\",displayTextArea:true,placeholder:\"Texto\",title:\"Texto\",type:ControlType.String}});addFonts(FramerfFm_3gGAP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfFm_3gGAP\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"327\",\"framerVariables\":\"{\\\"IoWlB_t2_\\\":\\\"texto\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"271\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fFm_3gGAP.map", "// Generated by Framer (01933e6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Ubuntu-regular\",\"GF;Ubuntu-700\",\"GF;Ubuntu-700italic\",\"GF;Ubuntu-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6fQT3v02QFg.woff2\",weight:\"400\"},{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTsmaMH4V_gg.woff2\",weight:\"700\"},{family:\"Ubuntu\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyNPYBvgpUI.woff2\",weight:\"700\"},{family:\"Ubuntu\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg72nUiAFpxm.woff2\",weight:\"400\"}]}];export const css=['.framer-MQaq5 .framer-styles-preset-kcozqk:not(.rich-text-wrapper), .framer-MQaq5 .framer-styles-preset-kcozqk.rich-text-wrapper h5 { --framer-font-family: \"Ubuntu\", \"Ubuntu Placeholder\", sans-serif; --framer-font-family-bold: \"Ubuntu\", \"Ubuntu Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Ubuntu\", \"Ubuntu Placeholder\", sans-serif; --framer-font-family-italic: \"Ubuntu\", \"Ubuntu Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-465f9296-aae3-4f90-88ac-eeb907303144, #2e4c5e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-MQaq5\";\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 (01933e6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Ubuntu-700\",\"GF;Ubuntu-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTsmaMH4V_gg.woff2\",weight:\"700\"},{family:\"Ubuntu\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyNPYBvgpUI.woff2\",weight:\"700\"}]}];export const css=[\".framer-WY8Nl .framer-styles-preset-11e0ny7:not(.rich-text-wrapper), .framer-WY8Nl .framer-styles-preset-11e0ny7.rich-text-wrapper h1 { --framer-font-family: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-465f9296-aae3-4f90-88ac-eeb907303144, #2e4c5e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-WY8Nl\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ooYSK4QwK9d0IMy9Lcae/J06lPmnm15A8Ize8Dh5O/AWzICWtuf.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/n4z0ebZpczCBk4JhRa5x/eCupSCypIKHuJx4fwcpN/KIzWe41r9.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/5Gnpe3MVexbQnXb118mm/WDSHg52mc9Sxar0GdluD/OYt2SphkL.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/CXYEKiKOHtW8aFP9cndz/r02EXSQSvqvrFWluqydo/UyAS9z2T4.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"qiopqaS3D\",\"p4aBYcQbB\",\"ZGe39XE9U\",\"X0dv2BEyZ\",\"iV4GAkIVL\",\"KWs9loUoP\"];const serializationHash=\"framer-ssx5C\";const variantClassNames={iV4GAkIVL:\"framer-v-4qe3l2\",KWs9loUoP:\"framer-v-8bm5ct\",p4aBYcQbB:\"framer-v-c06r7r\",qiopqaS3D:\"framer-v-1gwdiha\",X0dv2BEyZ:\"framer-v-ve5rww\",ZGe39XE9U:\"framer-v-11ta9tf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition1={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:100};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={d1:\"qiopqaS3D\",d2:\"p4aBYcQbB\",d3:\"ZGe39XE9U\",m1:\"X0dv2BEyZ\",m2:\"iV4GAkIVL\",m3:\"KWs9loUoP\"};const getProps=({background,benef_cio,height,id,texto,width,...props})=>{return{...props,heeuu5W4i:texto??props.heeuu5W4i??\"You\u2019ve never made a website this fast before. You\u2019ve never made a website this fast before.\",Uw_zbJ78Z:benef_cio??props.Uw_zbJ78Z??\"Benef\\xedcio\",variant:humanReadableVariantMap[props.variant]??props.variant??\"qiopqaS3D\",ZQbX3ysN0:background??props.ZQbX3ysN0??\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"};};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,ZQbX3ysN0,heeuu5W4i,Uw_zbJ78Z,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qiopqaS3D\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1gwdiha\",className,classNames),\"data-framer-name\":\"d1\",layoutDependency:layoutDependency,layoutId:\"qiopqaS3D\",ref:ref??ref1,style:{borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,...style},...addPropertyOverrides({iV4GAkIVL:{\"data-framer-name\":\"m2\"},KWs9loUoP:{\"data-framer-name\":\"m3\"},p4aBYcQbB:{\"data-framer-name\":\"d2\"},X0dv2BEyZ:{\"data-framer-name\":\"m1\"},ZGe39XE9U:{\"data-framer-name\":\"d3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-apuefn\",layoutDependency:layoutDependency,layoutId:\"kuAinbZeE\",style:{backgroundColor:ZQbX3ysN0,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{iV4GAkIVL:{borderTopLeftRadius:15,borderTopRightRadius:15},KWs9loUoP:{borderTopLeftRadius:15,borderTopRightRadius:15},X0dv2BEyZ:{borderTopLeftRadius:15,borderTopRightRadius:15}}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||463.5)-0-371.3)/2+0+0)),pixelHeight:1280,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"176.5px\",src:\"https://framerusercontent.com/images/yttVzD7wa2LBOJOhszOMHuZE86U.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yttVzD7wa2LBOJOhszOMHuZE86U.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yttVzD7wa2LBOJOhszOMHuZE86U.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/yttVzD7wa2LBOJOhszOMHuZE86U.webp 1920w\"},className:\"framer-1f4ooyx\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ltWItvMQD\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(46, 161, 178, 0.25)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:500,borderBottomRightRadius:400,borderTopLeftRadius:250,borderTopRightRadius:450,opacity:.8},variants:{iV4GAkIVL:{borderBottomLeftRadius:200,borderBottomRightRadius:300,borderTopLeftRadius:500,borderTopRightRadius:300},KWs9loUoP:{borderBottomLeftRadius:350,borderBottomRightRadius:200,borderTopRightRadius:300},p4aBYcQbB:{borderBottomLeftRadius:200,borderBottomRightRadius:300,borderTopLeftRadius:500,borderTopRightRadius:300},ZGe39XE9U:{borderBottomLeftRadius:350,borderBottomRightRadius:200,borderTopRightRadius:300}},...addPropertyOverrides({iV4GAkIVL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||337.5)-0-287.2)/2+0+0)),pixelHeight:1280,pixelWidth:1920,positionX:\"left\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/j1pi5WVoBUX8wyNcXF1d5safKU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/j1pi5WVoBUX8wyNcXF1d5safKU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/j1pi5WVoBUX8wyNcXF1d5safKU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/j1pi5WVoBUX8wyNcXF1d5safKU.webp 1920w\"}},KWs9loUoP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||337.5)-0-287.2)/2+0+0)),pixelHeight:1280,pixelWidth:1920,positionX:\"left\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp 1920w\"}},p4aBYcQbB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||463.5)-0-371.3)/2+0+0)),pixelHeight:1280,pixelWidth:1920,positionX:\"left\",positionY:\"center\",sizes:\"176.5px\",src:\"https://framerusercontent.com/images/j1pi5WVoBUX8wyNcXF1d5safKU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/j1pi5WVoBUX8wyNcXF1d5safKU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/j1pi5WVoBUX8wyNcXF1d5safKU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/j1pi5WVoBUX8wyNcXF1d5safKU.webp 1920w\"}},X0dv2BEyZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||337.5)-0-287.2)/2+0+0)),pixelHeight:1280,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/yttVzD7wa2LBOJOhszOMHuZE86U.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yttVzD7wa2LBOJOhszOMHuZE86U.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yttVzD7wa2LBOJOhszOMHuZE86U.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/yttVzD7wa2LBOJOhszOMHuZE86U.webp 1920w\"}},ZGe39XE9U:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||463.5)-0-371.3)/2+0+0)),pixelHeight:1280,pixelWidth:1920,positionX:\"left\",positionY:\"center\",sizes:\"176.5px\",src:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp 1920w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-is86me\",layoutDependency:layoutDependency,layoutId:\"A82Cx0e6L\",style:{backgroundColor:ZQbX3ysN0,borderBottomLeftRadius:20,borderBottomRightRadius:20},variants:{iV4GAkIVL:{borderBottomLeftRadius:15,borderBottomRightRadius:15},KWs9loUoP:{borderBottomLeftRadius:15,borderBottomRightRadius:15},X0dv2BEyZ:{borderBottomLeftRadius:15,borderBottomRightRadius:15}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g32e0j\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"cd6rNiJsw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11e0ny7\",\"data-styles-preset\":\"UyAS9z2T4\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)))\"},children:\"Benef\\xedcio 1\"})}),className:\"framer-1er7dcd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IIG6RlBaS\",style:{\"--extracted-gdpscs\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Uw_zbJ78Z,variants:{iV4GAkIVL:{\"--extracted-1of0zx5\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},KWs9loUoP:{\"--extracted-1of0zx5\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},X0dv2BEyZ:{\"--extracted-1of0zx5\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iV4GAkIVL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-kjrgcx\",\"data-styles-preset\":\"AWzICWtuf\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)))\"},children:\"Benef\\xedcio 1\"})})},KWs9loUoP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-kjrgcx\",\"data-styles-preset\":\"AWzICWtuf\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)))\"},children:\"Benef\\xedcio 1\"})})},X0dv2BEyZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-kjrgcx\",\"data-styles-preset\":\"AWzICWtuf\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)))\"},children:\"Benef\\xedcio 1\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)))\"},children:\"You\u2019ve never made a website this fast before. You\u2019ve never made a website this fast before.\"})}),className:\"framer-100istz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"c0bnL8Q9Q\",style:{\"--extracted-1eung3n\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\",\"--framer-paragraph-spacing\":\"0px\"},text:heeuu5W4i,variants:{iV4GAkIVL:{\"--extracted-1lwpl3i\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},KWs9loUoP:{\"--extracted-1lwpl3i\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},X0dv2BEyZ:{\"--extracted-1lwpl3i\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iV4GAkIVL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-kcozqk\",\"data-styles-preset\":\"OYt2SphkL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)))\"},children:\"You\u2019ve never made a website this fast before. You\u2019ve never made a website this fast before.\"})})},KWs9loUoP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-kcozqk\",\"data-styles-preset\":\"OYt2SphkL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)))\"},children:\"You\u2019ve never made a website this fast before. You\u2019ve never made a website this fast before.\"})})},X0dv2BEyZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-kcozqk\",\"data-styles-preset\":\"OYt2SphkL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)))\"},children:\"You\u2019ve never made a website this fast before. You\u2019ve never made a website this fast before.\"})})}},baseVariant,gestureVariant)})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ssx5C.framer-at1y8h, .framer-ssx5C .framer-at1y8h { display: block; }\",\".framer-ssx5C.framer-1gwdiha { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 327px; overflow: visible; padding: 0px; position: relative; width: 321px; }\",\".framer-ssx5C .framer-apuefn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 89px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 88px; z-index: 1; }\",\".framer-ssx5C .framer-1f4ooyx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 177px); overflow: hidden; position: relative; width: 177px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-ssx5C .framer-is86me { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 50px; position: relative; width: 100%; }\",\".framer-ssx5C .framer-g32e0j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-ssx5C .framer-1er7dcd { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-ssx5C .framer-100istz { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ssx5C.framer-1gwdiha, .framer-ssx5C .framer-apuefn, .framer-ssx5C .framer-is86me, .framer-ssx5C .framer-g32e0j { gap: 0px; } .framer-ssx5C.framer-1gwdiha > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ssx5C.framer-1gwdiha > :first-child, .framer-ssx5C .framer-apuefn > :first-child, .framer-ssx5C .framer-is86me > :first-child, .framer-ssx5C .framer-g32e0j > :first-child { margin-top: 0px; } .framer-ssx5C.framer-1gwdiha > :last-child, .framer-ssx5C .framer-apuefn > :last-child, .framer-ssx5C .framer-is86me > :last-child, .framer-ssx5C .framer-g32e0j > :last-child { margin-bottom: 0px; } .framer-ssx5C .framer-apuefn > *, .framer-ssx5C .framer-is86me > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ssx5C .framer-g32e0j > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-ssx5C.framer-v-ve5rww.framer-1gwdiha, .framer-ssx5C.framer-v-4qe3l2.framer-1gwdiha, .framer-ssx5C.framer-v-8bm5ct.framer-1gwdiha { max-width: unset; }\",\".framer-ssx5C.framer-v-ve5rww .framer-apuefn { height: 69px; order: 0; top: 64px; }\",\".framer-ssx5C.framer-v-ve5rww .framer-1f4ooyx { height: var(--framer-aspect-ratio-supported, 120px); order: 1; width: 120px; }\",\".framer-ssx5C.framer-v-ve5rww .framer-is86me { order: 2; padding: 40px; }\",\".framer-ssx5C.framer-v-4qe3l2 .framer-apuefn, .framer-ssx5C.framer-v-8bm5ct .framer-apuefn { height: 69px; top: 64px; }\",\".framer-ssx5C.framer-v-4qe3l2 .framer-1f4ooyx, .framer-ssx5C.framer-v-8bm5ct .framer-1f4ooyx { height: var(--framer-aspect-ratio-supported, 120px); width: 120px; }\",\".framer-ssx5C.framer-v-4qe3l2 .framer-is86me, .framer-ssx5C.framer-v-8bm5ct .framer-is86me { padding: 40px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-ssx5C[data-border=\"true\"]::after, .framer-ssx5C [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 463.5\n * @framerIntrinsicWidth 321\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"327px\",null,null]},\"p4aBYcQbB\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"327px\",null,null]},\"ZGe39XE9U\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"327px\",null,null]},\"X0dv2BEyZ\":{\"layout\":[\"fixed\",\"auto\"]},\"iV4GAkIVL\":{\"layout\":[\"fixed\",\"auto\"]},\"KWs9loUoP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZQbX3ysN0\":\"background\",\"heeuu5W4i\":\"texto\",\"Uw_zbJ78Z\":\"benef_cio\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJU45j_9aT=withCSS(Component,css,\"framer-ssx5C\");export default FramerJU45j_9aT;FramerJU45j_9aT.displayName=\"Card de benef\\xedcio\";FramerJU45j_9aT.defaultProps={height:463.5,width:321};addPropertyControls(FramerJU45j_9aT,{variant:{options:[\"qiopqaS3D\",\"p4aBYcQbB\",\"ZGe39XE9U\",\"X0dv2BEyZ\",\"iV4GAkIVL\",\"KWs9loUoP\"],optionTitles:[\"d1\",\"d2\",\"d3\",\"m1\",\"m2\",\"m3\"],title:\"Variant\",type:ControlType.Enum},ZQbX3ysN0:{defaultValue:'var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244)) /* {\"name\":\"Main 5\"} */',title:\"Background\",type:ControlType.Color},heeuu5W4i:{defaultValue:\"You\u2019ve never made a website this fast before. You\u2019ve never made a website this fast before.\",description:\"Texto\",displayTextArea:true,placeholder:\"Texto\",title:\"Texto\",type:ControlType.String},Uw_zbJ78Z:{defaultValue:\"Benef\\xedcio\",description:\"Benef\\xedcio\",displayTextArea:false,placeholder:\"Benef\\xedcio\",title:\"Benef\\xedcio\",type:ControlType.String}});addFonts(FramerJU45j_9aT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJU45j_9aT\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"463.5\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"321\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"327px\\\",null,null]},\\\"p4aBYcQbB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"327px\\\",null,null]},\\\"ZGe39XE9U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"327px\\\",null,null]},\\\"X0dv2BEyZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iV4GAkIVL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KWs9loUoP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ZQbX3ysN0\\\":\\\"background\\\",\\\"heeuu5W4i\\\":\\\"texto\\\",\\\"Uw_zbJ78Z\\\":\\\"benef_cio\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JU45j_9aT.map", "// Generated by Framer (01933e6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Ubuntu-700\",\"GF;Ubuntu-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTsmaMH4V_gg.woff2\",weight:\"700\"},{family:\"Ubuntu\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyNPYBvgpUI.woff2\",weight:\"700\"}]}];export const css=[\".framer-WWfcB .framer-styles-preset-uio42l:not(.rich-text-wrapper), .framer-WWfcB .framer-styles-preset-uio42l.rich-text-wrapper h1 { --framer-font-family: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"Ubuntu\\\", \\\"Ubuntu Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-465f9296-aae3-4f90-88ac-eeb907303144, #2e4c5e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-WWfcB\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import Review from\"#framer/local/canvasComponent/EP5tdr86h/EP5tdr86h.js\";import Forms from\"#framer/local/canvasComponent/ETpR97KWO/ETpR97KWO.js\";import Post from\"#framer/local/canvasComponent/fFm_3gGAP/fFm_3gGAP.js\";import CardDeBenefCio from\"#framer/local/canvasComponent/JU45j_9aT/JU45j_9aT.js\";import BotO from\"#framer/local/canvasComponent/N76CwO8bk/N76CwO8bk.js\";import Navigation from\"#framer/local/canvasComponent/qPPTu2HJ5/qPPTu2HJ5.js\";import*as sharedStyle from\"#framer/local/css/AWzICWtuf/AWzICWtuf.js\";import*as sharedStyle3 from\"#framer/local/css/jc8et8OCO/jc8et8OCO.js\";import*as sharedStyle4 from\"#framer/local/css/KIzWe41r9/KIzWe41r9.js\";import*as sharedStyle5 from\"#framer/local/css/lS3kqyBWT/lS3kqyBWT.js\";import*as sharedStyle1 from\"#framer/local/css/RXufId4Os/RXufId4Os.js\";import*as sharedStyle2 from\"#framer/local/css/UyAS9z2T4/UyAS9z2T4.js\";import metadataProvider from\"#framer/local/webPageMetadata/ee9lpAKv_/ee9lpAKv_.js\";const NavigationFonts=getFonts(Navigation);const FormsFonts=getFonts(Forms);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const BotOFonts=getFonts(BotO);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const CardDeBenefCioFonts=getFonts(CardDeBenefCio);const CarouselFonts=getFonts(Carousel);const MotionDivWithFX=withFX(motion.div);const ReviewFonts=getFonts(Review);const SlideshowFonts=getFonts(Slideshow);const PostFonts=getFonts(Post);const ContainerWithFX=withFX(Container);const MotionNavWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.nav);const breakpoints={lZZ9WkSik:\"(min-width: 810px) and (max-width: 1279px)\",S9qT9u5JX:\"(min-width: 1280px)\",YRt7LSpLK:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Hsj5P\";const variantClassNames={lZZ9WkSik:\"framer-v-aggmrh\",S9qT9u5JX:\"framer-v-75n7al\",YRt7LSpLK:\"framer-v-15qbqdy\"};const transition1={damping:30,delay:.2,mass:1,stiffness:100,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:-100};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={delay:0,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:150,y:0};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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const transition5={delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:100};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition6={damping:30,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const transition7={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:100};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:100};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:100};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"S9qT9u5JX\",Phone:\"YRt7LSpLK\",Tablet:\"lZZ9WkSik\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"S9qT9u5JX\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const hKiJPqNrc3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const U5fr3JRFa3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const xuZJpKh_t1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const xY3ZiubHN3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"YRt7LSpLK\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"YRt7LSpLK\")return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if([\"lZZ9WkSik\",\"YRt7LSpLK\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"S9qT9u5JX\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(247, 250, 250)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-75n7al\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1xx364i-container\",\"data-framer-appear-id\":\"1xx364i\",id:\"1xx364i\",initial:animation1,nodeId:\"Ho2ULEQKR\",optimized:true,rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{variant:\"Qid6mmHOT\"},YRt7LSpLK:{variant:\"jwtNmwc1x\"}},children:/*#__PURE__*/_jsx(Navigation,{emUUwWJTZ:\"hjoevAxgG\",height:\"100%\",hKiJPqNrc:hKiJPqNrc3bnx0g({overlay}),hnIdoIlsD:\"hjoevAxgG\",HyB7yKxRg:\"hjoevAxgG\",id:\"Ho2ULEQKR\",layoutId:\"Ho2ULEQKR\",SazTIp9Vu:\"hjoevAxgG\",style:{width:\"100%\"},U5fr3JRFa:U5fr3JRFa3bnx0g({overlay:overlay1}),variant:\"BnpGSlkcF\",VJaGSZENR:\"hjoevAxgG\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-xg0mhx\"),\"data-framer-name\":\"Or\\xe7amento\",\"data-framer-portal-id\":\"1xx364i\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay.hide(),transition:{delay:0,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"}},\"dndCjDsXT\"),/*#__PURE__*/_jsx(motion.div,{animate:animation3,className:cx(scopingClassNames,\"framer-1yfnqs5\"),\"data-framer-portal-id\":\"1xx364i\",exit:animation2,initial:animation4,onTap:onTap1wnntms({overlay})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{width:\"80vw\"},YRt7LSpLK:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"40vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation6,className:cx(scopingClassNames,\"framer-1fxsa8w-container\"),\"data-framer-portal-id\":\"1xx364i\",exit:animation5,inComponentSlot:true,initial:animation7,nodeId:\"Z3McMmLTe\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{variant:\"tC33OaWXR\",xuZJpKh_t:xuZJpKh_t1wnntms({overlay})}},children:/*#__PURE__*/_jsx(Forms,{height:\"100%\",id:\"Z3McMmLTe\",layoutId:\"Z3McMmLTe\",style:{height:\"100%\",width:\"100%\"},variant:\"zX7jjILhH\",width:\"100%\"})})})})})]}),getContainer())})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-4rqhmq\"),\"data-framer-name\":\"Menu mobile\",\"data-framer-portal-id\":\"1xx364i\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay1.hide(),transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},\"F8kjkFZYl\"),/*#__PURE__*/_jsx(motion.div,{animate:animation3,className:cx(scopingClassNames,\"framer-1sbd0l8\"),\"data-framer-portal-id\":\"1xx364i\",exit:animation2,initial:animation4,onTap:onTap1wnntms({overlay:overlay1})}),/*#__PURE__*/_jsxs(motion.div,{animate:animation3,className:cx(scopingClassNames,\"framer-1jh710y\"),\"data-framer-portal-id\":\"1xx364i\",exit:animation8,initial:animation9,transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ee9lpAKv_\"},motionChild:true,nodeId:\"up5HeNBoq\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1w8xiri framer-ho7vy1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTUwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"Home\"})}),fonts:[\"GF;Ubuntu-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kjrgcx\",\"data-styles-preset\":\"AWzICWtuf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"Home\"})}),className:\"framer-5h6b1e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OrUdMDhOX\"},motionChild:true,nodeId:\"pAuLWdDdP\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1q530yf framer-ho7vy1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTUwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"Our services\"})}),fonts:[\"GF;Ubuntu-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kjrgcx\",\"data-styles-preset\":\"AWzICWtuf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"Our services\"})}),className:\"framer-1dpbmvo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xoqloa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTUwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"About us\"})}),fonts:[\"GF;Ubuntu-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kjrgcx\",\"data-styles-preset\":\"AWzICWtuf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"About us\"})}),className:\"framer-1560nfx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VZR2DAYyg\"},motionChild:true,nodeId:\"zGjj08ZCZ\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mb32np framer-ho7vy1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTUwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"F.A.Q\"})}),fonts:[\"GF;Ubuntu-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kjrgcx\",\"data-styles-preset\":\"AWzICWtuf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"F.A.Q\"})}),className:\"framer-z6u5hy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vny4ri\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTUwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"Find us\"})}),fonts:[\"GF;Ubuntu-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kjrgcx\",\"data-styles-preset\":\"AWzICWtuf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"Find us\"})}),className:\"framer-168jq9n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-19lepe3\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-7k7aaz\",\"data-framer-appear-id\":\"7k7aaz\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11e0ny7\",\"data-styles-preset\":\"UyAS9z2T4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(29, 44, 54))\"},children:\"Meet Sparkly Services\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation12,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-uio42l\",\"data-styles-preset\":\"RXufId4Os\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(29, 44, 54))\"},children:\"Meet Sparkly Services\"})}),className:\"framer-1p98o92\",\"data-framer-appear-id\":\"1p98o92\",fonts:[\"Inter\"],initial:animation11,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, rgb(46, 161, 178))\"},children:[\"We care for your home\",/*#__PURE__*/_jsx(\"br\",{}),\"and office,  so you can focus \",/*#__PURE__*/_jsx(\"br\",{}),\"on what truly matters.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1clgyh5\",\"data-styles-preset\":\"jc8et8OCO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, rgb(46, 161, 178))\"},children:[\"We care for your home and office,  \",/*#__PURE__*/_jsx(\"br\",{}),\"so you can focus on what truly matters.\"]})}),className:\"framer-1tpa7r3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5tnyam\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{y:(componentViewport?.y||0)+0+150+75+-2842170943040401e-29+0+114.8+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+150+100+0+0+142.4+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1xgeqd2-container\",id:\"1xgeqd2\",nodeId:\"QqzeqKeNr\",scopeId:\"ee9lpAKv_\",children:[/*#__PURE__*/_jsx(BotO,{aGQ07S1C9:\"qVSaSytfl\",aHc6KGjLj:false,EKOooLTDJ:\"a67xfOvNV\",GcUtqmW3t:false,gkdwhE4p2:\"Schedule with us\",height:\"100%\",id:\"QqzeqKeNr\",kEICaY4VV:false,layoutId:\"QqzeqKeNr\",style:{height:\"100%\"},su1BVwe2y:true,variant:\"Srn3M88VM\",width:\"100%\",WtGCEQESz:false,xY3ZiubHN:xY3ZiubHN3bnx0g({overlay:overlay2})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-1fx5w44\"),\"data-framer-name\":\"Or\\xe7amento\",\"data-framer-portal-id\":\"1xgeqd2\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay2.hide(),transition:{delay:0,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"}},\"TU6ZZ_cmX\"),/*#__PURE__*/_jsx(motion.div,{animate:animation3,className:cx(scopingClassNames,\"framer-m08q1w\"),\"data-framer-portal-id\":\"1xgeqd2\",exit:animation2,initial:animation4,onTap:onTap1wnntms({overlay:overlay2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{width:\"80vw\"},YRt7LSpLK:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"40vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation6,className:cx(scopingClassNames,\"framer-1x61mo9-container\"),\"data-framer-portal-id\":\"1xgeqd2\",exit:animation5,inComponentSlot:true,initial:animation7,nodeId:\"zSH4P7gpT\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{variant:\"tC33OaWXR\",xuZJpKh_t:xuZJpKh_t1wnntms({overlay:overlay2})}},children:/*#__PURE__*/_jsx(Forms,{height:\"100%\",id:\"zSH4P7gpT\",layoutId:\"zSH4P7gpT\",style:{height:\"100%\",width:\"100%\"},variant:\"zX7jjILhH\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{y:(componentViewport?.y||0)+0+150+75+-2842170943040401e-29+0+114.8+10+55}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+150+100+0+0+142.4+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ae70w-container\",id:\"1ae70w\",nodeId:\"RaoCjRLw7\",scopeId:\"ee9lpAKv_\",children:[/*#__PURE__*/_jsx(BotO,{aGQ07S1C9:\"qVSaSytfl\",aHc6KGjLj:false,EKOooLTDJ:\"a67xfOvNV\",GcUtqmW3t:false,gkdwhE4p2:\"Recommend us to a friend\",height:\"100%\",id:\"RaoCjRLw7\",kEICaY4VV:false,layoutId:\"RaoCjRLw7\",style:{height:\"100%\"},su1BVwe2y:true,variant:\"JGACEf6g6\",width:\"100%\",WtGCEQESz:false,xY3ZiubHN:xY3ZiubHN3bnx0g({overlay:overlay3})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-1yhdxe5\"),\"data-framer-name\":\"Or\\xe7amento\",\"data-framer-portal-id\":\"1ae70w\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay3.hide(),transition:{delay:0,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"}},\"XBOyY2to_\"),/*#__PURE__*/_jsx(motion.div,{animate:animation3,className:cx(scopingClassNames,\"framer-cy4zhu\"),\"data-framer-portal-id\":\"1ae70w\",exit:animation2,initial:animation4,onTap:onTap1wnntms({overlay:overlay3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{width:\"80vw\"},YRt7LSpLK:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"40vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation6,className:cx(scopingClassNames,\"framer-9fs021-container\"),\"data-framer-portal-id\":\"1ae70w\",exit:animation5,inComponentSlot:true,initial:animation7,nodeId:\"RmBJF_Mi2\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{variant:\"s0ClvU9zf\",xuZJpKh_t:xuZJpKh_t1wnntms({overlay:overlay3})}},children:/*#__PURE__*/_jsx(Forms,{height:\"100%\",id:\"RmBJF_Mi2\",layoutId:\"RmBJF_Mi2\",style:{height:\"100%\",width:\"100%\"},variant:\"D8EEx4h9Y\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+150+100+257.4),pixelHeight:1254,pixelWidth:1856,positionX:\"center\",positionY:\"center\",sizes:`min((min(${componentViewport?.width||\"100vw\"}, 1280px) - 100px) * 0.87, 1080px)`,src:\"https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png\",srcSet:\"https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png 1856w\"}},YRt7LSpLK:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+150+75+269.79999999999995),pixelHeight:1254,pixelWidth:1856,positionX:\"center\",positionY:\"bottom\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) * 0.8)`,src:\"https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png\",srcSet:\"https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png 1856w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+150+100+232.4),pixelHeight:1254,pixelWidth:1856,positionX:\"center\",positionY:\"center\",sizes:`min((min(${componentViewport?.width||\"100vw\"}, 1280px) - 200px) * 0.87, 1080px)`,src:\"https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png\",srcSet:\"https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lvll0n6IImlZxUqq7gsiyFx9my0.png 1856w\"},className:\"framer-mlnptu\",\"data-framer-appear-id\":\"mlnptu\",\"data-framer-name\":\"Banner\",initial:animation13,optimized:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icxtij\",\"data-framer-name\":\"Features\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1es6py6-container hidden-15qbqdy\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bjDCkmXFk\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{axis:false,sizingObject:{heightInset:0,heightRows:5,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:50,height:\"100%\",id:\"bjDCkmXFk\",layoutId:\"bjDCkmXFk\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:6,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"327px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t4m3c7-container\",\"data-framer-name\":\"Benef\\xedcio: flexibilidade\",inComponentSlot:true,name:\"Benef\\xedcio: flexibilidade\",nodeId:\"UPkq9lOwV\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(CardDeBenefCio,{heeuu5W4i:\"We know life is busy. That\u2019s why our flexible cleaning schedules can fit into your unpredictable routine.\",height:\"100%\",id:\"UPkq9lOwV\",layoutId:\"UPkq9lOwV\",name:\"Benef\\xedcio: flexibilidade\",style:{width:\"100%\"},Uw_zbJ78Z:\"Flexibility\",variant:\"qiopqaS3D\",width:\"100%\",ZQbX3ysN0:\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"327px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lr4xtw-container\",\"data-framer-name\":\"Benef\\xedcio: tempo\",inComponentSlot:true,name:\"Benef\\xedcio: tempo\",nodeId:\"mtS5MI5uz\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(CardDeBenefCio,{heeuu5W4i:\"Our professional team get everything clean quickly, so you can save time and focus your energy on what matters.\",height:\"100%\",id:\"mtS5MI5uz\",layoutId:\"mtS5MI5uz\",name:\"Benef\\xedcio: tempo\",style:{width:\"100%\"},Uw_zbJ78Z:\"Time\",variant:\"p4aBYcQbB\",width:\"100%\",ZQbX3ysN0:\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"327px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ddib52-container\",\"data-framer-name\":\"Benef\\xedcio: confian\\xe7a\",inComponentSlot:true,name:\"Benef\\xedcio: confian\\xe7a\",nodeId:\"blCOitn81\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(CardDeBenefCio,{heeuu5W4i:\"You can trust us! We take the time to get to know you, and your privacy and data are always kept confidential.\",height:\"100%\",id:\"blCOitn81\",layoutId:\"blCOitn81\",name:\"Benef\\xedcio: confian\\xe7a\",style:{width:\"100%\"},Uw_zbJ78Z:\"Trust\",variant:\"ZGe39XE9U\",width:\"100%\",ZQbX3ysN0:\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n7uw2v-container hidden-75n7al hidden-aggmrh\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yO59FXuWN\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{axis:false,sizingObject:{heightInset:0,heightRows:6,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:50,height:\"100%\",id:\"yO59FXuWN\",layoutId:\"yO59FXuWN\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:6,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"327px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nwoerl-container\",\"data-framer-name\":\"Benef\\xedcio: flexibilidade\",inComponentSlot:true,name:\"Benef\\xedcio: flexibilidade\",nodeId:\"hfcxTiMGd\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(CardDeBenefCio,{heeuu5W4i:\"We know life is busy. \\nThat\u2019s why we offer flexible cleaning schedules that fit into your unpredictable routine.\",height:\"100%\",id:\"hfcxTiMGd\",layoutId:\"hfcxTiMGd\",name:\"Benef\\xedcio: flexibilidade\",style:{width:\"100%\"},Uw_zbJ78Z:\"Flexibility\",variant:\"X0dv2BEyZ\",width:\"100%\",ZQbX3ysN0:\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"327px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-co6xm7-container\",\"data-framer-name\":\"Benef\\xedcio: tempo\",inComponentSlot:true,name:\"Benef\\xedcio: tempo\",nodeId:\"L5LzbYUgA\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(CardDeBenefCio,{heeuu5W4i:\"Our professional team get everything clean quickly, so you can save time and focus your energy on what matters.\",height:\"100%\",id:\"L5LzbYUgA\",layoutId:\"L5LzbYUgA\",name:\"Benef\\xedcio: tempo\",style:{width:\"100%\"},Uw_zbJ78Z:\"Time\",variant:\"iV4GAkIVL\",width:\"100%\",ZQbX3ysN0:\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:463,width:\"327px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9exf7c-container\",\"data-framer-name\":\"Benef\\xedcio: confian\\xe7a\",inComponentSlot:true,name:\"Benef\\xedcio: confian\\xe7a\",nodeId:\"f0YxBNZKa\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(CardDeBenefCio,{heeuu5W4i:\"You can trust us! We take the time to get to know you, and your privacy and data are always kept confidential.\",height:\"100%\",id:\"f0YxBNZKa\",layoutId:\"f0YxBNZKa\",name:\"Benef\\xedcio: confian\\xe7a\",style:{width:\"100%\"},Uw_zbJ78Z:\"Trust\",variant:\"KWs9loUoP\",width:\"100%\",ZQbX3ysN0:\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9v6rbs\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTUwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:[\"Learn more about\",/*#__PURE__*/_jsx(\"br\",{}),\"our services\"]})}),fonts:[\"GF;Ubuntu-500\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation12,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-kjrgcx\",\"data-styles-preset\":\"AWzICWtuf\",children:\"Learn more about our services\"})}),className:\"framer-1g0f0wr\",\"data-framer-appear-id\":\"1g0f0wr\",fonts:[\"Inter\"],initial:animation11,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ao9zt4\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11mpnjf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1632.4+0+0+0),pixelHeight:1280,pixelWidth:1920,positionX:\"right\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,src:\"https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp\",srcSet:\"https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp 1920w\"}},YRt7LSpLK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1294.8+0+0+0),pixelHeight:1280,pixelWidth:1920,positionX:\"right\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp\",srcSet:\"https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1982.4+0+0+0),pixelHeight:1280,pixelWidth:1920,positionX:\"right\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,src:\"https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp\",srcSet:\"https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4f64Pi7GVXmPnIe9WIgqvApaQs.webp 1920w\"},className:\"framer-1bypstj\",\"data-border\":true,\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7mp6r6\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2cxc20\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xf1tm9\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OrUdMDhOX\"},implicitPathVariables:undefined},{href:{webPageId:\"OrUdMDhOX\"},implicitPathVariables:undefined},{href:{webPageId:\"OrUdMDhOX\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{y:(componentViewport?.y||0)+0+1632.4+0+0+150.00000000000017+0+400- -50},YRt7LSpLK:{y:(componentViewport?.y||0)+0+1294.8+0+0+96.00000000000011+0+400- -50}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1982.4+0+0+150+0+400- -50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uhux00-container\",nodeId:\"qrgNi2YgV\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{LccIf5j9N:resolvedLinks[1]},YRt7LSpLK:{aHc6KGjLj:false,GcUtqmW3t:true,LccIf5j9N:resolvedLinks[2],variant:\"ogbUPUNGX\"}},children:/*#__PURE__*/_jsx(BotO,{aGQ07S1C9:\"qVSaSytfl\",aHc6KGjLj:true,EKOooLTDJ:\"a67xfOvNV\",GcUtqmW3t:false,gkdwhE4p2:\"Learn more\",height:\"100%\",id:\"qrgNi2YgV\",kEICaY4VV:false,layoutId:\"qrgNi2YgV\",LccIf5j9N:resolvedLinks[0],style:{height:\"100%\"},su1BVwe2y:true,variant:\"JGACEf6g6\",width:\"100%\",WtGCEQESz:false})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},children:[\"Home\",/*#__PURE__*/_jsx(\"br\",{}),\"cleanings\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},children:[\"Home\",/*#__PURE__*/_jsx(\"br\",{}),\"cleanings\"]})}),className:\"framer-464kx9\",fonts:[\"GF;Ubuntu-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rof5z2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gxnb6e\",\"data-framer-name\":\"Ativo 20\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66 66\"><path d=\"M 31.476 18.616 L 33.029 0.078 L 34.582 18.616 C 35.155 25.468 40.59 30.904 47.442 31.476 L 65.981 33.029 L 47.442 34.582 C 40.59 35.155 35.164 40.59 34.582 47.442 L 33.029 65.981 L 31.476 47.442 C 30.904 40.59 25.468 35.164 18.616 34.582 L 0.078 33.029 L 18.616 31.476 C 25.468 30.904 30.904 25.468 31.476 18.616\" fill=\"var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, rgb(46, 161, 178)) /* {&quot;name&quot;:&quot;Main 1&quot;} */\" stroke-width=\"1.94\" stroke=\"var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, rgb(46, 161, 178)) /* {&quot;name&quot;:&quot;Main 1&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10753230804,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1clgyh5\",\"data-styles-preset\":\"jc8et8OCO\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},children:\"We specialize in providing top-notch cleanings that fit your home\u2019s unique needs.\"})})},YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-color\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},children:\"We specialize in providing top-notch cleanings that fit your home\u2019s unique needs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1clgyh5\",\"data-styles-preset\":\"jc8et8OCO\",style:{\"--framer-text-color\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},children:\"We specialize in providing top-notch cleanings that fit your home\u2019s unique needs.\"})}),className:\"framer-14koxiu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-l649gc hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"post-renovations\"})}),className:\"framer-btqs08\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d5ooge hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1sc12sm\",\"data-styles-preset\":\"lS3kqyBWT\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"move-ins\"})}),className:\"framer-lsx8lj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bsclmc hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1sc12sm\",\"data-styles-preset\":\"lS3kqyBWT\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"move-outs\"})}),className:\"framer-hjwxjh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-hetsa3 hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"general house cleaning\"})}),className:\"framer-12bszm7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-i91at1 hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1sc12sm\",\"data-styles-preset\":\"lS3kqyBWT\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"deep cleanings\"})}),className:\"framer-6h4wn8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-42jfzo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1be4g59\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qvz7ki\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OrUdMDhOX\"},implicitPathVariables:undefined},{href:{webPageId:\"OrUdMDhOX\"},implicitPathVariables:undefined},{href:{webPageId:\"OrUdMDhOX\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{y:(componentViewport?.y||0)+0+1632.4+0+700+150.00000000000017+0+400- -110},YRt7LSpLK:{y:(componentViewport?.y||0)+0+1294.8+0+715+92+0+400- -50}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1982.4+0+750+150+0+400- -50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pl7drr-container\",nodeId:\"Rn2eG4AWi\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{LccIf5j9N:resolvedLinks1[1]},YRt7LSpLK:{aHc6KGjLj:false,GcUtqmW3t:true,LccIf5j9N:resolvedLinks1[2],variant:\"ogbUPUNGX\"}},children:/*#__PURE__*/_jsx(BotO,{aGQ07S1C9:\"qVSaSytfl\",aHc6KGjLj:true,EKOooLTDJ:\"a67xfOvNV\",GcUtqmW3t:false,gkdwhE4p2:\"Learn more\",height:\"100%\",id:\"Rn2eG4AWi\",kEICaY4VV:false,layoutId:\"Rn2eG4AWi\",LccIf5j9N:resolvedLinks1[0],style:{height:\"100%\"},su1BVwe2y:true,variant:\"JGACEf6g6\",width:\"100%\",WtGCEQESz:false})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},children:[\"Corporate\",/*#__PURE__*/_jsx(\"br\",{}),\"cleanings\"]})}),className:\"framer-i9hf84\",fonts:[\"GF;Ubuntu-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hqtmps\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lr2urt\",\"data-framer-name\":\"Ativo 20\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66 66\"><path d=\"M 31.476 18.616 L 33.029 0.078 L 34.582 18.616 C 35.155 25.468 40.59 30.904 47.442 31.476 L 65.981 33.029 L 47.442 34.582 C 40.59 35.155 35.164 40.59 34.582 47.442 L 33.029 65.981 L 31.476 47.442 C 30.904 40.59 25.468 35.164 18.616 34.582 L 0.078 33.029 L 18.616 31.476 C 25.468 30.904 30.904 25.468 31.476 18.616\" fill=\"var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, rgb(46, 161, 178)) /* {&quot;name&quot;:&quot;Main 1&quot;} */\" stroke-width=\"1.94\" stroke=\"var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, rgb(46, 161, 178)) /* {&quot;name&quot;:&quot;Main 1&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10753230804,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},children:\"We're handling every detail, so your workplace can be  clean, organized, and productive.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1clgyh5\",\"data-styles-preset\":\"jc8et8OCO\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113))\"},children:\"We're handling every detail, so your workplace can be  clean, organized, and productive.\"})}),className:\"framer-77xxmq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-stu0pm hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"post-renovations\"})}),className:\"framer-1vglddb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3o7tto hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1sc12sm\",\"data-styles-preset\":\"lS3kqyBWT\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"routines\"})}),className:\"framer-1tgr7jm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9yhz8s hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1sc12sm\",\"data-styles-preset\":\"lS3kqyBWT\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"desks\"})}),className:\"framer-o81ctp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14de73o hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1sc12sm\",\"data-styles-preset\":\"lS3kqyBWT\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"equipments\"})}),className:\"framer-1f1vati\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gmh9ea hidden-15qbqdy\",\"data-border\":true,\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hfveaj\",\"data-styles-preset\":\"KIzWe41r9\",style:{\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:\"conference rooms\"})}),className:\"framer-15tsfyj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1632.4+0+700+0),pixelHeight:1279,pixelWidth:1920,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,src:\"https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp\",srcSet:\"https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp 1920w\"}},YRt7LSpLK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1294.8+0+715+0),pixelHeight:1279,pixelWidth:1920,positionX:\"left\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp\",srcSet:\"https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1982.4+0+750+0),pixelHeight:1279,pixelWidth:1920,positionX:\"left\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.6)`,src:\"https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp\",srcSet:\"https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/EvkRvyBOPaOFlTYjyj2v45ORLcU.webp 1920w\"},className:\"framer-1fyq6gn\",\"data-border\":true,\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18o38hm\"})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sq59mm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3182.4+0),pixelHeight:1280,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp\",srcSet:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp 1920w\"}},YRt7LSpLK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3048.8+0),pixelHeight:1280,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp\",srcSet:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3632.4+0),pixelHeight:1280,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp\",srcSet:\"https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PG08J2UwyFafUQb2Qsj7Jp4GnvU.webp 1920w\"},className:\"framer-pduc2o\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o1vqc3\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vy0dm7\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-11e0ny7\",\"data-styles-preset\":\"UyAS9z2T4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:[\"Learn more \",/*#__PURE__*/_jsx(\"br\",{}),\"about us\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation12,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-uio42l\",\"data-styles-preset\":\"RXufId4Os\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:\"Learn more about us\"})}),className:\"framer-10fnldi\",\"data-framer-appear-id\":\"10fnldi\",fonts:[\"Inter\"],initial:animation11,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"},children:[\"Our mission is simple: to provide reliable and trustworthy\",/*#__PURE__*/_jsx(\"br\",{}),\"cleaning services that give you more time to enjoy life, \",/*#__PURE__*/_jsx(\"br\",{}),\"while we take care of your home with love and care.\"]})})},YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"},children:\"Our mission is simple: to provide reliable and trustworthy cleaning services that give you more time to enjoy life, while we take care of your home with love and care.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244))\"},children:[\"Our mission is simple: to provide reliable andtrustworthy cleaning services that\",/*#__PURE__*/_jsx(\"br\",{}),\"give you more time to enjoy life, while we take care of your home with love and care.\"]})}),className:\"framer-1a1z0ph\",fonts:[\"GF;Ubuntu-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a9rlaj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{y:(componentViewport?.y||0)+0+3182.4+130.60000000000008+0+134.8+0},YRt7LSpLK:{y:(componentViewport?.y||0)+0+3048.8+108+0+103.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+3632.4+212.6000000000001+0+134.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1byai6f-container\",nodeId:\"HtFPQ5VQA\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(BotO,{aGQ07S1C9:\"qVSaSytfl\",aHc6KGjLj:false,EKOooLTDJ:\"a67xfOvNV\",GcUtqmW3t:false,gkdwhE4p2:\"Know more about us\",height:\"100%\",id:\"HtFPQ5VQA\",kEICaY4VV:false,layoutId:\"HtFPQ5VQA\",style:{height:\"100%\"},su1BVwe2y:true,variant:\"Srn3M88VM\",width:\"100%\",WtGCEQESz:false})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m25jen\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zqtacd\",\"data-framer-name\":\"Features\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b9eygu hidden-aggmrh hidden-15qbqdy\"}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-akvf41 hidden-aggmrh hidden-15qbqdy\",style:{rotate:180}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tks0lm-container hidden-15qbqdy\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZEJ1mrtXb\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:21,overflow:false},gap:100,paddingLeft:100,paddingRight:100}},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:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:21,overflow:true},gap:0,height:\"100%\",id:\"ZEJ1mrtXb\",intervalControl:4,itemAmount:1,layoutId:\"ZEJ1mrtXb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:.8,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.4,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aldp3s-container\",\"data-framer-name\":\"Card de review de cliente 1\",inComponentSlot:true,name:\"Card de review de cliente 1\",nodeId:\"lC9j0_hqF\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"lC9j0_hqF\",layoutId:\"lC9j0_hqF\",N1VQ2RhFr:\"Very professional!\\nCommunicative regarding needs. \\nWill certainly use again.\",name:\"Card de review de cliente 1\",style:{width:\"100%\"},variant:\"pQ3cneO1h\",WFkjd4h49:\"Charlotte and her family\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-khakw0-container\",\"data-framer-name\":\"Card de review de cliente 2\",inComponentSlot:true,name:\"Card de review de cliente 2\",nodeId:\"rlHCEfOfM\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"rlHCEfOfM\",layoutId:\"rlHCEfOfM\",N1VQ2RhFr:\"Friendly, on time, professional, thorough. \\nDid a great job. \\nI will definitely bring them back.\",name:\"Card de review de cliente 2\",style:{width:\"100%\"},variant:\"pQ3cneO1h\",WFkjd4h49:\"Olivia and her family\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:248,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1969gft-container\",\"data-framer-name\":\"Card de review de cliente 3\",inComponentSlot:true,name:\"Card de review de cliente 3\",nodeId:\"zP5rkfqT5\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"zP5rkfqT5\",layoutId:\"zP5rkfqT5\",N1VQ2RhFr:\"They did a wonderful job cleaning, \\nprofessional and friendly.\\uFEFF\",name:\"Card de review de cliente 3\",style:{width:\"100%\"},variant:\"pQ3cneO1h\",WFkjd4h49:\"Oliver and his family\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16a18c0-container hidden-75n7al hidden-aggmrh\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CFEKrUvuA\",scopeId:\"ee9lpAKv_\",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:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:21,overflow:true},gap:60,height:\"100%\",id:\"CFEKrUvuA\",intervalControl:4,itemAmount:1,layoutId:\"CFEKrUvuA\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:.8,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.4,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4yofda-container\",\"data-framer-name\":\"Card de review de cliente 1m\",inComponentSlot:true,name:\"Card de review de cliente 1m\",nodeId:\"OeqBlM57C\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"OeqBlM57C\",layoutId:\"OeqBlM57C\",N1VQ2RhFr:\"Very professional!\\nCommunicative regarding needs. \\nWill certainly use again.\",name:\"Card de review de cliente 1m\",style:{height:\"100%\",width:\"100%\"},variant:\"qs30O22rt\",WFkjd4h49:\"Charlotte and her family\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qs1nun-container\",\"data-framer-name\":\"Card de review de cliente 2m\",inComponentSlot:true,name:\"Card de review de cliente 2m\",nodeId:\"JQEgS2Ftp\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"JQEgS2Ftp\",layoutId:\"JQEgS2Ftp\",N1VQ2RhFr:\"Friendly, on time, \\nprofessional, thorough. \\nDid a great job. \\nI will definitely bring them back.\",name:\"Card de review de cliente 2m\",style:{height:\"100%\",width:\"100%\"},variant:\"qs30O22rt\",WFkjd4h49:\"Olivia and her family\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vnyyy-container\",\"data-framer-name\":\"Card de review de cliente 3m\",inComponentSlot:true,name:\"Card de review de cliente 3m\",nodeId:\"xv_A9yMxd\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"xv_A9yMxd\",layoutId:\"xv_A9yMxd\",N1VQ2RhFr:\"They did a wonderful\\njob cleaning, \\nprofessional and friendly.\\uFEFF\",name:\"Card de review de cliente 3m\",style:{height:\"100%\",width:\"100%\"},variant:\"qs30O22rt\",WFkjd4h49:\"Oliver and his family\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-os3383\",\"data-framer-name\":\"Pivot\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3d1hzl\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bso6tz\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-j1jc65\",\"data-framer-appear-id\":\"j1jc65\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\"},children:\"+7 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"years of experience\"]})})},YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\"},children:\"+7   \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"years of\",/*#__PURE__*/_jsx(\"br\",{}),\"experience\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"+7 \"}),\"years of experience\"]})}),className:\"framer-zs4m4j\",fonts:[\"GF;Ubuntu-regular\",\"GF;Ubuntu-700\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8jp3k7\",\"data-framer-name\":\"Ativo 20\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 15.261 9.026 L 16.014 0.038 L 16.767 9.026 C 17.045 12.348 19.68 14.984 23.002 15.261 L 31.991 16.014 L 23.002 16.767 C 19.68 17.045 17.049 19.68 16.767 23.002 L 16.014 31.991 L 15.261 23.002 C 14.984 19.68 12.348 17.049 9.026 16.767 L 0.038 16.014 L 9.026 15.261 C 12.348 14.984 14.984 12.348 15.261 9.026\" fill=\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244)) /* {&quot;name&quot;:&quot;Main 5&quot;} */\" stroke-width=\"0.94\" stroke=\"var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, rgb(233, 242, 244)) /* {&quot;name&quot;:&quot;Main 5&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11438208243,withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-9kuo42\",\"data-framer-appear-id\":\"9kuo42\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\"},children:\"+600   \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"families served\"]})})},YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\"},children:\"+600   \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"families\",/*#__PURE__*/_jsx(\"br\",{}),\"served\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"+600 \"}),\"families served\"]})}),className:\"framer-bxklyi\",fonts:[\"GF;Ubuntu-regular\",\"GF;Ubuntu-700\"],verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{y:(componentViewport?.y||0)+0+4198.4+-180+60+265},YRt7LSpLK:{height:40,y:(componentViewport?.y||0)+0+3048.8+60-60.19999999999999+75+221.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,width:\"180px\",y:(componentViewport?.y||0)+0+4747.4+-60+27,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1nxx2x8-container\",id:\"1nxx2x8\",nodeId:\"xCWBIRWVW\",scopeId:\"ee9lpAKv_\",children:[/*#__PURE__*/_jsx(BotO,{aGQ07S1C9:\"qVSaSytfl\",aHc6KGjLj:false,EKOooLTDJ:\"a67xfOvNV\",GcUtqmW3t:false,gkdwhE4p2:\"Schedule with us\",height:\"100%\",id:\"xCWBIRWVW\",kEICaY4VV:false,layoutId:\"xCWBIRWVW\",style:{height:\"100%\",width:\"100%\"},su1BVwe2y:true,variant:\"ogbUPUNGX\",width:\"100%\",WtGCEQESz:false,xY3ZiubHN:xY3ZiubHN3bnx0g({overlay:overlay4})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-ysefin\"),\"data-framer-name\":\"Or\\xe7amento\",\"data-framer-portal-id\":\"1nxx2x8\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay4.hide(),transition:{delay:0,duration:.2,ease:[.5,0,.88,.77],type:\"tween\"}},\"xkq_3qehB\"),/*#__PURE__*/_jsx(motion.div,{animate:animation3,className:cx(scopingClassNames,\"framer-17ffj4i\"),\"data-framer-portal-id\":\"1nxx2x8\",exit:animation2,initial:animation4,onTap:onTap1wnntms({overlay:overlay4})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{width:\"80vw\"},YRt7LSpLK:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"40vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation6,className:cx(scopingClassNames,\"framer-br6vva-container\"),\"data-framer-portal-id\":\"1nxx2x8\",exit:animation5,inComponentSlot:true,initial:animation7,nodeId:\"XkFmJGi1G\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YRt7LSpLK:{variant:\"tC33OaWXR\",xuZJpKh_t:xuZJpKh_t1wnntms({overlay:overlay4})}},children:/*#__PURE__*/_jsx(Forms,{height:\"100%\",id:\"XkFmJGi1G\",layoutId:\"XkFmJGi1G\",style:{height:\"100%\",width:\"100%\"},variant:\"zX7jjILhH\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c5vh05\",children:isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dmdpc1 hidden-15qbqdy\",\"data-framer-name\":\"Placeholder\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yodkfy\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bcralu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rOZ1QIiM2\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{axis:false,paddingPerSide:false,sizingObject:{heightInset:0,heightRows:6,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}},YRt7LSpLK:{axis:false,sizingObject:{heightInset:0,heightRows:6,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:50,height:\"100%\",id:\"rOZ1QIiM2\",layoutId:\"rOZ1QIiM2\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:6,heightType:\"auto\",widthColumns:3,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"327px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mvkn5s-container\",\"data-framer-name\":\"Card de postagem de blog 1\",inComponentSlot:true,name:\"Card de postagem de blog 1\",nodeId:\"LKqRuRtgH\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(Post,{height:\"100%\",id:\"LKqRuRtgH\",IoWlB_t2_:\"Remove food odors and grease in minutes using a simple hack.\\n\",layoutId:\"LKqRuRtgH\",name:\"Card de postagem de blog 1\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"327px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fi9m8j-container\",\"data-framer-name\":\"Card de postagem de blog 2\",inComponentSlot:true,name:\"Card de postagem de blog 2\",nodeId:\"c19Pk5LVx\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(Post,{height:\"100%\",id:\"c19Pk5LVx\",IoWlB_t2_:\"Use hair spray to remove ink stains from clothes quickly and easily.\",layoutId:\"c19Pk5LVx\",name:\"Card de postagem de blog 2\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:\"327px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k8vgpg-container\",\"data-framer-name\":\"Card de postagem de blog 3\",inComponentSlot:true,name:\"Card de postagem de blog 3\",nodeId:\"g7HUwke9G\",rendersWithMotion:true,scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(Post,{height:\"100%\",id:\"g7HUwke9G\",IoWlB_t2_:\"Keep mold out of your closets by using chalk to absorb moisture.\",layoutId:\"g7HUwke9G\",name:\"Card de postagem de blog 3\",style:{width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionNavWithOptimizedAppearEffect,{animate:animation,className:\"framer-1xtgntu\",\"data-framer-appear-id\":\"1xtgntu\",\"data-framer-name\":\"Navigation\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-144blpg\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sex6su\",\"data-framer-name\":\"Links\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:[\"Columbus, Ohio\",/*#__PURE__*/_jsx(\"br\",{}),\"+1 (614) 749-0087\",/*#__PURE__*/_jsx(\"br\",{}),\"+1 (614) 493-1205\"]})})},YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:[\"Columbus, Ohio\",/*#__PURE__*/_jsx(\"br\",{}),\"+1 (614) 749-0087\",/*#__PURE__*/_jsx(\"br\",{}),\"+1 (614) 493-1205\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:[\"Columbus, Ohio\",/*#__PURE__*/_jsx(\"br\",{}),\"+1 (614) 749-0087\",/*#__PURE__*/_jsx(\"br\",{}),\"+1 (614) 493-1205\"]})}),className:\"framer-10uy4t0\",fonts:[\"GF;Ubuntu-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pt0war\",\"data-framer-name\":\"Logo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qx3jns\",\"data-framer-name\":\"Logo\",description:\"An SVG file of the Sparkly Cleaning Services Logo.\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 122 70\"><g transform=\"translate(0 0)\" id=\"ss9383321042_1\"><path d=\"M 31.069 46.353 C 30.714 46.376 30.254 46.288 29.688 46.087 C 29.122 45.888 28.596 45.657 28.114 45.399 C 27.631 45.141 27.282 44.881 27.071 44.621 C 26.859 44.363 26.929 44.174 27.282 44.056 C 28.013 43.868 28.862 43.644 29.829 43.386 C 30.797 43.127 31.787 42.838 32.802 42.52 C 33.816 42.201 34.812 41.855 35.791 41.478 C 36.77 41.101 37.649 40.696 38.427 40.258 C 39.206 39.823 39.831 39.351 40.302 38.845 C 40.774 38.339 41.009 37.803 41.009 37.238 C 40.939 36.65 40.532 36.243 39.788 36.019 C 39.044 35.796 38.083 35.714 36.904 35.771 C 35.724 35.829 34.392 36.013 32.906 36.318 C 31.42 36.625 29.91 37.014 28.377 37.483 C 26.86 37.949 25.361 38.473 23.884 39.055 C 22.421 39.632 21.118 40.233 19.974 40.857 C 18.829 41.481 17.904 42.094 17.196 42.694 C 16.489 43.295 16.135 43.855 16.135 44.373 C 16.135 44.891 16.223 45.31 16.401 45.628 C 16.577 45.946 16.849 46.211 17.215 46.423 C 17.581 46.635 18.034 46.83 18.578 47.006 C 19.12 47.182 19.745 47.389 20.453 47.624 C 21.019 47.835 21.775 48.077 22.718 48.349 C 23.662 48.62 24.658 48.937 25.708 49.303 C 26.757 49.668 27.801 50.08 28.84 50.54 C 29.878 50.999 30.792 51.511 31.583 52.076 C 32.374 52.641 32.975 53.272 33.388 53.966 C 33.801 54.662 33.901 55.421 33.689 56.245 C 33.359 57.375 32.687 58.36 31.673 59.195 C 30.658 60.032 29.466 60.732 28.099 61.297 C 26.731 61.862 25.292 62.28 23.782 62.551 C 22.273 62.821 20.881 62.958 19.606 62.958 C 18.804 62.958 17.866 62.876 16.793 62.71 C 15.72 62.545 14.671 62.245 13.643 61.809 C 12.617 61.373 11.703 60.784 10.9 60.042 C 10.098 59.299 9.567 58.353 9.308 57.198 C 9.261 57.033 9.25 56.827 9.273 56.58 C 9.297 56.332 9.35 56.085 9.432 55.837 C 9.514 55.589 9.632 55.361 9.786 55.149 C 9.939 54.938 10.135 54.784 10.37 54.69 C 10.534 54.619 10.675 54.655 10.795 54.796 C 10.912 54.936 11.012 55.12 11.096 55.343 C 11.177 55.563 11.247 55.787 11.308 56.014 C 11.366 56.238 11.431 56.397 11.502 56.49 C 11.997 57.196 12.586 57.745 13.271 58.133 C 13.955 58.522 14.693 58.811 15.483 58.998 C 16.274 59.188 17.087 59.305 17.925 59.352 C 18.761 59.399 19.558 59.434 20.313 59.458 C 21.115 59.481 22.052 59.434 23.127 59.317 C 24.2 59.199 25.232 59.023 26.222 58.787 C 27.213 58.552 28.08 58.263 28.823 57.921 C 29.566 57.581 30.007 57.204 30.15 56.791 C 30.291 56.379 30.038 55.937 29.389 55.466 C 28.739 54.995 27.542 54.501 25.798 53.983 C 24.854 53.699 23.881 53.406 22.878 53.099 C 21.876 52.794 20.879 52.458 19.889 52.092 C 18.898 51.727 17.931 51.345 16.987 50.945 C 16.043 50.544 15.17 50.11 14.369 49.637 C 13.048 48.884 12.157 48.107 11.697 47.305 C 11.237 46.506 10.994 45.693 10.971 44.868 C 10.947 44.068 11.29 43.214 11.997 42.307 C 12.704 41.4 13.665 40.499 14.881 39.604 C 16.095 38.709 17.51 37.85 19.127 37.025 C 20.743 36.201 22.454 35.471 24.259 34.835 C 26.064 34.199 27.908 33.687 29.797 33.298 C 31.684 32.909 33.5 32.692 35.246 32.645 C 36.307 32.622 37.351 32.674 38.378 32.803 C 39.404 32.933 40.336 33.169 41.174 33.509 C 42.012 33.851 42.707 34.293 43.261 34.835 C 43.815 35.376 44.164 36.036 44.305 36.813 C 44.446 37.661 44.317 38.48 43.915 39.268 C 43.514 40.057 42.936 40.787 42.181 41.459 C 41.425 42.129 40.554 42.743 39.563 43.296 C 38.572 43.849 37.564 44.338 36.538 44.762 C 35.512 45.186 34.515 45.534 33.548 45.804 C 32.581 46.076 31.755 46.258 31.072 46.351 Z M 35.597 69.281 C 35.55 69.54 35.314 69.729 34.89 69.846 C 34.465 69.964 34.011 70.005 33.528 69.97 C 33.044 69.934 32.613 69.815 32.236 69.616 C 31.858 69.415 31.693 69.127 31.74 68.75 C 31.787 68.232 31.846 67.72 31.917 67.214 C 31.987 66.707 32.093 66.195 32.236 65.677 C 32.778 63.605 33.279 61.815 33.739 60.307 C 34.199 58.8 34.712 57.393 35.278 56.085 C 35.844 54.778 36.504 53.478 37.26 52.182 C 38.014 50.888 38.959 49.426 40.091 47.801 C 40.421 47.307 40.817 46.994 41.275 46.865 C 41.736 46.736 42.172 46.736 42.585 46.865 C 42.998 46.994 43.346 47.225 43.629 47.553 C 43.912 47.884 44.042 48.272 44.018 48.719 C 44.608 48.388 45.209 48.118 45.823 47.906 C 46.436 47.694 47.02 47.565 47.575 47.517 C 48.129 47.47 48.625 47.528 49.061 47.693 C 49.498 47.857 49.823 48.152 50.034 48.576 C 50.506 49.518 50.653 50.513 50.477 51.561 C 50.3 52.609 49.917 53.592 49.327 54.511 C 48.738 55.429 47.988 56.219 47.08 56.878 C 46.172 57.538 45.21 57.949 44.196 58.115 C 43.818 58.185 43.607 58.291 43.56 58.433 C 43.513 58.574 43.76 58.635 44.303 58.61 C 44.752 58.657 45.271 58.598 45.86 58.433 C 46.449 58.269 47.092 57.951 47.788 57.48 C 48.484 57.009 49.227 56.361 50.018 55.537 C 50.809 54.712 51.616 53.676 52.442 52.428 C 52.701 52.051 52.99 51.811 53.309 51.703 C 53.628 51.598 53.893 51.61 54.106 51.739 C 54.318 51.868 54.454 52.086 54.513 52.392 C 54.572 52.698 54.46 53.062 54.177 53.486 C 53.728 54.192 53.233 54.906 52.691 55.623 C 52.148 56.342 51.545 57.019 50.886 57.654 C 50.224 58.29 49.494 58.85 48.691 59.333 C 47.888 59.816 46.992 60.164 46.001 60.375 C 45.043 60.586 44.061 60.663 43.082 60.604 C 42.103 60.545 41.283 60.375 40.623 60.092 C 39.961 59.809 39.538 59.433 39.348 58.962 C 39.159 58.491 39.348 57.949 39.914 57.337 C 40.198 57.054 40.545 56.796 40.958 56.559 C 41.371 56.325 41.802 56.077 42.25 55.817 C 42.698 55.559 43.147 55.27 43.595 54.951 C 44.043 54.633 44.433 54.239 44.762 53.768 C 45.068 53.344 45.328 52.861 45.541 52.32 C 45.753 51.778 45.864 51.307 45.878 50.907 C 45.889 50.506 45.766 50.236 45.506 50.094 C 45.246 49.953 44.809 50.058 44.196 50.412 C 43.842 50.601 43.47 50.854 43.082 51.172 C 42.7 51.483 42.35 51.833 42.038 52.214 C 41.142 53.651 40.363 55.035 39.703 56.366 C 39.041 57.697 38.464 59.04 37.968 60.393 C 37.473 61.747 37.036 63.149 36.659 64.597 C 36.281 66.045 35.927 67.605 35.597 69.278 Z M 62.703 47.66 C 63.152 47.166 63.671 46.9 64.26 46.865 C 64.849 46.83 65.356 46.941 65.781 47.201 C 66.206 47.461 66.482 47.825 66.613 48.296 C 66.743 48.767 66.584 49.285 66.136 49.85 C 65.924 50.11 65.652 50.499 65.321 51.015 C 64.99 51.533 64.649 52.11 64.295 52.747 C 63.939 53.387 63.597 54.035 63.269 54.69 C 62.939 55.35 62.655 55.95 62.42 56.492 C 61.971 57.481 61.818 58.046 61.96 58.188 C 62.101 58.331 62.62 58.024 63.516 57.27 C 64.366 56.564 65.167 55.722 65.922 54.744 C 66.676 53.767 67.408 52.831 68.117 51.935 C 68.401 51.605 68.683 51.411 68.966 51.353 C 69.25 51.294 69.479 51.335 69.656 51.476 C 69.832 51.617 69.932 51.836 69.957 52.129 C 69.981 52.424 69.887 52.76 69.674 53.136 C 69.108 53.96 68.476 54.85 67.78 55.804 C 67.084 56.758 66.341 57.629 65.55 58.417 C 64.76 59.207 63.935 59.836 63.074 60.307 C 62.212 60.779 61.322 60.943 60.402 60.802 C 59.765 60.685 59.287 60.425 58.968 60.024 C 58.649 59.624 58.455 59.153 58.385 58.611 C 57.629 59.412 56.805 60.018 55.908 60.431 C 55.011 60.843 53.985 60.966 52.83 60.802 C 51.839 60.638 51.137 60.307 50.725 59.813 C 50.312 59.318 50.106 58.695 50.106 57.94 C 50.106 57.186 50.259 56.38 50.567 55.52 C 50.872 54.66 51.293 53.82 51.823 52.995 C 52.354 52.17 52.973 51.382 53.681 50.628 C 54.388 49.875 55.15 49.215 55.964 48.65 C 56.778 48.085 57.615 47.649 58.476 47.342 C 59.337 47.037 60.193 46.894 61.041 46.918 C 61.63 47.059 62.149 47.354 62.598 47.801 Z M 54.635 58.542 C 54.989 58.589 55.383 58.466 55.82 58.171 C 56.256 57.877 56.711 57.459 57.182 56.916 C 57.654 56.375 58.126 55.739 58.598 55.008 C 59.07 54.279 59.506 53.501 59.908 52.676 C 60.025 52.418 60.137 52.158 60.244 51.899 C 60.35 51.64 60.462 51.381 60.581 51.121 C 60.698 50.838 60.804 50.497 60.9 50.097 C 60.994 49.696 60.947 49.438 60.759 49.319 C 60.287 49.178 59.739 49.342 59.114 49.813 C 58.489 50.284 57.869 50.908 57.256 51.686 C 56.642 52.464 56.076 53.31 55.557 54.229 C 55.038 55.148 54.637 55.972 54.353 56.702 C 54.141 57.29 54.099 57.738 54.229 58.045 C 54.359 58.351 54.496 58.516 54.637 58.539 Z M 69.285 53.667 C 69.025 54.044 68.749 54.261 68.454 54.32 C 68.158 54.379 67.905 54.338 67.692 54.197 C 67.48 54.056 67.35 53.837 67.303 53.544 C 67.256 53.25 67.361 52.926 67.622 52.572 C 67.739 52.408 67.821 52.285 67.87 52.201 C 67.917 52.119 67.97 52.037 68.029 51.953 C 68.088 51.871 68.164 51.759 68.258 51.617 C 68.352 51.476 68.493 51.263 68.683 50.981 C 68.376 50.557 68.258 49.945 68.329 49.144 C 68.376 48.603 68.595 48.032 68.983 47.43 C 69.371 46.828 69.826 46.329 70.345 45.929 C 70.864 45.528 71.389 45.299 71.919 45.241 C 72.45 45.182 72.881 45.412 73.212 45.929 C 73.517 46.423 73.625 46.889 73.53 47.324 C 73.436 47.76 73.235 48.214 72.929 48.685 C 73.448 48.661 73.991 48.632 74.556 48.597 C 75.122 48.562 75.571 48.661 75.901 48.898 C 76.113 49.038 76.367 49.24 76.663 49.498 C 76.957 49.758 77.229 50.039 77.477 50.346 C 77.726 50.653 77.89 50.952 77.972 51.247 C 78.055 51.542 77.99 51.771 77.778 51.935 C 77.567 52.125 77.248 52.489 76.823 53.03 C 76.398 53.572 76.009 54.16 75.656 54.797 C 75.302 55.432 75.037 56.034 74.859 56.599 C 74.683 57.164 74.723 57.553 74.983 57.764 C 75.147 57.905 75.378 57.876 75.672 57.676 C 75.966 57.477 76.291 57.188 76.645 56.81 C 76.999 56.433 77.364 55.993 77.742 55.485 C 78.119 54.979 78.472 54.496 78.803 54.037 C 79.134 53.577 79.422 53.159 79.67 52.782 C 79.919 52.405 80.089 52.158 80.183 52.04 C 80.442 51.709 80.714 51.498 80.997 51.404 C 81.281 51.31 81.516 51.316 81.704 51.422 C 81.893 51.527 82.01 51.711 82.059 51.969 C 82.106 52.229 82.023 52.534 81.81 52.888 C 81.315 53.806 80.749 54.76 80.111 55.749 C 79.475 56.738 78.796 57.628 78.077 58.417 C 77.357 59.207 76.585 59.825 75.759 60.272 C 74.933 60.72 74.071 60.872 73.176 60.732 C 72.491 60.614 71.925 60.325 71.477 59.866 C 71.029 59.406 70.745 58.836 70.627 58.152 C 70.463 57.092 70.586 56.109 70.999 55.202 C 71.412 54.295 71.914 53.431 72.503 52.606 C 72.738 52.252 72.84 52.012 72.804 51.881 C 72.769 51.752 72.646 51.681 72.432 51.67 C 72.221 51.658 71.943 51.67 71.601 51.705 C 71.258 51.74 70.911 51.758 70.557 51.758 C 70.376 52.004 70.205 52.258 70.044 52.518 C 69.89 52.766 69.637 53.149 69.283 53.666 Z M 80.715 60.061 C 80.551 60.485 80.285 60.732 79.919 60.803 C 79.553 60.874 79.187 60.833 78.822 60.68 C 78.456 60.526 78.143 60.291 77.884 59.974 C 77.624 59.656 77.518 59.333 77.565 59.003 C 77.706 58.061 77.978 56.984 78.38 55.77 C 78.781 54.558 79.276 53.291 79.866 51.972 C 80.455 50.653 81.134 49.322 81.9 47.98 C 82.666 46.638 83.48 45.367 84.341 44.165 C 85.203 42.963 86.094 41.886 87.014 40.932 C 87.934 39.978 88.866 39.231 89.809 38.688 C 90.14 38.5 90.511 38.311 90.924 38.123 C 91.337 37.935 91.75 37.8 92.163 37.717 C 92.576 37.635 92.971 37.605 93.347 37.629 C 93.725 37.652 94.043 37.783 94.303 38.018 C 94.728 38.418 94.916 38.919 94.869 39.519 C 94.822 40.119 94.667 40.75 94.409 41.409 C 94.125 42.163 93.683 42.934 93.081 43.723 C 92.48 44.513 91.807 45.248 91.065 45.932 C 90.321 46.616 89.526 47.204 88.676 47.699 C 87.827 48.193 87.014 48.512 86.235 48.653 C 86.188 48.746 86.129 48.846 86.058 48.953 C 85.988 49.059 85.917 49.182 85.847 49.325 C 86.365 49.137 86.896 48.989 87.438 48.883 C 87.981 48.777 88.511 48.736 89.03 48.76 C 89.549 48.783 90.027 48.877 90.463 49.043 C 90.895 49.204 91.278 49.471 91.578 49.821 C 92.12 50.456 92.326 51.058 92.196 51.623 C 92.067 52.188 91.766 52.718 91.294 53.212 C 90.822 53.707 90.256 54.166 89.595 54.59 C 88.935 55.014 88.356 55.415 87.86 55.792 C 87.719 55.909 87.754 56.116 87.966 56.41 C 88.178 56.705 88.485 56.981 88.886 57.24 C 89.217 57.452 89.63 57.387 90.125 57.047 C 90.621 56.706 91.116 56.257 91.611 55.704 C 92.107 55.151 92.579 54.562 93.027 53.937 C 93.475 53.313 93.828 52.813 94.088 52.436 C 94.347 52.059 94.631 51.818 94.938 51.711 C 95.244 51.605 95.504 51.617 95.717 51.746 C 95.928 51.875 96.053 52.094 96.089 52.399 C 96.124 52.706 96.001 53.07 95.717 53.494 C 95.386 53.988 95.01 54.548 94.585 55.173 C 94.16 55.796 93.706 56.416 93.222 57.028 C 92.739 57.641 92.232 58.21 91.701 58.742 C 91.17 59.273 90.646 59.69 90.127 59.996 C 89.584 60.302 89.017 60.462 88.428 60.473 C 87.838 60.485 87.247 60.315 86.658 59.961 C 86.398 59.82 86.051 59.519 85.614 59.06 C 85.168 58.588 84.754 58.087 84.375 57.559 C 83.986 57.017 83.673 56.488 83.437 55.97 C 83.201 55.451 83.166 55.051 83.332 54.768 C 83.426 54.627 83.686 54.432 84.111 54.185 C 84.535 53.937 85.007 53.673 85.526 53.39 C 86.045 53.106 86.552 52.813 87.047 52.506 C 87.543 52.201 87.909 51.918 88.144 51.658 C 88.639 51.234 88.728 50.898 88.41 50.651 C 88.093 50.405 87.484 50.446 86.587 50.775 C 86.022 50.986 85.567 51.193 85.225 51.392 C 84.882 51.593 84.571 51.916 84.287 52.364 C 83.933 53.095 83.567 53.848 83.191 54.625 C 82.813 55.403 82.459 56.144 82.129 56.851 C 81.799 57.557 81.505 58.194 81.244 58.759 C 80.984 59.324 80.808 59.76 80.714 60.067 Z M 90.976 43.032 C 91.425 42.326 91.742 41.748 91.932 41.3 C 92.12 40.853 92.18 40.575 92.108 40.47 C 92.038 40.364 91.842 40.446 91.525 40.718 C 91.206 40.989 90.775 41.49 90.233 42.219 C 90.021 42.502 89.79 42.813 89.543 43.155 C 89.295 43.497 89.042 43.857 88.782 44.232 C 88.522 44.61 88.263 44.987 88.003 45.362 C 87.743 45.74 87.508 46.081 87.296 46.387 C 87.956 46.033 88.635 45.538 89.33 44.903 C 90.025 44.268 90.574 43.644 90.975 43.031 Z M 104.388 52.147 C 104.576 51.816 104.824 51.593 105.131 51.476 C 105.437 51.359 105.709 51.335 105.946 51.406 C 106.181 51.476 106.335 51.648 106.406 51.918 C 106.476 52.189 106.382 52.549 106.122 52.995 C 105.885 53.396 105.58 53.867 105.202 54.408 C 104.824 54.95 104.405 55.509 103.945 56.087 C 103.485 56.664 102.984 57.23 102.442 57.783 C 101.899 58.337 101.349 58.837 100.797 59.285 C 100.243 59.732 99.677 60.092 99.098 60.362 C 98.52 60.632 97.96 60.768 97.416 60.768 C 96.212 60.792 95.227 60.403 94.462 59.603 C 93.694 58.803 93.312 57.731 93.312 56.388 C 93.312 55.115 93.571 53.655 94.091 52.007 C 94.61 50.359 95.33 48.704 96.25 47.044 C 97.171 45.384 98.273 43.817 99.559 42.345 C 100.845 40.873 102.267 39.655 103.823 38.688 C 104.154 38.5 104.524 38.311 104.937 38.123 C 105.35 37.935 105.763 37.8 106.176 37.717 C 106.59 37.635 106.985 37.605 107.361 37.629 C 107.739 37.652 108.056 37.783 108.317 38.018 C 108.694 38.348 108.883 38.772 108.883 39.29 C 108.883 39.808 108.794 40.349 108.616 40.914 C 108.439 41.479 108.209 42.033 107.927 42.574 C 107.643 43.116 107.396 43.575 107.183 43.952 C 106.074 45.789 104.836 47.408 103.468 48.81 C 102.099 50.211 100.447 51.359 98.514 52.254 C 98.183 53.219 97.93 54.115 97.753 54.939 C 97.576 55.764 97.487 56.47 97.487 57.058 C 97.487 57.483 97.639 57.783 97.947 57.959 C 98.252 58.136 98.607 58.118 99.008 57.907 C 99.456 57.695 99.916 57.371 100.388 56.935 C 100.86 56.499 101.326 56.016 101.786 55.487 C 102.246 54.957 102.694 54.404 103.131 53.827 C 103.567 53.25 103.986 52.691 104.388 52.148 Z M 106.759 47.66 C 107.207 47.166 107.726 46.9 108.315 46.865 C 108.905 46.83 109.412 46.941 109.836 47.201 C 110.261 47.461 110.538 47.825 110.668 48.296 C 110.798 48.767 110.639 49.285 110.191 49.85 C 109.979 50.11 109.707 50.503 109.376 51.033 C 109.046 51.563 108.705 52.145 108.35 52.782 C 107.996 53.418 107.648 54.072 107.307 54.743 C 106.964 55.413 106.675 56.021 106.44 56.562 C 106.203 57.104 106.05 57.534 105.98 57.852 C 105.909 58.171 105.956 58.306 106.121 58.259 C 106.687 57.976 107.235 57.6 107.765 57.129 C 108.296 56.658 108.803 56.146 109.287 55.592 C 109.77 55.039 110.236 54.462 110.685 53.861 C 111.133 53.26 111.581 52.678 112.03 52.111 C 112.36 51.359 112.707 50.64 113.073 49.956 C 113.439 49.273 113.857 48.661 114.33 48.118 C 114.661 47.577 115.113 47.217 115.692 47.041 C 116.27 46.865 116.807 46.842 117.302 46.971 C 117.797 47.1 118.169 47.383 118.416 47.819 C 118.665 48.255 118.622 48.826 118.293 49.533 C 118.246 49.627 118.138 49.805 117.974 50.063 C 117.809 50.323 117.608 50.634 117.373 50.999 C 117.136 51.364 116.883 51.765 116.611 52.201 C 116.339 52.637 116.075 53.09 115.814 53.561 C 115.532 54.103 115.26 54.65 115 55.203 C 114.74 55.757 114.511 56.269 114.311 56.74 C 114.109 57.211 113.939 57.623 113.798 57.977 C 113.657 58.331 113.561 58.566 113.514 58.683 L 113.444 58.859 C 114.317 58.318 115.077 57.741 115.726 57.127 C 116.375 56.515 116.952 55.915 117.461 55.325 C 117.968 54.737 118.416 54.166 118.806 53.611 C 119.195 53.058 119.554 52.569 119.885 52.145 C 120.168 51.792 120.468 51.563 120.787 51.457 C 121.106 51.351 121.371 51.351 121.584 51.457 C 121.795 51.563 121.92 51.764 121.956 52.057 C 121.991 52.352 121.879 52.71 121.619 53.134 C 120.959 54.242 120.274 55.224 119.567 56.084 C 118.86 56.944 118.152 57.716 117.445 58.398 C 116.619 59.199 115.763 59.888 114.88 60.464 C 113.995 61.041 113.045 61.577 112.031 62.071 C 111.615 62.95 111.16 63.811 110.668 64.65 C 110.185 65.475 109.637 66.216 109.024 66.876 C 108.409 67.535 107.72 68.088 106.954 68.536 C 106.187 68.983 105.331 69.278 104.389 69.419 C 103.185 69.607 102.153 69.496 101.294 69.083 C 100.432 68.671 99.837 68.135 99.506 67.476 C 99.175 66.816 99.183 66.104 99.524 65.34 C 99.866 64.573 100.638 63.92 101.842 63.379 C 102.833 62.908 103.911 62.49 105.08 62.124 C 106.247 61.759 107.41 61.376 108.565 60.977 C 108.777 60.576 108.972 60.159 109.149 59.722 C 109.325 59.286 109.509 58.833 109.697 58.362 C 109.697 58.315 109.72 58.268 109.767 58.221 C 108.965 59.045 108.123 59.716 107.238 60.234 C 106.353 60.752 105.427 60.94 104.46 60.799 C 104.035 60.729 103.675 60.58 103.381 60.357 C 103.085 60.134 102.862 59.863 102.709 59.544 C 102.555 59.226 102.461 58.88 102.425 58.502 C 102.39 58.125 102.408 57.75 102.478 57.372 C 102.619 56.501 102.868 55.559 103.222 54.546 C 103.576 53.533 103.966 52.574 104.389 51.667 C 104.814 50.76 105.245 49.948 105.681 49.229 C 106.118 48.512 106.478 47.988 106.76 47.658 Z M 104.989 43.032 C 105.414 42.303 105.719 41.713 105.909 41.265 C 106.097 40.818 106.162 40.548 106.103 40.452 C 106.044 40.358 105.86 40.452 105.555 40.735 C 105.248 41.019 104.811 41.513 104.245 42.219 C 103.56 43.044 102.853 44.033 102.123 45.186 C 101.391 46.341 100.637 47.683 99.857 49.213 C 100.989 48.46 101.945 47.577 102.724 46.563 C 103.503 45.55 104.257 44.372 104.989 43.031 Z M 102.831 66.844 C 103.515 66.654 104.152 66.349 104.742 65.925 C 105.331 65.501 105.885 64.983 106.404 64.371 C 105.813 64.583 105.223 64.801 104.635 65.024 C 104.028 65.254 103.426 65.496 102.83 65.749 C 102.522 65.866 102.264 66.015 102.051 66.191 C 101.839 66.367 101.714 66.527 101.679 66.668 C 101.643 66.809 101.708 66.908 101.873 66.968 C 102.037 67.027 102.356 66.986 102.828 66.845 Z M 0.32 42.416 C -2.872 25.476 18.356 13.735 39.691 19.251 C 19.845 16.922 1.496 26.483 0.32 42.416 M 69.753 11.513 L 69.984 8.767 L 70.214 11.513 C 70.3 12.528 71.107 13.333 72.122 13.418 L 74.872 13.648 L 72.122 13.879 C 71.105 13.964 70.3 14.769 70.214 15.783 L 69.984 18.529 L 69.753 15.783 C 69.668 14.768 68.861 13.964 67.845 13.879 L 65.095 13.648 L 67.845 13.418 C 68.861 13.333 69.668 12.527 69.753 11.513 M 62.409 2.877 L 62.539 1.333 L 62.668 2.877 C 62.716 3.447 63.17 3.9 63.741 3.948 L 65.287 4.077 L 63.741 4.206 C 63.17 4.254 62.716 4.707 62.668 5.277 L 62.539 6.821 L 62.409 5.277 C 62.361 4.707 61.908 4.254 61.336 4.206 L 59.79 4.077 L 61.336 3.948 C 61.908 3.9 62.361 3.447 62.409 2.877 M 59.831 12.173 L 59.737 13.283 L 59.643 12.173 C 59.609 11.764 59.283 11.438 58.873 11.404 L 57.762 11.31 L 58.873 11.216 C 59.283 11.182 59.609 10.857 59.643 10.448 L 59.737 9.338 L 59.831 10.448 C 59.865 10.857 60.191 11.182 60.601 11.216 L 61.713 11.31 L 60.601 11.404 C 60.191 11.438 59.865 11.764 59.831 12.173 M 55.643 41.212 C 54.741 41.212 53.874 41.151 53.005 41.026 C 52.936 41.016 52.876 40.975 52.842 40.913 C 51.616 38.637 50.142 34.992 50.081 30.546 C 50.065 29.367 50.093 27.626 50.521 26.141 C 50.539 26.078 50.584 26.027 50.643 26 C 50.99 25.846 51.907 25.338 52.877 24.801 C 54.085 24.132 55.454 23.373 56.292 22.977 C 56.368 22.941 56.458 22.952 56.524 23.005 C 59.719 25.566 66.374 28.747 71.551 29.424 C 71.618 29.433 71.678 29.472 71.712 29.531 C 71.746 29.59 71.752 29.662 71.727 29.725 C 71.389 30.563 70.982 31.543 70.526 32.454 C 70.483 32.538 70.394 32.588 70.3 32.575 C 67.921 32.259 65.099 31.114 62.871 30.09 C 64.868 31.343 67.447 32.611 69.735 33.231 C 69.804 33.249 69.859 33.299 69.884 33.366 C 69.909 33.432 69.9 33.506 69.86 33.565 C 69.062 34.754 66.748 37.037 66.293 37.483 C 66.225 37.551 66.121 37.566 66.037 37.522 C 64.889 36.923 61.867 34.396 59.62 32.513 C 61.455 34.496 64.06 37.109 65.227 37.862 C 65.289 37.902 65.326 37.969 65.329 38.042 C 65.33 38.116 65.295 38.185 65.236 38.227 C 63.593 39.394 61.78 40.219 59.852 40.68 C 59.777 40.697 59.699 40.675 59.646 40.622 C 57.131 38.136 55.148 35.26 53.727 32.04 C 54.109 33.445 54.573 34.688 55.129 35.796 C 55.567 36.625 58.229 40.697 58.255 40.738 C 58.298 40.803 58.303 40.884 58.27 40.953 C 58.238 41.022 58.17 41.068 58.095 41.077 C 57.235 41.17 56.427 41.217 55.645 41.217 Z M 53.177 40.606 C 54.618 40.803 56.062 40.825 57.687 40.672 C 57.053 39.699 55.117 36.717 54.735 35.992 C 53.806 34.136 53.127 31.923 52.658 29.226 C 52.639 29.111 52.71 29.003 52.823 28.975 C 52.935 28.947 53.049 29.011 53.086 29.12 C 54.463 33.371 56.746 37.105 59.868 40.217 C 61.597 39.789 63.228 39.059 64.721 38.044 C 62.814 36.645 58.557 32.124 57.494 30.753 C 57.426 30.667 57.434 30.544 57.51 30.464 C 57.587 30.385 57.71 30.375 57.798 30.441 C 58.104 30.667 58.86 31.298 59.814 32.098 C 61.845 33.8 64.874 36.339 66.102 37.05 C 66.694 36.468 68.483 34.68 69.316 33.567 C 66.096 32.629 62.398 30.508 60.482 28.935 C 60.396 28.865 60.377 28.74 60.437 28.646 C 60.497 28.552 60.619 28.518 60.719 28.568 L 60.791 28.603 C 62.968 29.67 66.991 31.643 70.201 32.114 C 70.576 31.351 70.917 30.542 71.211 29.819 C 66.061 29.066 59.58 25.969 56.356 23.432 C 55.523 23.836 54.234 24.55 53.09 25.184 C 52.15 25.705 51.326 26.162 50.918 26.357 C 50.533 27.766 50.506 29.412 50.522 30.538 C 50.581 34.83 51.985 38.365 53.177 40.603 Z M 50.09 25.693 C 50.052 25.693 50.012 25.683 49.979 25.663 C 49.538 25.403 49.227 25.04 49.083 24.615 C 48.756 23.652 49.286 22.531 50.44 21.715 C 47.599 16.301 46.233 9.632 46.264 1.333 C 46.264 1.306 46.269 1.28 46.279 1.254 C 46.686 0.201 47.675 -0.116 48.473 0.036 C 49.251 0.184 50.032 0.818 50.023 1.902 L 50.023 1.921 C 49.339 8.849 50.353 16.59 52.492 20.84 C 54.206 20.498 55.763 21.081 56.155 22.235 C 56.189 22.336 56.145 22.448 56.051 22.499 L 50.199 25.667 C 50.167 25.685 50.13 25.693 50.095 25.693 Z M 46.704 1.375 C 46.677 9.67 48.057 16.312 50.921 21.683 C 50.975 21.784 50.943 21.909 50.846 21.97 C 49.768 22.669 49.227 23.676 49.499 24.474 C 49.601 24.77 49.801 25.021 50.098 25.219 L 55.661 22.208 C 55.23 21.351 53.884 20.965 52.42 21.309 L 52.417 21.309 C 52.319 21.331 52.219 21.284 52.173 21.196 C 49.949 16.912 48.884 8.976 49.579 1.89 C 49.582 1.01 48.941 0.576 48.388 0.47 C 47.78 0.354 47.027 0.59 46.702 1.377 Z\" fill=\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)) /* {&quot;name&quot;:&quot;Main 2&quot;} */\"></path><path d=\"M 55.735 23.448 L 56.387 23.177 C 57.537 24.098 59.121 25.09 60.914 26.019 C 69 26.888 76.101 28.521 80.57 30.442 C 75.328 27.088 66.687 24.288 57.044 22.686 C 56.878 22.659 56.725 22.761 56.524 22.849 C 56.464 22.876 56.027 23.084 55.971 23.118 C 55.624 23.323 55.579 23.329 55.366 23.441 M 49.292 24.544 C 48.981 23.63 49.571 22.56 50.674 21.822 C 23.637 18.965 -6.967 25.952 6.723 55.614 C 0.982 31.936 26.433 25.051 49.914 25.357 C 49.621 25.145 49.404 24.873 49.292 24.544 Z\" fill=\"var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, rgb(67, 95, 113)) /* {&quot;name&quot;:&quot;Main 2&quot;} */\"></path></g></svg>',svgContentId:9383321042,title:\"Sparkly Cleaning Services logo\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdfnop\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/sparklyservice/\",motionChild:true,nodeId:\"bbrJv78Or\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p53dgc framer-ho7vy1\",\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1et9evw\",\"data-framer-name\":\"Instagram Icon\",fill:'var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255)) /* {\"name\":\"Branco\"} */',intrinsicHeight:512,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 24 24\" xml:space=\"preserve\" width=\"512\" height=\"512\"><path d=\"M12 2.162c3.204 0 3.584.012 4.849.07 1.308.06 2.655.358 3.608 1.311.962.962 1.251 2.296 1.311 3.608.058 1.265.07 1.645.07 4.849s-.012 3.584-.07 4.849c-.059 1.301-.364 2.661-1.311 3.608-.962.962-2.295 1.251-3.608 1.311-1.265.058-1.645.07-4.849.07s-3.584-.012-4.849-.07c-1.291-.059-2.669-.371-3.608-1.311-.957-.957-1.251-2.304-1.311-3.608-.058-1.265-.07-1.645-.07-4.849s.012-3.584.07-4.849c.059-1.296.367-2.664 1.311-3.608.96-.96 2.299-1.251 3.608-1.311 1.265-.058 1.645-.07 4.849-.07M12 0C8.741 0 8.332.014 7.052.072 5.197.157 3.355.673 2.014 2.014.668 3.36.157 5.198.072 7.052.014 8.332 0 8.741 0 12c0 3.259.014 3.668.072 4.948.085 1.853.603 3.7 1.942 5.038 1.345 1.345 3.186 1.857 5.038 1.942C8.332 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 1.854-.085 3.698-.602 5.038-1.942 1.347-1.347 1.857-3.184 1.942-5.038.058-1.28.072-1.689.072-4.948 0-3.259-.014-3.668-.072-4.948-.085-1.855-.602-3.698-1.942-5.038C20.643.671 18.797.156 16.948.072 15.668.014 15.259 0 12 0z\"/><path d=\"M12 5.838a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 0 0 0-12.324zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8z\"/><circle cx=\"18.406\" cy=\"5.594\" r=\"1.44\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/sparkly20/\",motionChild:true,nodeId:\"PUt7dYrGP\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16xfyd6 framer-ho7vy1\",\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ubpe6y\",\"data-framer-name\":\"Facebook Icon\",fill:'var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255)) /* {\"name\":\"Branco\"} */',intrinsicHeight:512,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 24 24\" xml:space=\"preserve\" width=\"512\" height=\"512\"><path d=\"M24 12.073c0 5.989-4.394 10.954-10.13 11.855v-8.363h2.789l.531-3.46h-3.32V9.86c0-.947.464-1.869 1.95-1.869h1.509V5.045s-1.37-.234-2.679-.234c-2.734 0-4.52 1.657-4.52 4.656v2.637H7.091v3.46h3.039v8.363C4.395 23.025 0 18.061 0 12.073c0-6.627 5.373-12 12-12s12 5.372 12 12z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/+16147490087\",motionChild:true,nodeId:\"hKn_KX7TV\",scopeId:\"ee9lpAKv_\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12rblcq framer-ho7vy1\",\"data-framer-name\":\"Bot\\xe3o\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gnx2ck\",\"data-framer-name\":\"Whatsapp Icon\",fill:'var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, rgb(255, 255, 255)) /* {\"name\":\"Branco\"} */',intrinsicHeight:512,intrinsicWidth:512,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" style=\"enable-background:new 0 0 24 24\" xml:space=\"preserve\" width=\"512\" height=\"512\"><path style=\"fill-rule:evenodd;clip-rule:evenodd\" d=\"M20.463 3.488A11.817 11.817 0 0 0 12.05 0C5.495 0 .16 5.334.157 11.892a11.87 11.87 0 0 0 1.588 5.946L.057 24l6.304-1.654a11.88 11.88 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.817 11.817 0 0 0-3.479-8.413zM12.05 21.785h-.004a9.86 9.86 0 0 1-5.031-1.378l-.361-.214-3.741.981.999-3.648-.235-.374a9.855 9.855 0 0 1-1.511-5.26c.002-5.45 4.437-9.884 9.889-9.884 2.64 0 5.122 1.03 6.988 2.898a9.827 9.827 0 0 1 2.892 6.993c-.003 5.452-4.437 9.886-9.885 9.886zm5.422-7.403c-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.148s-.767.967-.941 1.166c-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059s-.018-.458.13-.606c.134-.133.297-.347.446-.521.15-.172.199-.296.299-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.241-.58-.486-.501-.669-.51-.173-.009-.371-.01-.57-.01-.198 0-.52.074-.792.372s-1.04 1.017-1.04 2.479c0 1.463 1.065 2.876 1.213 3.074.148.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.29.173-1.413-.074-.125-.272-.199-.569-.348z\"/></svg>',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w0y3nd\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-n4inkd\",\"data-framer-name\":\"Links\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lZZ9WkSik:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"As for me and my house,\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"we will serve the Lord. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"Joshua\u202C \u202D24\u202C:\u202D15\u202C \u202DKJV\"})]})})},YRt7LSpLK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:[\"As for me and my house,\",/*#__PURE__*/_jsx(\"br\",{}),\"we will serve the Lord. \",/*#__PURE__*/_jsx(\"br\",{}),\"Joshua\u202C \u202D24\u202C:\u202D15\u202C \u202DKJV\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-465f9296-aae3-4f90-88ac-eeb907303144, rgb(46, 76, 94))\"},children:[\"As for me and my house,\",/*#__PURE__*/_jsx(\"br\",{}),\"we will serve the Lord. \",/*#__PURE__*/_jsx(\"br\",{}),\"Joshua\u202C \u202D24\u202C:\u202D15\u202C \u202DKJV\"]})}),className:\"framer-1tndj4m\",fonts:[\"GF;Ubuntu-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Hsj5P.framer-ho7vy1, .framer-Hsj5P .framer-ho7vy1 { display: block; }\",\".framer-Hsj5P.framer-75n7al { align-content: center; align-items: center; background-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #f7fafa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-Hsj5P .framer-1xx364i-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Hsj5P.framer-xg0mhx, .framer-Hsj5P.framer-4rqhmq, .framer-Hsj5P.framer-1fx5w44, .framer-Hsj5P.framer-1yhdxe5 { background-color: rgba(67, 95, 113, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-Hsj5P.framer-1yfnqs5, .framer-Hsj5P.framer-1sbd0l8, .framer-Hsj5P.framer-m08q1w, .framer-Hsj5P.framer-cy4zhu { -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); cursor: default; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: fixed; top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Hsj5P.framer-1fxsa8w-container, .framer-Hsj5P.framer-1x61mo9-container, .framer-Hsj5P.framer-9fs021-container { flex: none; height: 100%; position: fixed; right: 0px; top: calc(50.00000000000002% - 100% / 2); width: 40%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Hsj5P.framer-1jh710y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Hsj5P .framer-1w8xiri, .framer-Hsj5P .framer-1q530yf, .framer-Hsj5P .framer-mb32np { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 25px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Hsj5P .framer-5h6b1e, .framer-Hsj5P .framer-1dpbmvo, .framer-Hsj5P .framer-1560nfx, .framer-Hsj5P .framer-z6u5hy, .framer-Hsj5P .framer-168jq9n, .framer-Hsj5P .framer-btqs08, .framer-Hsj5P .framer-lsx8lj, .framer-Hsj5P .framer-hjwxjh, .framer-Hsj5P .framer-12bszm7, .framer-Hsj5P .framer-6h4wn8, .framer-Hsj5P .framer-1vglddb, .framer-Hsj5P .framer-1tgr7jm, .framer-Hsj5P .framer-o81ctp, .framer-Hsj5P .framer-1f1vati, .framer-Hsj5P .framer-15tsfyj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Hsj5P .framer-xoqloa, .framer-Hsj5P .framer-1vny4ri { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 25px; position: relative; width: min-content; }\",\".framer-Hsj5P .framer-19lepe3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 100px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-7k7aaz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Hsj5P .framer-1p98o92, .framer-Hsj5P .framer-1g0f0wr, .framer-Hsj5P .framer-10fnldi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Hsj5P .framer-1tpa7r3, .framer-Hsj5P .framer-1a1z0ph { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Hsj5P .framer-5tnyam, .framer-Hsj5P .framer-a9rlaj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-1xgeqd2-container, .framer-Hsj5P .framer-1ae70w-container, .framer-Hsj5P .framer-1byai6f-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-Hsj5P .framer-mlnptu { aspect-ratio: 1.6666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 564px); max-width: 1080px; overflow: visible; pointer-events: none; position: relative; width: 87%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-Hsj5P .framer-1icxtij { align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; box-shadow: 0px -30px 50px -50px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: 800px; justify-content: center; max-width: 1480px; min-width: 1380px; overflow: hidden; padding: 0px 0px 75px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Hsj5P .framer-1es6py6-container, .framer-Hsj5P .framer-n7uw2v-container { flex: none; height: 550px; position: relative; width: 80%; }\",\".framer-Hsj5P .framer-1t4m3c7-container, .framer-Hsj5P .framer-1lr4xtw-container, .framer-Hsj5P .framer-1ddib52-container, .framer-Hsj5P .framer-1nwoerl-container, .framer-Hsj5P .framer-co6xm7-container, .framer-Hsj5P .framer-9exf7c-container, .framer-Hsj5P .framer-1mvkn5s-container, .framer-Hsj5P .framer-fi9m8j-container, .framer-Hsj5P .framer-1k8vgpg-container { height: auto; position: relative; width: 327px; }\",\".framer-Hsj5P .framer-9v6rbs { align-content: center; align-items: center; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 250px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Hsj5P .framer-ao9zt4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-11mpnjf { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-1bypstj { --border-bottom-width: 2px; --border-color: rgba(46, 161, 178, 0.25); --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-right-radius: 600px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: 700px; justify-content: center; opacity: 0.9; overflow: hidden; padding: 0px; position: relative; width: 60%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Hsj5P .framer-7mp6r6, .framer-Hsj5P .framer-18o38hm { background-color: rgba(233, 242, 244, 0.2); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.06765899864685% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-Hsj5P .framer-2cxc20 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-Hsj5P .framer-xf1tm9 { align-content: flex-start; align-items: flex-start; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: -30px -30px 50px -50px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 400px; justify-content: flex-start; overflow: visible; padding: 60px; position: relative; width: 400px; }\",\".framer-Hsj5P .framer-1uhux00-container { bottom: -90px; flex: none; height: 40px; left: 62px; position: absolute; width: auto; z-index: 1; }\",\".framer-Hsj5P .framer-464kx9, .framer-Hsj5P .framer-i9hf84 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-Hsj5P .framer-rof5z2 { flex: none; height: 64px; overflow: hidden; position: absolute; right: -32px; top: 54px; width: 65px; z-index: 1; }\",\".framer-Hsj5P .framer-gxnb6e, .framer-Hsj5P .framer-1lr2urt { flex: none; height: 66px; left: calc(49.230769230769255% - 66px / 2); position: absolute; top: calc(50.00000000000002% - 66px / 2); width: 66px; }\",\".framer-Hsj5P .framer-14koxiu, .framer-Hsj5P .framer-77xxmq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Hsj5P .framer-l649gc { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 40px; box-shadow: 5px 5px 25px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px 25px 0px 25px; position: absolute; right: -142px; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-1d5ooge { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 99px; box-shadow: 3px 3px 20px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px 15px 0px 15px; position: absolute; right: -41px; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-bsclmc { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: -12px; box-shadow: 3px 3px 20px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px 15px 0px 15px; position: absolute; right: -145px; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-hetsa3 { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: -17px; box-shadow: 5px 5px 25px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px 25px 0px 25px; position: absolute; right: -26px; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-i91at1 { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 45px; box-shadow: 3px 3px 20px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; left: 189px; overflow: visible; padding: 0px 15px 0px 15px; position: absolute; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-42jfzo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-1be4g59 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 300px; z-index: 1; }\",\".framer-Hsj5P .framer-1qvz7ki { align-content: flex-end; align-items: flex-end; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 30px -30px 50px -50px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 400px; justify-content: flex-start; overflow: visible; padding: 60px; position: relative; width: 400px; }\",\".framer-Hsj5P .framer-1pl7drr-container { bottom: -90px; flex: none; height: 40px; left: 90px; position: absolute; width: auto; z-index: 1; }\",\".framer-Hsj5P .framer-1hqtmps { flex: none; height: 64px; left: -33px; overflow: hidden; position: absolute; top: 54px; width: 65px; z-index: 1; }\",\".framer-Hsj5P .framer-stu0pm { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 37px; box-shadow: 5px 5px 25px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; left: -76px; overflow: visible; padding: 0px 25px 0px 25px; position: absolute; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-3o7tto { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 97px; box-shadow: 3px 3px 20px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; left: -44px; overflow: visible; padding: 0px 15px 0px 15px; position: absolute; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-9yhz8s { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: -15px; box-shadow: 3px 3px 20px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; left: -113px; overflow: visible; padding: 0px 15px 0px 15px; position: absolute; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-14de73o { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: -65px; box-shadow: 3px 3px 20px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; left: -83px; overflow: visible; padding: 0px 15px 0px 15px; position: absolute; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-gmh9ea { --border-bottom-width: 1px; --border-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-19215f4b-91d0-457c-81eb-ce0bc0ac0bca, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: -20px; box-shadow: 5px 5px 25px -5px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; left: -26px; overflow: visible; padding: 0px 25px 0px 25px; position: absolute; width: min-content; z-index: 1; }\",\".framer-Hsj5P .framer-1fyq6gn { --border-bottom-width: 2px; --border-color: rgba(46, 161, 178, 0.25); --border-left-width: 2px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 60px; border-top-left-radius: 600px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: 700px; justify-content: center; opacity: 0.9; overflow: hidden; padding: 0px; position: relative; width: 60%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Hsj5P .framer-1sq59mm { align-content: center; align-items: center; background-color: var(--token-6f435582-bbaa-4ea0-b025-91ea25b5417b, #435f71); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 600px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-pduc2o { bottom: -100px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-Hsj5P .framer-1o1vqc3 { background-color: rgba(66, 95, 112, 0.65); bottom: -100px; flex: none; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-Hsj5P .framer-1vy0dm7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-Hsj5P .framer-1m25jen { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; box-shadow: 0px -30px 50px -50px rgba(38, 96, 105, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1380px; min-width: 1380px; overflow: visible; padding: 60px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-zqtacd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 60px 150px 25px 150px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-1b9eygu { background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 56.75675675675676%, rgb(255, 255, 255) 100%); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 150px; z-index: 1; }\",\".framer-Hsj5P .framer-akvf41 { background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 17.82506994298986%, rgb(255, 255, 255) 65.31531531531532%, rgb(255, 255, 255) 100%); flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 100% / 2); width: 42%; z-index: 1; }\",\".framer-Hsj5P .framer-1tks0lm-container { flex: none; height: 250px; position: relative; width: 75%; }\",\".framer-Hsj5P .framer-1aldp3s-container, .framer-Hsj5P .framer-khakw0-container, .framer-Hsj5P .framer-1969gft-container { height: auto; position: relative; width: 500px; }\",\".framer-Hsj5P .framer-16a18c0-container { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-4yofda-container, .framer-Hsj5P .framer-qs1nun-container, .framer-Hsj5P .framer-vnyyy-container { height: 300px; position: relative; width: 500px; }\",\".framer-Hsj5P .framer-os3383 { align-content: center; align-items: center; background-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 60px; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-3d1hzl { align-content: center; align-items: center; background-color: var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, #2ea1b2); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; bottom: 0px; box-shadow: 0px -30px 100px -50px var(--token-465f9296-aae3-4f90-88ac-eeb907303144, #2e4c5e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; justify-content: center; left: calc(49.92187500000002% - min(1280px, 982.1637666325487px) / 2); max-width: 1280px; overflow: hidden; padding: 0px 50px 0px 60px; position: absolute; top: -60px; width: 982px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-Hsj5P .framer-1bso6tz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Hsj5P .framer-j1jc65, .framer-Hsj5P .framer-9kuo42 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Hsj5P .framer-zs4m4j, .framer-Hsj5P .framer-bxklyi { --framer-paragraph-spacing: 0px; flex: none; height: 66px; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Hsj5P .framer-8jp3k7 { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-Hsj5P .framer-1nxx2x8-container { flex: none; height: 66px; position: relative; width: 180px; }\",\".framer-Hsj5P.framer-ysefin { background-color: rgba(67, 95, 113, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-Hsj5P.framer-17ffj4i { -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); cursor: default; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: fixed; top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-Hsj5P.framer-br6vva-container { flex: none; height: 100%; position: fixed; right: 0px; top: calc(50.00000000000002% - 100% / 2); width: 40%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-Hsj5P .framer-c5vh05 { flex: none; height: 108px; left: 983px; overflow: hidden; position: absolute; top: -107px; width: 188px; }\",\".framer-Hsj5P .framer-dmdpc1 { background-color: var(--token-01d968c1-a674-4099-8075-6164f90910a3, #ecd884); border-top-left-radius: 150px; border-top-right-radius: 1000px; bottom: 0px; flex: none; left: 0px; opacity: 0.9; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Hsj5P .framer-1yodkfy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 125px 0px 125px 0px; position: relative; width: 100%; }\",\".framer-Hsj5P .framer-bcralu-container { flex: none; height: auto; position: relative; width: 80%; }\",\".framer-Hsj5P .framer-1xtgntu { align-content: center; align-items: center; background-color: var(--token-ad81c234-80fa-4b35-922b-3e5d384e74f1, #e9f2f4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: auto; padding: 0px 180px 100px 180px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Hsj5P .framer-144blpg { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Hsj5P .framer-1sex6su { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 100%; justify-content: flex-start; overflow: hidden; overflow-x: auto; padding: 0px 40px 0px 0px; position: relative; width: 1px; }\",\".framer-Hsj5P .framer-10uy4t0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Hsj5P .framer-1pt0war { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 40px 20px 40px; position: relative; width: min-content; }\",\".framer-Hsj5P .framer-qx3jns { flex: none; height: 70px; position: relative; width: 122px; }\",\".framer-Hsj5P .framer-1tdfnop { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Hsj5P .framer-p53dgc, .framer-Hsj5P .framer-16xfyd6, .framer-Hsj5P .framer-12rblcq { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-e2f77e7d-d028-4d7d-8fcf-e496c8acd0c9, #2ea1b2); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.6666666666666666px rgba(38, 96, 105, 0.2), 0px 1.8065619053231785px 1.8065619053231785px -1.3333333333333333px rgba(38, 96, 105, 0.19097), 0px 3.6217592146567767px 3.6217592146567767px -2px rgba(38, 96, 105, 0.18189), 0px 6.8655999097303715px 6.8655999097303715px -2.6666666666666665px rgba(38, 96, 105, 0.16567), 0px 13.646761411524492px 13.646761411524492px -3.3333333333333335px rgba(38, 96, 105, 0.13177), 0px 30px 30px -4px rgba(38, 96, 105, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 40px; }\",\".framer-Hsj5P .framer-1et9evw, .framer-Hsj5P .framer-ubpe6y, .framer-Hsj5P .framer-gnx2ck { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-Hsj5P .framer-1w0y3nd { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Hsj5P .framer-n4inkd { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Hsj5P .framer-1tndj4m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Hsj5P.framer-75n7al, .framer-Hsj5P.framer-1jh710y, .framer-Hsj5P .framer-1w8xiri, .framer-Hsj5P .framer-1q530yf, .framer-Hsj5P .framer-xoqloa, .framer-Hsj5P .framer-mb32np, .framer-Hsj5P .framer-1vny4ri, .framer-Hsj5P .framer-19lepe3, .framer-Hsj5P .framer-7k7aaz, .framer-Hsj5P .framer-5tnyam, .framer-Hsj5P .framer-1icxtij, .framer-Hsj5P .framer-9v6rbs, .framer-Hsj5P .framer-ao9zt4, .framer-Hsj5P .framer-11mpnjf, .framer-Hsj5P .framer-1bypstj, .framer-Hsj5P .framer-2cxc20, .framer-Hsj5P .framer-xf1tm9, .framer-Hsj5P .framer-l649gc, .framer-Hsj5P .framer-1d5ooge, .framer-Hsj5P .framer-bsclmc, .framer-Hsj5P .framer-hetsa3, .framer-Hsj5P .framer-i91at1, .framer-Hsj5P .framer-42jfzo, .framer-Hsj5P .framer-1be4g59, .framer-Hsj5P .framer-1qvz7ki, .framer-Hsj5P .framer-stu0pm, .framer-Hsj5P .framer-3o7tto, .framer-Hsj5P .framer-9yhz8s, .framer-Hsj5P .framer-14de73o, .framer-Hsj5P .framer-gmh9ea, .framer-Hsj5P .framer-1fyq6gn, .framer-Hsj5P .framer-1sq59mm, .framer-Hsj5P .framer-1vy0dm7, .framer-Hsj5P .framer-a9rlaj, .framer-Hsj5P .framer-1m25jen, .framer-Hsj5P .framer-zqtacd, .framer-Hsj5P .framer-os3383, .framer-Hsj5P .framer-3d1hzl, .framer-Hsj5P .framer-1bso6tz, .framer-Hsj5P .framer-j1jc65, .framer-Hsj5P .framer-9kuo42, .framer-Hsj5P .framer-1yodkfy, .framer-Hsj5P .framer-1xtgntu, .framer-Hsj5P .framer-144blpg, .framer-Hsj5P .framer-1sex6su, .framer-Hsj5P .framer-1pt0war, .framer-Hsj5P .framer-1tdfnop, .framer-Hsj5P .framer-p53dgc, .framer-Hsj5P .framer-16xfyd6, .framer-Hsj5P .framer-12rblcq, .framer-Hsj5P .framer-1w0y3nd, .framer-Hsj5P .framer-n4inkd { gap: 0px; } .framer-Hsj5P.framer-75n7al > *, .framer-Hsj5P.framer-1jh710y > *, .framer-Hsj5P .framer-1sq59mm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Hsj5P.framer-75n7al > :first-child, .framer-Hsj5P.framer-1jh710y > :first-child, .framer-Hsj5P .framer-19lepe3 > :first-child, .framer-Hsj5P .framer-7k7aaz > :first-child, .framer-Hsj5P .framer-1icxtij > :first-child, .framer-Hsj5P .framer-ao9zt4 > :first-child, .framer-Hsj5P .framer-xf1tm9 > :first-child, .framer-Hsj5P .framer-1qvz7ki > :first-child, .framer-Hsj5P .framer-1sq59mm > :first-child, .framer-Hsj5P .framer-1vy0dm7 > :first-child, .framer-Hsj5P .framer-1m25jen > :first-child, .framer-Hsj5P .framer-zqtacd > :first-child, .framer-Hsj5P .framer-1yodkfy > :first-child, .framer-Hsj5P .framer-1pt0war > :first-child, .framer-Hsj5P .framer-n4inkd > :first-child { margin-top: 0px; } .framer-Hsj5P.framer-75n7al > :last-child, .framer-Hsj5P.framer-1jh710y > :last-child, .framer-Hsj5P .framer-19lepe3 > :last-child, .framer-Hsj5P .framer-7k7aaz > :last-child, .framer-Hsj5P .framer-1icxtij > :last-child, .framer-Hsj5P .framer-ao9zt4 > :last-child, .framer-Hsj5P .framer-xf1tm9 > :last-child, .framer-Hsj5P .framer-1qvz7ki > :last-child, .framer-Hsj5P .framer-1sq59mm > :last-child, .framer-Hsj5P .framer-1vy0dm7 > :last-child, .framer-Hsj5P .framer-1m25jen > :last-child, .framer-Hsj5P .framer-zqtacd > :last-child, .framer-Hsj5P .framer-1yodkfy > :last-child, .framer-Hsj5P .framer-1pt0war > :last-child, .framer-Hsj5P .framer-n4inkd > :last-child { margin-bottom: 0px; } .framer-Hsj5P .framer-1w8xiri > *, .framer-Hsj5P .framer-1q530yf > *, .framer-Hsj5P .framer-xoqloa > *, .framer-Hsj5P .framer-mb32np > *, .framer-Hsj5P .framer-1vny4ri > *, .framer-Hsj5P .framer-9v6rbs > *, .framer-Hsj5P .framer-11mpnjf > *, .framer-Hsj5P .framer-42jfzo > *, .framer-Hsj5P .framer-j1jc65 > *, .framer-Hsj5P .framer-9kuo42 > *, .framer-Hsj5P .framer-1xtgntu > *, .framer-Hsj5P .framer-144blpg > *, .framer-Hsj5P .framer-1w0y3nd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Hsj5P .framer-1w8xiri > :first-child, .framer-Hsj5P .framer-1q530yf > :first-child, .framer-Hsj5P .framer-xoqloa > :first-child, .framer-Hsj5P .framer-mb32np > :first-child, .framer-Hsj5P .framer-1vny4ri > :first-child, .framer-Hsj5P .framer-5tnyam > :first-child, .framer-Hsj5P .framer-9v6rbs > :first-child, .framer-Hsj5P .framer-11mpnjf > :first-child, .framer-Hsj5P .framer-1bypstj > :first-child, .framer-Hsj5P .framer-2cxc20 > :first-child, .framer-Hsj5P .framer-l649gc > :first-child, .framer-Hsj5P .framer-1d5ooge > :first-child, .framer-Hsj5P .framer-bsclmc > :first-child, .framer-Hsj5P .framer-hetsa3 > :first-child, .framer-Hsj5P .framer-i91at1 > :first-child, .framer-Hsj5P .framer-42jfzo > :first-child, .framer-Hsj5P .framer-1be4g59 > :first-child, .framer-Hsj5P .framer-stu0pm > :first-child, .framer-Hsj5P .framer-3o7tto > :first-child, .framer-Hsj5P .framer-9yhz8s > :first-child, .framer-Hsj5P .framer-14de73o > :first-child, .framer-Hsj5P .framer-gmh9ea > :first-child, .framer-Hsj5P .framer-1fyq6gn > :first-child, .framer-Hsj5P .framer-a9rlaj > :first-child, .framer-Hsj5P .framer-os3383 > :first-child, .framer-Hsj5P .framer-3d1hzl > :first-child, .framer-Hsj5P .framer-1bso6tz > :first-child, .framer-Hsj5P .framer-j1jc65 > :first-child, .framer-Hsj5P .framer-9kuo42 > :first-child, .framer-Hsj5P .framer-1xtgntu > :first-child, .framer-Hsj5P .framer-144blpg > :first-child, .framer-Hsj5P .framer-1sex6su > :first-child, .framer-Hsj5P .framer-1tdfnop > :first-child, .framer-Hsj5P .framer-p53dgc > :first-child, .framer-Hsj5P .framer-16xfyd6 > :first-child, .framer-Hsj5P .framer-12rblcq > :first-child, .framer-Hsj5P .framer-1w0y3nd > :first-child { margin-left: 0px; } .framer-Hsj5P .framer-1w8xiri > :last-child, .framer-Hsj5P .framer-1q530yf > :last-child, .framer-Hsj5P .framer-xoqloa > :last-child, .framer-Hsj5P .framer-mb32np > :last-child, .framer-Hsj5P .framer-1vny4ri > :last-child, .framer-Hsj5P .framer-5tnyam > :last-child, .framer-Hsj5P .framer-9v6rbs > :last-child, .framer-Hsj5P .framer-11mpnjf > :last-child, .framer-Hsj5P .framer-1bypstj > :last-child, .framer-Hsj5P .framer-2cxc20 > :last-child, .framer-Hsj5P .framer-l649gc > :last-child, .framer-Hsj5P .framer-1d5ooge > :last-child, .framer-Hsj5P .framer-bsclmc > :last-child, .framer-Hsj5P .framer-hetsa3 > :last-child, .framer-Hsj5P .framer-i91at1 > :last-child, .framer-Hsj5P .framer-42jfzo > :last-child, .framer-Hsj5P .framer-1be4g59 > :last-child, .framer-Hsj5P .framer-stu0pm > :last-child, .framer-Hsj5P .framer-3o7tto > :last-child, .framer-Hsj5P .framer-9yhz8s > :last-child, .framer-Hsj5P .framer-14de73o > :last-child, .framer-Hsj5P .framer-gmh9ea > :last-child, .framer-Hsj5P .framer-1fyq6gn > :last-child, .framer-Hsj5P .framer-a9rlaj > :last-child, .framer-Hsj5P .framer-os3383 > :last-child, .framer-Hsj5P .framer-3d1hzl > :last-child, .framer-Hsj5P .framer-1bso6tz > :last-child, .framer-Hsj5P .framer-j1jc65 > :last-child, .framer-Hsj5P .framer-9kuo42 > :last-child, .framer-Hsj5P .framer-1xtgntu > :last-child, .framer-Hsj5P .framer-144blpg > :last-child, .framer-Hsj5P .framer-1sex6su > :last-child, .framer-Hsj5P .framer-1tdfnop > :last-child, .framer-Hsj5P .framer-p53dgc > :last-child, .framer-Hsj5P .framer-16xfyd6 > :last-child, .framer-Hsj5P .framer-12rblcq > :last-child, .framer-Hsj5P .framer-1w0y3nd > :last-child { margin-right: 0px; } .framer-Hsj5P .framer-19lepe3 > *, .framer-Hsj5P .framer-ao9zt4 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Hsj5P .framer-7k7aaz > *, .framer-Hsj5P .framer-1vy0dm7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Hsj5P .framer-5tnyam > *, .framer-Hsj5P .framer-a9rlaj > *, .framer-Hsj5P .framer-1sex6su > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Hsj5P .framer-1icxtij > *, .framer-Hsj5P .framer-1m25jen > *, .framer-Hsj5P .framer-zqtacd > *, .framer-Hsj5P .framer-1yodkfy > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-Hsj5P .framer-1bypstj > *, .framer-Hsj5P .framer-1fyq6gn > * { margin: 0px; margin-left: calc(45px / 2); margin-right: calc(45px / 2); } .framer-Hsj5P .framer-2cxc20 > *, .framer-Hsj5P .framer-l649gc > *, .framer-Hsj5P .framer-1d5ooge > *, .framer-Hsj5P .framer-bsclmc > *, .framer-Hsj5P .framer-hetsa3 > *, .framer-Hsj5P .framer-i91at1 > *, .framer-Hsj5P .framer-1be4g59 > *, .framer-Hsj5P .framer-stu0pm > *, .framer-Hsj5P .framer-3o7tto > *, .framer-Hsj5P .framer-9yhz8s > *, .framer-Hsj5P .framer-14de73o > *, .framer-Hsj5P .framer-gmh9ea > *, .framer-Hsj5P .framer-1tdfnop > *, .framer-Hsj5P .framer-p53dgc > *, .framer-Hsj5P .framer-16xfyd6 > *, .framer-Hsj5P .framer-12rblcq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Hsj5P .framer-xf1tm9 > *, .framer-Hsj5P .framer-1qvz7ki > *, .framer-Hsj5P .framer-1pt0war > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Hsj5P .framer-os3383 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-Hsj5P .framer-3d1hzl > *, .framer-Hsj5P .framer-1bso6tz > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-Hsj5P .framer-n4inkd > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-Hsj5P[data-border=\"true\"]::after, .framer-Hsj5P [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; }','.framer-Hsj5P[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-Hsj5P [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-Hsj5P[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-Hsj5P [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-Hsj5P[data-hide-scrollbars=\"true\"], .framer-Hsj5P [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 810px) and (max-width: 1279px) { .framer-Hsj5P.framer-75n7al { width: 810px; } .framer-Hsj5P.framer-1fxsa8w-container, .framer-Hsj5P.framer-1x61mo9-container, .framer-Hsj5P.framer-9fs021-container, .framer-Hsj5P.framer-br6vva-container { width: 80%; } .framer-Hsj5P .framer-19lepe3 { gap: 75px; padding: 100px 50px 0px 50px; } .framer-Hsj5P .framer-1p98o92 { width: 100%; } .framer-Hsj5P .framer-mlnptu { height: var(--framer-aspect-ratio-supported, 371px); } .framer-Hsj5P .framer-1icxtij { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex-direction: row; gap: 0px; height: min-content; max-width: 1280px; min-width: unset; padding: 75px 0px 150px 0px; width: 80%; } .framer-Hsj5P .framer-1es6py6-container { height: auto; min-width: 327px; order: 0; width: auto; } .framer-Hsj5P .framer-ao9zt4 { gap: 0px; padding: 0px 0px 150px 0px; } .framer-Hsj5P .framer-1bypstj, .framer-Hsj5P .framer-1fyq6gn { gap: 30px; padding: 75px 0px 75px 0px; } .framer-Hsj5P .framer-2cxc20 { left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 1; } .framer-Hsj5P .framer-1uhux00-container { left: unset; right: 0px; } .framer-Hsj5P .framer-464kx9, .framer-Hsj5P .framer-i9hf84 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Hsj5P .framer-1be4g59 { left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; } .framer-Hsj5P .framer-1pl7drr-container { bottom: -150px; left: -79px; } .framer-Hsj5P .framer-1sq59mm { border-bottom-right-radius: 30px; height: 436px; } .framer-Hsj5P .framer-pduc2o, .framer-Hsj5P .framer-1o1vqc3 { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; bottom: unset; height: 700px; will-change: var(--framer-will-change-override, transform); } .framer-Hsj5P .framer-1vy0dm7 { padding: 0px 60px 0px 60px; } .framer-Hsj5P .framer-1m25jen { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; max-width: 80%; min-width: unset; padding: 0px 0px 180px 0px; } .framer-Hsj5P .framer-zqtacd { flex-direction: row; gap: 0px; padding: 75px 0px 75px 0px; } .framer-Hsj5P .framer-1tks0lm-container { width: 70%; } .framer-Hsj5P .framer-os3383 { height: 480px; } .framer-Hsj5P .framer-3d1hzl { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: unset; box-shadow: 0px -30px 100px -70px var(--token-465f9296-aae3-4f90-88ac-eeb907303144, #2e4c5e); flex-direction: column; height: min-content; left: 50%; padding: 60px 0px 60px 0px; top: -180px; transform: translateX(-50%); width: 400px; } .framer-Hsj5P .framer-1bso6tz { flex: none; flex-direction: column; width: 379px; } .framer-Hsj5P .framer-j1jc65, .framer-Hsj5P .framer-9kuo42 { flex-direction: column; width: 100%; } .framer-Hsj5P .framer-zs4m4j, .framer-Hsj5P .framer-bxklyi { height: auto; } .framer-Hsj5P .framer-c5vh05 { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 180px; justify-content: center; left: calc(50.00000000000002% - 276px / 2); overflow: visible; padding: 0px; top: -60px; width: 276px; } .framer-Hsj5P .framer-dmdpc1 { border-top-left-radius: 30px; border-top-right-radius: 100px; bottom: unset; height: 438px; left: unset; position: relative; right: unset; top: unset; width: 180px; } .framer-Hsj5P .framer-1yodkfy { flex-direction: row; gap: 30px; max-width: unset; padding: 0px 0px 150px 0px; } .framer-Hsj5P .framer-bcralu-container { width: 400px; } .framer-Hsj5P .framer-1xtgntu { padding: 0px 0px 100px 0px; } .framer-Hsj5P .framer-144blpg { align-self: unset; height: min-content; } .framer-Hsj5P .framer-1sex6su { align-self: stretch; flex: none; height: auto; justify-content: center; width: min-content; } .framer-Hsj5P .framer-n4inkd { padding: 0px 0px 0px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Hsj5P .framer-19lepe3, .framer-Hsj5P .framer-1icxtij, .framer-Hsj5P .framer-ao9zt4, .framer-Hsj5P .framer-1bypstj, .framer-Hsj5P .framer-1fyq6gn, .framer-Hsj5P .framer-zqtacd, .framer-Hsj5P .framer-3d1hzl, .framer-Hsj5P .framer-1bso6tz, .framer-Hsj5P .framer-j1jc65, .framer-Hsj5P .framer-9kuo42, .framer-Hsj5P .framer-c5vh05, .framer-Hsj5P .framer-1yodkfy { gap: 0px; } .framer-Hsj5P .framer-19lepe3 > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-Hsj5P .framer-19lepe3 > :first-child, .framer-Hsj5P .framer-ao9zt4 > :first-child, .framer-Hsj5P .framer-3d1hzl > :first-child, .framer-Hsj5P .framer-1bso6tz > :first-child, .framer-Hsj5P .framer-j1jc65 > :first-child, .framer-Hsj5P .framer-9kuo42 > :first-child, .framer-Hsj5P .framer-c5vh05 > :first-child { margin-top: 0px; } .framer-Hsj5P .framer-19lepe3 > :last-child, .framer-Hsj5P .framer-ao9zt4 > :last-child, .framer-Hsj5P .framer-3d1hzl > :last-child, .framer-Hsj5P .framer-1bso6tz > :last-child, .framer-Hsj5P .framer-j1jc65 > :last-child, .framer-Hsj5P .framer-9kuo42 > :last-child, .framer-Hsj5P .framer-c5vh05 > :last-child { margin-bottom: 0px; } .framer-Hsj5P .framer-1icxtij > *, .framer-Hsj5P .framer-zqtacd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Hsj5P .framer-1icxtij > :first-child, .framer-Hsj5P .framer-1bypstj > :first-child, .framer-Hsj5P .framer-1fyq6gn > :first-child, .framer-Hsj5P .framer-zqtacd > :first-child, .framer-Hsj5P .framer-1yodkfy > :first-child { margin-left: 0px; } .framer-Hsj5P .framer-1icxtij > :last-child, .framer-Hsj5P .framer-1bypstj > :last-child, .framer-Hsj5P .framer-1fyq6gn > :last-child, .framer-Hsj5P .framer-zqtacd > :last-child, .framer-Hsj5P .framer-1yodkfy > :last-child { margin-right: 0px; } .framer-Hsj5P .framer-ao9zt4 > *, .framer-Hsj5P .framer-j1jc65 > *, .framer-Hsj5P .framer-9kuo42 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Hsj5P .framer-1bypstj > *, .framer-Hsj5P .framer-1fyq6gn > *, .framer-Hsj5P .framer-1yodkfy > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-Hsj5P .framer-3d1hzl > *, .framer-Hsj5P .framer-1bso6tz > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Hsj5P .framer-c5vh05 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-Hsj5P.framer-75n7al { width: 390px; } .framer-Hsj5P .framer-1xx364i-container, .framer-Hsj5P .framer-1p98o92, .framer-Hsj5P .framer-10fnldi { order: 0; } .framer-Hsj5P.framer-1fxsa8w-container, .framer-Hsj5P.framer-1x61mo9-container, .framer-Hsj5P.framer-9fs021-container, .framer-Hsj5P.framer-br6vva-container, .framer-Hsj5P .framer-bcralu-container { width: 100%; } .framer-Hsj5P .framer-1w8xiri, .framer-Hsj5P .framer-1q530yf, .framer-Hsj5P .framer-xoqloa, .framer-Hsj5P .framer-mb32np, .framer-Hsj5P .framer-1vny4ri { padding: 15px; } .framer-Hsj5P .framer-19lepe3 { order: 1; padding: 75px 0px 0px 0px; } .framer-Hsj5P .framer-7k7aaz { width: 298px; } .framer-Hsj5P .framer-1tpa7r3, .framer-Hsj5P .framer-1a1z0ph { order: 1; } .framer-Hsj5P .framer-5tnyam { flex-direction: column; order: 2; padding: 10px 0px 0px 0px; } .framer-Hsj5P .framer-mlnptu { aspect-ratio: unset; height: 200px; max-width: unset; width: 80%; } .framer-Hsj5P .framer-1icxtij { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: 15px; border-top-right-radius: 15px; height: min-content; justify-content: flex-start; max-width: unset; min-width: unset; order: 2; padding: 75px 75px 125px 75px; } .framer-Hsj5P .framer-n7uw2v-container { height: auto; width: auto; } .framer-Hsj5P .framer-9v6rbs { height: 200px; order: 3; } .framer-Hsj5P .framer-ao9zt4 { gap: 51px; order: 4; padding: 0px; } .framer-Hsj5P .framer-1bypstj { border-bottom-right-radius: 30px; border-top-left-radius: 600px; border-top-right-radius: unset; flex: 1 0 0px; flex-direction: column; gap: 0px; height: 664px; padding: 90px 0px 90px 0px; width: 1px; } .framer-Hsj5P .framer-7mp6r6, .framer-Hsj5P .framer-18o38hm { background-color: rgba(67, 95, 113, 0.75); } .framer-Hsj5P .framer-2cxc20 { justify-content: center; left: 50%; position: absolute; top: 45%; transform: translate(-50%, -50%); width: 80%; z-index: 1; } .framer-Hsj5P .framer-xf1tm9 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; width: 1px; } .framer-Hsj5P .framer-1uhux00-container { left: 50%; transform: translateX(-50%); } .framer-Hsj5P .framer-42jfzo { justify-content: flex-start; } .framer-Hsj5P .framer-1be4g59 { justify-content: center; left: 50%; position: absolute; top: 92px; transform: translateX(-50%); width: 80%; } .framer-Hsj5P .framer-1qvz7ki { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; width: 1px; } .framer-Hsj5P .framer-1fyq6gn { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: unset; border-top-right-radius: 600px; flex: 1 0 0px; flex-direction: column; gap: 0px; height: 664px; padding: 90px 0px 90px 0px; width: 1px; } .framer-Hsj5P .framer-1sq59mm { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: min-content; min-height: 530px; order: 6; overflow: hidden; will-change: var(--framer-will-change-override, transform); } .framer-Hsj5P .framer-pduc2o { bottom: unset; height: 100%; } .framer-Hsj5P .framer-1o1vqc3 { background-color: rgba(66, 95, 112, 0.75); bottom: unset; height: 100%; } .framer-Hsj5P .framer-1vy0dm7 { padding: 0px 40px 0px 40px; top: 108px; transform: translateX(-50%); } .framer-Hsj5P .framer-a9rlaj { order: 2; } .framer-Hsj5P .framer-1m25jen { background-color: unset; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; box-shadow: unset; max-width: unset; order: 5; padding: 0px; } .framer-Hsj5P .framer-zqtacd { align-content: center; align-items: center; gap: 0px; overflow: visible; padding: 25px 0px 50px 0px; } .framer-Hsj5P .framer-os3383 { background-color: unset; flex-direction: column; gap: 0px; order: 7; padding: 0px; width: 80%; } .framer-Hsj5P .framer-3d1hzl { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: -351px; flex-direction: column; height: min-content; left: 50%; max-width: unset; padding: 75px 0px 75px 0px; top: unset; transform: translateX(-50%); width: 100%; } .framer-Hsj5P .framer-1bso6tz { flex: none; flex-direction: column; gap: 25px; width: 100%; } .framer-Hsj5P .framer-j1jc65, .framer-Hsj5P .framer-9kuo42 { flex-direction: column; width: 298px; } .framer-Hsj5P .framer-zs4m4j, .framer-Hsj5P .framer-bxklyi { height: auto; order: 0; } .framer-Hsj5P .framer-1nxx2x8-container { height: 40px; } .framer-Hsj5P .framer-1yodkfy { max-width: unset; order: 8; padding: 400px 0px 90px 0px; width: 80%; } .framer-Hsj5P .framer-1xtgntu { flex-direction: column; gap: 30px; max-width: unset; order: 9; padding: 0px 0px 100px 0px; } .framer-Hsj5P .framer-144blpg { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-Hsj5P .framer-1sex6su { height: min-content; justify-content: center; padding: 0px; } .framer-Hsj5P .framer-10uy4t0 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-Hsj5P .framer-1pt0war { align-self: unset; height: min-content; } .framer-Hsj5P .framer-1w0y3nd { align-self: unset; flex: none; height: min-content; justify-content: center; width: 100%; } .framer-Hsj5P .framer-n4inkd { align-content: center; align-items: center; flex-direction: row; height: min-content; } .framer-Hsj5P .framer-1tndj4m { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Hsj5P .framer-5tnyam, .framer-Hsj5P .framer-ao9zt4, .framer-Hsj5P .framer-1bypstj, .framer-Hsj5P .framer-1fyq6gn, .framer-Hsj5P .framer-zqtacd, .framer-Hsj5P .framer-os3383, .framer-Hsj5P .framer-3d1hzl, .framer-Hsj5P .framer-1bso6tz, .framer-Hsj5P .framer-j1jc65, .framer-Hsj5P .framer-9kuo42, .framer-Hsj5P .framer-1xtgntu, .framer-Hsj5P .framer-n4inkd { gap: 0px; } .framer-Hsj5P .framer-5tnyam > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-Hsj5P .framer-5tnyam > :first-child, .framer-Hsj5P .framer-ao9zt4 > :first-child, .framer-Hsj5P .framer-1bypstj > :first-child, .framer-Hsj5P .framer-1fyq6gn > :first-child, .framer-Hsj5P .framer-zqtacd > :first-child, .framer-Hsj5P .framer-os3383 > :first-child, .framer-Hsj5P .framer-3d1hzl > :first-child, .framer-Hsj5P .framer-1bso6tz > :first-child, .framer-Hsj5P .framer-j1jc65 > :first-child, .framer-Hsj5P .framer-9kuo42 > :first-child, .framer-Hsj5P .framer-1xtgntu > :first-child { margin-top: 0px; } .framer-Hsj5P .framer-5tnyam > :last-child, .framer-Hsj5P .framer-ao9zt4 > :last-child, .framer-Hsj5P .framer-1bypstj > :last-child, .framer-Hsj5P .framer-1fyq6gn > :last-child, .framer-Hsj5P .framer-zqtacd > :last-child, .framer-Hsj5P .framer-os3383 > :last-child, .framer-Hsj5P .framer-3d1hzl > :last-child, .framer-Hsj5P .framer-1bso6tz > :last-child, .framer-Hsj5P .framer-j1jc65 > :last-child, .framer-Hsj5P .framer-9kuo42 > :last-child, .framer-Hsj5P .framer-1xtgntu > :last-child { margin-bottom: 0px; } .framer-Hsj5P .framer-ao9zt4 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } .framer-Hsj5P .framer-1bypstj > *, .framer-Hsj5P .framer-1fyq6gn > *, .framer-Hsj5P .framer-zqtacd > *, .framer-Hsj5P .framer-os3383 > *, .framer-Hsj5P .framer-j1jc65 > *, .framer-Hsj5P .framer-9kuo42 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Hsj5P .framer-3d1hzl > *, .framer-Hsj5P .framer-1xtgntu > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Hsj5P .framer-1bso6tz > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-Hsj5P .framer-n4inkd > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Hsj5P .framer-n4inkd > :first-child { margin-left: 0px; } .framer-Hsj5P .framer-n4inkd > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5830.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lZZ9WkSik\":{\"layout\":[\"fixed\",\"auto\"]},\"YRt7LSpLK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Frameree9lpAKv_=withCSS(Component,css,\"framer-Hsj5P\");export default Frameree9lpAKv_;Frameree9lpAKv_.displayName=\"Home\";Frameree9lpAKv_.defaultProps={height:5830.5,width:1280};addFonts(Frameree9lpAKv_,[{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:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3TsmaMH4V_gg.woff2\",weight:\"500\"},{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTsmaMH4V_gg.woff2\",weight:\"700\"},{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6fQT3v02QFg.woff2\",weight:\"400\"}]},...NavigationFonts,...FormsFonts,...BotOFonts,...CardDeBenefCioFonts,...CarouselFonts,...ReviewFonts,...SlideshowFonts,...PostFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameree9lpAKv_\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5830.5\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lZZ9WkSik\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YRt7LSpLK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "isNumber", "t", "isEasingList", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "t", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "f", "r", "clamp", "getEasingForSegment", "isFunction", "t", "isString", "e", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "t", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "c", "i", "h", "e", "u", "f", "l", "g", "glide", "o", "d", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "t", "P", "j", "testAnimation", "t", "C", "R", "H", "resolveElements", "t", "n", "createGeneratorEasing", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Y", "createAxisInfo", "createScrollInfo", "J", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Q", "ee", "resolveEdge", "isString", "isNumber", "te", "resolveOffset", "ne", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "oe", "ie", "se", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "t", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "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", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "autor", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "N1VQ2RhFr", "WFkjd4h49", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerEP5tdr86h", "withCSS", "EP5tdr86h_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "texto", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "IoWlB_t2_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "RichText2", "SVG", "css", "FramerfFm_3gGAP", "withCSS", "fFm_3gGAP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "background", "benef_cio", "height", "id", "texto", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZQbX3ysN0", "heeuu5W4i", "Uw_zbJ78Z", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerJU45j_9aT", "withCSS", "JU45j_9aT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "qPPTu2HJ5_default", "FormsFonts", "ETpR97KWO_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "BotOFonts", "N76CwO8bk_default", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithOptimizedAppearEffect", "Image2", "CardDeBenefCioFonts", "JU45j_9aT_default", "CarouselFonts", "Carousel", "MotionDivWithFX", "withFX", "ReviewFonts", "EP5tdr86h_default", "SlideshowFonts", "Slideshow", "PostFonts", "fFm_3gGAP_default", "ContainerWithFX", "MotionNavWithOptimizedAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "animation7", "getContainer", "transition5", "animation8", "transformTemplate1", "_", "t", "animation9", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation10", "animation11", "transition6", "animation12", "animation13", "transition7", "animation14", "animation15", "animation16", "animation17", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "hKiJPqNrc3bnx0g", "overlay", "loadMore", "args", "U5fr3JRFa3bnx0g", "onTap1wnntms", "xuZJpKh_t1wnntms", "xY3ZiubHN3bnx0g", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "overlay1", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "Link", "overlay2", "overlay3", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "SVG", "resolvedLinks1", "overlay4", "css", "Frameree9lpAKv_", "withCSS", "ee9lpAKv_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
