{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/14woiUIL9GO2C5RwHE2g/zlzdybvTlFyjtMcpVxeG/ADqykSl22.js", "ssg:https://framerusercontent.com/modules/1hdww8zaqQ6f5tTjpfHW/cL3VADdA9HS6m9KbXFfW/HL1_7W9Ci.js", "ssg:https://framerusercontent.com/modules/R2HLnLXiQ9rKRHRtXvpo/fqHta8Cw35xCFfNpRe61/jRSaCG1Iu.js", "ssg:https://framerusercontent.com/modules/Avf4uHPEYsZ3Zn67A8Y0/orU2rd2qVH8pSWQr7xgi/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/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;/**\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=>/*#__PURE__*/createRef());},[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(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.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);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.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     */let 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     * */let 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.onChange(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;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let 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\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (6e8cc59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Uncut Sans Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Uncut Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/4uxym7EpUVGW85zpYqWArvT2S9E.woff2\"}]}];export const css=['.framer-NpMCJ .framer-styles-preset-xf9ez7:not(.rich-text-wrapper), .framer-NpMCJ .framer-styles-preset-xf9ez7.rich-text-wrapper p { --framer-font-family: \"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1280px) { .framer-NpMCJ .framer-styles-preset-xf9ez7:not(.rich-text-wrapper), .framer-NpMCJ .framer-styles-preset-xf9ez7.rich-text-wrapper p { --framer-font-family: \"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1279px) and (min-width: 1024px) { .framer-NpMCJ .framer-styles-preset-xf9ez7:not(.rich-text-wrapper), .framer-NpMCJ .framer-styles-preset-xf9ez7.rich-text-wrapper p { --framer-font-family: \"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1023px) and (min-width: 810px) { .framer-NpMCJ .framer-styles-preset-xf9ez7:not(.rich-text-wrapper), .framer-NpMCJ .framer-styles-preset-xf9ez7.rich-text-wrapper p { --framer-font-family: \"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-NpMCJ .framer-styles-preset-xf9ez7:not(.rich-text-wrapper), .framer-NpMCJ .framer-styles-preset-xf9ez7.rich-text-wrapper p { --framer-font-family: \"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-NpMCJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6e8cc59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,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/14woiUIL9GO2C5RwHE2g/zlzdybvTlFyjtMcpVxeG/ADqykSl22.js\";const serializationHash=\"framer-kXS0q\";const variantClassNames={TkYmvT6sn:\"framer-v-1gd4eq2\"};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,text,width,...props})=>{var _ref;return{...props,cdeQ8fWTs:(_ref=text!==null&&text!==void 0?text:props.cdeQ8fWTs)!==null&&_ref!==void 0?_ref:\"Their attitude is amazing: we never feel like anything is a problem for them to solve for us. They adopt a very good approach to things and deal with any request promptly.\"};};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,cdeQ8fWTs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"TkYmvT6sn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/BUZWvxUx0EMogpry8Vm0FDlHUg.png\",srcSet:\"https://framerusercontent.com/images/BUZWvxUx0EMogpry8Vm0FDlHUg.png 751w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1gd4eq2\",className,classNames),\"data-framer-name\":\"Testimonial Card\",layoutDependency:layoutDependency,layoutId:\"TkYmvT6sn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jr1btt\",\"data-framer-name\":\"Testimonial Card\",layoutDependency:layoutDependency,layoutId:\"wzE70ak3q\",style:{borderBottomLeftRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ge0x0\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Ce8h7gRt8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9t99kv\",\"data-framer-name\":\"\u201C\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:91,layoutDependency:layoutDependency,layoutId:\"GDgrlcADQ\",svg:'<svg width=\"91\" height=\"80\" viewBox=\"-9 -9 91 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M72.82 11.1063C61.7137 11.1063 55.2566 20.1463 55.2566 35.6434H67.6543V61.472H41.8257V35.6434C41.8257 13.9474 53.9651 0 72.82 0V11.1063ZM31.4943 11.1063C20.388 11.1063 13.9309 20.1463 13.9309 35.6434H26.3286V61.472H0.5V35.6434C0.5 13.9474 12.6394 0 31.4943 0V11.1063Z\" fill=\"#C4C9D4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fqhj31\",\"data-framer-name\":\"Text Heading\",layoutDependency:layoutDependency,layoutId:\"dhUbsJgON\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xf9ez7\",\"data-styles-preset\":\"ADqykSl22\",children:\"Their attitude is amazing: we never feel like anything is a problem for them to solve for us. They adopt a very good approach to things and deal with any request promptly.\"})}),className:\"framer-1y50kco\",\"data-framer-name\":\"Text Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I4086:3050;2087:8466\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:cdeQ8fWTs,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xjk8d5\",\"data-framer-name\":\"Subtitle\",layoutDependency:layoutDependency,layoutId:\"Ryq4kSPTK\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||443)-0-107.99999999999999)/1)*1+0)+30.999999999999993),src:\"https://framerusercontent.com/images/ZSvKsMx5GPujo8rWx5d5WFZjU.png\"},className:\"framer-1xzwf2o\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"T0Sq65ADn\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\"},children:\"Chambers and Partners\"})}),className:\"framer-oe806z\",\"data-framer-name\":\"Chambers and Partners\",fonts:[\"CUSTOM;Uncut Sans Medium\"],layoutDependency:layoutDependency,layoutId:\"oRe59rbiJ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kXS0q.framer-1x8qwwb, .framer-kXS0q .framer-1x8qwwb { display: block; }\",\".framer-kXS0q.framer-1gd4eq2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 443px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 330px; }\",\".framer-kXS0q .framer-1jr1btt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-kXS0q .framer-13ge0x0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kXS0q .framer-9t99kv { aspect-ratio: 1.1375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); position: relative; width: 85px; }\",\".framer-kXS0q .framer-fqhj31 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kXS0q .framer-1y50kco { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-kXS0q .framer-xjk8d5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 8px; position: relative; width: 100%; }\",\".framer-kXS0q .framer-1xzwf2o { flex: none; height: 46px; position: relative; width: 46px; }\",\".framer-kXS0q .framer-oe806z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 133px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kXS0q.framer-1gd4eq2, .framer-kXS0q .framer-1jr1btt, .framer-kXS0q .framer-13ge0x0, .framer-kXS0q .framer-fqhj31, .framer-kXS0q .framer-xjk8d5 { gap: 0px; } .framer-kXS0q.framer-1gd4eq2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-kXS0q.framer-1gd4eq2 > :first-child, .framer-kXS0q .framer-1jr1btt > :first-child, .framer-kXS0q .framer-13ge0x0 > :first-child { margin-top: 0px; } .framer-kXS0q.framer-1gd4eq2 > :last-child, .framer-kXS0q .framer-1jr1btt > :last-child, .framer-kXS0q .framer-13ge0x0 > :last-child { margin-bottom: 0px; } .framer-kXS0q .framer-1jr1btt > *, .framer-kXS0q .framer-13ge0x0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-kXS0q .framer-fqhj31 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-kXS0q .framer-fqhj31 > :first-child, .framer-kXS0q .framer-xjk8d5 > :first-child { margin-left: 0px; } .framer-kXS0q .framer-fqhj31 > :last-child, .framer-kXS0q .framer-xjk8d5 > :last-child { margin-right: 0px; } .framer-kXS0q .framer-xjk8d5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 443\n * @framerIntrinsicWidth 330\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cdeQ8fWTs\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHL1_7W9Ci=withCSS(Component,css,\"framer-kXS0q\");export default FramerHL1_7W9Ci;FramerHL1_7W9Ci.displayName=\"FULL TESTIMONIAL CARD\";FramerHL1_7W9Ci.defaultProps={height:443,width:330};addPropertyControls(FramerHL1_7W9Ci,{cdeQ8fWTs:{defaultValue:\"Their attitude is amazing: we never feel like anything is a problem for them to solve for us. They adopt a very good approach to things and deal with any request promptly.\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerHL1_7W9Ci,[{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:\"Uncut Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/4uxym7EpUVGW85zpYqWArvT2S9E.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHL1_7W9Ci\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"330\",\"framerVariables\":\"{\\\"cdeQ8fWTs\\\":\\\"text\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"443\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HL1_7W9Ci.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-wPJyI\";const variantClassNames={W1QHzTMad:\"framer-v-13hl357\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"W1QHzTMad\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-13hl357\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"W1QHzTMad\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ckpmu5\",\"data-framer-name\":\"Frame 1073713921\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:89,intrinsicWidth:360,layoutDependency:layoutDependency,layoutId:\"zYvupNnRF\",svg:'<svg width=\"360\" height=\"89\" viewBox=\"0 0 360 89\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M296.792 21.0897V68.079H319.946C326.416 68.079 330.161 67.0575 332.885 64.674C336.29 61.6095 337.993 56.1615 337.993 44.5844C337.993 33.0073 336.29 27.5593 332.885 24.4948C330.161 22.1113 326.416 21.0897 319.946 21.0897H296.792ZM328.459 44.5844C328.459 54.7995 327.778 57.183 325.735 58.545C324.373 59.5665 322.67 59.907 319.265 59.907H306.326V28.9213H319.265C322.67 28.9213 324.373 28.9213 325.735 30.2833C327.778 31.9858 328.459 34.3693 328.459 44.5844ZM349.91 78.4657H281.979V10.5342H349.91V78.4657ZM226.48 28.9213V21.0897H266.659V36.0718H258.144V28.9213H241.8V40.1579H254.739V47.6489H241.8V60.2475H258.487V52.0754H266.997V68.079H226.483V60.2475H232.949V28.9213H226.48ZM190.046 55.821C190.046 60.9285 190.384 64.674 191.065 67.7385H200.261C199.918 65.355 199.58 60.9285 199.58 55.14C199.237 48.3299 197.194 47.3084 192.427 46.2869C197.875 45.2654 200.261 42.8819 200.261 34.3693C200.261 27.5593 199.237 24.8353 197.194 23.1328C195.832 21.7708 193.451 21.0897 189.703 21.0897H161.101V68.079H170.635V49.6919H183.917C186.641 49.6919 187.66 50.0324 188.684 50.7134C189.708 51.3944 190.046 52.4159 190.046 55.821ZM170.635 42.2009V29.2618H185.96C188.003 29.2618 188.684 29.6023 189.022 29.9428C189.703 30.6238 190.384 31.6453 190.384 35.7313C190.384 39.8174 189.703 41.1794 189.022 41.8604C188.684 42.2009 188.003 42.5414 185.96 42.5414L170.635 42.2009ZM213.881 78.4657H145.781V10.5342H213.71V78.4657H213.881ZM128.075 60.2475V68.079H95.7243V60.2475H107.301V28.9213H95.7243V21.0897H128.072V28.9213H116.495V60.2475H128.075ZM73.4228 21.0897H64.5697L58.1002 58.2045L50.6091 23.8138C50.2686 21.4302 49.2471 21.0897 47.2041 21.0897H42.4371C40.394 21.0897 39.3725 21.7708 39.032 23.8138L31.541 58.2045L25.0714 21.0897H15.5374L24.7309 65.6955C25.0714 67.7385 25.7525 68.079 28.136 68.079H34.6055C36.6485 68.079 37.3295 67.7385 38.0105 65.6955L45.1611 33.3478L52.3116 65.6955C52.6521 67.7385 53.3331 68.079 55.7166 68.079H61.8457C63.8887 68.079 64.9102 67.7385 65.2507 65.6955L73.4228 21.0897ZM78.1898 78.4657H10.0894V10.5342H78.0209V78.4657H78.1898Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wPJyI.framer-ef4qvl, .framer-wPJyI .framer-ef4qvl { display: block; }\",\".framer-wPJyI.framer-13hl357 { height: 64px; overflow: hidden; position: relative; width: 259px; }\",\".framer-wPJyI .framer-ckpmu5 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 259\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjRSaCG1Iu=withCSS(Component,css,\"framer-wPJyI\");export default FramerjRSaCG1Iu;FramerjRSaCG1Iu.displayName=\"wiredLogo\";FramerjRSaCG1Iu.defaultProps={height:64,width:259};addFonts(FramerjRSaCG1Iu,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjRSaCG1Iu\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"64\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"259\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jRSaCG1Iu.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Footer from\"#framer/local/canvasComponent/AGhCU2TiL/AGhCU2TiL.js\";import FULLTESTIMONIALCARD from\"#framer/local/canvasComponent/HL1_7W9Ci/HL1_7W9Ci.js\";import WiredLogo from\"#framer/local/canvasComponent/jRSaCG1Iu/jRSaCG1Iu.js\";import Navigation from\"#framer/local/canvasComponent/WZNmo1bXQ/WZNmo1bXQ.js\";import*as sharedStyle from\"#framer/local/css/c4uwAyyNH/c4uwAyyNH.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const RichTextWithFX=withFX(RichText);const MotionAWithFX=withFX(motion.a);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const FULLTESTIMONIALCARDFonts=getFonts(FULLTESTIMONIALCARD);const SlideshowFonts=getFonts(Slideshow);const WiredLogoFonts=getFonts(WiredLogo);const FooterFonts=getFonts(Footer);const breakpoints={cpPKxUGLY:\"(min-width: 1024px) and (max-width: 1279px)\",DgyPxAtU6:\"(min-width: 1280px) and (max-width: 1439px)\",JH2aKH3U6:\"(min-width: 810px) and (max-width: 1023px)\",o9gRi4KJy:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BQJcg\";const variantClassNames={cpPKxUGLY:\"framer-v-19r1vvv\",DgyPxAtU6:\"framer-v-1ez67iy\",JH2aKH3U6:\"framer-v-1qkjto7\",o9gRi4KJy:\"framer-v-1a8ojbs\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition2={delay:.2,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:.3,duration:.5,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 transition4={delay:.4,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition5={delay:.6,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition6={delay:.5,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-150,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:-150,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition7={delay:.6,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:50};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition8={delay:.9,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:-150};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:150};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:150,y:0};const animation26={opacity:1,rotate:0,rotateX:0,rotateY:-180,scale:1,skewX:0,skewY:0,x:0,y:0};const animation27={opacity:1,rotate:0,rotateX:0,rotateY:-180,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:150};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Laptop small\":\"cpPKxUGLY\",Desktop:\"WQLkyLRf1\",Laptop:\"DgyPxAtU6\",Phone:\"o9gRi4KJy\",Tablet:\"JH2aKH3U6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"JH2aKH3U6\",\"o9gRi4KJy\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"cpPKxUGLY\")return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mnj98d\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a2iji8\",\"data-framer-name\":\"Nav\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JH2aKH3U6:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`},o9gRi4KJy:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`max(${componentViewport?.width||\"100vw\"} - 96px, 1px)`,y:(componentViewport?.y||0)+0+0+0+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i3i9cd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JH2aKH3U6:{style:{width:\"100%\"},variant:\"GT_Lj2hRF\"},o9gRi4KJy:{style:{width:\"100%\"},variant:\"GT_Lj2hRF\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"iMajWt1aS\",layoutId:\"iMajWt1aS\",style:{height:\"100%\",width:\"100%\"},variant:\"FTFMRlMCu\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:960,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/aMmSLmkQKfefJcZvu1jyeTDQyk.png\",srcSet:\"https://framerusercontent.com/images/aMmSLmkQKfefJcZvu1jyeTDQyk.png?scale-down-to=512 512w,https://framerusercontent.com/images/aMmSLmkQKfefJcZvu1jyeTDQyk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aMmSLmkQKfefJcZvu1jyeTDQyk.png 1920w\"},className:\"framer-1w9ftbl\",\"data-framer-name\":\"HERO\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c84n21\",\"data-framer-name\":\"Title Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pfsw95\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c3ihhj\",\"data-framer-name\":\"1st line\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o9gRi4KJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 25, 28)\"},children:\"El\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 25, 28)\"},children:\"El\"})}),className:\"framer-19xipng\",\"data-framer-appear-id\":\"19xipng\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1i5yboc\",\"data-border\":true,\"data-framer-appear-id\":\"1i5yboc\",\"data-framer-name\":\"1er\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o9gRi4KJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 136, 255)\"},children:\"1\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 136, 255)\"},children:\"1\"})}),className:\"framer-18fl9rp\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o9gRi4KJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 136, 255)\"},children:\"er\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 136, 255)\"},children:\"er\"})}),className:\"framer-11j890\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o9gRi4KJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 25, 28)\"},children:\"NewLaw\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 25, 28)\"},children:\"NewLaw\"})}),className:\"framer-105v8qp\",\"data-framer-appear-id\":\"105v8qp\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o9gRi4KJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 25, 28)\"},children:\"de Panam\\xe1\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 25, 28)\"},children:\"de Panam\\xe1\"})}),className:\"framer-7vy0b7\",\"data-framer-appear-id\":\"7vy0b7\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],initial:animation5,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"Somos los pioneros del Derecho Disruptivo (NewLaw) en Latinoam\\xe9rica, transformando los servicios legales en una experiencia accesible, eficiente y gratificante\"})}),className:\"framer-1bpx9ll\",\"data-framer-appear-id\":\"1bpx9ll\",\"data-framer-name\":\"Subtitle\",fonts:[\"CUSTOM;Uncut Sans Regular\"],initial:animation7,optimized:true,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14igvh7\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"k0Mihu3cN\"},nodeId:\"ymQbHzJJq\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1lnf2na framer-lux5qc\",\"data-framer-appear-id\":\"1lnf2na\",\"data-framer-name\":\"Button\",initial:animation9,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(231, 242, 253)\"},children:\"Hablemos\"})}),className:\"framer-apydl2\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;Uncut Sans Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vd2mc8\",\"data-framer-name\":\"Arrow right\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-czwaw4\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"-1 -1 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.333374 4.99998H9.66671M9.66671 4.99998L5.00004 0.333313M9.66671 4.99998L5.00004 9.66665\" stroke=\"#E7F2FD\" stroke-width=\"1.6\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-n7qiih hidden-1qkjto7 hidden-1a8ojbs\",\"data-framer-name\":\"Carpeta\",fill:\"black\",intrinsicHeight:81,intrinsicWidth:852,svg:'<svg width=\"852\" height=\"81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M.5 81h851.422a32 32 0 0 1-18.053-13.32l-34.588-53.137A32 32 0 0 0 772.462 0H5.674A42.42 42.42 0 0 0 .5.316V81Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wcwayf\",\"data-framer-name\":\"FEATURES\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d0b99\",\"data-framer-name\":\"Side Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-152ec6k\",\"data-framer-name\":\"Text Content Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"Servicios\"})}),className:\"framer-10fw6v2\",\"data-framer-name\":\"Subheading\",fonts:[\"CUSTOM;Uncut Sans Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"\\xbfC\\xf3mo podemos ayudarte?\"})}),className:\"framer-45jxsi\",\"data-framer-name\":\"\\xbfC\\xf3mo podemos ayudarte?\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"Somos una firma de abogados Full Service\"})}),className:\"framer-ah2ld5\",\"data-framer-name\":\"Subheading\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pBzWZwEdr\"},nodeId:\"aNUiZegjJ\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3iof1z framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(231, 242, 253)\"},children:\"Ver Todos Los Servicios\"})}),className:\"framer-1k3d6we\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15z5kgd\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n188hy\",\"data-framer-name\":\"Features 1\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pBzWZwEdr\"},nodeId:\"EQix9M0z2\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k7mxcw framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xni73d\",\"data-framer-name\":\"Toggle left\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-h28e0x\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"24\" viewBox=\"-2 -2 34 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.3334 0.666626H9.66671C4.51205 0.666626 0.333374 4.8453 0.333374 9.99996C0.333374 15.1546 4.51205 19.3333 9.66671 19.3333H20.3334C25.488 19.3333 29.6667 15.1546 29.6667 9.99996C29.6667 4.8453 25.488 0.666626 20.3334 0.666626Z\" stroke=\"#0088FF\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.66671 14C11.8758 14 13.6667 12.2091 13.6667 9.99996C13.6667 7.79082 11.8758 5.99996 9.66671 5.99996C7.45757 5.99996 5.66671 7.79082 5.66671 9.99996C5.66671 12.2091 7.45757 14 9.66671 14Z\" stroke=\"#0088FF\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h95avw\",\"data-framer-name\":\"Body\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sqgmvc\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Asesor\\xeda Legal para Negocios Disruptivos\"})}),className:\"framer-1ve0b59\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:\"Soluciones legales innovadoras y personalizadas para startups y empresas en tecnolog\\xeda y negocios disruptivos.\"})}),className:\"framer-enm0x\",\"data-framer-name\":\"Body text for whatever you\u2019d like to say. Add main takeaway points, quotes, anecdotes, or even a very very short story.\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pBzWZwEdr\"},nodeId:\"Q15hPDrqr\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mux1po framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s6gjxk\",\"data-framer-name\":\"File\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qh6233\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"32\" viewBox=\"-2 -2 26 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3334 0.666626H3.00004C2.2928 0.666626 1.61452 0.947577 1.11442 1.44767C0.614325 1.94777 0.333374 2.62605 0.333374 3.33329V24.6666C0.333374 25.3739 0.614325 26.0521 1.11442 26.5522C1.61452 27.0523 2.2928 27.3333 3.00004 27.3333H19C19.7073 27.3333 20.3856 27.0523 20.8857 26.5522C21.3858 26.0521 21.6667 25.3739 21.6667 24.6666V9.99996M12.3334 0.666626L21.6667 9.99996M12.3334 0.666626L12.3334 9.99996H21.6667\" stroke=\"#0088FF\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sp2jps\",\"data-framer-name\":\"Body\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xnnr6o\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Tramitolog\\xeda, Permisos \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"y Licencias\"})]}),className:\"framer-1obgg69\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:\"Simplificamos y agilizamos los tr\\xe1mites legales y permisos para tu negocio, asegurando cumplimiento y eficiencia.\"})}),className:\"framer-536c8w\",\"data-framer-name\":\"Body text for whatever you\u2019d like to say. Add main takeaway points, quotes, anecdotes, or even a very very short story.\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-60debn\",\"data-framer-name\":\"Features 2\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pBzWZwEdr\"},nodeId:\"wIRMhUDTA\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jdsg6d framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eizk45\",\"data-framer-name\":\"Check circle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-blki0i\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" viewBox=\"-2 -2 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.3333 12.7734V14C27.3317 16.8753 26.4006 19.6729 24.6791 21.9758C22.9575 24.2787 20.5377 25.9633 17.7804 26.7786C15.0232 27.5938 12.0763 27.4959 9.37925 26.4995C6.6822 25.503 4.3795 23.6615 2.81457 21.2494C1.24965 18.8374 0.506348 15.9841 0.695528 13.1151C0.884709 10.2461 1.99624 7.51512 3.86433 5.32945C5.73243 3.14378 8.25701 1.62053 11.0615 0.986884C13.8661 0.353236 16.8003 0.643139 19.4266 1.81336M27.3333 3.33336L14 16.68L9.99997 12.68\" stroke=\"#0088FF\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wi4vsu\",\"data-framer-name\":\"Body\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u7oosv\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Asesor\\xeda Corporativa Integral\"})}),className:\"framer-15bhasz\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:\"Asesor\\xeda full-service para todo tipo de empresas, desde la estructuraci\\xf3n de sociedades y contratos hasta fusiones y adquisiciones.\"})}),className:\"framer-4srg2t\",\"data-framer-name\":\"Body text for whatever you\u2019d like to say. Add main takeaway points, quotes, anecdotes, or even a very very short story.\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pBzWZwEdr\"},nodeId:\"igunPBzfp\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j4ehrv framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-169k25z\",\"data-framer-name\":\"User check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-k8li0t\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"28\" viewBox=\"-2 -2 34 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.3334 24V21.3333C20.3334 19.9188 19.7715 18.5623 18.7713 17.5621C17.7711 16.5619 16.4145 16 15 16H5.66671C4.25222 16 2.89567 16.5619 1.89547 17.5621C0.895277 18.5623 0.333374 19.9188 0.333374 21.3333V24M21.6667 10.6667L24.3334 13.3333L29.6667 8M15.6667 5.33333C15.6667 8.27885 13.2789 10.6667 10.3334 10.6667C7.38786 10.6667 5.00004 8.27885 5.00004 5.33333C5.00004 2.38781 7.38786 0 10.3334 0C13.2789 0 15.6667 2.38781 15.6667 5.33333Z\" stroke=\"#0088FF\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5og4y4\",\"data-framer-name\":\"Body\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8brf6g\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Litigios y Resoluci\\xf3n \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"de Conflictos\"})]}),className:\"framer-rr8x1p\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:\"Representaci\\xf3n legal en litigios y resoluci\\xf3n de conflictos, enfoc\\xe1ndonos en una defensa estrat\\xe9gica y eficaz para proteger tus intereses.\"})}),className:\"framer-11z32gz\",\"data-framer-name\":\"Body text for whatever you\u2019d like to say. Add main takeaway points, quotes, anecdotes, or even a very very short story.\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13g0vlh\",\"data-framer-name\":\"Features 3\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pBzWZwEdr\"},nodeId:\"Tf7o7PcH4\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ki6dp4 framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1udjcne\",\"data-framer-name\":\"Check circle\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mwyld7-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e7e7b9c8-e5cc-4f03-a405-daa1c6f2910f, rgb(0, 136, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ShieldCheck\",id:\"eudrH9xtM\",layoutId:\"eudrH9xtM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nyhd74\",\"data-framer-name\":\"Body\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uxmfk\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Cumplimiento y Gesti\\xf3n de Riesgo\"})}),className:\"framer-1ig7k4q\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:'Brindamos soluciones integrales de debida diligencia y gesti\\xf3n de riesgo para proteger tus inversiones y asegurar el cumplimiento normativo. Incluye an\\xe1lisis de riesgo pa\\xeds para inversionistas, \"reputational self due diligence\", auditor\\xedas forenses, Data Privacy Compliance y soluciones AML.'})}),className:\"framer-rrkjtm\",\"data-framer-name\":\"Body text for whatever you\u2019d like to say. Add main takeaway points, quotes, anecdotes, or even a very very short story.\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10c6xne\",\"data-framer-name\":\"Beneficios Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17qzfgw\",\"data-framer-name\":\"Heading Sections\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s9zpf5\",\"data-framer-name\":\"Text Content Heading\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"Beneficios\"})}),className:\"framer-fyrge0\",\"data-framer-name\":\"Subheading\",fonts:[\"CUSTOM;Uncut Sans Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"108%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Lo que nos hace diferentes\"})}),className:\"framer-siye60\",\"data-framer-name\":\"Lo que nos hace diferentes\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1brhyru\",\"data-framer-name\":\"Block\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y3u0jp\",\"data-framer-name\":\"Feature 1\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vg7hq4\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:\"Cobramos por\"}),\" resultados, \"]}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"no por horas\"})]}),className:\"framer-1nq6pof\",\"data-framer-name\":\"Cobramos por resultados, no por horas\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:\"Nos alejamos del modelo de cobro por horas para enfocarnos en los resultados. Pagas por el valor real y tangible que aportamos, asegurando que nuestra colaboraci\\xf3n sea una inversi\\xf3n al crecimiento. \"})}),className:\"framer-1bnuhqi\",\"data-framer-name\":\"Nos alejamos del modelo de cobro por horas para enfocarnos en los resultados. Pagas por el valor real y tangible que aportamos, asegurando que nuestra colaboraci\\xf3n sea una inversi\\xf3n al crecimiento.\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r1lb3w\",\"data-framer-name\":\"ganchito\",fill:\"black\",intrinsicHeight:27,intrinsicWidth:61,svg:'<svg width=\"61\" height=\"27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2 12c.14 2.663-.002 14.833 4.222 13C18.131 19.832 28.856 12.202 40.89 7.111 46.686 4.658 52.93 3.517 59 2\" stroke=\"#BDEE44\" stroke-width=\"3\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpPKxUGLY:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2368+0+404.8+0+0+32),positionX:\"center\",positionY:\"center\",sizes:\"516.8px\",src:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png\",srcSet:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png 2584w\"}},DgyPxAtU6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2368+0+404.8+0+0+32),positionX:\"center\",positionY:\"center\",sizes:\"516.8px\",src:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png\",srcSet:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png 2584w\"}},JH2aKH3U6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2782.4+0+332.8+0+0+32+362),positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px)`,src:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png\",srcSet:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png 2584w\"}},o9gRi4KJy:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3558.4+0+308.8+0+0+24+300.8),positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,src:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png\",srcSet:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png 2584w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2368+0+404.8+0+0+32),positionX:\"center\",positionY:\"center\",sizes:\"646px\",src:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png\",srcSet:\"https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/m0U9wRsz3ZnXa6sA0j3oSxk.png 2584w\"},className:\"framer-a0jdx2\",\"data-framer-name\":\"IMG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dr31lq\",\"data-framer-name\":\"Feature 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpPKxUGLY:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2368+0+404.8+0+467+32),positionX:\"center\",positionY:\"center\",sizes:\"516.8px\",src:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png\",srcSet:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png 2584w\"}},DgyPxAtU6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2368+0+404.8+0+467+32),positionX:\"center\",positionY:\"center\",sizes:\"516.8px\",src:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png\",srcSet:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png 2584w\"}},JH2aKH3U6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2782.4+0+332.8+0+929+32+362),positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px)`,src:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png\",srcSet:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png 2584w\"}},o9gRi4KJy:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3558.4+0+308.8+0+851.8+24+300.8),positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,src:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png\",srcSet:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png 2584w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2368+0+404.8+0+567+32),positionX:\"center\",positionY:\"center\",sizes:\"646px\",src:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png\",srcSet:\"https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/dmkHX2wkAlJvpYk4biHKrTJQTA.png 2584w\"},className:\"framer-1k1mp5y\",\"data-framer-name\":\"IMG\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t3oj9u\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:[\"Procesos \\xe1giles, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(46, 49, 56)\"},children:\"innovadores \"})]}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgb(46, 49, 56)\"},children:\"y transparentes\"})]}),className:\"framer-1o9siyq\",\"data-framer-name\":\"Procesos \\xe1giles innovadores y transparentes\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o9gRi4KJy:{style:{rotate:-128}}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14qdmvl\",\"data-framer-name\":\"ARROW\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:75,intrinsicWidth:71,svg:'<svg width=\"71\" height=\"75\" viewBox=\"0 0 71 75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.8588 48.9543C17.6412 54.7552 61.7282 56.2532 67.517 22.015\" stroke=\"#B6EB0A\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n<path d=\"M8.06641 56.0903C7.20631 53.5951 5.422 47.8034 5.16557 44.598\" stroke=\"#B6EB0A\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n<path d=\"M5.59583 43.9856C8.43572 43.664 14.9715 42.6954 18.3956 41.3938\" stroke=\"#B6EB0A\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:\"Transformamos la espera en acci\\xf3n con soluciones legales \\xe1giles, eficientes y personalizadas gracias a nuestra tecnolog\\xeda innovadora.\"})}),className:\"framer-rahj4o\",\"data-framer-name\":\"Nos alejamos del modelo de cobro por horas para enfocarnos en los resultados. Pagas por el valor real y tangible que aportamos, asegurando que nuestra colaboraci\\xf3n sea una inversi\\xf3n al crecimiento.\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jp5pgh\",\"data-framer-name\":\"Feature 3\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-me0fkj\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(46, 49, 56)\"},children:\"Dise\\xf1o Legal\"}),\" Personalizado\"]})}),className:\"framer-1u6p2ux\",\"data-framer-name\":\"Dise\\xf1o Legal Personalizado\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(115, 123, 139)\"},children:\"Te ofrecemos un enfoque centrado en resolver problemas legales, bas\\xe1ndonos en tus necesidades y objetivos para crear sistemas funcionales, \\xfatiles y atractivos.\"})}),className:\"framer-rhkfvc\",\"data-framer-name\":\"Te ofrecemos un enfoque centrado en resolver problemas legales, bas\\xe1ndonos en tus necesidades y objetivos para crear sistemas funcionales, \\xfatiles y atractivos.\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s2k1re\",\"data-framer-name\":\"ACCENT\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"41\" viewBox=\"0 0 40 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.8442 8.07961C15.737 7.428 15.6563 6.78379 15.6042 6.1395C15.5256 5.17307 15.5742 4.19925 15.5463 3.23283C15.5342 2.82283 15.4863 1.75391 15.5056 1.60016C15.6806 0.26034 16.7356 0.0553148 17.0442 0.0187077C17.1934 -0.00325659 18.7263 -0.178892 19.057 1.56361C19.4627 3.69414 19.5927 5.83929 19.4492 7.94054C19.7842 9.72697 20.357 11.506 21.1135 13.1168C24.1235 19.523 29.8592 20.1453 36.0734 20.0868C37.0292 20.0721 37.8228 20.8409 37.8728 21.8146C37.9228 22.7957 37.2113 23.645 36.2599 23.7328C32.7863 24.0769 26.6234 26.9323 24.4927 29.9048C24.047 30.5272 23.7877 32.0281 23.4449 33.4997C22.9663 35.5424 22.397 37.563 21.7592 38.4123C21.6635 38.5441 20.4999 39.8913 20.1527 40.089C19.3184 40.5575 18.6506 40.2866 18.2713 40.0377C17.892 39.7887 17.4627 39.2982 17.2913 38.4855C17.112 37.6362 17.2635 35.8937 17.2356 35.5203C17.1342 34.1658 16.8699 31.5082 16.3306 29.2239C16.0399 27.9939 15.7299 26.8591 15.217 26.2953C13.3185 24.2087 10.2827 24.5162 7.72632 24.8604C7.43274 24.897 7.13918 24.9409 6.84632 24.9775C5.8056 25.2923 4.70058 25.5266 3.53272 25.6657C1.76915 25.878 1.47917 24.216 1.46345 24.1062C1.4306 23.8646 1.30844 22.62 2.63773 22.1221C2.78273 22.0709 3.85274 21.8293 4.26488 21.7341C4.83917 21.6023 5.41987 21.4998 6.00273 21.4047C12.0234 19.4864 15.2935 14.0978 15.8442 8.07961ZM17.9106 14.7349C20.1835 19.5524 23.6327 21.8805 27.7213 22.9348H27.7206C25.1677 24.3039 22.8456 26.0172 21.6149 27.7377C21.1477 28.3893 20.7192 29.6998 20.3327 31.1714C20.1234 29.8023 19.8406 28.3453 19.467 27.1007C19.042 25.6803 18.4699 24.5016 17.8313 23.7988C16.5984 22.4443 15.0513 21.6902 13.3877 21.3168C15.3791 19.5084 16.8892 17.2534 17.9106 14.7349Z\" fill=\"#B6EB0A\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpPKxUGLY:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2368+0+404.8+0+934+32),positionX:\"center\",positionY:\"center\",sizes:\"491.018px\",src:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png\",srcSet:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png 2458w\"}},DgyPxAtU6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2368+0+404.8+0+934+32),positionX:\"center\",positionY:\"center\",sizes:\"491.018px\",src:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png\",srcSet:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png 2458w\"}},JH2aKH3U6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2782.4+0+332.8+0+1858+32+362),positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px)`,src:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png\",srcSet:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png 2458w\"}},o9gRi4KJy:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3558.4+0+308.8+0+1703.6+24+254.4),positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 48px)`,src:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png\",srcSet:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png 2458w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2368+0+404.8+0+1134+32),positionX:\"center\",positionY:\"center\",sizes:\"615px\",src:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png\",srcSet:\"https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VdvkSCdqhDOSoKFZqcoqsL0xg.png 2458w\"},className:\"framer-11sbs4n\",\"data-framer-name\":\"IMG\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2qk4x0\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11g7uzo\",\"data-framer-name\":\"Heading Sections\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1owi736\",\"data-framer-name\":\"Text Content Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"Reconocimientos\"})}),className:\"framer-10hsqg4\",\"data-framer-name\":\"Subheading\",fonts:[\"CUSTOM;Uncut Sans Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpPKxUGLY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4234.8+0+0+96+96),sizes:\"270px\",src:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png\",srcSet:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png 916w\"}},DgyPxAtU6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4234.8+0+0+96+80),sizes:\"270px\",src:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png\",srcSet:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png 916w\"}},JH2aKH3U6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5964.200000000001+0+0+96+96),sizes:\"200px\",src:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png\",srcSet:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png 916w\"}},o9gRi4KJy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6470.200000000001+0+0+0+96),sizes:\"200px\",src:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png\",srcSet:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png 916w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4535.8+0+0+96+96),sizes:\"270px\",src:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png\",srcSet:\"https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iPLljzJUS0jBEy2NU5bJLAl1qXA.png 916w\"},className:\"framer-1oxibzy\",\"data-framer-name\":\"Firm-Logo-(2 1\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12fvqr3\",\"data-framer-name\":\"Carrusel\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13sf8p1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpPKxUGLY:{itemAmount:2,paddingPerSide:false},DgyPxAtU6:{progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-60,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false}},JH2aKH3U6:{itemAmount:1,paddingPerSide:false},o9gRi4KJy:{itemAmount:1,paddingPerSide:false}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,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:200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",id:\"Dk66MFXCV\",intervalControl:4.5,itemAmount:3,layoutId:\"Dk66MFXCV\",padding:0,paddingBottom:0,paddingLeft:16,paddingPerSide:true,paddingRight:16,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-69,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:436,width:\"325px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zw71fs-container\",children:/*#__PURE__*/_jsx(FULLTESTIMONIALCARD,{cdeQ8fWTs:\"Their attitude is amazing: we never feel like anything is a problem for them to solve for us. They adopt a very good approach to things and deal with any request promptly.\",height:\"100%\",id:\"g_9QBLiyW\",layoutId:\"g_9QBLiyW\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:436,width:\"325px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xivtdj-container\",children:/*#__PURE__*/_jsx(FULLTESTIMONIALCARD,{cdeQ8fWTs:\"Vel\\xf3 Legal has consistently provided professional and high-quality legal services. Their expertise and dedication have been invaluable in managing both my business and personal affairs.\",height:\"100%\",id:\"YETVRWnaH\",layoutId:\"YETVRWnaH\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:436,width:\"325px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gds0jj-container\",children:/*#__PURE__*/_jsx(FULLTESTIMONIALCARD,{cdeQ8fWTs:\"Vel\\xf3 Legal stood out for its deep knowledge of the entrepreneurship ecosystem in Panama and its specialisation in intellectual property for intangible software.\",height:\"100%\",id:\"tdpFVzV8m\",layoutId:\"tdpFVzV8m\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:436,width:\"325px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-q9i1gl-container\",children:/*#__PURE__*/_jsx(FULLTESTIMONIALCARD,{cdeQ8fWTs:\"Carolina De La Guardia is a great attorney with a focus on problem solving.\",height:\"100%\",id:\"tQruYeLix\",layoutId:\"tQruYeLix\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:436,width:\"325px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rg81af-container\",children:/*#__PURE__*/_jsx(FULLTESTIMONIALCARD,{cdeQ8fWTs:\"Carolina De La Guardia is one of the best attorneys in Panama.\",height:\"100%\",id:\"plS7xWdfv\",layoutId:\"plS7xWdfv\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:436,width:\"325px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-128plp5-container\",children:/*#__PURE__*/_jsx(FULLTESTIMONIALCARD,{cdeQ8fWTs:\"Liz Ramsey is always willing and very concerned about solving whatever issues we put to her.\",height:\"100%\",id:\"uh0LTKOQv\",layoutId:\"uh0LTKOQv\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lw414s\",\"data-framer-name\":\"Heading Sections\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c698mq\",\"data-framer-name\":\"reconocidos por\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qfpsnf\",\"data-styles-preset\":\"c4uwAyyNH\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hemos sido reconocidos por\"})}),className:\"framer-1uoix0z\",\"data-framer-name\":\"Subheading\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15d528s\",\"data-framer-name\":\"logo wired\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpPKxUGLY:{height:44,width:\"177.9775px\",y:(componentViewport?.y||0)+0+0+0+4234.8+0+934+120+54.80000000000001+0+0},DgyPxAtU6:{y:(componentViewport?.y||0)+0+0+0+4234.8+0+968+120+54.80000000000001+0+0},JH2aKH3U6:{height:44,width:\"177.9775px\",y:(componentViewport?.y||0)+0+0+0+5964.200000000001+0+860.7407407407408+120+54.80000000000001+0+0},o9gRi4KJy:{height:44,width:\"177.9775px\",y:(componentViewport?.y||0)+0+0+0+6470.200000000001+0+790.7407407407408+96+54.80000000000001+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"258.8764px\",y:(componentViewport?.y||0)+0+0+0+4535.8+0+964+120+54.80000000000001+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9b5oom-container\",children:/*#__PURE__*/_jsx(WiredLogo,{height:\"100%\",id:\"MnVvEP1Rf\",layoutId:\"MnVvEP1Rf\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xcnf5u\",\"data-framer-name\":\"Text Content Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-qfpsnf\",\"data-styles-preset\":\"c4uwAyyNH\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-cb6fbe0b-c880-4ac7-9dce-c356572bda6b, rgb(92, 99, 112))\"},children:\"Como la firma m\\xe1s innovadora\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-cb6fbe0b-c880-4ac7-9dce-c356572bda6b, rgb(92, 99, 112))\"},children:\"de todo Latinoam\\xe9rica\"})]})}),className:\"framer-qscl2w\",\"data-framer-name\":\"Subheading\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2br6u2\",\"data-framer-name\":\"Circle 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:312,svg:'<svg width=\"312\" height=\"61\" viewBox=\"-2 -2 312 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:multiply\">\\n<path d=\"M196.099 7.24333C231.447 9.29383 270.395 14.8284 292.936 23.3331C314.401 31.4093 313.798 42.089 285.485 48.9371C258.074 55.5544 217.072 56.2693 183.925 56.2215C149.054 56.1633 113.605 54.865 80.7099 51.575C52.0696 48.7164 19.1895 44.1689 5.11554 35.6524C-4.58271 29.7512 0.366712 23.131 12.7623 17.8111C44.8424 4.05354 111.349 -1.545 163.708 0.70737C199.489 2.2407 230.529 8.07656 252.073 16.5647C254.115 17.3703 249.61 18.2175 247.687 17.4235C205.538 0.83793 130.957 -1.92723 68.5536 6.58829C44.6682 9.85361 20.966 15.1554 9.83598 22.4872C-1.43468 29.9143 9.68573 37.0254 28.8919 41.8513C56.9877 48.9071 96.0449 51.9834 131.957 53.4926C169.435 55.0812 209.614 55.5467 246.855 52.6429C263.608 51.3381 280.057 49.0514 291.641 45.0538C305.534 40.2364 306.389 33.6846 297.427 28.2481C280.031 17.6384 233.624 11.1992 196.561 8.88038L194.829 8.77667C191.516 8.58929 192.785 7.05151 196.099 7.24333Z\" fill=\"#BDEE44\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://es.wired.com/articulos/velo-legal-la-firma-de-abogados-mas-innovadora-de-latinoamerica\",nodeId:\"E3wugImbl\",openInNewTab:true,children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cq993v framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(231, 242, 253)\"},children:\"Leer Art\\xedculo\"})}),className:\"framer-au3kuv\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mxi27t\",\"data-framer-name\":\"Connected Sections\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q2g4ws\",\"data-framer-name\":\"CTA Section Full\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t7v6wz\",\"data-framer-name\":\"CTA Section \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpPKxUGLY:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5712.4+0+0+64+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1440px) - 424px, 1px)`,src:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png\",srcSet:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png 3536w\"}},DgyPxAtU6:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5766.4+0+0+64+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1440px) - 424px, 1px)`,src:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png\",srcSet:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png 3536w\"}},JH2aKH3U6:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7318.540740740742+0+0+64+0+0),positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png\",srcSet:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png 3536w\"}},o9gRi4KJy:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7726.540740740742+0+0+56+0+0),positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png\",srcSet:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png 3536w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6063.4+0+0+64+0),positionX:\"center\",positionY:\"center\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1440px) - 424px, 1px)`,src:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png\",srcSet:\"https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XdkebUhuo8cMHuQzS9ZuL76lZQ.png 3536w\"},className:\"framer-1cdbn6o\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vd75xk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o9gRi4KJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:[\"Es momento de llevar tu asesor\\xeda legal al \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"pr\\xf3ximo nivel\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:[\"Es momento de llevar tu asesor\\xeda legal al \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"pr\\xf3ximo nivel\"})]})}),className:\"framer-st1dme\",\"data-framer-name\":\"Es momento de llevar tu asesor\\xeda legal al pr\\xf3ximo nivel\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"k0Mihu3cN\"},nodeId:\"A5125k29j\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1dno76v framer-lux5qc\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Contactar ahora\"})}),className:\"framer-qkkunk\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;Uncut Sans Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1541kal\",\"data-framer-name\":\"Arrow right\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ihn025\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"-1 -1 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.333252 4.99992H9.66658M9.66658 4.99992L4.99992 0.333252M9.66658 4.99992L4.99992 9.66658\" stroke=\"#003C8E\" stroke-width=\"1.6\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation24,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m3m9nv\",\"data-framer-name\":\"IMG\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-v4lspq\",\"data-framer-name\":\"Imagen Right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:400,intrinsicWidth:424,svg:'<svg width=\"424\" height=\"400\" viewBox=\"0 0 424 400\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2164_2924)\">\\n<path d=\"M382.414 400H176.659C164.941 400 153.767 395.079 145.885 386.447L18.0199 246.406C-6.00661 220.091 -6.00662 179.909 18.0199 153.594L145.885 13.5534C153.767 4.92135 164.941 1.4456e-05 176.659 1.36448e-05L382.414 0C405.382 -1.00392e-06 424 18.5339 424 41.3966V358.603C424 381.466 405.382 400 382.414 400Z\" fill=\"white\"/>\\n<path d=\"M266.122 90.8801C268.006 85.318 307.256 87.8909 311.971 88.8047C313.152 88.9139 314.237 89.4346 314.989 90.2532C315.741 91.0718 316.099 92.1221 315.985 93.1749C316.064 97.105 317.273 113.176 316.581 117.238C315.489 123.772 308.897 123.374 303 123.551C299.63 123.64 285.306 123.419 285.306 123.419C274.067 130.6 275.719 129.801 275.494 129.601C275.296 128.275 276.436 123.287 274.008 122.977C273.016 122.845 268.158 122.845 267.216 121.432C264.979 118.12 265.673 92.1149 266.122 90.8801ZM302.45 108.007C303.112 108.064 303.773 107.888 304.292 107.517C304.81 107.146 305.145 106.609 305.224 106.02C305.223 105.62 305.1 105.227 304.869 104.883C304.638 104.54 304.307 104.258 303.911 104.068C303.515 103.878 303.069 103.787 302.619 103.804C302.17 103.821 301.734 103.946 301.358 104.166C300.944 104.402 300.624 104.749 300.443 105.156C300.262 105.564 300.229 106.012 300.35 106.437C300.471 106.862 300.739 107.242 301.116 107.524C301.492 107.806 301.959 107.975 302.45 108.007ZM290.95 108.007C293.23 108.007 293.676 106.859 293.726 106.02C293.725 105.62 293.602 105.227 293.371 104.883C293.14 104.54 292.809 104.258 292.413 104.068C292.017 103.878 291.571 103.787 291.122 103.804C290.672 103.821 290.237 103.946 289.86 104.166C289.447 104.403 289.128 104.749 288.947 105.156C288.767 105.564 288.735 106.011 288.855 106.435C288.976 106.86 289.243 107.24 289.619 107.522C289.995 107.804 290.46 107.973 290.95 108.007ZM279.699 108.007C282.128 108.007 282.426 106.859 282.475 106.02C282.472 105.62 282.349 105.228 282.118 104.885C281.886 104.542 281.556 104.261 281.16 104.072C280.765 103.882 280.319 103.791 279.87 103.808C279.422 103.825 278.986 103.95 278.61 104.169C278.202 104.408 277.887 104.754 277.709 105.16C277.532 105.566 277.501 106.011 277.621 106.433C277.741 106.855 278.005 107.234 278.377 107.516C278.75 107.798 279.212 107.969 279.699 108.007Z\" fill=\"#38A1FF\"/>\\n<path d=\"M64.9549 187.901C64.8934 187.379 64.9486 186.851 65.1176 186.348C65.2866 185.845 65.5658 185.376 65.9393 184.97C66.3127 184.564 66.7729 184.227 67.2933 183.98C67.8136 183.733 68.3837 183.581 68.9707 183.531C73.6287 182.648 112.932 180.087 114.82 185.65C115.216 186.886 115.91 212.891 113.73 216.202C112.788 217.615 107.932 217.615 106.94 217.748C104.264 218.088 105.828 224.168 105.402 224.547C105.402 224.459 95.044 219.161 95.044 219.161C95.044 219.161 81.316 218.409 77.9443 218.322C72.0463 218.145 65.4562 218.498 64.3644 212.008C63.6669 207.94 64.8764 191.874 64.9549 187.901ZM98.4603 200.75C98.5602 201.588 98.8564 202.913 101.236 202.737C101.721 202.706 102.183 202.54 102.556 202.262C102.929 201.985 103.195 201.61 103.316 201.19C103.417 200.792 103.391 200.377 103.242 199.991C103.092 199.606 102.825 199.265 102.47 199.007C102.115 198.749 101.686 198.584 101.232 198.532C100.777 198.479 100.316 198.54 99.8982 198.708C99.4542 198.876 99.0785 199.161 98.8215 199.525C98.5646 199.889 98.4385 200.314 98.4603 200.744V200.75ZM87.2586 200.75C87.3585 201.588 87.5565 202.737 90.0345 202.737C90.525 202.721 90.9958 202.561 91.3727 202.281C91.7497 202.001 92.0113 201.617 92.1164 201.19C92.2144 200.793 92.1864 200.379 92.0356 199.995C91.8847 199.611 91.6169 199.271 91.2621 199.015C90.9073 198.759 90.4795 198.595 90.0264 198.543C89.5733 198.491 89.1129 198.552 88.6965 198.719C88.2548 198.887 87.8808 199.171 87.6241 199.532C87.3673 199.894 87.2398 200.316 87.2586 200.744V200.75ZM75.7107 200.795C75.8088 201.632 76.3547 202.737 78.5348 202.781C79.026 202.747 79.4926 202.576 79.8678 202.292C80.243 202.007 80.5074 201.624 80.6231 201.198C80.7388 200.771 80.6999 200.323 80.5119 199.917C80.3239 199.512 79.9965 199.17 79.5766 198.94C79.2017 198.717 78.766 198.59 78.3159 198.571C77.8659 198.552 77.4185 198.642 77.0216 198.831C76.6246 199.021 76.2929 199.304 76.0621 199.648C75.8312 199.993 75.7097 200.387 75.7107 200.788V200.795Z\" fill=\"#38A1FF\"/>\\n<path d=\"M330.786 290.764C331.48 290.146 333.858 288.6 335.792 290.146C338.716 292.441 334.354 298.313 330.975 298.136C325.63 297.874 329.496 291.649 330.786 290.764Z\" fill=\"#38A1FF\"/>\\n<path d=\"M104.887 85.115C105.73 85.0769 106.572 85.026 107.365 85.026C107.762 83.9231 108.108 82.8186 108.504 81.7157C108.571 81.5099 108.711 81.329 108.904 81.2003C109.096 81.0716 109.33 81.002 109.57 81.002C109.811 81.002 110.045 81.0716 110.237 81.2003C110.429 81.329 110.57 81.5099 110.636 81.7157C110.984 82.7312 111.33 83.7022 111.628 84.7177C112.816 84.5858 113.948 84.4968 115.146 84.3204C115.428 84.2631 115.723 84.296 115.98 84.4133C116.237 84.5305 116.44 84.7248 116.552 84.9618C116.665 85.1989 116.68 85.4636 116.595 85.7096C116.51 85.9555 116.331 86.167 116.088 86.3069C115.098 86.8377 114.156 87.4193 113.214 87.9851C113.868 88.9895 114.289 90.1005 114.452 91.2525C114.452 91.4289 113.758 92.9291 112.768 92.179C111.794 91.51 110.767 90.9051 109.694 90.3689C108.902 90.9871 108.108 91.6053 107.316 92.2759C107.125 92.4415 106.877 92.5465 106.612 92.575C106.347 92.6035 106.079 92.5538 105.848 92.4336C105.618 92.3134 105.438 92.1293 105.336 91.9094C105.234 91.6895 105.216 91.4459 105.284 91.2159C105.581 90.2449 105.928 89.3089 106.225 88.3458C105.581 87.9485 104.887 87.5512 104.242 87.1539C104.022 87.0238 103.854 86.8348 103.762 86.614C103.67 86.3932 103.659 86.1521 103.73 85.9254C103.802 85.6987 103.952 85.4981 104.16 85.3524C104.368 85.2068 104.622 85.1237 104.887 85.115Z\" fill=\"#0088FF\"/>\\n<path d=\"M120.054 85.159C121.044 85.0971 121.986 85.1145 122.978 85.1145C123.226 84.3644 123.424 83.6128 123.622 82.8627C123.695 82.6379 123.848 82.4405 124.058 82.3C124.268 82.1595 124.524 82.0835 124.787 82.0835C125.049 82.0835 125.305 82.1595 125.515 82.3C125.725 82.4405 125.878 82.6379 125.952 82.8627C126.2 83.6573 126.487 84.4518 126.794 85.2035C128.082 85.2539 129.373 85.239 130.66 85.159C130.935 85.1669 131.201 85.2534 131.417 85.4059C131.634 85.5583 131.79 85.7687 131.862 86.0059C131.934 86.2431 131.919 86.4947 131.818 86.7237C131.718 86.9526 131.537 87.1467 131.304 87.2774C130.362 87.7637 129.372 88.25 128.43 88.7347C128.839 89.5927 129.219 90.4613 129.57 91.3394C129.868 92.134 128.678 92.6203 128.034 92.134C127.884 92.0021 125.893 90.7657 125.208 90.3684C124.316 90.8102 123.374 91.2965 122.482 91.7367C122.239 91.8482 121.963 91.8881 121.693 91.8507C121.423 91.8134 121.174 91.7006 120.981 91.5287C120.788 91.3569 120.661 91.1348 120.619 90.8945C120.576 90.6542 120.621 90.4082 120.746 90.192C121.094 89.5738 121.392 88.9111 121.69 88.2929C120.946 87.8527 120.202 87.4554 119.458 87.0565C118.418 86.5718 118.962 85.2274 120.054 85.159Z\" fill=\"#0088FF\"/>\\n<path d=\"M135.804 85.6886H138.837C139.233 84.8066 139.631 83.9675 140.027 83.0839C140.325 82.3767 141.613 81.9715 142.059 82.863L143.397 85.6441C144.735 85.6441 146.123 85.6012 147.461 85.5567C147.698 85.5609 147.928 85.6336 148.114 85.7639C148.301 85.8941 148.436 86.075 148.497 86.2791C148.559 86.4832 148.544 86.6996 148.456 86.8958C148.367 87.092 148.21 87.2572 148.007 87.3668C147.115 87.8086 146.173 88.2504 145.281 88.6477C145.761 89.48 146.191 90.3346 146.569 91.2078C146.673 91.3977 146.707 91.6121 146.666 91.8202C146.625 92.0283 146.511 92.2195 146.34 92.3664C146.17 92.5133 145.952 92.6084 145.717 92.6381C145.482 92.6678 145.243 92.6305 145.033 92.5316C144.983 92.4887 142.207 91.0759 141.215 90.5897L138.093 92.1788C137.904 92.2752 137.686 92.3197 137.468 92.3071C137.251 92.2944 137.042 92.2251 136.868 92.1076C136.694 91.9902 136.562 91.8298 136.49 91.6464C136.417 91.463 136.406 91.2647 136.459 91.0759C136.755 90.2813 137.103 89.4868 137.449 88.6922C136.707 88.3394 135.963 87.9421 135.219 87.5893C135.015 87.4684 134.859 87.2933 134.773 87.0889C134.687 86.8844 134.676 86.661 134.741 86.4505C134.805 86.24 134.943 86.053 135.134 85.9162C135.325 85.7794 135.56 85.6998 135.804 85.6886Z\" fill=\"#0088FF\"/>\\n<path d=\"M165.403 87.3671C164.511 87.7994 163.569 88.2507 162.677 88.648C163.157 89.4808 163.587 90.3353 163.967 91.2082C164.071 91.3982 164.105 91.6129 164.064 91.8213C164.023 92.0297 163.909 92.2212 163.738 92.3682C163.567 92.5153 163.349 92.6103 163.113 92.6398C162.878 92.6692 162.638 92.6314 162.429 92.532C161.166 91.8706 159.894 91.2233 158.613 90.59L155.491 92.1792C155.301 92.276 155.084 92.321 154.865 92.3086C154.647 92.2962 154.438 92.2269 154.264 92.1093C154.089 91.9918 153.958 91.8312 153.885 91.6475C153.812 91.4639 153.802 91.2652 153.855 91.0763C154.153 90.2817 154.499 89.4871 154.847 88.6925C154.103 88.3397 153.359 87.9424 152.615 87.5896C152.402 87.4718 152.238 87.2959 152.148 87.0882C152.057 86.8804 152.044 86.6521 152.111 86.4373C152.178 86.2225 152.322 86.0329 152.52 85.8968C152.718 85.7608 152.961 85.6856 153.211 85.6826H156.235C156.631 84.8006 157.027 83.9615 157.423 83.0779C157.721 82.3723 159.011 81.975 159.457 82.857L160.793 85.6381C162.131 85.6381 163.519 85.5952 164.859 85.5507C165.094 85.5598 165.32 85.6356 165.503 85.7669C165.687 85.8983 165.818 86.0784 165.879 86.281C165.94 86.4836 165.926 86.6982 165.841 86.8936C165.755 87.0889 165.601 87.2548 165.403 87.3671Z\" fill=\"#0088FF\"/>\\n<path d=\"M49.2266 79.3321C49.4247 76.0647 48.8306 72.0473 52.2006 69.9718C56.7605 67.1891 63.4523 66.8808 68.7544 66.528C85.7434 65.2566 114.626 66.9714 120.49 68.0727C123.167 68.559 124.257 70.8538 124.603 73.1057C124.827 75.368 124.827 77.6435 124.603 79.9058C124.591 80.1796 124.46 80.4387 124.239 80.6287C124.017 80.8186 123.721 80.9248 123.414 80.9248C123.106 80.9248 122.81 80.8186 122.589 80.6287C122.367 80.4387 122.236 80.1796 122.225 79.9058C122.225 77.6539 123.067 70.6774 120.292 70.2356C104.599 68.4566 88.7647 67.8659 72.9593 68.47C67.1095 68.7354 60.4712 68.9563 55.0657 71.1192C54.4263 71.2896 53.837 71.5838 53.3401 71.9808C52.8433 72.3778 52.4511 72.8677 52.1917 73.4155C52.1917 74.6011 49.5977 109.841 51.3996 114.652C52.3897 117.433 57.3457 118.803 60.3695 118.847C66.3799 119.022 84.07 118.113 92.4816 117.919C94.5636 117.875 105.913 129.044 105.913 129.044C105.913 129.044 106.061 122.951 106.161 119.904C106.168 119.729 106.219 119.558 106.309 119.402C106.4 119.247 106.528 119.112 106.685 119.006C106.841 118.9 107.023 118.827 107.215 118.792C107.408 118.756 107.606 118.76 107.797 118.801C112.109 119.375 117.313 119.462 120.881 116.858C123.013 115.313 122.913 112.532 122.963 110.28C123.111 105.334 121.971 99.9503 123.111 95.0476C123.261 94.2975 124.697 94.4739 124.597 95.224C123.955 101.317 125.987 107.499 125.093 113.635C124.053 120.699 115.479 121.759 108.689 121.141C108.589 124.85 108.441 128.559 108.341 132.265C108.332 132.505 108.237 132.736 108.07 132.925C107.903 133.114 107.673 133.25 107.413 133.314C107.153 133.378 106.877 133.366 106.625 133.281C106.373 133.195 106.158 133.04 106.012 132.839C102.126 128.217 97.7255 123.958 92.8777 120.125C92.5815 120.17 77.1659 120.788 69.782 120.964C63.2882 121.141 53.2764 122.332 49.4104 116.152C47.1822 112.575 48.9555 83.3655 49.2266 79.3321Z\" fill=\"#5C6370\"/>\\n<path d=\"M105.778 114.299C105.764 114.478 105.675 114.646 105.528 114.768C105.381 114.891 105.187 114.959 104.985 114.959C104.784 114.959 104.59 114.891 104.443 114.768C104.296 114.646 104.207 114.478 104.193 114.299C103.46 102.022 98.415 97.4535 91.1577 94.96C90.3156 94.6962 90.3156 93.3709 91.4056 93.4598C95.9656 93.7681 99.7316 96.8146 102.11 100.134C105.184 104.409 105.753 109.31 105.778 114.299Z\" fill=\"#5C6370\"/>\\n<path d=\"M97.8985 103.791C98.7908 107.364 99.3541 110.996 99.5826 114.651C99.5767 114.849 99.4919 115.039 99.3434 115.186C99.1948 115.334 98.9923 115.429 98.772 115.456C98.5517 115.482 98.328 115.438 98.1408 115.331C97.9537 115.225 97.8153 115.062 97.7505 114.872C96.9808 111.275 96.5334 107.628 96.4125 103.967C96.3625 103.26 97.7558 103.084 97.8985 103.791Z\" fill=\"#5C6370\"/>\\n<path d=\"M65.5346 103.039C62.5357 98.1936 64.7907 92.3915 68.6066 88.4694C69.2507 87.8067 70.2925 88.6458 69.8947 89.3514C68.0607 92.5743 65.8307 95.9735 66.6746 99.7272C67.3668 102.818 71.8785 107.365 75.3466 103.877C75.4676 103.773 75.6231 103.707 75.7897 103.689C75.9563 103.671 76.1249 103.702 76.2702 103.777C76.4155 103.852 76.5296 103.966 76.5953 104.104C76.6611 104.241 76.6749 104.394 76.6347 104.539C76.4465 105.081 76.1253 105.579 75.6945 105.997C76.0281 107.724 76.5758 112.592 75.8925 114.26C75.8425 114.413 75.7382 114.548 75.5952 114.643C75.4522 114.739 75.2783 114.79 75.0995 114.79C74.9208 114.79 74.7469 114.739 74.6039 114.643C74.4609 114.548 74.3566 114.413 74.3065 114.26C74.071 111.823 73.9882 109.376 74.0586 106.931C71.1828 107.764 66.9582 105.342 65.5346 103.039Z\" fill=\"#5C6370\"/>\\n<path d=\"M74.5047 100.479C71.6592 98.9185 69.4988 95.7989 70.6887 92.7524C70.7379 92.6142 70.8407 92.4962 70.9788 92.4193C71.1168 92.3425 71.281 92.312 71.442 92.3332C71.603 92.3545 71.7503 92.4261 71.8574 92.5352C71.9645 92.6443 72.0245 92.7839 72.0267 92.9288C71.9819 93.9449 72.1947 94.9568 72.6494 95.8895C73.104 96.8222 73.7888 97.6517 74.6528 98.3162C75.6494 96.9052 76.9752 95.7017 78.5402 94.7875C80.1052 93.8733 81.8727 93.2697 83.7226 93.0178C83.8072 92.997 83.8956 92.9911 83.9827 93.0007C84.0698 93.0102 84.1539 93.035 84.2303 93.0735C84.3067 93.112 84.3738 93.1635 84.4278 93.2252C84.4818 93.2868 84.5217 93.3573 84.5451 93.4326C84.5685 93.5079 84.5751 93.5867 84.5643 93.6642C84.5536 93.7418 84.5258 93.8168 84.4826 93.8848C84.4393 93.9528 84.3815 94.0126 84.3123 94.0607C84.2431 94.1089 84.164 94.1444 84.0795 94.1652C82.3415 94.6156 80.7247 95.3764 79.3274 96.4012C77.93 97.426 76.7814 98.6934 75.9515 100.126C75.8855 100.237 75.7949 100.334 75.6852 100.412C75.5755 100.49 75.449 100.548 75.3135 100.581C75.1781 100.614 75.0364 100.622 74.8973 100.604C74.7583 100.587 74.6246 100.544 74.5047 100.479Z\" fill=\"#5C6370\"/>\\n<path d=\"M75.4459 91.3397C78.0452 88.7159 81.1191 94.607 77.13 94.607C70.1921 94.607 68.26 83.5256 69.548 80.8319C70.44 78.9344 73.9581 78.3163 74.6039 80.7874C74.6845 81.1362 74.6495 81.4982 74.503 81.8295C74.3566 82.1608 74.1051 82.4469 73.7791 82.653C73.4532 82.8591 73.067 82.9762 72.6676 82.99C72.2683 83.0039 71.873 82.9139 71.53 82.731C71.53 83.0393 71.8779 88.3377 75.4459 91.3397Z\" fill=\"#5C6370\"/>\\n<path d=\"M99.6339 90.2797C99.1899 90.7724 98.6161 91.1596 97.9634 91.4069C97.3108 91.6542 96.5996 91.7538 95.8933 91.697C95.1869 91.6403 94.5073 91.4288 93.9149 91.0814C93.3225 90.734 92.8357 90.2615 92.4979 89.706C92.0274 90.4364 91.3489 91.0432 90.5308 91.4651C89.7128 91.8871 88.7843 92.1093 87.839 92.1093C86.8937 92.1093 85.9652 91.8871 85.1471 91.4651C84.3291 91.0432 83.6506 90.4364 83.18 89.706C83.0747 90.1098 82.819 90.4699 82.4545 90.7278C82.0901 90.9856 81.6384 91.1259 81.173 91.1259C80.7077 91.1259 80.256 90.9856 79.8916 90.7278C79.5272 90.4699 79.2714 90.1098 79.166 89.706C78.8038 89.5453 78.4967 89.3007 78.277 88.9979C78.0573 88.6951 77.933 88.3452 77.9172 87.9849C77.5176 87.8122 77.2047 87.5128 77.0398 87.1454C76.8748 86.7781 76.8696 86.3691 77.0252 85.9985C76.9752 85.7648 76.9752 85.5249 77.0252 85.2913C76.7517 85.0236 76.5499 84.7041 76.435 84.3569C76.3201 84.0097 76.2951 83.6437 76.3619 83.2867C76.4287 82.9296 76.5855 82.5907 76.8206 82.2954C77.0558 82.0002 77.363 81.7563 77.7192 81.5821C77.9082 81.4904 78.1072 81.4164 78.3133 81.3612C78.2152 80.8765 78.6612 80.0819 79.9492 80.1693C80.0909 79.9503 80.2759 79.756 80.4951 79.5956C80.498 79.311 80.5757 79.031 80.7219 78.7779C80.8681 78.5248 81.0789 78.3058 81.3372 78.1383C81.2611 77.733 81.3198 77.3167 81.5062 76.9408C81.6927 76.5649 81.9986 76.2459 82.3862 76.0231C82.6337 75.7046 82.9551 75.4372 83.3288 75.239C83.7025 75.0409 84.1197 74.9167 84.552 74.8748C84.9843 74.8329 85.4217 74.8743 85.8344 74.9962C86.2472 75.1181 86.6257 75.3176 86.9443 75.5813C87.3302 75.1579 87.8452 74.8428 88.4273 74.674C89.0095 74.5051 89.634 74.4897 90.2258 74.6295C90.8175 74.7694 91.3513 75.0585 91.763 75.4622C92.1746 75.8659 92.4465 76.367 92.5461 76.9051C92.9052 76.7096 93.313 76.5959 93.7332 76.5742C94.1534 76.5524 94.5731 76.6232 94.9553 76.7803C95.3375 76.9374 95.6704 77.176 95.9245 77.4749C96.1785 77.7739 96.346 78.124 96.412 78.4943C96.5815 78.3624 99.0292 78.6866 97.2041 80.5682C97.5994 80.7786 97.937 81.0648 98.1926 81.4059C98.4482 81.7471 98.6153 82.1346 98.6817 82.5405C98.7482 82.9463 98.7123 83.3603 98.5768 83.7522C98.4412 84.1442 98.2094 84.5044 97.8981 84.8066C98.5016 84.9768 99.0482 85.2778 99.4887 85.6827C99.9293 86.0877 100.25 86.5837 100.422 87.1264C100.594 87.669 100.612 88.2412 100.475 88.7916C100.337 89.3421 100.048 89.8534 99.6339 90.2797ZM88.4322 90.7215C93.133 89.8952 92.6942 84.0104 92.5943 83.7911C91.5375 83.6154 90.5423 83.2198 89.6898 82.6365C88.8372 82.0533 88.1514 81.2988 87.6882 80.4347C87.2381 81.2939 86.5138 82.0159 85.6057 82.5105C84.6976 83.0051 83.6461 83.2504 82.5824 83.2158C82.6706 84.0227 82.7039 84.8336 82.6823 85.6441C82.6823 85.7331 84.5591 91.4017 88.4322 90.7215Z\" fill=\"#5C6370\"/>\\n<path d=\"M276.134 170.543C277.026 170.58 277.87 170.588 278.762 170.588C279.208 169.528 279.654 168.468 280.15 167.452C280.546 166.613 282.034 166.392 282.28 167.452C282.526 168.512 282.776 169.528 283.074 170.543C284.323 170.499 285.602 170.454 286.84 170.367C287.103 170.377 287.356 170.462 287.561 170.609C287.766 170.757 287.913 170.959 287.98 171.186C288.046 171.413 288.03 171.654 287.932 171.872C287.834 172.09 287.66 172.274 287.436 172.398C286.394 172.882 285.354 173.369 284.362 173.898C284.926 174.888 285.263 175.969 285.354 177.076C285.602 177.915 284.214 178.532 283.42 177.958C282.48 177.34 281.588 176.687 280.646 176.061C279.802 176.59 279.01 177.164 278.168 177.737C277.324 178.356 275.64 177.782 276.134 176.679C276.532 175.706 276.978 174.735 277.383 173.809C276.789 173.412 276.134 172.97 275.549 172.572C274.698 171.911 274.846 170.489 276.134 170.543Z\" fill=\"#0088FF\"/>\\n<path d=\"M291.301 171.603C292.295 171.618 293.288 171.676 294.275 171.779C294.572 171.072 294.811 170.367 295.067 169.66C295.141 169.435 295.294 169.237 295.504 169.097C295.714 168.956 295.97 168.88 296.232 168.88C296.495 168.88 296.751 168.956 296.961 169.097C297.171 169.237 297.324 169.435 297.397 169.66C297.595 170.499 297.843 171.338 298.091 172.132C299.341 172.273 300.598 172.347 301.857 172.353C303.047 172.353 303.691 173.987 302.503 174.472C301.561 174.87 300.569 175.266 299.627 175.665C300.126 176.578 300.429 177.566 300.519 178.578C300.515 178.735 300.459 178.887 300.358 179.016C300.256 179.144 300.115 179.243 299.95 179.3C299.786 179.357 299.606 179.369 299.434 179.335C299.262 179.301 299.105 179.222 298.983 179.109C297.991 178.446 297.001 177.872 296.009 177.165C295.117 177.518 294.225 177.915 293.333 178.278C293.091 178.393 292.813 178.435 292.541 178.399C292.27 178.363 292.018 178.249 291.824 178.076C291.63 177.903 291.503 177.679 291.463 177.437C291.422 177.195 291.47 176.947 291.599 176.731C291.998 176.108 292.378 175.475 292.739 174.834C292.045 174.348 291.4 173.906 290.657 173.466C290.451 173.345 290.293 173.168 290.209 172.961C290.126 172.754 290.119 172.529 290.192 172.318C290.265 172.108 290.412 171.925 290.613 171.796C290.813 171.666 291.054 171.599 291.301 171.603Z\" fill=\"#0088FF\"/>\\n<path d=\"M307.558 171.956C308.598 172.016 309.59 172.088 310.632 172.132C311.127 171.249 311.623 170.322 312.118 169.438C312.564 168.599 313.853 168.954 314.15 169.659C314.506 170.543 314.844 171.469 315.191 172.361C316.529 172.448 317.867 172.493 319.205 172.537C320.197 172.582 320.841 173.95 319.751 174.347C318.809 174.745 317.817 175.098 316.827 175.495C317.293 176.373 317.658 177.29 317.917 178.233C317.989 178.421 317.994 178.623 317.932 178.814C317.87 179.004 317.745 179.173 317.572 179.298C317.399 179.422 317.188 179.497 316.966 179.512C316.745 179.527 316.523 179.481 316.331 179.38C316.281 179.336 313.556 177.704 312.614 177.129C311.524 177.57 310.483 178.012 309.442 178.498C309.234 178.604 308.993 178.646 308.756 178.617C308.519 178.589 308.3 178.492 308.131 178.341C307.962 178.19 307.853 177.994 307.822 177.783C307.79 177.572 307.837 177.358 307.956 177.173C308.302 176.467 308.698 175.76 309.046 175.01C308.352 174.613 307.658 174.216 306.964 173.774C306.76 173.66 306.603 173.49 306.517 173.29C306.431 173.09 306.421 172.87 306.488 172.664C306.556 172.459 306.696 172.278 306.889 172.15C307.082 172.022 307.317 171.954 307.558 171.956Z\" fill=\"#0088FF\"/>\\n<path d=\"M340.271 215.576C333.629 219.419 326.987 223.303 320.543 227.365C320.35 227.466 320.13 227.521 319.905 227.523C319.68 227.525 319.459 227.474 319.263 227.376C319.067 227.277 318.904 227.135 318.789 226.962C318.675 226.79 318.614 226.594 318.611 226.394C319.007 222.994 319.453 219.638 319.85 216.239C312.664 217.917 303.544 218.314 301.016 210.545C299.778 206.659 300.074 202.155 300.074 198.182C300.026 193.148 299.976 188.027 300.472 182.993C300.472 182.688 300.607 182.397 300.849 182.181C301.09 181.966 301.418 181.845 301.76 181.845C302.101 181.845 302.429 181.966 302.671 182.181C302.912 182.397 303.048 182.688 303.048 182.993C303.246 190.587 302.513 198.138 303.048 205.731C303.296 209.44 304.138 213.06 308.55 214.471C312.614 215.752 317.075 214.559 321.038 213.5C321.236 213.455 321.443 213.449 321.643 213.485C321.843 213.521 322.032 213.598 322.194 213.708C322.357 213.819 322.489 213.961 322.581 214.124C322.672 214.286 322.721 214.466 322.724 214.648L321.534 224.053C326.986 220.741 338.285 213.5 339.177 213.588C346.215 214.295 373.966 215.884 380.663 215.442C383.289 215.266 386.461 214.78 388.047 212.661C389.932 210.146 389.486 172.051 389.238 165.731C389.14 163.082 389.14 159.814 386.71 157.871C384.332 155.973 380.813 156.018 377.839 155.973C365.101 155.797 310.978 153.81 307.856 154.692C303.892 155.797 303.544 160.212 303.446 163.258C303.396 164.406 301.264 164.803 301.016 163.566C300.224 158.931 301.412 153.632 307.312 152.53C311.375 151.744 311.547 152.592 374.915 153.677C380.168 153.766 387.058 153.501 390.032 158.268C391.133 160.459 391.658 162.845 391.568 165.245C391.766 169.13 391.766 205.334 391.37 208.822C390.835 214.098 388.211 216.966 380.615 217.343C376.253 217.608 349.291 216.504 340.271 215.576Z\" fill=\"#5C6370\"/>\\n<path d=\"M331.547 196.812C332.075 200.606 331.704 204.457 330.457 208.115C330.389 208.32 330.241 208.496 330.041 208.613C329.84 208.73 329.599 208.78 329.361 208.753C329.123 208.727 328.903 208.626 328.741 208.469C328.578 208.312 328.483 208.109 328.473 207.895C328.533 206.042 328.766 204.196 329.167 202.376C329.415 200.522 329.524 198.667 329.763 196.814C329.763 196.603 329.857 196.401 330.024 196.252C330.191 196.103 330.418 196.019 330.654 196.019C330.891 196.018 331.118 196.102 331.285 196.251C331.453 196.4 331.547 196.602 331.547 196.812Z\" fill=\"#5C6370\"/>\\n<path d=\"M325.253 193.281C321.833 198.274 322.934 201.882 322.525 204.892C322.427 205.599 321.187 206.173 320.741 205.334C317.734 199.22 323.239 188.488 332.291 185.555C332.291 185.334 334.123 183.479 334.719 182.595C334.796 182.482 334.901 182.386 335.026 182.313C335.15 182.241 335.292 182.195 335.439 182.178C335.587 182.161 335.737 182.174 335.878 182.215C336.019 182.257 336.148 182.327 336.255 182.419C337.197 183.258 340.865 184.803 340.567 185.421C340.007 186.833 339.293 188.194 338.437 189.483C338.339 189.614 338.207 189.722 338.051 189.796C337.895 189.871 337.722 189.909 337.545 189.909C337.368 189.909 337.194 189.871 337.039 189.796C336.883 189.722 336.751 189.614 336.653 189.483C335.777 188.445 334.724 187.537 333.531 186.791C330.181 188.271 327.326 190.509 325.253 193.281ZM337.345 187.452L338.387 185.863C337.449 185.473 336.566 184.983 335.759 184.406C335.463 184.76 335.165 185.113 334.817 185.466C335.729 186.054 336.576 186.719 337.345 187.452Z\" fill=\"#5C6370\"/>\\n<path d=\"M344.929 189.838C343.93 188.784 343.145 187.629 342.253 186.481C342.117 186.276 342.077 186.031 342.141 185.8C342.206 185.568 342.37 185.369 342.599 185.245C343.541 184.671 344.533 184.185 345.475 183.656C346.077 183.214 346.791 182.911 347.555 182.772C349.298 182.772 349.278 184.279 350.083 184.539C350.166 184.564 350.242 184.603 350.307 184.654C350.372 184.705 350.425 184.768 350.463 184.838C350.5 184.908 350.521 184.985 350.524 185.062C350.527 185.14 350.512 185.217 350.481 185.289C352.017 185.245 356.627 188.204 358.163 191.117C359.636 189.517 360.397 187.489 360.3 185.421C360.054 185.599 359.806 185.819 359.508 185.997C355.642 188.115 352.568 185.378 352.907 183.745C353.403 181.537 356.773 180.212 357.565 183.171C359.05 181.951 360.189 180.434 360.887 178.745C361.585 177.056 361.823 175.243 361.581 173.456C361.581 173.501 359.895 174.208 359.151 172.264C358.879 171.808 358.796 171.281 358.915 170.776C359.035 170.271 359.349 169.819 359.804 169.499C360.259 169.178 360.825 169.01 361.405 169.024C361.984 169.037 362.54 169.231 362.976 169.572C364.562 170.499 364.462 177.078 364.164 178.667C364.314 178.712 371.896 189.528 366.148 196.504C365.182 197.725 363.856 198.685 362.317 199.277C360.777 199.869 359.084 200.07 357.424 199.859C357.533 203.162 357.367 206.468 356.928 209.75C356.78 210.94 354.798 211.029 354.798 209.75C354.741 206.234 355.006 202.719 355.59 199.241C354.662 198.797 353.839 198.199 353.164 197.478C352.568 196.771 353.61 195.8 354.254 196.507C355.082 197.28 356.076 197.896 357.178 198.318C360.746 199.244 364.712 196.463 365.802 193.019C367.19 188.604 364.91 184.674 363.572 180.782C363.088 181.982 362.439 183.124 361.64 184.182C362.301 186.085 362.266 188.126 361.54 190.011C361.044 191.203 360.054 193.41 358.318 193.455C356.634 193.499 355.79 192.042 355.196 190.937C354.056 188.774 349.644 186.523 349.594 186.346C348.449 187.099 345.519 190.459 344.929 189.838ZM348.249 185.2C348.051 184.937 347.853 184.539 347.714 184.495C347.393 184.388 346.979 184.784 344.542 186.305L345.284 187.497C346.179 186.641 347.173 185.871 348.249 185.2Z\" fill=\"#5C6370\"/>\\n<path d=\"M342.351 188.909C342.549 188.336 343.739 188.027 343.789 188.733C343.794 188.993 343.737 189.251 343.622 189.49C343.506 189.729 343.335 189.944 343.119 190.119C342.903 190.294 342.648 190.427 342.371 190.508C342.093 190.588 341.799 190.616 341.509 190.587C341.186 190.574 340.872 190.492 340.592 190.348C340.313 190.204 340.075 190.003 339.901 189.761C339.726 189.519 339.619 189.243 339.589 188.957C339.558 188.67 339.605 188.382 339.725 188.115C339.802 187.996 339.919 187.902 340.058 187.845C340.198 187.787 340.354 187.77 340.505 187.794C340.657 187.818 340.796 187.883 340.905 187.98C341.013 188.076 341.086 188.201 341.113 188.336C341.211 189.175 341.707 189.969 342.351 188.909Z\" fill=\"#5C6370\"/>\\n<path d=\"M341.657 208.646C340.974 209.315 340.517 208.557 340.071 207.896C339.093 206.888 338.261 205.775 337.593 204.584C337.104 203.201 337.989 201.575 339.823 191.648C339.894 191.449 340.045 191.281 340.246 191.175C340.447 191.069 340.686 191.033 340.915 191.074C341.926 191.254 343.289 191.049 343.393 191.648C344.285 195.144 344.879 198.712 345.573 202.243C345.983 204.194 346.597 203.814 341.657 208.646ZM343.293 199.905C342.829 197.391 342.599 194.872 342.253 192.31C341.808 192.355 341.359 192.355 340.915 192.31C339.923 192.444 339.329 201.715 339.179 202.731C338.883 204.638 341.063 207.021 341.163 207.145C341.885 206.315 342.547 205.445 343.145 204.541C344.235 203.215 343.578 201.451 343.293 199.903V199.905Z\" fill=\"#5C6370\"/>\\n<path d=\"M337.891 166.084C338.587 165.748 339.385 165.618 340.169 165.713C340.953 165.808 341.683 166.123 342.253 166.613C343.044 166.173 343.962 165.947 344.895 165.963C345.827 165.979 346.735 166.236 347.507 166.702C351.373 169.307 349.043 175.268 348.795 175.752C348.003 179.593 345.673 183.568 340.667 182.993C335.957 182.464 334.471 177.078 334.769 172.839C334.571 167.938 336.355 166.835 337.891 166.084ZM341.657 175.752C342.548 175.721 343.434 175.877 344.243 176.209C345.053 176.54 345.764 177.037 346.317 177.659C346.753 176.586 347.068 175.476 347.259 174.348C346.388 172.355 343.288 171.746 342.153 169.977C340.469 171.125 336.899 171.249 336.851 173.464C336.638 174.79 336.721 176.14 337.097 177.437C337.147 177.342 338.139 176.024 341.657 175.752Z\" fill=\"#5C6370\"/>\\n<path d=\"M184.92 169.97C183.528 169.022 181.893 168.397 180.164 168.15C178.434 167.904 176.662 168.043 175.008 168.557C177.907 159.022 180.856 148.215 188.191 141.007C189.182 140.079 195.179 134.65 202.613 133.633C206.799 133.113 211.058 133.323 215.153 134.251C220.159 135.311 221.299 136.282 222.687 138.137C224.25 140.421 225.641 142.796 226.851 145.245C225.623 145.245 216.821 141.185 206.975 143.346C195.327 145.863 192.949 151.823 191.313 154.427C188.867 159.501 186.732 164.689 184.92 169.97Z\" fill=\"#0088FF\"/>\\n<path d=\"M167.968 175.797C169.032 174.316 170.434 173.053 172.084 172.088C178.699 167.883 187.082 172.897 188.092 179.594C188.488 182.419 188.786 187.762 186.06 191.83C184.752 193.884 182.599 195.405 180.056 196.072C177.513 196.74 174.779 196.501 172.43 195.406C165.581 192.291 164.202 181.442 167.968 175.797ZM170.298 189.623C170.449 189.743 170.634 189.823 170.834 189.853C171.033 189.884 171.238 189.863 171.425 189.793C171.612 189.724 171.773 189.609 171.889 189.461C172.005 189.314 172.072 189.14 172.082 188.96C171.982 186.621 170.99 184.457 171.138 182.073C171.138 180.799 171.423 179.537 171.976 178.362C172.529 177.187 173.34 176.122 174.36 175.23C175.204 174.567 174.061 173.281 173.17 173.861C171.882 174.723 170.805 175.809 170.004 177.054C169.203 178.299 168.695 179.676 168.512 181.102C168.068 183.789 168.118 187.497 170.298 189.617V189.623Z\" fill=\"#0088FF\"/>\\n<path d=\"M225.165 195.931C225.957 195.882 226.255 196.813 225.809 197.255C222.043 200.919 213.765 197.167 213.856 192.53C213.864 192.341 213.939 192.159 214.071 192.011C214.204 191.863 214.386 191.756 214.591 191.707C214.796 191.658 215.013 191.668 215.211 191.737C215.409 191.806 215.577 191.93 215.69 192.09C216.49 193.626 217.806 194.904 219.456 195.745C221.399 196.636 223.131 196.048 225.165 195.931Z\" fill=\"#2E3138\"/>\\n<path d=\"M229.733 155.797C230.521 156.375 229.683 157.518 228.741 157.297C225.917 156.503 224.033 158.313 224.083 160.793C224.163 163.794 227.294 167.814 229.733 176.865C230.725 180.44 233.153 190.419 225.471 189.624C224.677 189.535 224.331 188.433 225.273 188.256C231.319 187.152 227.701 178.675 226.661 175.276C224.019 166.944 219.063 161.051 222.943 156.644C223.319 156.183 223.796 155.794 224.344 155.501C224.893 155.208 225.502 155.016 226.136 154.937C226.77 154.857 227.415 154.893 228.033 155.041C228.651 155.189 229.229 155.446 229.733 155.797Z\" fill=\"#2E3138\"/>\\n<path d=\"M210.841 171.911C208.413 172.139 204.943 170.322 205.241 167.849C205.249 167.651 205.328 167.46 205.466 167.303C205.604 167.147 205.794 167.034 206.009 166.98C206.224 166.926 206.452 166.934 206.661 167.004C206.871 167.073 207.05 167.199 207.173 167.365C208.017 168.468 208.661 169.704 210.395 169.749C211.22 169.722 212.006 169.429 212.607 168.926C213.208 168.422 213.584 167.742 213.665 167.01C213.675 166.823 213.765 166.646 213.918 166.517C214.07 166.387 214.273 166.315 214.483 166.315C214.694 166.315 214.896 166.387 215.049 166.517C215.201 166.646 215.291 166.823 215.301 167.01C215.397 168.179 214.989 169.337 214.16 170.247C213.332 171.158 212.145 171.753 210.841 171.911Z\" fill=\"#2E3138\"/>\\n<path d=\"M227.948 166.658C227.952 166.505 228.001 166.355 228.089 166.224C228.178 166.092 228.303 165.983 228.453 165.908C228.602 165.832 228.771 165.793 228.943 165.793C229.115 165.793 229.285 165.832 229.434 165.908C229.98 166.172 230.426 166.747 231.17 166.613C231.864 166.482 232.112 165.819 232.31 165.29C232.347 165.176 232.421 165.075 232.522 164.998C232.623 164.921 232.748 164.873 232.88 164.859C233.011 164.844 233.145 164.865 233.264 164.918C233.383 164.971 233.482 165.054 233.548 165.156C233.714 165.478 233.802 165.828 233.806 166.183C233.809 166.537 233.729 166.888 233.57 167.213C233.411 167.538 233.177 167.83 232.883 168.069C232.589 168.308 232.242 168.489 231.864 168.6C230.369 169.086 227.832 168.335 227.948 166.658Z\" fill=\"#2E3138\"/>\\n<path d=\"M213.071 158.092C208.271 157.051 204.745 159.77 202.317 163.037C202.19 163.221 201.992 163.358 201.761 163.423C201.53 163.488 201.28 163.476 201.057 163.39C200.834 163.304 200.654 163.15 200.549 162.955C200.443 162.761 200.42 162.539 200.483 162.33C201.375 157.21 208.71 155.179 213.517 156.724C213.71 156.784 213.87 156.908 213.963 157.07C214.057 157.233 214.077 157.42 214.02 157.595C213.963 157.77 213.833 157.919 213.657 158.012C213.48 158.104 213.271 158.133 213.071 158.092Z\" fill=\"#2E3138\"/>\\n<path d=\"M122.481 332.1C122.06 332.101 121.723 332.443 121.723 332.864C121.723 333.283 122.047 333.624 122.466 333.627C195.362 334.15 320.416 334.23 380.003 331.69C380.219 331.69 380.427 331.613 380.58 331.477C380.734 331.34 380.82 331.155 380.82 330.962C380.82 330.769 380.734 330.584 380.58 330.448C380.427 330.311 380.219 330.234 380.003 330.234C370.433 330.322 361.219 330.411 351.701 330.543C351.756 330.498 378.966 286.215 388.63 266.479C388.786 266.171 389 265.793 389.24 265.369C390.681 262.826 393.049 258.646 389.226 258.003C380.192 256.477 299.876 255.293 298.127 255.795C296.442 256.272 285.242 275.439 283.408 278.838C282.621 277.904 281.833 276.971 281.044 276.038C277.512 271.859 273.983 267.682 270.62 263.387C261.068 251.188 251.558 239.317 236.367 232.215C230.071 229.257 221.993 226.476 214.805 227.889C214.782 227.889 214.77 227.9 214.757 227.911C214.745 227.922 214.733 227.934 214.707 227.934C214.017 221.294 214.356 219.16 214.688 217.067C214.856 216.012 215.022 214.968 215.053 213.362C215.963 213.399 216.875 213.37 217.779 213.275C232.988 211.465 239.589 193.849 240.481 182.192C241.031 175.632 239.948 169.045 237.309 162.901C234.67 156.757 230.541 151.208 225.215 146.651C225.077 146.528 224.89 146.459 224.695 146.459C224.5 146.459 224.313 146.528 224.175 146.651C224.037 146.774 223.96 146.941 223.96 147.114C223.96 147.288 224.037 147.455 224.175 147.578C229.762 152.797 233.854 159.138 236.107 166.064C238.36 172.991 238.706 180.299 237.116 187.369C235.53 194.389 232.11 202.205 225.964 207.061C224.28 208.51 222.233 209.582 219.992 210.188C217.752 210.794 215.381 210.917 213.077 210.548C210.996 210.07 209.137 209.019 207.766 207.544C206.396 206.07 205.583 204.247 205.445 202.336C205.395 201.41 203.611 201.1 203.461 202.116C202.569 207.9 207.179 212.094 212.879 213.197C212.266 215.572 211.967 218.002 211.987 220.439C211.83 223.734 212.045 227.035 212.631 230.292C212.698 230.696 213.005 230.638 213.796 230.488C215.335 230.197 218.708 229.557 225.716 231.307C229.433 232.278 240.634 235.635 254.314 248.615C259.374 253.384 264.541 259.946 269.475 266.211C274.007 271.966 278.343 277.472 282.218 281.109C279.373 286.306 276.557 291.536 273.747 296.752C272.837 298.442 271.927 300.131 271.018 301.817C261.347 298.27 252.802 292.66 246.136 285.481C245.679 277.4 243.117 269.524 238.652 262.478C238.541 262.302 238.355 262.173 238.137 262.119C237.918 262.065 237.685 262.091 237.487 262.19C237.29 262.29 237.145 262.455 237.085 262.649C237.024 262.844 237.053 263.052 237.164 263.228C243.323 274.648 245.1 287.555 242.22 299.962C241.651 302.241 240.692 304.374 239.734 306.505C239.021 308.089 238.31 309.671 237.76 311.309C237.314 312.59 239.196 313.119 239.99 312.148C244.199 306.899 246.09 296.002 246.186 289.278C252.656 295.756 260.88 300.651 270.076 303.495C268.827 305.799 267.584 308.105 266.341 310.41C263.635 315.429 260.931 320.445 258.18 325.437C253.497 325.605 246.091 325.48 239.02 325.361C229.403 325.199 220.404 325.047 219.719 325.658C218.99 326.606 218.61 327.732 218.629 328.88C218.595 329.25 218.646 329.623 218.779 329.975C218.911 330.327 219.121 330.651 219.398 330.929L203.151 330.972C206.567 330.795 209.956 330.332 213.275 329.588L213.293 329.584C215.955 328.969 216.548 328.832 217.093 326.365C217.789 323.27 217.969 320.101 217.628 316.96C220.522 315.807 223.503 314.834 226.548 314.047C234.425 312.421 240.149 315.906 246.103 319.531C249.091 321.35 252.137 323.204 255.541 324.466C256.384 324.776 257.077 323.627 256.433 323.097C253.318 320.936 250.002 319.016 246.52 317.357L246.26 317.211C239.43 313.347 234.395 310.498 226.446 312.016C223.228 312.491 220.156 313.558 217.426 315.15C217.185 313.708 216.871 312.276 216.484 310.859C216.371 310.536 216.122 310.264 215.79 310.1C215.458 309.936 215.068 309.892 214.7 309.977C207.912 311.462 200.811 311.381 194.068 309.739C187.325 308.098 181.164 304.951 176.167 300.597C171.17 296.243 167.503 290.826 165.512 284.857C163.522 278.888 163.273 272.565 164.791 266.487C165.235 264.722 162.163 263.972 161.767 265.737C160.123 272.168 160.327 278.865 162.361 285.207C164.394 291.549 168.19 297.332 173.399 302.02C178.607 306.708 185.059 310.15 192.157 312.027C199.255 313.904 206.77 314.155 214.006 312.758C215.138 317.397 215.155 322.196 214.056 326.842C203.108 329.712 191.262 328.962 180.16 326.975C169.426 325.217 159.092 321.888 149.579 317.122C131.589 307.763 119.545 291.913 119.693 273.016C119.644 263.384 122.357 253.902 127.573 245.465C132.965 237.883 140.55 231.735 149.531 227.667C157.212 223.957 169.108 218.924 177.384 223.825C178.623 224.554 181.548 226.673 184.472 228.792C187.396 230.912 190.321 233.031 191.56 233.759C198.045 237.556 214.656 245.942 217.134 234.023C217.283 233.186 215.796 232.788 215.598 233.671C213.666 241.839 203.504 237.777 198.052 235.04C195.371 233.685 189.958 229.881 185.342 226.637C181.921 224.234 178.939 222.138 177.83 221.574C181.295 219.149 182.881 215.096 184.365 211.305L184.372 211.287C186.455 205.959 187 200.251 185.958 194.686C184.268 196.452 181.951 197.652 179.391 198.085C176.832 198.519 174.182 198.16 171.882 197.07C164.125 193.499 162.506 181.377 166.778 174.774C168.158 172.827 170.045 171.206 172.28 170.049C172.28 170.049 175.946 157.863 177.582 153.89C179.51 148.678 182.557 143.849 186.554 139.673C190.527 135.419 196.087 132.583 202.216 131.683C205.184 131.149 208.227 131.029 211.236 131.328C203.852 120.423 186.008 119.584 174.212 125.103C153.743 134.64 153.396 160.463 153.198 178.262C153.188 179.33 153.291 180.636 153.407 182.109C153.86 187.878 154.514 196.206 149.381 202.853C147.604 205.402 145.04 207.44 141.997 208.725C139.223 209.866 136.547 211.374 135.753 214.157C135.416 215.603 135.464 217.099 135.895 218.525C136.325 219.951 137.125 221.268 138.231 222.368C140.321 224.45 143.04 225.952 146.062 226.696C127.712 236.069 119.411 249.523 117.365 267.755C116.37 275.163 117.257 282.675 119.959 289.736C122.661 296.797 127.11 303.228 132.977 308.552C132.729 312.008 133.079 315.477 134.017 318.838C134.634 322.588 135.732 326.262 137.29 329.788C137.785 330.803 139.52 330.052 139.223 329.081C137.257 323.057 135.962 316.875 135.357 310.625C150.073 322.781 173.806 330.012 193.851 330.977C160.289 331.063 138.303 332.049 122.481 332.1Z\" fill=\"#2E3138\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2164_2924\">\\n<rect width=\"424\" height=\"400\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-94g79s\",\"data-framer-name\":\"Proceso\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nu8d4e\",\"data-framer-name\":\"Proceso\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gkoqdt\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lyxgs8\",\"data-framer-name\":\"Text \",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k0gev7\",\"data-framer-name\":\"Text Content Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"Proceso\"})}),className:\"framer-htovob\",\"data-framer-name\":\"Subheading\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{o9gRi4KJy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:[\"Siempre respondemos en menos de\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\" 24 horas\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"116%\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:[\"Siempre respondemos en menos de\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\" 24 horas\"})]})}),className:\"framer-l2ebrv\",\"data-framer-name\":\"Siempre respondemos en menos de 24 horas\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation26,__framer__exit:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ucqoro hidden-1qkjto7 hidden-1a8ojbs\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pu826c\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:223,intrinsicWidth:236,svg:'<svg width=\"236\" height=\"223\" viewBox=\"0 0 236 223\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M148.151 137.413C149.267 135.36 149.001 134.422 151.806 126.18C153.17 122.165 154.633 118.156 156.309 114.256C156.507 113.795 155.843 113.388 155.618 113.853C152.874 119.402 150.531 125.141 148.609 131.026C147.813 132.978 147.282 135.028 147.032 137.121C147.038 137.25 147.085 137.374 147.166 137.474C147.247 137.575 147.358 137.646 147.483 137.679C147.608 137.712 147.741 137.704 147.861 137.656C147.981 137.608 148.082 137.523 148.151 137.413Z\" fill=\"#2E3138\"/>\\n<path d=\"M143.571 127.994C138.92 129.075 137.694 129.55 132.055 128.359C131.599 128.262 131.263 128.909 131.73 129.148C135.263 130.959 140.555 131.132 143.988 128.97C144.097 128.902 144.177 128.798 144.216 128.675C144.254 128.553 144.248 128.421 144.197 128.304C144.147 128.186 144.056 128.09 143.942 128.033C143.827 127.976 143.695 127.962 143.571 127.994Z\" fill=\"#2E3138\"/>\\n<path d=\"M163.411 96.6879C163.356 96.6054 163.271 96.5471 163.174 96.5249C163.078 96.5026 162.976 96.5182 162.89 96.5682C162.804 96.6183 162.741 96.6992 162.713 96.7945C162.684 96.8897 162.693 96.9922 162.738 97.0809C163.905 99.4917 165.575 101.624 167.636 103.334C169.697 105.044 172.101 106.293 174.685 106.994C177.27 107.696 179.975 107.836 182.618 107.403C185.261 106.97 187.78 105.976 190.006 104.486C192.337 102.976 195.495 100.394 196.511 97.5422C197.288 98.2862 201.86 102.568 201.896 102.58C195.392 110.764 186.743 117.243 175.949 117.791C165.606 118.317 153.133 113.186 149.732 102.616C149.699 102.532 149.636 102.463 149.556 102.423C149.475 102.382 149.382 102.373 149.295 102.397C149.208 102.421 149.133 102.476 149.085 102.552C149.036 102.628 149.017 102.72 149.032 102.809C151.613 116.642 174.55 126.112 192.78 113.737C196.989 111.123 200.425 107.434 202.732 103.049C203.711 101.013 196.341 95.3983 195.73 96.0245C194.647 97.133 193.951 98.5975 192.917 99.768C191.318 101.582 189.375 103.061 187.2 104.119C185.026 105.177 182.663 105.793 180.248 105.931C173.453 106.246 167.027 102.308 163.411 96.6879Z\" fill=\"#2E3138\"/>\\n<path d=\"M198.462 94.8563C197.69 92.8525 198.757 91.4116 199.818 89.8319C199.863 89.7441 199.883 89.6451 199.874 89.5467C199.865 89.4482 199.828 89.3543 199.767 89.2761C199.707 89.1979 199.625 89.1386 199.532 89.1053C199.439 89.0719 199.339 89.0659 199.242 89.0879C196.806 89.9472 196.622 93.2543 197.617 95.2159C197.846 95.6648 198.649 95.3437 198.462 94.8563Z\" fill=\"#2E3138\"/>\\n<path d=\"M201.041 90.117C202.124 89.125 202.903 89.4503 203.375 91.0929C203.295 91.5814 203.703 92.2634 204.297 92.0167C205.186 91.6447 206.273 92.5784 205.185 93.4452C204.565 93.9412 205.239 94.9766 205.948 94.7459C207.052 95.0162 207.312 95.5532 206.758 96.3716C206.131 97.2941 205.049 97.5669 204.193 98.115C204.053 98.1993 203.948 98.3309 203.898 98.4859C203.847 98.6409 203.854 98.8089 203.917 98.9592C203.98 99.1096 204.095 99.2323 204.241 99.3049C204.387 99.3776 204.554 99.3953 204.712 99.355C206.556 99.0661 208.654 97.593 208.642 95.5271C208.639 95.054 208.499 94.5919 208.238 94.1974C207.976 93.8029 207.606 93.4932 207.171 93.3063C207.263 92.9537 207.272 92.5845 207.196 92.228C207.12 91.8716 206.962 91.5378 206.734 91.2533C206.506 90.9689 206.215 90.7417 205.884 90.5898C205.553 90.4379 205.19 90.3656 204.826 90.3786C204.734 89.8963 204.497 89.4536 204.147 89.1093C203.797 88.7651 203.35 88.5356 202.866 88.4516C202.382 88.3676 201.884 88.4329 201.439 88.639C200.993 88.845 200.62 89.1819 200.371 89.6049C200.093 90.0104 200.706 90.4654 201.041 90.117Z\" fill=\"#2E3138\"/>\\n<path d=\"M131.857 92.9343C131.579 93.3745 132.25 93.7478 132.547 93.3373C134.9 90.1171 138 87.5166 141.581 85.7597C145.145 83.9815 148.773 83.6256 152.604 82.9201C152.703 82.8885 152.793 82.8329 152.865 82.758C152.938 82.6832 152.991 82.5915 153.019 82.4912C153.048 82.391 153.051 82.2852 153.028 82.1835C153.005 82.0817 152.958 81.9871 152.89 81.9082C154.191 79.8982 158.13 84.6685 158.972 85.6158C160.477 87.3281 161.705 89.2652 162.612 91.357C162.812 91.8134 163.411 91.5195 163.454 91.1289C163.544 89.8326 163.192 88.5439 162.455 87.4734C162.875 86.8989 163.22 86.274 163.483 85.6133C164.125 86.0965 164.874 86.419 165.666 86.5538C166.458 86.6887 167.271 86.6319 168.037 86.3884C169.374 85.9115 170.554 85.0747 171.446 83.9699C172.339 82.8652 172.909 81.5356 173.093 80.1276C174.349 80.9051 175.573 79.334 175.849 78.404C176.233 76.6888 176.379 74.9288 176.284 73.1737C176.284 72.5227 176.284 71.8729 176.255 71.238C178.611 70.6924 180.251 68.3116 180.347 65.1397C180.394 63.6046 180.177 61.9901 178.668 61.2374C176.684 60.2454 175.06 62.0285 173.165 61.5623C170.89 61.0031 170.327 57.4331 168.014 57.0909C166.661 56.8912 165.595 57.8758 164.437 58.3495C163.152 58.874 161.886 58.4077 160.625 58.9149C155.441 60.9993 154.874 71.925 158.006 75.8831C156.935 77.2224 155.984 78.6536 155.164 80.1598C153.237 79.246 151.743 80.2566 151.568 81.623C145.619 81.1605 136.77 85.1372 131.857 92.9343ZM159.252 76.4857C160.368 76.3196 162.798 73.1675 162.798 73.1675C162.798 73.1675 162.278 70.7172 163.285 69.9348C163.647 69.6374 164.094 69.4625 164.562 69.4351C165.03 69.4077 165.494 69.5292 165.889 69.7823C166.213 70.0228 166.474 70.3837 166.865 70.432C167.875 70.556 167.746 68.9775 168.748 68.7183C170.534 68.2583 171.104 70.9156 174.693 71.3434C174.693 71.8543 174.488 77.3537 174.436 77.5906C174.436 78.2874 173.975 78.5664 173.025 78.4586C172.405 78.3507 172.049 78.3346 171.919 78.5726C170.823 80.6013 170.899 82.8469 168.709 84.2444C168.204 84.5907 167.63 84.8228 167.026 84.9244C166.423 85.026 165.804 84.9948 165.214 84.8328C164.624 84.6708 164.076 84.382 163.608 83.9866C163.141 83.5911 162.766 83.0985 162.509 82.5431C162.385 82.2195 161.808 82.2182 161.859 82.6311C161.945 83.3713 162.21 84.0797 162.629 84.6958C162.237 85.2108 161.93 85.7851 161.719 86.397C161.651 86.3065 158.905 82.1265 156.079 80.6769C156.75 79.9577 158.816 77.1057 159.252 76.4857Z\" fill=\"#2E3138\"/>\\n<path d=\"M170.412 73.3486C169.901 73.7476 169.538 74.3064 169.381 74.9358C169.338 75.1014 169.356 75.2767 169.432 75.4301C169.507 75.5834 169.635 75.7046 169.793 75.7718C169.95 75.8389 170.126 75.8475 170.289 75.7961C170.452 75.7446 170.591 75.6365 170.681 75.4913C171.021 74.992 171.2 74.4012 171.196 73.7975C171.186 73.4527 170.754 73.0857 170.412 73.3486Z\" fill=\"#2E3138\"/>\\n<path d=\"M168.976 73.2345C169.518 73.0287 170.055 72.8352 170.576 72.5847C170.832 72.5044 171.069 72.3742 171.274 72.2015C171.479 72.0289 171.648 71.8173 171.77 71.5791C171.802 71.4596 171.786 71.3324 171.725 71.2248C171.664 71.1173 171.563 71.0379 171.444 71.0037C170.928 70.9489 170.41 71.0916 169.995 71.403C169.509 71.6818 169.039 71.986 168.586 72.3144C168.149 72.6182 168.404 73.4515 168.976 73.2345Z\" fill=\"#2E3138\"/>\\n<path d=\"M169.432 81.2585C169.497 81.1883 169.547 81.1044 169.577 81.0127C169.606 80.9211 169.615 80.824 169.603 80.7286C169.59 80.6331 169.557 80.5416 169.505 80.4606C169.452 80.3796 169.383 80.3112 169.301 80.2603C168.134 79.9847 166.907 80.1222 165.829 80.6496C165.755 80.7246 165.714 80.8257 165.714 80.9311C165.714 81.0365 165.755 81.1376 165.829 81.2126C166.984 81.6659 168.265 81.6822 169.432 81.2585Z\" fill=\"#2E3138\"/>\\n<path d=\"M185.127 70.7049C187.048 69.879 186.096 67.1647 182.853 68.825C182.38 69.0404 181.955 69.3491 181.604 69.7327C181.252 70.1162 180.982 70.5666 180.809 71.057C180.692 71.4984 184.132 71.1314 185.127 70.7049Z\" fill=\"#2E3138\"/>\\n<path d=\"M183.68 74.1025C183.277 73.9574 183.094 74.5067 183.398 74.7758C185.258 76.4287 185.051 77.6278 185.606 77.9378C185.769 78.0317 185.962 78.0584 186.145 78.0121C186.327 77.9658 186.484 77.8501 186.582 77.6898C187.028 76.9135 186.979 75.2953 183.68 74.1025Z\" fill=\"#2E3138\"/>\\n<path d=\"M104.618 95.5297C106.245 94.2674 107.521 92.6095 109.279 91.4451C111.234 90.1116 113.45 89.2079 115.78 88.7934C118.11 88.379 120.501 88.4633 122.796 89.0407C125.021 89.5975 126.835 90.8921 128.975 91.6448C129.595 91.8593 129.878 91.0731 129.552 90.6689C128.016 88.768 125.059 87.8169 122.754 87.3085C120.314 86.7685 117.789 86.7263 115.332 87.1845C109.752 88.2286 105.279 92.0589 104.131 94.6245C102.583 93.5277 101.465 91.9274 100.966 90.0972C102.968 87.8231 103.912 85.1434 108.944 82.0062C114.625 78.4636 124.518 75.7752 133.889 76.7114C138.72 77.3327 143.433 78.6631 147.875 80.6596C148.272 80.822 148.487 80.2045 148.154 79.9925C135.942 72.1805 117.526 74.3765 107.692 80.76C104.577 82.7837 100.624 86.0648 99.6196 89.8046C99.2277 91.2418 103.655 97.2024 104.618 95.5297Z\" fill=\"#2E3138\"/>\\n<path d=\"M94.2206 94.9505C96.5766 95.1439 97.3801 96.1905 98.4849 96.4559C98.6165 96.4875 98.7545 96.4803 98.8821 96.4352C99.0097 96.3901 99.1214 96.309 99.2039 96.2017C99.2864 96.0944 99.3361 95.9655 99.3469 95.8306C99.3577 95.6957 99.3292 95.5606 99.2649 95.4415C99.0976 95.1611 98.8763 94.9167 98.6139 94.7223C99.1725 94.1496 99.6498 93.5029 100.032 92.8003C100.057 92.6987 100.051 92.5922 100.016 92.4936C99.9815 92.3951 99.9188 92.3088 99.8359 92.2451C99.753 92.1815 99.6534 92.1433 99.5492 92.1351C99.445 92.1269 99.3406 92.1491 99.2488 92.1989C98.8029 92.4822 98.4225 92.8571 98.1328 93.2988C97.9009 93.5815 97.674 93.868 97.4557 94.1606C96.3552 93.893 95.2087 93.8752 94.1003 94.1085C93.613 94.209 93.7618 94.9133 94.2206 94.9505Z\" fill=\"#2E3138\"/>\\n<path d=\"M102.124 103.234C102.518 102.226 102.583 101.119 102.309 100.073C102.036 99.0257 101.438 98.0922 100.602 97.4058C100.419 97.2694 100.176 97.4579 100.173 97.6538C100.145 98.9162 100.785 100.083 100.793 101.338C100.829 101.741 100.762 102.146 100.597 102.515C100.431 102.885 100.174 103.205 99.8489 103.446C99.3547 103.64 98.836 103.765 98.3076 103.818C98.1968 103.848 98.0958 103.906 98.0149 103.988C97.934 104.069 97.8759 104.17 97.8466 104.281C97.8173 104.392 97.8178 104.509 97.848 104.619C97.8782 104.73 97.9371 104.831 98.0187 104.912C99.4509 106.135 101.512 104.698 102.124 103.234Z\" fill=\"#2E3138\"/>\\n<path d=\"M96.1648 104.548C96.2872 103.959 96.5374 103.404 96.8977 102.923C97.23 102.466 97.8463 102.165 98.0744 101.622C98.1238 101.531 98.149 101.429 98.1478 101.326C98.1466 101.222 98.119 101.121 98.0675 101.031C98.0161 100.941 97.9425 100.866 97.8539 100.813C97.7652 100.76 97.6644 100.73 97.5611 100.727C96.5691 100.627 95.0178 102.269 95.1803 104.398C95.2212 104.945 96.0508 105.14 96.1648 104.548Z\" fill=\"#2E3138\"/>\\n<path d=\"M96.4066 98.7846C94.4226 97.9005 92.5068 100.302 91.9426 101.911C91.7157 102.562 92.7188 102.978 93.0586 102.382C94.1833 100.398 95.6291 100.409 96.4971 99.5138C96.5465 99.4633 96.5838 99.4023 96.6063 99.3354C96.6289 99.2686 96.6361 99.1975 96.6274 99.1274C96.6187 99.0574 96.5943 98.9902 96.5561 98.9308C96.5179 98.8715 96.4668 98.8215 96.4066 98.7846Z\" fill=\"#2E3138\"/>\\n<path d=\"M89.9798 100.121C89.9563 100.23 89.9715 100.344 90.0227 100.443C90.074 100.543 90.158 100.621 90.2606 100.665C90.3632 100.709 90.4778 100.716 90.5849 100.684C90.692 100.653 90.7849 100.586 90.8478 100.493C92.1088 98.4449 93.6489 98.4771 94.481 97.6575C94.5483 97.5878 94.5964 97.502 94.6208 97.4082C94.6451 97.3145 94.6447 97.216 94.6198 97.1224C94.5948 97.0288 94.5461 96.9433 94.4783 96.8741C94.4105 96.8049 94.326 96.7544 94.233 96.7275C92.9917 96.2799 90.5911 97.6414 89.9798 100.121Z\" fill=\"#2E3138\"/>\\n<path d=\"M87.2865 97.3537C88.0057 97.1131 88.4087 96.4138 89.1626 96.2377C89.5709 96.1442 89.9947 96.1409 90.4044 96.2281C90.8141 96.3153 91.1999 96.4908 91.5347 96.7424C92.0692 97.1392 92.5267 96.3295 92.1845 95.893C91.8329 95.389 91.3446 94.9961 90.7772 94.7603C90.2097 94.5246 89.5867 94.456 88.9816 94.5625C87.9474 94.7398 86.421 95.5383 86.5227 96.7746C86.5239 96.867 86.5462 96.958 86.5879 97.0405C86.6295 97.123 86.6895 97.1949 86.7631 97.2507C86.8368 97.3066 86.9222 97.3449 87.0129 97.3627C87.1036 97.3806 87.1972 97.3775 87.2865 97.3537Z\" fill=\"#2E3138\"/>\\n<path d=\"M99.9804 109.943C101.096 110.669 102.305 109.075 102.46 108.123C102.635 107.082 101.953 105.576 100.707 105.687C100.627 105.689 100.548 105.712 100.479 105.753C100.41 105.795 100.353 105.853 100.313 105.923C100.273 105.993 100.252 106.071 100.251 106.152C100.25 106.232 100.269 106.311 100.308 106.382C100.538 106.83 100.928 107.306 100.815 107.853C100.691 108.458 99.9792 108.504 99.7349 109.033C99.6529 109.188 99.6326 109.368 99.6782 109.537C99.7238 109.706 99.8318 109.851 99.9804 109.943Z\" fill=\"#2E3138\"/>\\n<path d=\"M156.756 94.0565C157.772 94.0702 159.957 94.7485 161.112 94.56C161.115 94.7765 161.177 94.9883 161.291 95.172C161.406 95.3557 161.569 95.5044 161.762 95.6016C162.195 95.8008 162.674 95.8755 163.147 95.8175C163.619 95.7594 164.067 95.5708 164.438 95.2729C164.81 94.975 165.091 94.5794 165.25 94.1307C165.409 93.6819 165.44 93.1977 165.34 92.7322C164.981 91.4699 162.488 91.3248 161.408 93.2592C159.742 91.2529 155.349 89.6347 153.124 89.5839C143.374 89.3607 140.559 93.4713 133.847 96.2799C127.135 99.0885 124.416 95.0014 123.54 94.6046C121.589 93.7193 113.846 94.6889 113.338 95.3945C112.764 96.1918 114.609 103.174 115.897 104.136C116.331 104.461 125.157 106.592 129.519 106.235C142.408 105.181 143.973 98.0704 152.203 94.8489C153.655 94.2924 155.202 94.0233 156.756 94.0565Z\" fill=\"#2E3138\"/>\\n<path d=\"M190.923 217.363C185.941 221.056 181.364 214.049 176.775 213.173C172.261 212.313 169.227 217.099 169.583 221.126C166.483 221.649 133.062 221.002 125.371 221.009C117.679 221.016 95.6589 221.245 92.8466 219.776C90.1459 218.367 89.3399 215.104 86.7036 213.646C84.1195 212.216 81.0939 212.976 78.3448 213.32C75.0528 213.727 71.7289 212.869 69.0448 210.92C65.2578 208.181 63.6967 203.635 60.4491 200.399C59.2396 199.024 57.5365 198.183 55.7098 198.057C53.2509 198.057 51.7183 199.825 50.229 201.537C45.5592 206.906 38.9946 203.072 35.6392 198.327C32.8256 194.347 30.4312 189.275 25.398 187.76C24.1487 187.368 22.8206 187.298 21.5371 187.557C20.2536 187.816 19.0564 188.395 18.0567 189.241C17.0571 190.086 16.2876 191.171 15.8196 192.394C15.3516 193.617 15.2004 194.938 15.3801 196.235C13.1428 195.741 10.8041 196.018 8.74454 197.022C6.68497 198.026 5.02567 199.697 4.03656 201.764C3.35631 203.209 3.14139 204.829 3.42149 206.401C3.70158 207.973 4.46287 209.419 5.6002 210.54C4.41137 210.72 3.29459 211.223 2.37085 211.992C1.44711 212.762 0.751631 213.77 0.35975 214.907C-0.0321303 216.044 -0.105469 217.266 0.147679 218.442C0.400827 219.617 0.97081 220.701 1.79588 221.576C2.50144 222.395 3.66828 221.204 2.97636 220.391C2.25158 219.551 1.82787 218.492 1.77228 217.383C1.71669 216.275 2.03239 215.179 2.66942 214.27C3.30646 213.361 4.22845 212.69 5.28952 212.364C6.35058 212.038 7.49013 212.075 8.52784 212.469C9.42436 212.789 10.0654 211.3 9.17884 210.92C5.66592 209.421 3.90388 205.836 5.67212 202.263C6.6384 200.396 8.26503 198.957 10.2349 198.225C12.2048 197.492 14.3768 197.52 16.3274 198.302C16.4719 198.34 16.6237 198.339 16.7677 198.3C16.9118 198.261 17.0431 198.185 17.1487 198.079C17.2543 197.974 17.3304 197.842 17.3695 197.698C17.4085 197.554 17.4093 197.402 17.3715 197.258C15.1941 191.003 22.4493 185.917 28.4546 191.475C31.8336 194.602 33.4729 199.142 36.7713 202.347C40.1466 205.627 46.044 207.499 50.0244 204.178C51.8522 202.653 53.2212 199.524 56.0062 199.775C60.7628 200.204 62.9502 209.417 69.4862 213.239C71.9196 214.681 74.7393 215.334 77.5586 215.11C80.5458 214.856 84.3786 213.485 86.8475 215.854C88.612 217.548 89.1626 220.032 92.611 221.53C95.0476 222.589 115.101 222.705 122.454 222.702C130.794 222.702 167.253 223.433 170.748 222.606C170.961 222.541 171.141 222.397 171.251 222.203C171.36 222.01 171.391 221.782 171.337 221.566C171.004 220.165 171.192 218.691 171.865 217.418C172.538 216.145 173.651 215.161 174.997 214.648C177.189 213.956 179.324 215.626 181.049 216.762C184.075 218.753 188.187 220.73 191.456 218.063C191.854 217.744 191.336 217.057 190.923 217.363Z\" fill=\"#2E3138\"/>\\n<path d=\"M144.759 137.505C139.555 138.54 134.233 138.851 128.943 138.429C123.781 137.99 115.764 136.269 114.193 134.067C115.52 129.84 116.438 125.451 117.869 121.23C120.597 113.18 122.018 111.124 123.033 107.853C123.061 107.737 123.047 107.615 122.993 107.509C122.94 107.402 122.85 107.318 122.74 107.272C122.63 107.226 122.507 107.22 122.393 107.256C122.28 107.292 122.183 107.368 122.119 107.469C116.598 116.068 114.095 132.745 111.179 137.983C109.036 141.841 106.567 145.509 103.798 148.947C99.8639 153.334 95.2064 156.476 90.4647 159.859C85.842 159.929 75.0304 161.729 60.7964 155.813C60.0772 154.927 54.8345 152.56 53.4333 153.003C52.424 153.328 47.2532 159.507 45.7019 162.001C45.1439 162.895 41.9298 168.315 42.277 169.407C42.3445 169.57 42.4614 169.708 42.6113 169.801C42.7612 169.895 42.9366 169.939 43.1128 169.927C43.4191 169.927 48.6531 167.611 52.0507 166.097C51.2973 165.225 50.7434 164.199 50.4276 163.091C50.3916 162.701 50.8603 162.516 51.1592 162.671C52.076 163.462 52.8234 164.431 53.3564 165.518C53.3837 165.506 53.4643 165.467 54.501 165.022C53.8624 164.129 52.7488 162.418 52.9386 161.784C52.9734 161.664 53.0463 161.557 53.1464 161.481C53.2464 161.405 53.3683 161.363 53.4941 161.362C54.4402 161.476 55.3628 163.43 55.8501 164.434C56.0981 164.326 56.3399 164.216 56.5804 164.106C56.2658 163.071 56.043 162.01 55.9146 160.936C55.9545 160.796 56.0481 160.676 56.1752 160.604C56.3023 160.532 56.4527 160.512 56.5941 160.549C57.3282 160.744 57.8663 162.331 58.0362 163.401C58.2863 163.279 58.5236 163.132 58.7442 162.962C62.0992 165.785 65.8883 168.046 69.965 169.658C90.6842 178.476 113.711 172.724 127.17 158.955C127.727 158.378 126.893 157.568 126.302 158.087C109.728 172.42 90.1696 175.56 72.3619 168.851C67.8455 166.992 63.5159 164.709 59.4312 162.031C60.1777 160.455 60.84 158.841 61.4152 157.195C69.6525 160.867 82.9379 163.558 91.4926 160.717C91.7567 160.626 101.521 154.005 105.152 149.936C107.141 147.714 108.928 145.319 110.493 142.78C112.008 140.59 113.218 138.204 114.089 135.687C119.651 139.668 130.544 140.433 137.34 139.964C139.747 139.795 142.87 139.674 145.04 138.503C145.138 138.441 145.214 138.349 145.256 138.24C145.298 138.131 145.304 138.012 145.272 137.9C145.241 137.787 145.174 137.688 145.081 137.617C144.989 137.546 144.876 137.507 144.759 137.505Z\" fill=\"#2E3138\"/>\\n<path d=\"M211.952 201.778C211.554 201.424 211.033 201.24 210.502 201.267C206.408 201.287 202.347 202 198.491 203.375C170.18 169.807 150.787 142.789 148.008 139.433C147.744 139.108 147.223 139.525 147.439 139.87C150.911 145.499 163.595 162.358 166.464 166.129C176.105 178.791 186.676 191.977 196.968 203.97C196.692 204.094 190.828 208.237 190.499 208.637C188.892 206.749 187.121 205.006 185.208 203.43C179.268 197.951 132.26 154.521 125.875 149.47C125.503 149.173 124.997 149.638 125.338 150.007C129.949 154.931 151.331 174.607 183.208 203.862C185.339 205.819 187.435 208.185 189.946 209.668C189.482 211.595 191.888 215.496 195.056 215.418C196.451 215.382 211.968 203.71 212.141 203.219C212.239 202.983 212.274 202.726 212.241 202.473C212.207 202.22 212.108 201.98 211.952 201.778ZM201.98 206.782C201.953 206.871 201.904 206.952 201.837 207.016C201.77 207.081 201.687 207.127 201.598 207.151C201.508 207.175 201.413 207.175 201.323 207.153C201.233 207.13 201.15 207.084 201.082 207.021C200.627 206.052 200.331 205.016 200.208 203.953C200.177 203.821 200.198 203.681 200.267 203.564C200.336 203.447 200.448 203.361 200.579 203.325C200.71 203.289 200.85 203.305 200.969 203.37C201.089 203.435 201.178 203.544 201.219 203.674C201.643 204.661 201.901 205.711 201.984 206.782H201.98ZM204.065 205.833C204.046 205.897 204.013 205.957 203.967 206.007C203.922 206.057 203.867 206.097 203.804 206.123C203.742 206.148 203.674 206.16 203.607 206.156C203.54 206.152 203.474 206.133 203.415 206.1C203.041 205.758 202.751 205.333 202.568 204.86C202.385 204.387 202.314 203.878 202.361 203.372C202.331 202.663 203.353 202.595 203.538 203.212C203.96 204.018 204.144 204.927 204.068 205.833H204.065ZM206.367 205.014C206.346 205.093 206.307 205.165 206.253 205.226C206.2 205.287 206.133 205.335 206.058 205.366C205.983 205.398 205.902 205.412 205.821 205.407C205.74 205.402 205.661 205.379 205.59 205.339C204.926 204.762 204.491 203.966 204.367 203.095C204.314 202.939 204.322 202.769 204.39 202.619C204.457 202.468 204.579 202.349 204.731 202.285C204.882 202.221 205.053 202.217 205.207 202.274C205.362 202.33 205.489 202.443 205.564 202.59C206.12 203.272 206.408 204.135 206.372 205.014H206.367Z\" fill=\"#2E3138\"/>\\n<path d=\"M109.497 118.15C99.4976 111.183 90.3576 103.058 82.2682 93.9425C80.583 92.0465 78.573 89.9385 76.0372 90.0588C73.5845 90.1766 54.3235 111.609 55.814 114.363C57.3045 117.117 61.8206 121.209 63.3036 122.484C68.1297 126.624 88.5711 144.316 90.4596 145.126C91.2579 145.556 92.1871 145.674 93.0675 145.457C93.9478 145.241 94.7166 144.706 95.2249 143.955C96.6137 142.178 115.205 122.124 109.497 118.15ZM85.7575 107.879C83.9137 106.38 77.0292 98.466 75.9615 98.3073C74.0879 98.0308 72.1175 101.199 71.0474 102.5C69.5445 104.311 68.0355 106.145 66.6727 108.067C66.3801 108.478 65.7067 108.103 65.9833 107.664C67.5953 105.117 69.2159 102.626 71.0673 100.239C72.2155 98.7401 73.5559 96.5998 75.6404 96.4634C77.8724 96.3171 79.4236 98.6805 80.7244 100.121C82.887 102.315 84.8827 104.667 86.695 107.157C87.1042 107.765 86.2424 108.276 85.7575 107.879Z\" fill=\"#2E3138\"/>\\n<path d=\"M150.119 26.293C150.573 25.8519 150.92 25.312 151.132 24.7151C151.345 24.1183 151.416 23.4805 151.342 22.8514C151.268 22.2223 151.05 21.6188 150.704 21.0877C150.359 20.5567 149.896 20.1123 149.351 19.7892C147.455 18.6149 145.449 18.9311 143.347 19.0216C141.721 19.0911 131.061 19.2312 127.873 21.0056C127.02 21.5558 126.417 22.4196 126.196 23.4103C125.974 24.4011 126.151 25.4392 126.689 26.3005C115.205 27.4845 103.992 30.5362 93.4915 35.3351C81.2761 41.1244 70.4176 49.4225 61.6235 59.6887C42.1853 81.7818 31.8375 109.966 39.864 138.764C40.9129 142.543 42.3404 146.207 44.1246 149.7C46.3083 153.966 53.6627 151.002 51.9726 146.393C46.8154 132.335 44.5859 122.128 47.2073 107.316C50.6036 88.1417 61.5888 71.5146 75.7471 58.1437C88.756 45.8577 105.286 38.0792 124.558 35.6215C141.744 33.4305 159.122 35.9663 169.897 40.0384C191.399 48.1629 208.985 66.0598 216.397 80.8034C224.273 96.4572 226.039 108.903 226.427 114.757C226.637 117.905 226.752 129.265 221.038 151.709C219.426 158.033 216.721 163.182 213.629 169.048C210.797 174.379 207.622 179.521 204.126 184.441C202.416 186.614 200.804 188.853 198.993 190.946C197.343 192.854 199.443 196.059 201.813 194.602C212.912 187.782 220.661 176.135 225.754 164.355C231.433 151.591 234.752 137.904 235.55 123.957C237.607 79.2559 203.667 32.0342 150.119 26.293Z\" fill=\"#0088FF\"/>\\n<path d=\"M172.41 202.271C165.33 202.714 160.935 206.839 145.149 208.237C116.169 210.801 84.783 200.571 63.5443 177.134C61.7768 175.428 60.2702 173.471 59.0729 171.326C58.2359 169.558 55.7819 170.879 56.0969 172.578C57.1707 178.311 60.4208 183.315 64.1928 187.663C76.9165 202.321 92.6781 210.419 111.592 214.784C131.383 219.351 150.718 218.215 166.732 213.015C169.796 212.226 172.654 210.784 175.107 208.786C177.513 206.635 175.676 202.068 172.41 202.271Z\" fill=\"#0088FF\"/>\\n<path d=\"M84.0376 64.0856C82.1094 62.6249 79.5947 60.5566 77.08 60.5851C76.6401 60.5952 76.2081 60.7043 75.8163 60.9045C75.4244 61.1047 75.0828 61.3906 74.8168 61.7411C74.5507 62.0916 74.3672 62.4976 74.2799 62.9289C74.1926 63.3602 74.2037 63.8056 74.3123 64.232C74.6879 65.5292 75.3848 66.7106 76.3385 67.6668C78.8084 70.5881 81.5724 73.2475 84.587 75.6028C85.3836 76.0608 86.3084 76.2453 87.2198 76.1279C88.1312 76.0106 88.9791 75.5979 89.6338 74.953C90.2938 74.3064 90.7169 73.4564 90.835 72.54C90.9531 71.6236 90.7593 70.6941 90.2848 69.9012C88.4788 67.6855 86.3768 65.7286 84.0376 64.0856Z\" fill=\"#0088FF\"/>\\n<path d=\"M136.645 59.2137C136.859 59.7332 137.182 60.2008 137.592 60.5848C138.003 60.9689 138.491 61.2606 139.023 61.4402C139.556 61.6199 140.12 61.6833 140.679 61.6263C141.239 61.5693 141.779 61.3931 142.264 61.1097C145.439 59.1852 144.335 53.1191 143.367 49.5479C142.623 46.8199 140.315 39.6279 136.29 43.0168C134.794 44.2767 134.909 46.4492 135.05 48.2248C135.529 54.6716 135.779 57.2868 136.645 59.2137Z\" fill=\"#0088FF\"/>\\n<path d=\"M200.641 129.523C203.164 129.347 215.367 129.586 216.213 129.419C219.072 128.856 219.696 124.326 217.046 123.048C216.191 122.635 202.641 122.858 199.873 123.841C199.206 124.037 198.631 124.464 198.251 125.046C197.871 125.628 197.712 126.327 197.801 127.016C197.889 127.707 198.226 128.343 198.748 128.805C199.271 129.266 199.944 129.522 200.641 129.523Z\" fill=\"#0088FF\"/>\\n<path d=\"M204.14 165.146C205.832 164.434 207.318 162.772 206.631 160.756C205.623 157.796 195.14 155.112 192.715 155.115C189.615 155.122 189.398 159.207 192.022 160.225C193.783 160.914 201.715 166.165 204.14 165.146Z\" fill=\"#0088FF\"/>\\n<path d=\"M133.278 192.284C133.185 195.087 132.84 198.786 134.352 201.241C135.751 203.515 139.758 203.999 141.018 201.241C142.37 198.283 141.648 194.966 141.194 191.848C140.816 189.244 140.466 186.257 139.058 183.978C138.128 182.471 135.462 182.144 134.618 183.978C133.628 186.631 133.173 189.454 133.278 192.284Z\" fill=\"#0088FF\"/>\\n<path d=\"M93.3884 189.887C94.859 188.501 102.335 182.924 102.247 180.4C102.25 179.913 102.124 179.433 101.881 179.01C101.639 178.587 101.288 178.237 100.866 177.993C95.9663 175.862 91.4255 181.861 88.7371 185.239C88.1371 185.859 87.8049 186.69 87.8121 187.553C87.8194 188.416 88.1655 189.241 88.7758 189.851C89.3862 190.461 90.2118 190.807 91.0747 190.814C91.9376 190.82 92.7685 190.488 93.3884 189.887Z\" fill=\"#0088FF\"/>\\n<path d=\"M63.7525 128.788C65.9845 127.755 65.0086 124.733 63.1325 124.033C59.6496 123.609 56.1346 123.511 52.6334 123.741C51.8754 123.95 51.2201 124.429 50.7907 125.088C50.3614 125.747 50.1877 126.54 50.3022 127.318C50.4136 128.091 50.7963 128.8 51.3819 129.317C51.9675 129.834 52.7179 130.126 53.499 130.14C56.9485 129.975 60.3782 129.523 63.7525 128.788Z\" fill=\"#0088FF\"/>\\n<path d=\"M123.931 14.8577C129.621 18.4537 142.562 15.8832 150.389 15.1379C155.776 14.6246 156.568 7.27635 155.938 5.38039C155.374 3.39015 154.074 1.68911 152.301 0.622507C150.289 -0.436453 138.758 0.622506 136.973 0.716746C132.705 0.952346 127.769 0.458827 123.931 2.54823C119.068 5.18571 119.559 12.0888 123.931 14.8577Z\" fill=\"#0088FF\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yik7i4\",\"data-framer-name\":\"Proceso\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation28,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dmozo3\",\"data-framer-name\":\"Progress steps element - vertical\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l74ft4\",\"data-framer-name\":\"Content frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k1mcgd\",\"data-framer-name\":\"_Path / Artwork large\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s5iw0c\",\"data-framer-name\":\"Top line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-riwd9d\",\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17w4rl0\",\"data-framer-name\":\"Avatar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18v4xgv\",\"data-framer-name\":\"background\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgQm9sZA==\",\"--framer-font-family\":'\"Uncut Sans Bold\", \"Uncut Sans Bold Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1\"})}),className:\"framer-mofm3h\",\"data-framer-name\":\"AB\",fonts:[\"CUSTOM;Uncut Sans Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qisnhz\",\"data-framer-name\":\"Bottom line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1del5nw\",\"data-framer-name\":\"Line solid\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-79vsq5\",\"data-framer-name\":\"Text frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yr3fhs\",\"data-framer-name\":\"Typography\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Contacto Inicial\"})}),className:\"framer-fhsh6f\",\"data-framer-name\":\"Label leading\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j4xh68\",\"data-framer-name\":\"Typography\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"Nos compartes tus datos para agendar una sesi\\xf3n de descubrimiento con un caf\\xe9 virtual.\"})}),className:\"framer-2tdaoq\",\"data-framer-name\":\"Paragraph leading\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sxr51u hidden-19r1vvv\",\"data-framer-name\":\"Gutter trailing\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rw2ici\",\"data-framer-name\":\"Divider\"})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1908ci1\",\"data-framer-name\":\"Progress steps element - vertical\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-100l0iy\",\"data-framer-name\":\"Content frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3d88gp\",\"data-framer-name\":\"_Path / Artwork large\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v5xszp\",\"data-framer-name\":\"Top line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cvskmu\",\"data-framer-name\":\"Line solid\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-598ma1\",\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2n6hwi\",\"data-framer-name\":\"Avatar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e4cud0\",\"data-framer-name\":\"background\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgQm9sZA==\",\"--framer-font-family\":'\"Uncut Sans Bold\", \"Uncut Sans Bold Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2\"})}),className:\"framer-12y8sdk\",\"data-framer-name\":\"AB\",fonts:[\"CUSTOM;Uncut Sans Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o5n7f4\",\"data-framer-name\":\"Bottom line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a6cyx2\",\"data-framer-name\":\"Line solid\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eduq5x\",\"data-framer-name\":\"Text frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vlpdp6\",\"data-framer-name\":\"Typography\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Sesi\\xf3n de Descubrimiento\"})}),className:\"framer-i9fxmq\",\"data-framer-name\":\"Label leading\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-79true\",\"data-framer-name\":\"Typography\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"En 30 minutos, evaluaremos tus necesidades para ofrecerte la mejor soluci\\xf3n personalizada.\"})}),className:\"framer-5dlayx\",\"data-framer-name\":\"Paragraph leading\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-t6hfyp hidden-19r1vvv\",\"data-framer-name\":\"Gutter trailing\"})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nqs4dm\",\"data-framer-name\":\"Progress steps element - vertical\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ssd7nj\",\"data-framer-name\":\"Content frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10h9sx1\",\"data-framer-name\":\"_Path / Artwork large\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13xl1z5\",\"data-framer-name\":\"Top line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kplb81\",\"data-framer-name\":\"Line solid\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-924n7a\",\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ekirg\",\"data-framer-name\":\"Avatar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q5aiba\",\"data-framer-name\":\"background\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgQm9sZA==\",\"--framer-font-family\":'\"Uncut Sans Bold\", \"Uncut Sans Bold Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"3\"})}),className:\"framer-3hav3r\",\"data-framer-name\":\"AB\",fonts:[\"CUSTOM;Uncut Sans Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ktuwx0\",\"data-framer-name\":\"Bottom line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l6y1nz\",\"data-framer-name\":\"Line solid\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7elhbr\",\"data-framer-name\":\"Text frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o2d1qp\",\"data-framer-name\":\"Typography\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"Propuesta\"})}),className:\"framer-gnnmxw\",\"data-framer-name\":\"Label leading\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f7wedd\",\"data-framer-name\":\"Typography\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"Elaboraremos una propuesta personalizada basada en la informaci\\xf3n, detallando servicios y costos asociados.\"})}),className:\"framer-cthqtp\",\"data-framer-name\":\"Paragraph leading\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jcn0n5 hidden-19r1vvv\",\"data-framer-name\":\"Gutter trailing\"})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wp4z28\",\"data-framer-name\":\"Progress steps element - vertical\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rrsqk7\",\"data-framer-name\":\"Content frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1btc0et\",\"data-framer-name\":\"_Path / Artwork large\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xu644c\",\"data-framer-name\":\"Top line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-141fkk4\",\"data-framer-name\":\"Line solid\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qvy4ha\",\"data-framer-name\":\"Avatar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kls87j\",\"data-framer-name\":\"Avatar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-egdh5y\",\"data-framer-name\":\"background\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgQm9sZA==\",\"--framer-font-family\":'\"Uncut Sans Bold\", \"Uncut Sans Bold Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4\"})}),className:\"framer-vbg9mc\",\"data-framer-name\":\"AB\",fonts:[\"CUSTOM;Uncut Sans Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i37woy\",\"data-framer-name\":\"Bottom line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1szlmcc\",\"data-framer-name\":\"Text frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vi1e54\",\"data-framer-name\":\"Typography\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Uncut Sans Semibold\", \"Uncut Sans Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(23, 24, 28)\"},children:\"\\xa1Ahora a trabajar!\"})}),className:\"framer-1z841r\",\"data-framer-name\":\"Label leading\",fonts:[\"CUSTOM;Uncut Sans Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m8s1ru\",\"data-framer-name\":\"Typography\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VuY3V0IFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(92, 98, 112)\"},children:\"Iniciamos el servicio tras aceptar la propuesta, manteni\\xe9ndote informado constantemente en cada etapa del proceso.\"})}),className:\"framer-wt2w65\",\"data-framer-name\":\"Paragraph leading\",fonts:[\"CUSTOM;Uncut Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u9ye44\",\"data-framer-name\":\"Gutter trailing\"})]})})]})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cpPKxUGLY:{y:(componentViewport?.y||0)+0+0+0+7119.799999999999},DgyPxAtU6:{y:(componentViewport?.y||0)+0+0+0+7173.8000610351555},JH2aKH3U6:{y:(componentViewport?.y||0)+0+0+0+9332.3408017759},o9gRi4KJy:{y:(componentViewport?.y||0)+0+0+0+9507.860740740742}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:467,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+7470.8000610351555,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nasszx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JH2aKH3U6:{variant:\"bisgwUIjh\"},o9gRi4KJy:{variant:\"O6fY8G4Hs\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"xp0S3pxGn\",layoutId:\"xp0S3pxGn\",style:{width:\"100%\"},variant:\"Az5SQnImo\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BQJcg.framer-lux5qc, .framer-BQJcg .framer-lux5qc { display: block; }\",\".framer-BQJcg.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-BQJcg .framer-mnj98d, .framer-BQJcg .framer-1mxi27t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-a2iji8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 16px 48px 16px 48px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-BQJcg .framer-1i3i9cd-container { flex: 1 0 0px; height: 64px; position: relative; width: 1px; z-index: 5; }\",\".framer-BQJcg .framer-1w9ftbl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-1c84n21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BQJcg .framer-pfsw95 { 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: 0px; position: relative; width: min-content; }\",\".framer-BQJcg .framer-c3ihhj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BQJcg .framer-19xipng, .framer-BQJcg .framer-105v8qp, .framer-BQJcg .framer-7vy0b7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BQJcg .framer-1i5yboc { --border-bottom-width: 2px; --border-color: #2e3138; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: min-content; }\",\".framer-BQJcg .framer-18fl9rp, .framer-BQJcg .framer-11j890, .framer-BQJcg .framer-apydl2, .framer-BQJcg .framer-1k3d6we, .framer-BQJcg .framer-1uoix0z, .framer-BQJcg .framer-qscl2w, .framer-BQJcg .framer-au3kuv, .framer-BQJcg .framer-qkkunk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BQJcg .framer-1bpx9ll { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 568px; word-break: break-word; word-wrap: break-word; }\",\".framer-BQJcg .framer-14igvh7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BQJcg .framer-1lnf2na { align-content: center; align-items: center; background-color: #0088ff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 196px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BQJcg .framer-vd2mc8, .framer-BQJcg .framer-1541kal { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 16px; }\",\".framer-BQJcg .framer-czwaw4, .framer-BQJcg .framer-1ihn025 { bottom: 5px; flex: none; left: 2px; position: absolute; right: 5px; top: 2px; }\",\".framer-BQJcg .framer-n7qiih { aspect-ratio: 10.518518518518519 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 61px); left: 0px; position: absolute; width: 641px; z-index: 1; }\",\".framer-BQJcg .framer-1wcwayf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 96px 64px 96px 64px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-1d0b99 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 316px; }\",\".framer-BQJcg .framer-152ec6k, .framer-BQJcg .framer-sqgmvc, .framer-BQJcg .framer-xnnr6o, .framer-BQJcg .framer-u7oosv, .framer-BQJcg .framer-8brf6g, .framer-BQJcg .framer-uxmfk, .framer-BQJcg .framer-k0gev7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-10fw6v2, .framer-BQJcg .framer-45jxsi, .framer-BQJcg .framer-ah2ld5, .framer-BQJcg .framer-1ve0b59, .framer-BQJcg .framer-enm0x, .framer-BQJcg .framer-1obgg69, .framer-BQJcg .framer-536c8w, .framer-BQJcg .framer-15bhasz, .framer-BQJcg .framer-4srg2t, .framer-BQJcg .framer-rr8x1p, .framer-BQJcg .framer-11z32gz, .framer-BQJcg .framer-1ig7k4q, .framer-BQJcg .framer-rrkjtm, .framer-BQJcg .framer-fyrge0, .framer-BQJcg .framer-siye60, .framer-BQJcg .framer-1nq6pof, .framer-BQJcg .framer-1bnuhqi, .framer-BQJcg .framer-1o9siyq, .framer-BQJcg .framer-rahj4o, .framer-BQJcg .framer-1u6p2ux, .framer-BQJcg .framer-rhkfvc, .framer-BQJcg .framer-10hsqg4, .framer-BQJcg .framer-st1dme, .framer-BQJcg .framer-htovob, .framer-BQJcg .framer-l2ebrv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BQJcg .framer-3iof1z, .framer-BQJcg .framer-cq993v { align-content: center; align-items: center; background-color: var(--token-e7e7b9c8-e5cc-4f03-a405-daa1c6f2910f, #0088ff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-BQJcg .framer-15z5kgd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 658px; }\",\".framer-BQJcg .framer-1n188hy, .framer-BQJcg .framer-60debn, .framer-BQJcg .framer-13g0vlh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-k7mxcw, .framer-BQJcg .framer-1mux1po, .framer-BQJcg .framer-jdsg6d, .framer-BQJcg .framer-j4ehrv, .framer-BQJcg .framer-1ki6dp4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-BQJcg .framer-xni73d, .framer-BQJcg .framer-s6gjxk, .framer-BQJcg .framer-1eizk45, .framer-BQJcg .framer-169k25z, .framer-BQJcg .framer-1udjcne { flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-BQJcg .framer-h28e0x { flex: none; height: 19px; left: calc(50.00000000000002% - 29px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 29px; }\",\".framer-BQJcg .framer-1h95avw, .framer-BQJcg .framer-sp2jps, .framer-BQJcg .framer-wi4vsu, .framer-BQJcg .framer-5og4y4, .framer-BQJcg .framer-nyhd74 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BQJcg .framer-qh6233 { flex: none; height: 27px; left: calc(50.00000000000002% - 21px / 2); position: absolute; top: calc(50.00000000000002% - 27px / 2); width: 21px; }\",\".framer-BQJcg .framer-blki0i { flex: none; height: 27px; left: calc(50.00000000000002% - 27px / 2); position: absolute; top: calc(50.00000000000002% - 27px / 2); width: 27px; }\",\".framer-BQJcg .framer-k8li0t { flex: none; height: 24px; left: calc(50.00000000000002% - 29px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 29px; }\",\".framer-BQJcg .framer-1mwyld7-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 30px; }\",\".framer-BQJcg .framer-10c6xne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-17qzfgw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 96px 64px 48px 64px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-s9zpf5, .framer-BQJcg .framer-1owi736 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-1brhyru { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-1y3u0jp, .framer-BQJcg .framer-dr31lq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 32px 64px 32px 64px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-vg7hq4, .framer-BQJcg .framer-1t3oj9u, .framer-BQJcg .framer-me0fkj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 362px; justify-content: center; overflow: visible; padding: 32px 0px 32px 0px; position: relative; width: 535px; }\",\".framer-BQJcg .framer-r1lb3w { aspect-ratio: 2.259259259259259 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 50%; position: absolute; top: 140px; transform: translateX(-50%); width: 61px; z-index: 1; }\",\".framer-BQJcg .framer-a0jdx2, .framer-BQJcg .framer-1k1mp5y { flex: none; height: 500px; position: relative; width: 646px; }\",\".framer-BQJcg .framer-14qdmvl { flex: none; height: 75px; left: 291px; position: absolute; top: 112px; width: 71px; z-index: 1; }\",\".framer-BQJcg .framer-jp5pgh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 32px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-1s2k1re { flex: none; height: 41px; left: 0px; position: absolute; top: 45px; width: 40px; z-index: 1; }\",\".framer-BQJcg .framer-11sbs4n { flex: none; height: 501px; position: relative; width: 615px; }\",\".framer-BQJcg .framer-2qk4x0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 48px 150px 48px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-11g7uzo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 96px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-1oxibzy { aspect-ratio: 1.1065573770491803 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 244px); position: relative; width: 270px; }\",\".framer-BQJcg .framer-12fvqr3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-13sf8p1-container { aspect-ratio: 2.443636363636364 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 480px); position: relative; width: 87%; }\",\".framer-BQJcg .framer-zw71fs-container, .framer-BQJcg .framer-xivtdj-container, .framer-BQJcg .framer-gds0jj-container, .framer-BQJcg .framer-q9i1gl-container, .framer-BQJcg .framer-1rg81af-container, .framer-BQJcg .framer-128plp5-container { aspect-ratio: 0.744920993227991 / 1; height: var(--framer-aspect-ratio-supported, 437px); position: relative; width: 325px; }\",\".framer-BQJcg .framer-1lw414s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-1c698mq, .framer-BQJcg .framer-15d528s, .framer-BQJcg .framer-1xcnf5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-9b5oom-container { aspect-ratio: 4.044943820224719 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 259px; }\",\".framer-BQJcg .framer-2br6u2 { bottom: -1px; flex: none; height: 37px; left: calc(53.64583333333336% - 188px / 2); position: absolute; width: 188px; z-index: 1; }\",\".framer-BQJcg .framer-1q2g4ws { align-content: center; align-items: center; background-color: #f1f3f9; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-t7v6wz { align-content: center; align-items: center; background-color: #f1f3f9; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BQJcg .framer-1cdbn6o { align-content: flex-start; align-items: flex-start; align-self: stretch; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: flex-start; overflow: visible; padding: 48px; position: relative; width: 1px; }\",\".framer-BQJcg .framer-vd75xk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-BQJcg .framer-1dno76v { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 208px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BQJcg .framer-m3m9nv { flex: none; height: 400px; overflow: hidden; position: relative; width: 424px; }\",\".framer-BQJcg .framer-v4lspq { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-BQJcg .framer-94g79s { align-content: center; align-items: center; background-color: #f1f3f9; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 64px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-nu8d4e { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BQJcg .framer-gkoqdt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-lyxgs8 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-BQJcg .framer-1ucqoro { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 223px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 236px; }\",\".framer-BQJcg .framer-pu826c { flex: none; height: 223px; position: relative; width: 236px; }\",\".framer-BQJcg .framer-yik7i4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 496px; }\",\".framer-BQJcg .framer-dmozo3 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-1l74ft4, .framer-BQJcg .framer-ssd7nj, .framer-BQJcg .framer-1rrsqk7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-k1mcgd, .framer-BQJcg .framer-10h9sx1, .framer-BQJcg .framer-1btc0et { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 64px; }\",\".framer-BQJcg .framer-s5iw0c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 2px; }\",\".framer-BQJcg .framer-riwd9d, .framer-BQJcg .framer-598ma1, .framer-BQJcg .framer-924n7a, .framer-BQJcg .framer-qvy4ha { align-content: flex-start; align-items: flex-start; 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: min-content; }\",\".framer-BQJcg .framer-17w4rl0, .framer-BQJcg .framer-2n6hwi, .framer-BQJcg .framer-15ekirg, .framer-BQJcg .framer-1kls87j { flex: none; height: 36px; overflow: hidden; position: relative; width: 36px; }\",\".framer-BQJcg .framer-18v4xgv, .framer-BQJcg .framer-1e4cud0, .framer-BQJcg .framer-q5aiba, .framer-BQJcg .framer-egdh5y { background-color: #17181c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-BQJcg .framer-mofm3h, .framer-BQJcg .framer-12y8sdk, .framer-BQJcg .framer-3hav3r, .framer-BQJcg .framer-vbg9mc { --framer-paragraph-spacing: 0px; flex: none; height: 28px; left: calc(50% - 28px / 2); position: absolute; top: calc(50% - 28px / 2); white-space: pre-wrap; width: 28px; word-break: break-word; word-wrap: break-word; }\",\".framer-BQJcg .framer-qisnhz, .framer-BQJcg .framer-o5n7f4, .framer-BQJcg .framer-ktuwx0 { align-content: flex-start; align-items: flex-start; background-color: #17181c; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 2px; }\",\".framer-BQJcg .framer-1del5nw, .framer-BQJcg .framer-1cvskmu, .framer-BQJcg .framer-1a6cyx2, .framer-BQJcg .framer-1kplb81, .framer-BQJcg .framer-1l6y1nz, .framer-BQJcg .framer-141fkk4 { flex: none; height: 16px; position: relative; width: 0px; }\",\".framer-BQJcg .framer-79vsq5, .framer-BQJcg .framer-7elhbr, .framer-BQJcg .framer-1szlmcc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 1px; }\",\".framer-BQJcg .framer-yr3fhs, .framer-BQJcg .framer-j4xh68, .framer-BQJcg .framer-vlpdp6, .framer-BQJcg .framer-79true, .framer-BQJcg .framer-1o2d1qp, .framer-BQJcg .framer-f7wedd, .framer-BQJcg .framer-1vi1e54, .framer-BQJcg .framer-1m8s1ru { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-fhsh6f, .framer-BQJcg .framer-2tdaoq, .framer-BQJcg .framer-i9fxmq, .framer-BQJcg .framer-5dlayx, .framer-BQJcg .framer-gnnmxw, .framer-BQJcg .framer-cthqtp, .framer-BQJcg .framer-1z841r, .framer-BQJcg .framer-wt2w65 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-BQJcg .framer-1sxr51u, .framer-BQJcg .framer-t6hfyp, .framer-BQJcg .framer-1jcn0n5, .framer-BQJcg .framer-u9ye44 { flex: none; height: 64px; overflow: visible; position: relative; width: 16px; }\",\".framer-BQJcg .framer-1rw2ici { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 0px; overflow: visible; padding: 0px 0px 0px 64px; position: relative; width: 408px; }\",\".framer-BQJcg .framer-1908ci1, .framer-BQJcg .framer-nqs4dm, .framer-BQJcg .framer-wp4z28 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-100l0iy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 125px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BQJcg .framer-3d88gp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 64px; }\",\".framer-BQJcg .framer-1v5xszp, .framer-BQJcg .framer-13xl1z5, .framer-BQJcg .framer-xu644c { align-content: flex-start; align-items: flex-start; background-color: #17181c; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 2px; }\",\".framer-BQJcg .framer-1eduq5x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 100%; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 1px; }\",\".framer-BQJcg .framer-1i37woy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 2px; }\",\".framer-BQJcg .framer-1nasszx-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BQJcg.framer-72rtr7, .framer-BQJcg .framer-mnj98d, .framer-BQJcg .framer-a2iji8, .framer-BQJcg .framer-1w9ftbl, .framer-BQJcg .framer-1c84n21, .framer-BQJcg .framer-pfsw95, .framer-BQJcg .framer-c3ihhj, .framer-BQJcg .framer-1i5yboc, .framer-BQJcg .framer-14igvh7, .framer-BQJcg .framer-1d0b99, .framer-BQJcg .framer-152ec6k, .framer-BQJcg .framer-3iof1z, .framer-BQJcg .framer-15z5kgd, .framer-BQJcg .framer-1n188hy, .framer-BQJcg .framer-k7mxcw, .framer-BQJcg .framer-1h95avw, .framer-BQJcg .framer-sqgmvc, .framer-BQJcg .framer-1mux1po, .framer-BQJcg .framer-sp2jps, .framer-BQJcg .framer-xnnr6o, .framer-BQJcg .framer-60debn, .framer-BQJcg .framer-jdsg6d, .framer-BQJcg .framer-wi4vsu, .framer-BQJcg .framer-u7oosv, .framer-BQJcg .framer-j4ehrv, .framer-BQJcg .framer-5og4y4, .framer-BQJcg .framer-8brf6g, .framer-BQJcg .framer-13g0vlh, .framer-BQJcg .framer-1ki6dp4, .framer-BQJcg .framer-nyhd74, .framer-BQJcg .framer-uxmfk, .framer-BQJcg .framer-10c6xne, .framer-BQJcg .framer-17qzfgw, .framer-BQJcg .framer-s9zpf5, .framer-BQJcg .framer-1brhyru, .framer-BQJcg .framer-vg7hq4, .framer-BQJcg .framer-1t3oj9u, .framer-BQJcg .framer-me0fkj, .framer-BQJcg .framer-2qk4x0, .framer-BQJcg .framer-11g7uzo, .framer-BQJcg .framer-1owi736, .framer-BQJcg .framer-12fvqr3, .framer-BQJcg .framer-1lw414s, .framer-BQJcg .framer-1c698mq, .framer-BQJcg .framer-15d528s, .framer-BQJcg .framer-1xcnf5u, .framer-BQJcg .framer-cq993v, .framer-BQJcg .framer-1mxi27t, .framer-BQJcg .framer-1q2g4ws, .framer-BQJcg .framer-t7v6wz, .framer-BQJcg .framer-1cdbn6o, .framer-BQJcg .framer-94g79s, .framer-BQJcg .framer-nu8d4e, .framer-BQJcg .framer-k0gev7, .framer-BQJcg .framer-1ucqoro, .framer-BQJcg .framer-yik7i4, .framer-BQJcg .framer-dmozo3, .framer-BQJcg .framer-1l74ft4, .framer-BQJcg .framer-k1mcgd, .framer-BQJcg .framer-s5iw0c, .framer-BQJcg .framer-riwd9d, .framer-BQJcg .framer-qisnhz, .framer-BQJcg .framer-79vsq5, .framer-BQJcg .framer-yr3fhs, .framer-BQJcg .framer-j4xh68, .framer-BQJcg .framer-1rw2ici, .framer-BQJcg .framer-1908ci1, .framer-BQJcg .framer-100l0iy, .framer-BQJcg .framer-3d88gp, .framer-BQJcg .framer-1v5xszp, .framer-BQJcg .framer-598ma1, .framer-BQJcg .framer-o5n7f4, .framer-BQJcg .framer-1eduq5x, .framer-BQJcg .framer-vlpdp6, .framer-BQJcg .framer-79true, .framer-BQJcg .framer-nqs4dm, .framer-BQJcg .framer-ssd7nj, .framer-BQJcg .framer-10h9sx1, .framer-BQJcg .framer-13xl1z5, .framer-BQJcg .framer-924n7a, .framer-BQJcg .framer-ktuwx0, .framer-BQJcg .framer-7elhbr, .framer-BQJcg .framer-1o2d1qp, .framer-BQJcg .framer-f7wedd, .framer-BQJcg .framer-wp4z28, .framer-BQJcg .framer-1rrsqk7, .framer-BQJcg .framer-1btc0et, .framer-BQJcg .framer-xu644c, .framer-BQJcg .framer-qvy4ha, .framer-BQJcg .framer-1i37woy, .framer-BQJcg .framer-1szlmcc, .framer-BQJcg .framer-1vi1e54, .framer-BQJcg .framer-1m8s1ru { gap: 0px; } .framer-BQJcg.framer-72rtr7 > *, .framer-BQJcg .framer-mnj98d > *, .framer-BQJcg .framer-10c6xne > *, .framer-BQJcg .framer-2qk4x0 > *, .framer-BQJcg .framer-1mxi27t > *, .framer-BQJcg .framer-yik7i4 > *, .framer-BQJcg .framer-dmozo3 > *, .framer-BQJcg .framer-k1mcgd > *, .framer-BQJcg .framer-yr3fhs > *, .framer-BQJcg .framer-j4xh68 > *, .framer-BQJcg .framer-1rw2ici > *, .framer-BQJcg .framer-3d88gp > *, .framer-BQJcg .framer-vlpdp6 > *, .framer-BQJcg .framer-79true > *, .framer-BQJcg .framer-10h9sx1 > *, .framer-BQJcg .framer-1o2d1qp > *, .framer-BQJcg .framer-f7wedd > *, .framer-BQJcg .framer-1btc0et > *, .framer-BQJcg .framer-1vi1e54 > *, .framer-BQJcg .framer-1m8s1ru > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BQJcg.framer-72rtr7 > :first-child, .framer-BQJcg .framer-mnj98d > :first-child, .framer-BQJcg .framer-1w9ftbl > :first-child, .framer-BQJcg .framer-1c84n21 > :first-child, .framer-BQJcg .framer-pfsw95 > :first-child, .framer-BQJcg .framer-1d0b99 > :first-child, .framer-BQJcg .framer-152ec6k > :first-child, .framer-BQJcg .framer-15z5kgd > :first-child, .framer-BQJcg .framer-1h95avw > :first-child, .framer-BQJcg .framer-sqgmvc > :first-child, .framer-BQJcg .framer-sp2jps > :first-child, .framer-BQJcg .framer-xnnr6o > :first-child, .framer-BQJcg .framer-wi4vsu > :first-child, .framer-BQJcg .framer-u7oosv > :first-child, .framer-BQJcg .framer-5og4y4 > :first-child, .framer-BQJcg .framer-8brf6g > :first-child, .framer-BQJcg .framer-nyhd74 > :first-child, .framer-BQJcg .framer-uxmfk > :first-child, .framer-BQJcg .framer-10c6xne > :first-child, .framer-BQJcg .framer-17qzfgw > :first-child, .framer-BQJcg .framer-s9zpf5 > :first-child, .framer-BQJcg .framer-1brhyru > :first-child, .framer-BQJcg .framer-vg7hq4 > :first-child, .framer-BQJcg .framer-1t3oj9u > :first-child, .framer-BQJcg .framer-me0fkj > :first-child, .framer-BQJcg .framer-2qk4x0 > :first-child, .framer-BQJcg .framer-11g7uzo > :first-child, .framer-BQJcg .framer-1owi736 > :first-child, .framer-BQJcg .framer-1lw414s > :first-child, .framer-BQJcg .framer-1c698mq > :first-child, .framer-BQJcg .framer-15d528s > :first-child, .framer-BQJcg .framer-1xcnf5u > :first-child, .framer-BQJcg .framer-1mxi27t > :first-child, .framer-BQJcg .framer-1cdbn6o > :first-child, .framer-BQJcg .framer-94g79s > :first-child, .framer-BQJcg .framer-nu8d4e > :first-child, .framer-BQJcg .framer-k0gev7 > :first-child, .framer-BQJcg .framer-yik7i4 > :first-child, .framer-BQJcg .framer-dmozo3 > :first-child, .framer-BQJcg .framer-k1mcgd > :first-child, .framer-BQJcg .framer-79vsq5 > :first-child, .framer-BQJcg .framer-yr3fhs > :first-child, .framer-BQJcg .framer-j4xh68 > :first-child, .framer-BQJcg .framer-1rw2ici > :first-child, .framer-BQJcg .framer-1908ci1 > :first-child, .framer-BQJcg .framer-3d88gp > :first-child, .framer-BQJcg .framer-1eduq5x > :first-child, .framer-BQJcg .framer-vlpdp6 > :first-child, .framer-BQJcg .framer-79true > :first-child, .framer-BQJcg .framer-nqs4dm > :first-child, .framer-BQJcg .framer-10h9sx1 > :first-child, .framer-BQJcg .framer-7elhbr > :first-child, .framer-BQJcg .framer-1o2d1qp > :first-child, .framer-BQJcg .framer-f7wedd > :first-child, .framer-BQJcg .framer-wp4z28 > :first-child, .framer-BQJcg .framer-1btc0et > :first-child, .framer-BQJcg .framer-1szlmcc > :first-child, .framer-BQJcg .framer-1vi1e54 > :first-child, .framer-BQJcg .framer-1m8s1ru > :first-child { margin-top: 0px; } .framer-BQJcg.framer-72rtr7 > :last-child, .framer-BQJcg .framer-mnj98d > :last-child, .framer-BQJcg .framer-1w9ftbl > :last-child, .framer-BQJcg .framer-1c84n21 > :last-child, .framer-BQJcg .framer-pfsw95 > :last-child, .framer-BQJcg .framer-1d0b99 > :last-child, .framer-BQJcg .framer-152ec6k > :last-child, .framer-BQJcg .framer-15z5kgd > :last-child, .framer-BQJcg .framer-1h95avw > :last-child, .framer-BQJcg .framer-sqgmvc > :last-child, .framer-BQJcg .framer-sp2jps > :last-child, .framer-BQJcg .framer-xnnr6o > :last-child, .framer-BQJcg .framer-wi4vsu > :last-child, .framer-BQJcg .framer-u7oosv > :last-child, .framer-BQJcg .framer-5og4y4 > :last-child, .framer-BQJcg .framer-8brf6g > :last-child, .framer-BQJcg .framer-nyhd74 > :last-child, .framer-BQJcg .framer-uxmfk > :last-child, .framer-BQJcg .framer-10c6xne > :last-child, .framer-BQJcg .framer-17qzfgw > :last-child, .framer-BQJcg .framer-s9zpf5 > :last-child, .framer-BQJcg .framer-1brhyru > :last-child, .framer-BQJcg .framer-vg7hq4 > :last-child, .framer-BQJcg .framer-1t3oj9u > :last-child, .framer-BQJcg .framer-me0fkj > :last-child, .framer-BQJcg .framer-2qk4x0 > :last-child, .framer-BQJcg .framer-11g7uzo > :last-child, .framer-BQJcg .framer-1owi736 > :last-child, .framer-BQJcg .framer-1lw414s > :last-child, .framer-BQJcg .framer-1c698mq > :last-child, .framer-BQJcg .framer-15d528s > :last-child, .framer-BQJcg .framer-1xcnf5u > :last-child, .framer-BQJcg .framer-1mxi27t > :last-child, .framer-BQJcg .framer-1cdbn6o > :last-child, .framer-BQJcg .framer-94g79s > :last-child, .framer-BQJcg .framer-nu8d4e > :last-child, .framer-BQJcg .framer-k0gev7 > :last-child, .framer-BQJcg .framer-yik7i4 > :last-child, .framer-BQJcg .framer-dmozo3 > :last-child, .framer-BQJcg .framer-k1mcgd > :last-child, .framer-BQJcg .framer-79vsq5 > :last-child, .framer-BQJcg .framer-yr3fhs > :last-child, .framer-BQJcg .framer-j4xh68 > :last-child, .framer-BQJcg .framer-1rw2ici > :last-child, .framer-BQJcg .framer-1908ci1 > :last-child, .framer-BQJcg .framer-3d88gp > :last-child, .framer-BQJcg .framer-1eduq5x > :last-child, .framer-BQJcg .framer-vlpdp6 > :last-child, .framer-BQJcg .framer-79true > :last-child, .framer-BQJcg .framer-nqs4dm > :last-child, .framer-BQJcg .framer-10h9sx1 > :last-child, .framer-BQJcg .framer-7elhbr > :last-child, .framer-BQJcg .framer-1o2d1qp > :last-child, .framer-BQJcg .framer-f7wedd > :last-child, .framer-BQJcg .framer-wp4z28 > :last-child, .framer-BQJcg .framer-1btc0et > :last-child, .framer-BQJcg .framer-1szlmcc > :last-child, .framer-BQJcg .framer-1vi1e54 > :last-child, .framer-BQJcg .framer-1m8s1ru > :last-child { margin-bottom: 0px; } .framer-BQJcg .framer-a2iji8 > *, .framer-BQJcg .framer-1i5yboc > *, .framer-BQJcg .framer-1q2g4ws > *, .framer-BQJcg .framer-t7v6wz > *, .framer-BQJcg .framer-s5iw0c > *, .framer-BQJcg .framer-riwd9d > *, .framer-BQJcg .framer-qisnhz > *, .framer-BQJcg .framer-1v5xszp > *, .framer-BQJcg .framer-598ma1 > *, .framer-BQJcg .framer-o5n7f4 > *, .framer-BQJcg .framer-13xl1z5 > *, .framer-BQJcg .framer-924n7a > *, .framer-BQJcg .framer-ktuwx0 > *, .framer-BQJcg .framer-xu644c > *, .framer-BQJcg .framer-qvy4ha > *, .framer-BQJcg .framer-1i37woy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BQJcg .framer-a2iji8 > :first-child, .framer-BQJcg .framer-c3ihhj > :first-child, .framer-BQJcg .framer-1i5yboc > :first-child, .framer-BQJcg .framer-14igvh7 > :first-child, .framer-BQJcg .framer-3iof1z > :first-child, .framer-BQJcg .framer-1n188hy > :first-child, .framer-BQJcg .framer-k7mxcw > :first-child, .framer-BQJcg .framer-1mux1po > :first-child, .framer-BQJcg .framer-60debn > :first-child, .framer-BQJcg .framer-jdsg6d > :first-child, .framer-BQJcg .framer-j4ehrv > :first-child, .framer-BQJcg .framer-13g0vlh > :first-child, .framer-BQJcg .framer-1ki6dp4 > :first-child, .framer-BQJcg .framer-12fvqr3 > :first-child, .framer-BQJcg .framer-cq993v > :first-child, .framer-BQJcg .framer-1q2g4ws > :first-child, .framer-BQJcg .framer-t7v6wz > :first-child, .framer-BQJcg .framer-1ucqoro > :first-child, .framer-BQJcg .framer-1l74ft4 > :first-child, .framer-BQJcg .framer-s5iw0c > :first-child, .framer-BQJcg .framer-riwd9d > :first-child, .framer-BQJcg .framer-qisnhz > :first-child, .framer-BQJcg .framer-100l0iy > :first-child, .framer-BQJcg .framer-1v5xszp > :first-child, .framer-BQJcg .framer-598ma1 > :first-child, .framer-BQJcg .framer-o5n7f4 > :first-child, .framer-BQJcg .framer-ssd7nj > :first-child, .framer-BQJcg .framer-13xl1z5 > :first-child, .framer-BQJcg .framer-924n7a > :first-child, .framer-BQJcg .framer-ktuwx0 > :first-child, .framer-BQJcg .framer-1rrsqk7 > :first-child, .framer-BQJcg .framer-xu644c > :first-child, .framer-BQJcg .framer-qvy4ha > :first-child, .framer-BQJcg .framer-1i37woy > :first-child { margin-left: 0px; } .framer-BQJcg .framer-a2iji8 > :last-child, .framer-BQJcg .framer-c3ihhj > :last-child, .framer-BQJcg .framer-1i5yboc > :last-child, .framer-BQJcg .framer-14igvh7 > :last-child, .framer-BQJcg .framer-3iof1z > :last-child, .framer-BQJcg .framer-1n188hy > :last-child, .framer-BQJcg .framer-k7mxcw > :last-child, .framer-BQJcg .framer-1mux1po > :last-child, .framer-BQJcg .framer-60debn > :last-child, .framer-BQJcg .framer-jdsg6d > :last-child, .framer-BQJcg .framer-j4ehrv > :last-child, .framer-BQJcg .framer-13g0vlh > :last-child, .framer-BQJcg .framer-1ki6dp4 > :last-child, .framer-BQJcg .framer-12fvqr3 > :last-child, .framer-BQJcg .framer-cq993v > :last-child, .framer-BQJcg .framer-1q2g4ws > :last-child, .framer-BQJcg .framer-t7v6wz > :last-child, .framer-BQJcg .framer-1ucqoro > :last-child, .framer-BQJcg .framer-1l74ft4 > :last-child, .framer-BQJcg .framer-s5iw0c > :last-child, .framer-BQJcg .framer-riwd9d > :last-child, .framer-BQJcg .framer-qisnhz > :last-child, .framer-BQJcg .framer-100l0iy > :last-child, .framer-BQJcg .framer-1v5xszp > :last-child, .framer-BQJcg .framer-598ma1 > :last-child, .framer-BQJcg .framer-o5n7f4 > :last-child, .framer-BQJcg .framer-ssd7nj > :last-child, .framer-BQJcg .framer-13xl1z5 > :last-child, .framer-BQJcg .framer-924n7a > :last-child, .framer-BQJcg .framer-ktuwx0 > :last-child, .framer-BQJcg .framer-1rrsqk7 > :last-child, .framer-BQJcg .framer-xu644c > :last-child, .framer-BQJcg .framer-qvy4ha > :last-child, .framer-BQJcg .framer-1i37woy > :last-child { margin-right: 0px; } .framer-BQJcg .framer-1w9ftbl > *, .framer-BQJcg .framer-pfsw95 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BQJcg .framer-1c84n21 > *, .framer-BQJcg .framer-1d0b99 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BQJcg .framer-c3ihhj > *, .framer-BQJcg .framer-12fvqr3 > *, .framer-BQJcg .framer-1ucqoro > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BQJcg .framer-14igvh7 > *, .framer-BQJcg .framer-1n188hy > *, .framer-BQJcg .framer-60debn > *, .framer-BQJcg .framer-13g0vlh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-BQJcg .framer-152ec6k > *, .framer-BQJcg .framer-sqgmvc > *, .framer-BQJcg .framer-xnnr6o > *, .framer-BQJcg .framer-u7oosv > *, .framer-BQJcg .framer-8brf6g > *, .framer-BQJcg .framer-uxmfk > *, .framer-BQJcg .framer-17qzfgw > *, .framer-BQJcg .framer-s9zpf5 > *, .framer-BQJcg .framer-1owi736 > *, .framer-BQJcg .framer-1c698mq > *, .framer-BQJcg .framer-15d528s > *, .framer-BQJcg .framer-1xcnf5u > *, .framer-BQJcg .framer-1cdbn6o > *, .framer-BQJcg .framer-94g79s > *, .framer-BQJcg .framer-nu8d4e > *, .framer-BQJcg .framer-k0gev7 > *, .framer-BQJcg .framer-1908ci1 > *, .framer-BQJcg .framer-nqs4dm > *, .framer-BQJcg .framer-wp4z28 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-BQJcg .framer-3iof1z > *, .framer-BQJcg .framer-cq993v > *, .framer-BQJcg .framer-1l74ft4 > *, .framer-BQJcg .framer-100l0iy > *, .framer-BQJcg .framer-ssd7nj > *, .framer-BQJcg .framer-1rrsqk7 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-BQJcg .framer-15z5kgd > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-BQJcg .framer-k7mxcw > *, .framer-BQJcg .framer-1mux1po > *, .framer-BQJcg .framer-jdsg6d > *, .framer-BQJcg .framer-j4ehrv > *, .framer-BQJcg .framer-1ki6dp4 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-BQJcg .framer-1h95avw > *, .framer-BQJcg .framer-sp2jps > *, .framer-BQJcg .framer-wi4vsu > *, .framer-BQJcg .framer-5og4y4 > *, .framer-BQJcg .framer-nyhd74 > *, .framer-BQJcg .framer-11g7uzo > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BQJcg .framer-1brhyru > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-BQJcg .framer-vg7hq4 > *, .framer-BQJcg .framer-1t3oj9u > *, .framer-BQJcg .framer-me0fkj > *, .framer-BQJcg .framer-1lw414s > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BQJcg .framer-79vsq5 > *, .framer-BQJcg .framer-1eduq5x > *, .framer-BQJcg .framer-7elhbr > *, .framer-BQJcg .framer-1szlmcc > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,'.framer-BQJcg[data-border=\"true\"]::after, .framer-BQJcg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1023px) { .framer-BQJcg.framer-72rtr7 { gap: 10px; width: 810px; } .framer-BQJcg .framer-a2iji8 { padding: 16px; z-index: 5; } .framer-BQJcg .framer-1i3i9cd-container { height: auto; } .framer-BQJcg .framer-1wcwayf { flex-direction: column; gap: 72px; justify-content: flex-start; } .framer-BQJcg .framer-15z5kgd, .framer-BQJcg .framer-vd75xk { width: 100%; } .framer-BQJcg .framer-17qzfgw { padding: 24px 64px 48px 64px; } .framer-BQJcg .framer-1y3u0jp, .framer-BQJcg .framer-dr31lq, .framer-BQJcg .framer-jp5pgh { flex-direction: column; } .framer-BQJcg .framer-a0jdx2 { aspect-ratio: 1.292 / 1; height: var(--framer-aspect-ratio-supported, 528px); width: 100%; } .framer-BQJcg .framer-1k1mp5y { aspect-ratio: 1.292 / 1; height: var(--framer-aspect-ratio-supported, 528px); order: 1; width: 100%; } .framer-BQJcg .framer-1t3oj9u, .framer-BQJcg .framer-me0fkj { order: 0; } .framer-BQJcg .framer-11sbs4n { aspect-ratio: 1.2275449101796407 / 1; height: var(--framer-aspect-ratio-supported, 556px); order: 1; width: 100%; } .framer-BQJcg .framer-2qk4x0 { padding: 0px 48px 100px 48px; } .framer-BQJcg .framer-1oxibzy { height: var(--framer-aspect-ratio-supported, 181px); width: 200px; } .framer-BQJcg .framer-13sf8p1-container { aspect-ratio: unset; height: 440px; width: 335px; } .framer-BQJcg .framer-9b5oom-container { height: var(--framer-aspect-ratio-supported, 44px); width: 178px; } .framer-BQJcg .framer-t7v6wz { flex-direction: column; gap: 24px; } .framer-BQJcg .framer-1cdbn6o { align-self: unset; flex: none; height: 400px; width: 100%; } .framer-BQJcg .framer-gkoqdt { flex-direction: column; gap: 48px; justify-content: flex-start; } .framer-BQJcg .framer-lyxgs8 { align-self: unset; gap: 0px; height: min-content; justify-content: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BQJcg.framer-72rtr7, .framer-BQJcg .framer-1wcwayf, .framer-BQJcg .framer-1y3u0jp, .framer-BQJcg .framer-dr31lq, .framer-BQJcg .framer-jp5pgh, .framer-BQJcg .framer-t7v6wz, .framer-BQJcg .framer-gkoqdt, .framer-BQJcg .framer-lyxgs8 { gap: 0px; } .framer-BQJcg.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BQJcg.framer-72rtr7 > :first-child, .framer-BQJcg .framer-1wcwayf > :first-child, .framer-BQJcg .framer-t7v6wz > :first-child, .framer-BQJcg .framer-gkoqdt > :first-child, .framer-BQJcg .framer-lyxgs8 > :first-child { margin-top: 0px; } .framer-BQJcg.framer-72rtr7 > :last-child, .framer-BQJcg .framer-1wcwayf > :last-child, .framer-BQJcg .framer-t7v6wz > :last-child, .framer-BQJcg .framer-gkoqdt > :last-child, .framer-BQJcg .framer-lyxgs8 > :last-child { margin-bottom: 0px; } .framer-BQJcg .framer-1wcwayf > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-BQJcg .framer-1y3u0jp > *, .framer-BQJcg .framer-1y3u0jp > :first-child, .framer-BQJcg .framer-1y3u0jp > :last-child, .framer-BQJcg .framer-dr31lq > *, .framer-BQJcg .framer-dr31lq > :first-child, .framer-BQJcg .framer-dr31lq > :last-child, .framer-BQJcg .framer-jp5pgh > *, .framer-BQJcg .framer-jp5pgh > :first-child, .framer-BQJcg .framer-jp5pgh > :last-child { margin: 0px; } .framer-BQJcg .framer-t7v6wz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BQJcg .framer-gkoqdt > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-BQJcg .framer-lyxgs8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (max-width: 809px) { .framer-BQJcg.framer-72rtr7 { width: 390px; } .framer-BQJcg .framer-a2iji8 { padding: 16px; z-index: 5; } .framer-BQJcg .framer-1i3i9cd-container { height: auto; } .framer-BQJcg .framer-1w9ftbl, .framer-BQJcg .framer-nu8d4e { padding: 24px; } .framer-BQJcg .framer-1c84n21, .framer-BQJcg .framer-1bpx9ll, .framer-BQJcg .framer-1d0b99, .framer-BQJcg .framer-vd75xk, .framer-BQJcg .framer-yik7i4, .framer-BQJcg .framer-fhsh6f, .framer-BQJcg .framer-2tdaoq, .framer-BQJcg .framer-i9fxmq, .framer-BQJcg .framer-5dlayx, .framer-BQJcg .framer-gnnmxw, .framer-BQJcg .framer-cthqtp, .framer-BQJcg .framer-1z841r, .framer-BQJcg .framer-wt2w65 { width: 100%; } .framer-BQJcg .framer-pfsw95 { gap: 8px; width: 100%; } .framer-BQJcg .framer-1i5yboc { border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; padding: 4px 8px 4px 8px; } .framer-BQJcg .framer-1wcwayf { flex-direction: column; gap: 72px; justify-content: flex-start; padding: 96px 24px 96px 24px; } .framer-BQJcg .framer-15z5kgd { gap: 16px; width: 100%; } .framer-BQJcg .framer-1n188hy, .framer-BQJcg .framer-60debn, .framer-BQJcg .framer-13g0vlh { flex-direction: column; } .framer-BQJcg .framer-k7mxcw, .framer-BQJcg .framer-1mux1po, .framer-BQJcg .framer-jdsg6d, .framer-BQJcg .framer-j4ehrv, .framer-BQJcg .framer-1ki6dp4 { flex: none; flex-direction: column; width: 100%; } .framer-BQJcg .framer-1h95avw, .framer-BQJcg .framer-sp2jps, .framer-BQJcg .framer-wi4vsu, .framer-BQJcg .framer-5og4y4, .framer-BQJcg .framer-nyhd74 { flex: none; width: 100%; } .framer-BQJcg .framer-17qzfgw { padding: 0px 64px 48px 64px; } .framer-BQJcg .framer-1y3u0jp, .framer-BQJcg .framer-dr31lq, .framer-BQJcg .framer-jp5pgh { flex-direction: column; padding: 24px; } .framer-BQJcg .framer-vg7hq4, .framer-BQJcg .framer-me0fkj { height: min-content; width: 100%; } .framer-BQJcg .framer-r1lb3w { left: 233px; top: 136px; transform: unset; } .framer-BQJcg .framer-a0jdx2 { aspect-ratio: 1.292 / 1; height: var(--framer-aspect-ratio-supported, 265px); width: 100%; } .framer-BQJcg .framer-1k1mp5y { aspect-ratio: 1.292 / 1; height: var(--framer-aspect-ratio-supported, 265px); order: 1; width: 100%; } .framer-BQJcg .framer-1t3oj9u { height: min-content; order: 0; width: 100%; } .framer-BQJcg .framer-14qdmvl { height: 60px; left: 223px; top: 86px; width: 56px; } .framer-BQJcg .framer-1s2k1re { top: -24px; } .framer-BQJcg .framer-11sbs4n { aspect-ratio: 1.2275449101796407 / 1; height: var(--framer-aspect-ratio-supported, 279px); width: 100%; } .framer-BQJcg .framer-2qk4x0 { gap: 32px; padding: 0px 24px 80px 24px; } .framer-BQJcg .framer-11g7uzo { padding: 0px; } .framer-BQJcg .framer-1oxibzy { height: var(--framer-aspect-ratio-supported, 181px); width: 200px; } .framer-BQJcg .framer-13sf8p1-container { aspect-ratio: unset; height: 450px; width: 330px; } .framer-BQJcg .framer-1lw414s { padding: 96px 0px 64px 0px; } .framer-BQJcg .framer-9b5oom-container { height: var(--framer-aspect-ratio-supported, 44px); width: 178px; } .framer-BQJcg .framer-qscl2w { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-BQJcg .framer-2br6u2 { height: 32px; left: 128px; width: 184px; } .framer-BQJcg .framer-1q2g4ws { padding: 56px 24px 0px 24px; } .framer-BQJcg .framer-t7v6wz { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-BQJcg .framer-1cdbn6o { align-self: unset; flex: none; height: 400px; width: 100%; } .framer-BQJcg .framer-m3m9nv { height: 309px; width: 342px; } .framer-BQJcg .framer-v4lspq { aspect-ratio: 1.06 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 300px); } .framer-BQJcg .framer-94g79s { padding: 32px 24px 32px 24px; } .framer-BQJcg .framer-gkoqdt { flex-direction: column; gap: 48px; justify-content: flex-start; } .framer-BQJcg .framer-lyxgs8 { align-self: unset; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-BQJcg .framer-100l0iy, .framer-BQJcg .framer-1eduq5x { height: min-content; } .framer-BQJcg .framer-3d88gp { align-self: stretch; height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BQJcg .framer-pfsw95, .framer-BQJcg .framer-1wcwayf, .framer-BQJcg .framer-15z5kgd, .framer-BQJcg .framer-1n188hy, .framer-BQJcg .framer-k7mxcw, .framer-BQJcg .framer-1mux1po, .framer-BQJcg .framer-60debn, .framer-BQJcg .framer-jdsg6d, .framer-BQJcg .framer-j4ehrv, .framer-BQJcg .framer-13g0vlh, .framer-BQJcg .framer-1ki6dp4, .framer-BQJcg .framer-1y3u0jp, .framer-BQJcg .framer-dr31lq, .framer-BQJcg .framer-jp5pgh, .framer-BQJcg .framer-2qk4x0, .framer-BQJcg .framer-t7v6wz, .framer-BQJcg .framer-gkoqdt, .framer-BQJcg .framer-lyxgs8 { gap: 0px; } .framer-BQJcg .framer-pfsw95 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-BQJcg .framer-pfsw95 > :first-child, .framer-BQJcg .framer-1wcwayf > :first-child, .framer-BQJcg .framer-15z5kgd > :first-child, .framer-BQJcg .framer-1n188hy > :first-child, .framer-BQJcg .framer-k7mxcw > :first-child, .framer-BQJcg .framer-1mux1po > :first-child, .framer-BQJcg .framer-60debn > :first-child, .framer-BQJcg .framer-jdsg6d > :first-child, .framer-BQJcg .framer-j4ehrv > :first-child, .framer-BQJcg .framer-13g0vlh > :first-child, .framer-BQJcg .framer-1ki6dp4 > :first-child, .framer-BQJcg .framer-2qk4x0 > :first-child, .framer-BQJcg .framer-t7v6wz > :first-child, .framer-BQJcg .framer-gkoqdt > :first-child, .framer-BQJcg .framer-lyxgs8 > :first-child { margin-top: 0px; } .framer-BQJcg .framer-pfsw95 > :last-child, .framer-BQJcg .framer-1wcwayf > :last-child, .framer-BQJcg .framer-15z5kgd > :last-child, .framer-BQJcg .framer-1n188hy > :last-child, .framer-BQJcg .framer-k7mxcw > :last-child, .framer-BQJcg .framer-1mux1po > :last-child, .framer-BQJcg .framer-60debn > :last-child, .framer-BQJcg .framer-jdsg6d > :last-child, .framer-BQJcg .framer-j4ehrv > :last-child, .framer-BQJcg .framer-13g0vlh > :last-child, .framer-BQJcg .framer-1ki6dp4 > :last-child, .framer-BQJcg .framer-2qk4x0 > :last-child, .framer-BQJcg .framer-t7v6wz > :last-child, .framer-BQJcg .framer-gkoqdt > :last-child, .framer-BQJcg .framer-lyxgs8 > :last-child { margin-bottom: 0px; } .framer-BQJcg .framer-1wcwayf > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-BQJcg .framer-15z5kgd > *, .framer-BQJcg .framer-1n188hy > *, .framer-BQJcg .framer-60debn > *, .framer-BQJcg .framer-13g0vlh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BQJcg .framer-k7mxcw > *, .framer-BQJcg .framer-1mux1po > *, .framer-BQJcg .framer-jdsg6d > *, .framer-BQJcg .framer-j4ehrv > *, .framer-BQJcg .framer-1ki6dp4 > *, .framer-BQJcg .framer-t7v6wz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BQJcg .framer-1y3u0jp > *, .framer-BQJcg .framer-1y3u0jp > :first-child, .framer-BQJcg .framer-1y3u0jp > :last-child, .framer-BQJcg .framer-dr31lq > *, .framer-BQJcg .framer-dr31lq > :first-child, .framer-BQJcg .framer-dr31lq > :last-child, .framer-BQJcg .framer-jp5pgh > *, .framer-BQJcg .framer-jp5pgh > :first-child, .framer-BQJcg .framer-jp5pgh > :last-child { margin: 0px; } .framer-BQJcg .framer-2qk4x0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BQJcg .framer-gkoqdt > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-BQJcg .framer-lyxgs8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (min-width: 1280px) and (max-width: 1439px) { .framer-BQJcg.framer-72rtr7 { gap: 10px; width: 1280px; } .framer-BQJcg .framer-a2iji8 { z-index: 5; } .framer-BQJcg .framer-a0jdx2, .framer-BQJcg .framer-1k1mp5y { aspect-ratio: 1.292 / 1; height: var(--framer-aspect-ratio-supported, 400px); width: 517px; } .framer-BQJcg .framer-11sbs4n { aspect-ratio: 1.2275449101796407 / 1; height: var(--framer-aspect-ratio-supported, 400px); width: 491px; } .framer-BQJcg .framer-11g7uzo { gap: 0px; padding: 96px 4px 48px 0px; } .framer-BQJcg .framer-13sf8p1-container { height: var(--framer-aspect-ratio-supported, 461px); width: 95%; } .framer-BQJcg .framer-1lw414s { padding: 120px 4px 48px 0px; } .framer-BQJcg .framer-2br6u2 { height: 32px; left: calc(54.66101694915256% - 163px / 2); width: 163px; } .framer-BQJcg .framer-vd75xk { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BQJcg.framer-72rtr7, .framer-BQJcg .framer-11g7uzo { gap: 0px; } .framer-BQJcg.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BQJcg.framer-72rtr7 > :first-child, .framer-BQJcg .framer-11g7uzo > :first-child { margin-top: 0px; } .framer-BQJcg.framer-72rtr7 > :last-child, .framer-BQJcg .framer-11g7uzo > :last-child { margin-bottom: 0px; } .framer-BQJcg .framer-11g7uzo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (min-width: 1024px) and (max-width: 1279px) { .framer-BQJcg.framer-72rtr7 { gap: 10px; width: 1024px; } .framer-BQJcg .framer-a2iji8 { z-index: 5; } .framer-BQJcg .framer-1wcwayf { gap: 32px; justify-content: flex-start; padding: 96px 48px 96px 48px; } .framer-BQJcg .framer-15z5kgd, .framer-BQJcg .framer-yik7i4 { flex: 1 0 0px; width: 1px; } .framer-BQJcg .framer-1y3u0jp, .framer-BQJcg .framer-dr31lq, .framer-BQJcg .framer-jp5pgh { gap: 40px; justify-content: flex-start; } .framer-BQJcg .framer-vg7hq4, .framer-BQJcg .framer-1t3oj9u, .framer-BQJcg .framer-me0fkj { width: 380px; } .framer-BQJcg .framer-r1lb3w { left: 229px; transform: unset; } .framer-BQJcg .framer-a0jdx2, .framer-BQJcg .framer-1k1mp5y { aspect-ratio: 1.292 / 1; height: var(--framer-aspect-ratio-supported, 400px); width: 517px; } .framer-BQJcg .framer-14qdmvl { height: 57px; left: 227px; top: 88px; width: 54px; } .framer-BQJcg .framer-1s2k1re { top: 9px; } .framer-BQJcg .framer-11sbs4n { aspect-ratio: 1.2275449101796407 / 1; height: var(--framer-aspect-ratio-supported, 400px); width: 491px; } .framer-BQJcg .framer-13sf8p1-container { aspect-ratio: unset; height: 450px; width: 80%; } .framer-BQJcg .framer-9b5oom-container { height: var(--framer-aspect-ratio-supported, 44px); width: 178px; } .framer-BQJcg .framer-2br6u2 { height: 31px; left: 432px; width: 160px; } .framer-BQJcg .framer-vd75xk, .framer-BQJcg .framer-fhsh6f, .framer-BQJcg .framer-2tdaoq, .framer-BQJcg .framer-i9fxmq, .framer-BQJcg .framer-5dlayx, .framer-BQJcg .framer-gnnmxw, .framer-BQJcg .framer-cthqtp, .framer-BQJcg .framer-1z841r, .framer-BQJcg .framer-wt2w65 { width: 100%; } .framer-BQJcg .framer-lyxgs8 { width: 400px; } .framer-BQJcg .framer-1908ci1 { height: 125px; } .framer-BQJcg .framer-100l0iy { flex: 1 0 0px; height: 1px; } .framer-BQJcg .framer-1eduq5x { height: min-content; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BQJcg.framer-72rtr7, .framer-BQJcg .framer-1wcwayf, .framer-BQJcg .framer-1y3u0jp, .framer-BQJcg .framer-dr31lq, .framer-BQJcg .framer-jp5pgh { gap: 0px; } .framer-BQJcg.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BQJcg.framer-72rtr7 > :first-child { margin-top: 0px; } .framer-BQJcg.framer-72rtr7 > :last-child { margin-bottom: 0px; } .framer-BQJcg .framer-1wcwayf > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-BQJcg .framer-1wcwayf > :first-child, .framer-BQJcg .framer-1y3u0jp > :first-child, .framer-BQJcg .framer-dr31lq > :first-child, .framer-BQJcg .framer-jp5pgh > :first-child { margin-left: 0px; } .framer-BQJcg .framer-1wcwayf > :last-child, .framer-BQJcg .framer-1y3u0jp > :last-child, .framer-BQJcg .framer-dr31lq > :last-child, .framer-BQJcg .framer-jp5pgh > :last-child { margin-right: 0px; } .framer-BQJcg .framer-1y3u0jp > *, .framer-BQJcg .framer-dr31lq > *, .framer-BQJcg .framer-jp5pgh > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6702\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JH2aKH3U6\":{\"layout\":[\"fixed\",\"auto\"]},\"o9gRi4KJy\":{\"layout\":[\"fixed\",\"auto\"]},\"DgyPxAtU6\":{\"layout\":[\"fixed\",\"auto\"]},\"cpPKxUGLY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-BQJcg\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6702,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Uncut Sans Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/d4rXOHtUCj3IyGJ0UtT9YhNPok.woff2\"},{family:\"Uncut Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/LvJhOVyJbXGVRM8kA0HjoGF2U.woff2\"},{family:\"Uncut Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/4uxym7EpUVGW85zpYqWArvT2S9E.woff2\"},{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:\"Uncut Sans Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/f2OWqfLbiM2rjGSNcLVJkXFxdrg.woff2\"}]},...NavigationFonts,...PhosphorFonts,...FULLTESTIMONIALCARDFonts,...SlideshowFonts,...WiredLogoFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"6702\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JH2aKH3U6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o9gRi4KJy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DgyPxAtU6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cpPKxUGLY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "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", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "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", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "cdeQ8fWTs", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "SVG", "RichText2", "css", "FramerHL1_7W9Ci", "withCSS", "HL1_7W9Ci_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", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerjRSaCG1Iu", "withCSS", "jRSaCG1Iu_default", "addFonts", "NavigationFonts", "getFonts", "WZNmo1bXQ_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "MotionAWithOptimizedAppearEffect", "RichTextWithFX", "withFX", "MotionAWithFX", "PhosphorFonts", "Icon", "MotionDivWithFX", "ImageWithFX", "Image2", "FULLTESTIMONIALCARDFonts", "HL1_7W9Ci_default", "SlideshowFonts", "Slideshow", "WiredLogoFonts", "jRSaCG1Iu_default", "FooterFonts", "AGhCU2TiL_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "transition5", "animation6", "animation7", "transition6", "animation8", "animation9", "animation10", "animation11", "animation12", "animation13", "transition7", "animation14", "animation15", "animation16", "animation17", "animation18", "transition8", "animation19", "animation20", "animation21", "animation22", "animation23", "animation24", "animation25", "animation26", "animation27", "animation28", "animation29", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "x", "Link", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
