{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.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.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/wWrmGNp9ARrLUmkENnMc/Bw6fdpY1YyLdsyZXyfqA/djDPEUwhH.js", "ssg:https://framerusercontent.com/modules/igJGPj5ur9uypUonSZ9Z/Ryu9opNPbXsiu4qMpRX1/HfkXPUgFF.js", "ssg:https://framerusercontent.com/modules/Kxg5KeUlp3YckMp3Lqyo/VwEsUgwgEFIYfrlaBDIB/StripePromoNotice.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.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,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.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=r.stiffness,damping:s=r.damping,mass:n=r.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/n)/1e3;const l=calcDampingRatio(e,s,n);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 a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Space Grotesk-500\",\"GF;Space Grotesk-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsmNsFjTDJK.woff2\",weight:\"500\"},{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksmNsFjTDJK.woff2\",weight:\"700\"}]}];export const css=['.framer-jCzPX .framer-styles-preset-z8z57u:not(.rich-text-wrapper), .framer-jCzPX .framer-styles-preset-z8z57u.rich-text-wrapper p { --framer-font-family: \"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-d0c0e39c-8005-4dfd-82ee-934f92d7ba83, #ccd8ee); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1247px) and (min-width: 810px) { .framer-jCzPX .framer-styles-preset-z8z57u:not(.rich-text-wrapper), .framer-jCzPX .framer-styles-preset-z8z57u.rich-text-wrapper p { --framer-font-family: \"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-d0c0e39c-8005-4dfd-82ee-934f92d7ba83, #ccd8ee); --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-jCzPX .framer-styles-preset-z8z57u:not(.rich-text-wrapper), .framer-jCzPX .framer-styles-preset-z8z57u.rich-text-wrapper p { --framer-font-family: \"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-d0c0e39c-8005-4dfd-82ee-934f92d7ba83, #ccd8ee); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-jCzPX\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a2fb474)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wWrmGNp9ARrLUmkENnMc/Bw6fdpY1YyLdsyZXyfqA/djDPEUwhH.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"kQlnp1X8M\",\"kh4br9JXs\",\"rpr0x_im8\"];const serializationHash=\"framer-IKfWF\";const variantClassNames={kh4br9JXs:\"framer-v-xmvjte\",kQlnp1X8M:\"framer-v-1rn47ji\",rpr0x_im8:\"framer-v-18ripfb\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1 Line\":\"kQlnp1X8M\",Phone:\"rpr0x_im8\",Tablet:\"kh4br9JXs\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,AS5InnxrQ:(_ref=title!==null&&title!==void 0?title:props.AS5InnxrQ)!==null&&_ref!==void 0?_ref:\"Powering the world\u2019s best teams\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"kQlnp1X8M\"};};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,AS5InnxrQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kQlnp1X8M\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rn47ji\",className,classNames),\"data-border\":true,\"data-framer-name\":\"1 Line\",layoutDependency:layoutDependency,layoutId:\"kQlnp1X8M\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cdbcd494-e5ce-49c8-b73d-f44b2f7cc8de, rgb(38, 46, 91))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(180deg, var(--token-6c3a81ed-295c-4cf3-be27-87c364e03574, rgb(9, 12, 23)) /* {\"name\":\"Background 1\"} */ 0%, var(--token-5359e16b-53be-4876-bfe3-a0e29536b0c6, rgb(19, 25, 54)) /* {\"name\":\"Background 3\"} */ 100%)',...style},...addPropertyOverrides({kh4br9JXs:{\"data-framer-name\":\"Tablet\"},rpr0x_im8:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8z57u\",\"data-styles-preset\":\"djDPEUwhH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-32d159aa-bd7d-4321-8a5c-8d6220b0a13e, rgb(255, 255, 255)))\"},children:\"Powering the world\u2019s best teams\"})}),className:\"framer-1wsga17\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hGDlf9Z6W\",style:{\"--extracted-r6o4lv\":\"var(--token-32d159aa-bd7d-4321-8a5c-8d6220b0a13e, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AS5InnxrQ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kh4br9JXs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8z57u\",\"data-styles-preset\":\"djDPEUwhH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-32d159aa-bd7d-4321-8a5c-8d6220b0a13e, rgb(255, 255, 255)))\"},children:\"Powering the world\u2019s best teams\"})})},rpr0x_im8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8z57u\",\"data-styles-preset\":\"djDPEUwhH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-32d159aa-bd7d-4321-8a5c-8d6220b0a13e, rgb(255, 255, 255)))\"},children:\"Powering the world\u2019s best teams\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dcf3c4-container\",layoutDependency:layoutDependency,layoutId:\"N7gCPE5TH-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:56,height:\"100%\",hoverFactor:1,id:\"N7gCPE5TH\",layoutId:\"N7gCPE5TH\",padding:8,paddingBottom:8,paddingLeft:8,paddingPerSide:false,paddingRight:8,paddingTop:8,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14hm11r\",\"data-framer-name\":\"ecopetrol\",layoutDependency:layoutDependency,layoutId:\"uCX9g9alK\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:89.5,pixelHeight:80,pixelWidth:179,src:\"https://framerusercontent.com/images/3vDmTTHW8vQwMXgIAcOoVSGAkc.png\"},className:\"framer-1pg6fpc\",\"data-framer-name\":\"ecopetrol_logo\",layoutDependency:layoutDependency,layoutId:\"aGQQyhYDm\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-htyg6k\",\"data-framer-name\":\"telefonica\",layoutDependency:layoutDependency,layoutId:\"LpWsxS85K\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19r4q58\",\"data-framer-name\":\"telefonica_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:180,layoutDependency:layoutDependency,layoutId:\"TzQJ9H1Ug\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"180\" height=\"80\"><g data-name=\"Grupo 725\" transform=\"translate(-.409 -.405)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"180\" height=\"80\" rx=\"5\" transform=\"translate(.409 .405)\" fill=\"#0d122e\"/><path d=\"M43.745 57.848c-6.472-.081-11.768-.306-11.768-.5 0-.6 45.366-1 81.629-.716 18.892.145 34.442.356 34.555.469a.323.323 0 0 1-.039.449c-.276.277-86.369.524-104.376.3Zm-1.535-7.341a3.192 3.192 0 0 1 .779-1.158 68.746 68.746 0 0 0 3.919-8.827c3.58-9.1 4.512-10.881 6.661-12.705l1.535-1.3-3.889.233c-4.446.266-7.065 1.054-8.694 2.614a5.5 5.5 0 0 0-1.659 4.6c.3 1.148-.518 1.045-1.788-.225-1.5-1.5-1.127-3.545 1.028-5.568 2.7-2.531 4.533-2.88 16.64-3.166 5.853-.135 10.705-.219 10.78-.178s-.376.412-1 .824c-.854.56-2.124.783-5.05.887-3.534.125-4.014.239-5.018 1.187-1.152 1.089-3.475 6.287-6.45 14.435-1.692 4.632-3.051 7-4.429 7.723-1.055.553-3.361.981-3.361.625Zm34.793.049a5 5 0 0 1 .752-1.375 10.527 10.527 0 0 0 .98-1.7c.125-.338.612-1.576 1.08-2.753l.852-2.139-1.842 1.406c-3.147 2.4-6.52 2.918-8.185 1.253-1.756-1.756-1.064-5.594 1.684-9.346 3.083-4.21 8.773-5.766 8.773-2.4 0 1.545-2.315 4.172-5.3 6.016-2.492 1.538-3.229 2.869-2.423 4.375.489.914 1.367.9 3.427-.059a12.982 12.982 0 0 0 6.112-7.148c.578-1.546 1.051-2.869 1.051-2.939a2.042 2.042 0 0 0-.921-.3c-.852-.159-.825-.213.364-.715a4.913 4.913 0 0 0 2-1.8c2.207-3.873 5.142-5.619 9.884-5.88 3.168-.174 3.4-.128 4.4.871a3.755 3.755 0 0 1 1.054 1.514c0 .631-2.271 2.853-2.916 2.853-.406 0-.413-.109-.031-.491a2.7 2.7 0 0 0 .491-1.629c0-2.476-3.779-3.128-6.579-1.135-1.161.827-3.655 4.192-3.655 4.932a14.611 14.611 0 0 0 4.093.065c4.344-.239 5.177.131 2.919 1.3-3.3 1.708-6.473 10.835-3.891 11.2 1.956.279 5.474-5.977 5.474-9.734 0-1.088.141-1.165 3.684-1.991 4.463-1.041 5.081-.9 4.794 1.121a12.405 12.405 0 0 1-.518 2.24c-.169.421.556-.158 1.613-1.287 2.141-2.289 3.831-3.176 5.333-2.8 1.982.5 1.8 1.573-1.556 9.051a14.44 14.44 0 0 0-1.474 5.014c-.006 2.007-.439 2.162-1.915.685-1.418-1.418-1.178-3.315 1.037-8.209a32.23 32.23 0 0 0 1.692-4.2c0-1.866-4.125 2.9-6.754 7.8-1.88 3.506-2.155 3.828-3.377 3.946-.731.07-1.33-.009-1.33-.177s.921-2.668 2.047-5.557c2.421-6.212 2.532-7.011.921-6.626s-1.74.506-1.74 1.51c0 1.15-2.106 5.61-3.531 7.479-2.208 2.894-5.852 4.2-7.839 2.81-2.077-1.455-.545-7.557 2.681-10.684l1.623-1.563-2.37.137-2.37.137-1.717 4.774c-2.368 6.6-4.245 10.532-5.376 11.264S77 50.972 77 50.556Zm.081-13.578c1.534-1.622 2.164-3.366 1.331-3.685-1.16-.445-3.523 2.488-4.472 5.551l-.3.982 1.173-.843a19.344 19.344 0 0 0 2.268-2.005Zm-12.51 10.063a2.591 2.591 0 0 1-1.079-2.5V42.88l-1.432 1.09c-3.245 2.475-6.142 2.928-7.844 1.226-.951-.951-1.027-1.255-.778-3.13.656-4.942 4.45-9.45 8.7-10.335a1.941 1.941 0 0 1 2.133.558c.7.7.762 1.022.406 2.046-.524 1.5-3.762 4.585-6.036 5.744-1.552.792-1.7 1-1.7 2.47a3.165 3.165 0 0 0 .367 1.832c.977.6 3.219-.438 5.165-2.4 1.693-1.706 2.576-3.213 4.924-8.4 2.7-5.953 2.941-6.341 4.222-6.673a5.034 5.034 0 0 1 1.709-.229c.192.068-1 3.193-2.653 6.944-3.557 8.081-4.431 10.586-4.431 12.693 0 1.8-.193 1.886-1.675.72Zm-4.321-9.571c1.9-1.8 2.691-3.4 2.019-4.068-.308-.308-.642-.307-1.141 0-1.6 1-4.649 6.825-3.127 5.973a19.855 19.855 0 0 0 2.249-1.91Zm76.738 9.541a2.148 2.148 0 0 1-.966-2.456c.083-.868.008-1.578-.167-1.578a.371.371 0 0 0-.318.407c0 .806-3.383 2.868-4.705 2.868a2.535 2.535 0 0 1-2.663-2.253c0-.709-.057-.7-.921.087-2.555 2.336-5.811 2.839-7.493 1.158l-1.008-1.009-1.486 1.009c-1.724 1.169-3.874 1.313-4.864.323s-.6-2.646 1.874-8.12c2.11-4.659 2.116-4.672 3.81-5.025a7.7 7.7 0 0 1 1.833-.252 48.552 48.552 0 0 1-2.149 5.191c-2.366 5.27-2.747 6.848-1.655 6.848.97 0 3.054-1.7 3.054-2.5 0-1.222 1.627-4.567 3.09-6.352a9.2 9.2 0 0 1 6.577-3.429c2.706 0 3.507 1.694 1.535 3.245-1.318 1.036-1.974 1.091-1.58.132.911-2.219-.456-2.842-2.331-1.061-3.481 3.3-5.191 11.018-2.25 10.147a9.388 9.388 0 0 0 5.208-4.774c2.8-5.254 5.754-7.393 10.286-7.451a9.307 9.307 0 0 1 3.027.264c.165.164-.174 1.361-.755 2.661-1.766 3.952-3.242 8.8-3.3 10.854a4.057 4.057 0 0 1-.31 1.945 5.349 5.349 0 0 1-1.368-.877Zm-2.557-4.237c1.349-1.389 5.431-9.117 5.029-9.519-.477-.478-2.546.47-3.7 1.692a18.277 18.277 0 0 0-3.841 7.1c-.596 2.671.362 2.946 2.512.728Zm-14.757-13.18c-.7-.264-.646-1.959.083-2.564.926-.769 2.066-.35 2.066.758 0 1.032-1.3 2.125-2.149 1.806Z\" fill=\"#262e5b\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7s28f5\",\"data-framer-name\":\"dhl\",layoutDependency:layoutDependency,layoutId:\"ZfsIMI3L0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xy3ezf\",\"data-framer-name\":\"dhl_logo_1_\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:180,layoutDependency:layoutDependency,layoutId:\"ClHc6QIjb\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"180\" height=\"80\"><g data-name=\"Grupo 723\" transform=\"translate(.116 -.405)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"180\" height=\"80\" rx=\"5\" transform=\"translate(-.116 .405)\" fill=\"#0d122e\"/><g fill=\"#262e5b\"><path data-name=\"Trazado 201\" d=\"m42.973 29.758-4.661 6.334h25.405c1.285 0 1.269.484.641 1.339s-1.7 2.361-2.355 3.242c-.33.445-.926 1.256 1.048 1.256h10.385l3.083-4.184c1.909-2.592.167-7.984-6.66-7.984Z\"/><path data-name=\"Trazado 202\" d=\"m36.425 50.393 9.368-12.725h11.62c1.285 0 1.269.487.641 1.339l-2.371 3.229c-.33.445-.926 1.256 1.048 1.256h15.562a16.156 16.156 0 0 1-13.029 6.9Zm53.623-6.9-5.078 6.9H71.576l5.078-6.9Zm20.516-1.563H77.807l8.958-12.168h13.388l-5.132 6.978h5.972l5.139-6.978h13.388Zm-1.15 1.563-5.078 6.9H90.949l5.078-6.9Zm-92.099 2.719h19.728l-1.076 1.464H17.315Zm0-2.723h21.734l-1.08 1.464H17.315Zm0 5.446h17.726l-1.073 1.458H17.315Zm145.906-1.259h-19.658l1.08-1.464h18.578Zm0 2.717h-21.654l1.07-1.458h20.584Zm-16.576-6.9h16.576v1.467h-17.653Zm-8.579-13.731-8.958 12.168h-14.189l8.964-12.168Zm-24.294 13.727s-.977 1.339-1.454 1.98c-1.679 2.275-.2 4.921 5.292 4.921h21.5l5.078-6.9Z\"/></g></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kt7jx8\",\"data-framer-name\":\"gloveo\",layoutDependency:layoutDependency,layoutId:\"mXhWmbS_n\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bmwul7\",\"data-framer-name\":\"glovo_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:180,layoutDependency:layoutDependency,layoutId:\"sTvLWZimT\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"180\" height=\"80\"><g data-name=\"Grupo 722\" transform=\"translate(-.121 -.405)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"180\" height=\"80\" rx=\"5\" transform=\"translate(.121 .405)\" fill=\"#0d122e\"/><path d=\"M24.757 46.138v-.081a14.54 14.54 0 0 1 14.84-14.644 15.781 15.781 0 0 1 9.822 2.872 2.481 2.481 0 0 1-1.48 4.491 2.682 2.682 0 0 1-1.562-.567 11.049 11.049 0 0 0-6.987-2.226c-5.3 0-9.329 4.573-9.329 9.993v.081c0 5.826 3.9 10.114 9.781 10.114a11.87 11.87 0 0 0 6.945-2.144v-5.3h-5.673a2.194 2.194 0 0 1-2.26-2.143 2.228 2.228 0 0 1 2.26-2.185h8.014a2.49 2.49 0 0 1 2.548 2.509v7.564a3.426 3.426 0 0 1-1.767 3.155 18.52 18.52 0 0 1-10.232 3.076c-9.002-.001-14.92-6.311-14.92-14.565Zm31.452-13.229a2.428 2.428 0 0 1 2.465-2.428 2.464 2.464 0 0 1 2.507 2.428v25.083a2.487 2.487 0 0 1-4.972 0V32.908Zm8.824 16.749v-.082a11.258 11.258 0 0 1 11.589-11.165c6.657 0 11.549 4.976 11.549 11.086v.08A11.262 11.262 0 0 1 76.54 60.703a11.139 11.139 0 0 1-11.507-11.045Zm18.165 0v-.082A6.65 6.65 0 0 0 76.54 42.7a6.456 6.456 0 0 0-6.535 6.8v.08a6.631 6.631 0 0 0 6.617 6.838 6.454 6.454 0 0 0 6.575-6.76Zm17.388 10.963h-.247a3.079 3.079 0 0 1-2.835-2.145l-7.232-16.3a3.728 3.728 0 0 1-.289-1.213 2.467 2.467 0 0 1 2.465-2.346 2.5 2.5 0 0 1 2.467 1.775l5.589 14.16 5.672-14.239a2.471 2.471 0 0 1 2.343-1.7 2.351 2.351 0 0 1 2.424 2.346 2.9 2.9 0 0 1-.286 1.173l-7.234 16.345a3.142 3.142 0 0 1-2.837 2.145Zm12.17-10.963v-.082a11.259 11.259 0 0 1 11.592-11.165c6.656 0 11.547 4.976 11.547 11.086v.08a11.262 11.262 0 0 1-11.631 11.126 11.14 11.14 0 0 1-11.508-11.045Zm18.167 0v-.082a6.65 6.65 0 0 0-6.659-6.876 6.456 6.456 0 0 0-6.534 6.8v.08a6.631 6.631 0 0 0 6.617 6.838 6.454 6.454 0 0 0 6.575-6.755Zm13.287-30.639a9.7 9.7 0 0 0-9.765 9.613 9.447 9.447 0 0 0 1.841 5.6l.26.355 5.083 7.063a2.381 2.381 0 0 0 1.973 1h1.214a2.374 2.374 0 0 0 1.972-1l5.085-7.063.257-.355a9.444 9.444 0 0 0 1.843-5.6 9.7 9.7 0 0 0-9.763-9.613Zm4.019 12.451-.271.373-3.747 5.207-3.742-5.2-.275-.377a4.793 4.793 0 0 1-.94-2.845 4.956 4.956 0 0 1 9.912 0 4.778 4.778 0 0 1-.937 2.838Zm-6.765 15.522v-.019a2.721 2.721 0 0 1 5.438-.019v.019a2.647 2.647 0 0 1-2.733 2.614 2.619 2.619 0 0 1-2.705-2.6Z\" fill=\"#262e5b\" fill-rule=\"evenodd\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wgqoao\",\"data-framer-name\":\"orange\",layoutDependency:layoutDependency,layoutId:\"orEHEY25g\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zlcxok\",\"data-framer-name\":\"orange_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:181,layoutDependency:layoutDependency,layoutId:\"RlVkWwRPL\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"181\" height=\"80\"><g data-name=\"Grupo 724\" transform=\"translate(.354 -.405)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"181\" height=\"80\" rx=\"5\" transform=\"translate(-.354 .405)\" fill=\"#0d122e\"/><path data-name=\"Trazado 204\" d=\"M42.325 49.532c-4.566 0-8.684-2.907-8.684-9.26s4.119-9.26 8.684-9.26 8.679 2.907 8.679 9.26-4.113 9.26-8.679 9.26m0-14.615c-3.452 0-4.082 3.109-4.082 5.355s.63 5.361 4.082 5.361 4.082-3.115 4.082-5.361-.63-5.355-4.082-5.355m11.844-3.442h4.4v2.063a6.81 6.81 0 0 1 4.835-2.424 4.967 4.967 0 0 1 .6.024v4.339h-.235c-2.007 0-4.2.312-4.915 1.873v11.671h-4.685V31.475Zm22.1 16.019a10.339 10.339 0 0 1-5.8 1.744 4.87 4.87 0 0 1-5.215-5.1c0-3.929 3.611-6 11.053-6.842v-.979c0-1.273-.967-2.02-2.754-2.02a5.265 5.265 0 0 0-4.285 2.02l-3.115-1.775q2.451-3.434 7.473-3.434c4.578 0 7.149 1.983 7.149 5.209 0 0-.006 12.688 0 12.718H76.68Zm-6.469-3.7a2.115 2.115 0 0 0 2.081 2.283 6.422 6.422 0 0 0 4.278-1.848v-4.156c-4.315.533-6.359 1.646-6.359 3.721m14.625-11.847 3.825-.526.422 2.08c2.154-1.579 3.868-2.417 6.022-2.417 3.611 0 5.478 1.916 5.478 5.71V49.01h-4.621V37.591c0-2.149-.557-3.115-2.228-3.115a6.8 6.8 0 0 0-4.327 1.946v12.583h-4.571Zm27.049 13.3c3.5-.024 3.8-3.593 3.8-5.912 0-2.754-1.341-4.976-3.831-4.976-1.659 0-3.513 1.211-3.513 5.166 0 2.161.153 5.753 3.544 5.722m8.238-13.838v16.616c0 2.926-.232 7.767-8.586 7.81-3.452.024-6.653-1.359-7.289-4.37l4.554-.735c.189.863.722 1.72 3.3 1.72 2.393 0 3.543-1.144 3.543-3.886V46.52l-.061-.061a4.6 4.6 0 0 1-4.529 2.559c-4.094 0-7.314-2.84-7.314-8.771 0-5.869 3.323-9.156 7.05-9.162 3.507-.006 4.8 1.591 5.1 2.43l-.061-.006.385-2.1h3.9Zm11.042 17.93c-5.171 0-8.256-3.329-8.256-9.1 0-5.839 3.121-9.162 8.182-9.162s8.073 3.225 8.073 8.929c0 .306-.037.606-.037.906h-11.683c.031 3.329 1.414 5.006 4.131 5.006a4.491 4.491 0 0 0 3.985-2.246l3.378 1.873c-1.487 2.491-4.167 3.795-7.773 3.795m3.464-11.421c0-2.344-1.347-3.727-3.538-3.727-2.087 0-3.391 1.352-3.574 3.727Zm12.441-13.1-1.7 4.4-1.732-4.4h-1.481v5.8h.96v-4.842h.025l1.9 4.841h.612l1.891-4.841h.03v4.841h.955v-5.8Zm-10.679 0v.771h1.812v5.031h.96v-5.034h1.817v-.771h-4.59Z\" fill=\"#262e5b\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3c3wob\",\"data-framer-name\":\"easy\",layoutDependency:layoutDependency,layoutId:\"hbiQQdL8B\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wptl88\",\"data-framer-name\":\"easy_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:179,layoutDependency:layoutDependency,layoutId:\"IT4os57_Q\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"179\" height=\"80\"><g data-name=\"Grupo 754\"><g data-name=\"Grupo 750\" transform=\"translate(.05 -.249)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"179\" height=\"80\" rx=\"5\" transform=\"translate(-.05 .249)\" fill=\"#0d122e\"/></g><path d=\"M108.105 58.847c-17.75-2.391-35.587-2.53-63.231-.556l.3-1.274c27.626-2.438 49.4-3.719 61.344-3.351 7.041.216 9.184.727 9.184 3.225 0 2.665-3.131 2.561-7.6 1.956M55.656 35.49a4.3 4.3 0 0 0-4.687-4.088 4.533 4.533 0 0 0-4.6 4.088Zm6.933 2.23c0 .882-.121 2.279-.121 2.279l-16.09.005a4.626 4.626 0 0 0 4.852 4.458c1.993 0 3.278-.741 3.907-2.12l6.984.011c-.637 3.315-3.506 7.507-10.768 7.513-6.978.016-11.834-5.487-11.84-12.135 0-6.727 4.4-11.726 11.35-11.734a11.291 11.291 0 0 1 11.726 11.722m20.987.147c-.005-2.99-1.658-5.781-5.516-5.777s-5.107 3.116-5.107 5.8c0 2.824 1.511 5.886 5.412 5.888 4-.014 5.212-3.225 5.212-5.912m6.572 11.154-6.482.043.016-2.561h-.251c-1.08 2.177-3.243 3.372-6.6 3.38-5.685.012-10.611-4.658-10.617-12.006-.005-7.446 4.489-11.883 10.2-11.885 3.167-.009 5.787 1.3 6.953 3.251l.251-.005-.011-2.514h6.508Zm25.463-6.155c0 5.1-5.593 7.009-10.854 7.013s-10.723-2.02-10.728-7.048h6.915c0 1.572 2.179 2.167 3.819 2.165 1.613 0 3.7-.429 3.7-1.948 0-1.914-2.6-2.189-6.684-3.251-4.242-1.113-7.262-2.967-7.266-6.962 0-5.075 4.944-6.813 10.231-6.821 5.228 0 10.007 1.732 10.011 6.8l-6.831.022c0-1.411-1.734-1.956-3.18-1.952s-3.169.351-3.169 1.746c.009 1.918 2.92 2.159 6.21 2.963 4.2 1.021 7.815 2.732 7.821 7.27m23.919-16.158-12.161 31.921-7-.02 4.591-10.407-8.267-21.467h6.98l4.507 13.846h.251l4.172-13.86Z\" fill=\"#262e5b\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g0xvg9\",\"data-framer-name\":\"edenor\",layoutDependency:layoutDependency,layoutId:\"iNhH899yD\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tln4ax\",\"data-framer-name\":\"edenor_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:179,layoutDependency:layoutDependency,layoutId:\"U7MXCVOoE\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"179\" height=\"80\"><g data-name=\"Grupo 752\"><g data-name=\"Grupo 750\" transform=\"translate(-.121 -.249)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"179\" height=\"80\" rx=\"5\" transform=\"translate(.121 .249)\" fill=\"#0d122e\"/></g><path d=\"M34.075 34.037q-5.006 0-7.312 3.086a13.5 13.5 0 0 0-2.301 8.254 15.52 15.52 0 0 0 .625 4.63 8.7 8.7 0 0 0 1.6 3.14 4.361 4.361 0 0 0 .329.345h-.013q2.496 2.723 7.592 2.723a15.279 15.279 0 0 0 4.538-.751q2.412-.752 2.413-2.023a3.768 3.768 0 0 0-.713-1.8c-.477-.756-.908-1.138-1.294-1.138-.026 0-.568.2-1.623.6a12.121 12.121 0 0 1-3.81.623 5.325 5.325 0 0 1-2.8-.885q-1.463-.946-1.67-3.741c-.04-1.447-.015-1.439.021-3.57v-.054c.029-.469.054-.766.054-.766a5.922 5.922 0 0 1 1.217-3.195 3.8 3.8 0 0 1 3.021-1.239 3.546 3.546 0 0 1 3.039 1.524 7.708 7.708 0 0 1 1.312 3.815l-1.913.125c-1.056.066-2.111.139-3.214.206-.187.013-.373.034-.556.053l-.246.027a.963.963 0 0 0-.87.9 1.149 1.149 0 0 0 .9 1.2.693.693 0 0 0 .153.021c.927.069 1.886.136 2.852.2 1.19.083 5.052.168 6.229.249l1.971-3.327a8.589 8.589 0 0 0-2.368-6.23q-2.431-3.008-7.161-3m40.855-.002q-5.007 0-7.309 3.086a13.492 13.492 0 0 0-2.3 8.255 15.575 15.575 0 0 0 .625 4.63 8.8 8.8 0 0 0 1.6 3.14 5.4 5.4 0 0 0 .328.345h-.011q2.491 2.722 7.59 2.722a15.3 15.3 0 0 0 4.54-.751q2.408-.752 2.41-2.023a3.759 3.759 0 0 0-.715-1.8c-.475-.756-.905-1.138-1.294-1.138-.024 0-.568.2-1.622.6a12.108 12.108 0 0 1-3.806.623 5.322 5.322 0 0 1-2.8-.885q-1.459-.946-1.671-3.741c-.036-1.447-.013-1.439.022-3.57v-.054c.027-.469.053-.766.053-.766a5.944 5.944 0 0 1 1.214-3.195 3.8 3.8 0 0 1 3.018-1.239 3.547 3.547 0 0 1 3.043 1.524 7.708 7.708 0 0 1 1.312 3.815l-1.912.125c-1.056.066-2.11.139-3.214.206-.186.013-.371.034-.556.053l-.246.027a.964.964 0 0 0-.87.9 1.149 1.149 0 0 0 .9 1.2.747.747 0 0 0 .155.021c.927.069 1.887.136 2.852.2 1.191.083 5.051.168 6.23.249l1.972-3.327a8.606 8.606 0 0 0-2.372-6.23q-2.431-3.008-7.163-3m20.908-.001a22.048 22.048 0 0 0-9.934 2.365V56.26h2.237s2.975.076 2.975-2.777V39.002a22.988 22.988 0 0 1 4.024-.378 10.233 10.233 0 0 1 2.777.313 2.925 2.925 0 0 1 1.551.953 3.788 3.788 0 0 1 .638 1.218 5.713 5.713 0 0 1 .159 1.448v13.7h2.232s2.976.076 2.976-2.777V43a8.565 8.565 0 0 0-2.552-6.61 10.064 10.064 0 0 0-7.084-2.352m25.19 16.605a5.822 5.822 0 0 1-7.594 0q-1.236-1.405-1.238-5.434t1.238-5.445a5.786 5.786 0 0 1 7.594 0c.815.945 1.228 2.761 1.228 5.445s-.414 4.5-1.228 5.434m-3.805-16.566q-4.939 0-7.591 2.873t-2.647 8.247q0 5.376 2.647 8.25t7.591 2.877q4.944 0 7.6-2.877t2.644-8.25q0-5.369-2.644-8.247t-7.6-2.873m22.45-.04a25.764 25.764 0 0 0-5.53.682 34.266 34.266 0 0 0-3.749.981c-.624.229-1.113.429-1.465.6v19.959h2.235s2.979.076 2.979-2.777V39.215a21.307 21.307 0 0 1 5.589-.717ZM58.476 49.528q0 2.335-3.939 2.33a3.685 3.685 0 0 1-3.475-1.7 11.421 11.421 0 0 1-.994-5.514q0-3.65 1.271-5.1a4.651 4.651 0 0 1 3.7-1.452 16.485 16.485 0 0 1 3.433.36Zm2.231-23.47h-2.231v8.309a20.2 20.2 0 0 0-3.6-.333q-4.848 0-7.429 2.8t-2.584 8.086a16.082 16.082 0 0 0 .74 5.116 9.2 9.2 0 0 0 1.8 3.36 8.639 8.639 0 0 0 2.489 1.863 8.871 8.871 0 0 0 2.5.891 13.734 13.734 0 0 0 2.148.169q4.64 0 6.893-2.15a6.85 6.85 0 0 0 2.252-5.131v-20.2c0-2.854-2.978-2.776-2.978-2.776Zm92.062 2.413a7.134 7.134 0 0 1-9.771 4.655 5.657 5.657 0 1 0 9.772-4.655m-4.185-1.854a5.635 5.635 0 0 1 4.183 1.854 7.13 7.13 0 1 0-9.772 4.655 5.609 5.609 0 0 1 5.59-6.509\" fill=\"#262e5b\" fill-rule=\"evenodd\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j0373v\",\"data-framer-name\":\"ypf\",layoutDependency:layoutDependency,layoutId:\"VXorNNnQv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xypasn\",\"data-framer-name\":\"ypf_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:180,layoutDependency:layoutDependency,layoutId:\"Rg3gMNnn4\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"180\" height=\"80\"><g data-name=\"Grupo 726\" transform=\"translate(-.172 -.405)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"180\" height=\"80\" rx=\"5\" transform=\"translate(.172 .405)\" fill=\"#0d122e\"/><path d=\"M59.321 48.075v-7.5l-8.747-8.115-3.744-3.123h10.62l2.5 3.123 3.748 3.749 3.124-3.749c2.5-1.873 2.5-3.123 2.5-3.123h10.62L76.19 32.46l-8.746 8.123v7.5a4.779 4.779 0 0 0 1.249 3.123h-10Zm49.979 0V32.46l-.625-3.123h24.364v5.621l-3.123-.624h-11.871v4.374h11.872v5l-3.124-.625h-8.747v5l.625 3.123h-10Zm-18.742-8.743V33.71h3.748c3.124 0 4.373.624 4.373 2.5s-1.875 3.123-5 3.123Zm-9.371 11.87h9.995l-.624-3.127v-4.37h5.622c7.5 0 10-3.748 10-7.5 0-3.124-1.873-6.872-9.371-6.872H81.187l.624 3.123v15.619Z\" fill=\"#262e5b\" fill-rule=\"evenodd\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nisnw7\",\"data-framer-name\":\"monterrey\",layoutDependency:layoutDependency,layoutId:\"jJlyXby_U\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2gcxuq\",\"data-framer-name\":\"tec_monterrey_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:179,layoutDependency:layoutDependency,layoutId:\"wJCephQyD\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"179\" height=\"80\"><g data-name=\"Grupo 745\" transform=\"translate(-.091 -.327)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"179\" height=\"80\" rx=\"5\" transform=\"translate(.091 .327)\" fill=\"#0d122e\"/><g fill=\"#262e5b\"><path d=\"M49.233 36.443c-1.11 1.11-3.307 3.2-5.07 4.939-4.156 3.786-4.221 6.223-4 7.355-3.068-3.568-.631-6.267.914-7.768.718-.7 5.113-5.026 6.136-5.984 3.568-3.394 3.568-4.417 3.568-4.417 1.371 3.177-.435 4.765-1.545 5.875Zm-.109 5.287c-1.088 1.066-.653.631-2.415 2.35-2.872 2.785-2.872 4.635-2.872 4.635-1.588-1.741-.609-4.656 1.11-6.332.718-.7 2.045-1.958 2.981-2.85 1.937-1.828 2.546-2.372 2.807-3.068a4.973 4.973 0 0 1-1.61 5.266Zm-11.859-2.2c.783-.762 5.853-5.7 6.811-6.636 3.133-3.024 2.981-3.982 2.981-3.982 1.349 3.2-.5 4.939-1.61 6.027a2187.7 2187.7 0 0 1-6.049 5.918c-4.439 4.352-2.85 7.855-2.85 7.855-2.807-2.067-2.176-6.354.718-9.182Zm-1.828-3.416c.805-.783 5.092-4.961 6.549-6.375 3.046-2.959 2.872-4.134 3-4.743 2.132 2.176.827 4.4-.326 5.548-1.023 1-5.788 5.788-7.724 7.55-.5.457-3.7 3.373-3.481 6.092-1.806-2.263-1.327-5.135 1.98-8.073Zm-3.938-1.2c.718-.74 6.18-6.027 7.093-6.963 2.263-2.263 1.806-4.069 1.806-4.069 2.611 1.98 1.654 4.112.239 5.483-1.153 1.11-5.222 5.179-7.093 6.985-2.981 2.85-2.633 5.2-2.067 7.224-2.176-2.241-3.177-5.353.022-8.66Zm9.03-11.728a16.224 16.224 0 0 0-2.019 32.34v-2.285c-2.7-.392-5.374-1.305-7.159-3.742h18.404c-1.784 2.437-4.482 3.351-7.159 3.742v2.306a16.236 16.236 0 0 0-2.067-32.355Zm31.724 9.906c.783 0 1.545-.022 2.328-.044.283 0 .37-.065.37-.348 0-.87-.435-1.719-1.218-1.719-.675.022-1.327.783-1.48 2.111Zm4.5 3.329a3.907 3.907 0 0 1-2.959 1.784 3.386 3.386 0 0 1-3.438-3.634 4.229 4.229 0 0 1 1.218-3.024 3.707 3.707 0 0 1 2.568-1.219h.022a2.732 2.732 0 0 1 2.7 2.655c0 .348-.109.522-.457.587-.283.044-2.393.2-4.2.261.044 2 1.175 2.937 2.393 2.937a2.793 2.793 0 0 0 1.915-.783l.239.435Zm7.446-.021a4 4 0 0 1-2.916 1.806 3.492 3.492 0 0 1-3.59-3.568 4.049 4.049 0 0 1 1.719-3.264 4.936 4.936 0 0 1 2.763-1.023h.022a2.606 2.606 0 0 1 1.48.413.668.668 0 0 1 .3.587.956.956 0 0 1-.675.849c-.109 0-.2-.044-.348-.2a2.62 2.62 0 0 0-1.719-.805c-.827 0-1.675.762-1.675 2.568a2.709 2.709 0 0 0 2.437 3.024 2.675 2.675 0 0 0 1.915-.783l.283.392m5.334 1.592v-.5c.827-.109.914-.2.914-1.371v-2.872c0-1.2-.5-1.719-1.306-1.719a2.383 2.383 0 0 0-1.48.653v4.05c0 1.088.109 1.153.914 1.262v.5h-3.959v-.5c1.088-.131 1.175-.2 1.175-1.305v-3.5c0-1.044-.087-1.11-.957-1.262v-.435a16.586 16.586 0 0 0 2.829-.653v1.284c.348-.239.7-.5 1.088-.762a2.365 2.365 0 0 1 1.371-.5c1.371 0 2.219.979 2.219 2.655v3.242c0 1.088.109 1.131 1.023 1.262v.5h-3.83m6.637-4.188c0 2.111.762 3.721 1.958 3.721.805 0 1.545-.544 1.545-2.981 0-2.2-.674-3.634-1.937-3.634-.805.022-1.567.979-1.567 2.894Zm5.657.3a3.831 3.831 0 0 1-3.873 4.069 3.7 3.7 0 0 1-3.895-3.764 3.988 3.988 0 0 1 3.982-4.112 3.725 3.725 0 0 1 3.786 3.808Zm.478 3.859v-.5c1.044-.131 1.153-.217 1.153-1.327v-7.855c0-1.088-.087-1.11-1.088-1.24v-.457a19.248 19.248 0 0 0 2.959-.587v10.14c0 1.132.109 1.219 1.175 1.327v.5h-4.2m8.118-8.53c.283-.74.827-2.415.957-2.742a6.057 6.057 0 0 1 1.7-.2l.087.174-2.219 2.981-.522-.218Zm-1.175 4.374c0 2.111.762 3.721 1.958 3.721.805 0 1.545-.544 1.545-2.981 0-2.2-.675-3.634-1.937-3.634-.805.022-1.567.979-1.567 2.894Zm5.657.3a3.831 3.831 0 0 1-3.873 4.069 3.7 3.7 0 0 1-3.895-3.764 3.988 3.988 0 0 1 3.982-4.112 3.725 3.725 0 0 1 3.786 3.808Zm3.111-1.28c0 1.24.479 2.2 1.327 2.2.675 0 1.153-.675 1.153-1.958 0-1.2-.457-2.154-1.349-2.154-.566-.022-1.131.653-1.131 1.915Zm-.085 5.788a1.363 1.363 0 0 0-.522 1.044c0 .87.892 1.632 2.219 1.632 1.393 0 2.176-.74 2.176-1.7a1.17 1.17 0 0 0-.892-1.153 5.03 5.03 0 0 0-1.545-.174c-.805 0-1.175.087-1.436.348Zm5.635-7.964a2.3 2.3 0 0 1-.74.979l-.979-.065a2.131 2.131 0 0 1 .479 1.371c0 1.806-1.567 2.676-3.155 2.676a5.337 5.337 0 0 1-.849-.087.8.8 0 0 0-.348.566c0 .283.283.653 1.088.631.588 0 1.11-.022 1.654-.022 1.066 0 2.568.3 2.568 2.045 0 1.893-2.176 3.46-4.439 3.46-2.089 0-3.09-1.11-3.112-2.067a1.273 1.273 0 0 1 .5-.957c.392-.348.914-.674 1.305-.957a2.125 2.125 0 0 1-1.262-.936 1.47 1.47 0 0 1-.239-.827 4.065 4.065 0 0 0 1.654-1.088 2.361 2.361 0 0 1-1.61-2.263 2.975 2.975 0 0 1 3.2-2.807h.022a3.906 3.906 0 0 1 1.762.435 31.607 31.607 0 0 0 2.393-.218l.109.131Zm1.217-2.632a1.091 1.091 0 0 1 1.088-1.088 1.073 1.073 0 0 1 1.066 1.088 1.077 1.077 0 0 1-2.154 0Zm-.87 9.944v-.5c1.023-.109 1.131-.2 1.131-1.371v-3.416c0-1.088-.087-1.153-.979-1.284v-.479a14.942 14.942 0 0 0 2.872-.631v5.788c0 1.153.087 1.262 1.131 1.371v.5h-4.155Zm11.293-1.589a4 4 0 0 1-2.916 1.806 3.492 3.492 0 0 1-3.59-3.568 4.049 4.049 0 0 1 1.719-3.264 4.936 4.936 0 0 1 2.763-1.023h.022a2.606 2.606 0 0 1 1.48.413.668.668 0 0 1 .3.587.956.956 0 0 1-.674.849c-.109 0-.2-.044-.348-.2a2.621 2.621 0 0 0-1.719-.805c-.827 0-1.675.762-1.675 2.568a2.709 2.709 0 0 0 2.437 3.024 2.675 2.675 0 0 0 1.915-.783l.283.392m2.635-2.567c0 2.111.762 3.721 1.958 3.721.805 0 1.545-.544 1.545-2.981 0-2.2-.674-3.634-1.937-3.634-.8.022-1.567.979-1.567 2.894Zm5.636.3a3.831 3.831 0 0 1-3.873 4.069 3.7 3.7 0 0 1-3.895-3.764 3.988 3.988 0 0 1 3.982-4.112 3.725 3.725 0 0 1 3.786 3.808ZM67.596 47.13a1.615 1.615 0 0 0-1.436-.87c-.544 0-1.893.5-1.893 3.046 0 2.045 1.219 2.916 2.132 2.916a2.067 2.067 0 0 0 1.2-.392v-4.7Zm3.09 5.657a21.571 21.571 0 0 0-3.112.653v-1.044l-1.044.653a2.106 2.106 0 0 1-1.023.37 3.512 3.512 0 0 1-3.373-3.677 4.393 4.393 0 0 1 4.591-4.178 6.337 6.337 0 0 1 .849.109v-2.176c0-.979-.109-1.066-1.218-1.175v-.5a19.044 19.044 0 0 0 3.09-.587v9.9c0 .936.109 1 .783 1.088l.435.044v.522Zm2.634-4.464c.783 0 1.545-.022 2.328-.044.283 0 .37-.065.37-.348 0-.87-.435-1.719-1.219-1.719-.7.022-1.327.783-1.48 2.111Zm4.482 3.329a3.907 3.907 0 0 1-2.959 1.784 3.386 3.386 0 0 1-3.438-3.634 4.229 4.229 0 0 1 1.219-3.025 3.707 3.707 0 0 1 2.568-1.218h.022a2.732 2.732 0 0 1 2.7 2.655c0 .348-.109.522-.457.587-.283.044-2.393.2-4.2.261.044 2 1.175 2.937 2.393 2.937a2.793 2.793 0 0 0 1.915-.783l.239.435Zm14.035 1.59v-.544c1.306-.131 1.393-.261 1.371-1.893l-.044-6.658h-.087l-3.895 8.986h-.435l-3.59-8.812h-.065l-.218 4.569a23.654 23.654 0 0 0-.022 2.763c.044.783.413.914 1.545 1.023v.566h-4.069v-.566c.979-.087 1.306-.348 1.414-.979a28.179 28.179 0 0 0 .348-3.177l.261-3.416c.152-2.045.044-2.219-1.458-2.35v-.544h3.264l3.5 7.79 3.568-7.79h3.242v.544c-1.414.131-1.48.239-1.458 1.762l.152 6.267c.044 1.654.109 1.762 1.5 1.893v.544h-4.83m7.533-4.135c0 2.111.762 3.721 1.958 3.721.805 0 1.545-.544 1.545-2.981 0-2.2-.675-3.634-1.937-3.634-.805 0-1.567.957-1.567 2.894Zm5.635.283a3.831 3.831 0 0 1-3.873 4.069 3.7 3.7 0 0 1-3.895-3.764 3.988 3.988 0 0 1 3.982-4.112 3.738 3.738 0 0 1 3.786 3.808Zm5.462 3.873v-.5c.827-.109.914-.2.914-1.371v-2.872c0-1.2-.5-1.719-1.305-1.719a2.383 2.383 0 0 0-1.48.653v4.05c0 1.088.109 1.153.914 1.262v.5h-3.96v-.5c1.088-.131 1.175-.2 1.175-1.306v-3.5c0-1.044-.087-1.11-.957-1.262v-.435a16.6 16.6 0 0 0 2.829-.653v1.284c.348-.239.7-.5 1.088-.762a2.365 2.365 0 0 1 1.371-.5c1.371 0 2.219.979 2.219 2.655v3.242c0 1.088.109 1.131 1.023 1.262v.5h-3.83m7.659-.027a2.139 2.139 0 0 1-.7.2c-1.219 0-1.937-.631-1.937-2.111v-4.809h-1.11l-.087-.2.479-.566h.718v-1.219l1.632-1.262.239.087v2.414h1.762a.514.514 0 0 1-.109.762h-1.654v4.243c0 1.349.588 1.523.979 1.523a2.465 2.465 0 0 0 .936-.218l.152.522-1.306.631m3.574-4.916c.783 0 1.545-.022 2.328-.044.283 0 .37-.065.37-.348 0-.87-.435-1.719-1.219-1.719-.675.022-1.327.783-1.48 2.111Zm4.5 3.329a3.907 3.907 0 0 1-2.959 1.784 3.386 3.386 0 0 1-3.438-3.634 4.229 4.229 0 0 1 1.218-3.025 3.707 3.707 0 0 1 2.568-1.218h.022a2.732 2.732 0 0 1 2.7 2.655c0 .348-.109.522-.457.587-.283.044-2.393.2-4.2.261.044 2 1.175 2.937 2.393 2.937a2.793 2.793 0 0 0 1.915-.783l.239.435Zm3.616-4.285c.588-1 1.284-1.806 1.98-1.806a1.031 1.031 0 0 1 1.088.979 1.173 1.173 0 0 1-.74 1.088.443.443 0 0 1-.5-.043 1.148 1.148 0 0 0-.762-.348c-.37 0-.783.3-1.11 1.088v3.133c0 1.066.087 1.153 1.393 1.262v.5h-4.4v-.5c.979-.109 1.131-.2 1.131-1.262v-3.634c0-.957-.109-1.044-.979-1.2v-.435a13.789 13.789 0 0 0 2.85-.653v1.828h.044m6.707.003c.588-1 1.284-1.806 1.98-1.806a1.031 1.031 0 0 1 1.088.979 1.173 1.173 0 0 1-.74 1.088.443.443 0 0 1-.5-.043 1.147 1.147 0 0 0-.762-.348c-.37 0-.783.3-1.11 1.088v3.133c0 1.066.087 1.153 1.393 1.262v.5h-4.4v-.5c.979-.109 1.131-.2 1.131-1.262v-3.634c0-.957-.109-1.044-.979-1.2v-.435a13.791 13.791 0 0 0 2.85-.653v1.828h.043m5.228.959c.783 0 1.545-.022 2.328-.044.283 0 .37-.065.37-.348 0-.87-.435-1.719-1.219-1.719-.674.022-1.327.783-1.48 2.111Zm4.5 3.329a3.907 3.907 0 0 1-2.959 1.784 3.386 3.386 0 0 1-3.438-3.634 4.229 4.229 0 0 1 1.218-3.025 3.707 3.707 0 0 1 2.568-1.218h.022a2.732 2.732 0 0 1 2.7 2.655c0 .348-.109.522-.457.587-.283.044-2.393.2-4.2.261.044 2 1.175 2.937 2.393 2.937a2.793 2.793 0 0 0 1.915-.783l.239.435Zm8.512-5.395c-.849.152-1 .3-1.458 1.24-.435.892-.979 2.306-2.045 4.83a46.038 46.038 0 0 0-1.784 4.7.547.547 0 0 1-.587.435 1.164 1.164 0 0 1-1.11-.979c0-.261.109-.413.435-.653a3.176 3.176 0 0 0 1.349-1.327 4.08 4.08 0 0 0 .413-.87 1.294 1.294 0 0 0-.043-.805c-.827-2.263-1.7-4.548-2.089-5.461-.326-.805-.5-1-1.371-1.131v-.5h3.938v.5c-.762.152-.87.261-.675.849l1.371 3.96c.435-1.044 1.066-2.85 1.371-3.851.2-.587.044-.805-.827-.957v-.5h3.068v.522\"/><path d=\"M61.896 26.761c-.043 1-.131 1.915-.174 2.916h.566a4.194 4.194 0 0 1 .653-1.675c.239-.326.566-.479 1.937-.479h.762v8.247c0 1.436-.174 1.567-1.632 1.7v.544h5.266v-.544c-1.545-.131-1.7-.261-1.7-1.7v-8.247h.914c1.088 0 1.48.109 1.784.457a4.048 4.048 0 0 1 .653 1.7l.566-.044a58.194 58.194 0 0 1-.152-2.872h-9.443\"/></g></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1en8j3p\",\"data-framer-name\":\"telepizza\",layoutDependency:layoutDependency,layoutId:\"voxZClVnI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v9fii8\",\"data-framer-name\":\"telepizza_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:179,layoutDependency:layoutDependency,layoutId:\"QA5VTkw6l\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"179\" height=\"80\"><g data-name=\"Grupo 756\" transform=\"translate(-.121 -.327)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"179\" height=\"80\" rx=\"5\" transform=\"translate(.121 .327)\" fill=\"#0d122e\"/><g fill=\"#262e5b\"><path data-name=\"Trazado 214\" d=\"M105.946 29.228c0 .066.265.6.088.706s-.309 0-.353-.221c-.088-.441 0-.772-.4-1.037-.265-.154-1.015 1.059-3.64-.044a7.352 7.352 0 0 1-4.015-4.3s-.066-.2.772.265c.684.4 1.544.243 2.868-.066 1.544-.353 4.743.574 4.633 3.265 0 0-1.633-3.486-6.177-1.986 0 0-.265.154.287.154s3.486-.419 5.03 1.434a4.855 4.855 0 0 1 .993 1.809\"/><path data-name=\"Uni\\xf3n 1\" d=\"M80.994 52.724c-.662-2.361-.309-3.817.22-6a40.235 40.235 0 0 0 .993-5.405c.639-6.089.463-7.391-.728-11.737 2.074.022 4.611.529 6.045 5.405.75-1.61 2.868-5.052 5.846-4.787a4.694 4.694 0 0 1 3.552 2.912 10.429 10.429 0 0 1-1.1 10.17c-1.434 2.272-4.854 3.927-8.119 3.927a10.755 10.755 0 0 1-1.213-.088 17.67 17.67 0 0 0-.772 5.979c.066 2.449.353 3.375.309 3.927a5.961 5.961 0 0 1-5.033-4.303Zm7.633-13.965c-.618 1.985-1.456 5.251-1.655 6.023h.11c2.184-.022 3.552-1.147 4.589-3.75.706-1.787.772-4.567.133-5.626a.651.651 0 0 0-.441-.353h-.133c-.926-.001-1.831 1.283-2.603 3.706Zm41.277 8.825c-2.735.088-5.935 0-6.288-3.288-.044-.507-.088-2.713 4.368-6.354 4.037-3.287 4.06-4.434 3.221-4.831-1.013-.485-4.573.547-5.641 3.072-.436-.3-3.093-2.221-1.286-4.109 1.61-1.676 4.523-1.765 6.817-1.588 2.449.2 6.177.816 6.42 4.081.177 2.316-.948 3.375-4.721 6.53-1.787 1.5-3.486 2.89-3.662 3.53.86-.375 11.693-1.589 9.266 6.464a12.252 12.252 0 0 0-8.494-3.508Zm-15.664 0c-2.758.088-5.934 0-6.288-3.309-.044-.508-.11-2.714 4.368-6.332 4.039-3.288 4.057-4.457 3.222-4.854-1.015-.463-4.589.551-5.648 3.088l.022.022s-3.309-2.1-1.345-4.147c1.632-1.677 4.523-1.765 6.817-1.589 2.449.2 6.177.816 6.42 4.081.2 2.317-.949 3.375-4.721 6.53-1.787 1.5-3.508 2.89-3.662 3.53.86-.375 11.693-1.589 9.266 6.464a12.029 12.029 0 0 0-8.45-3.485Zm40.616.639c-.728 0-4.3-.264-5.78-5.25a7.524 7.524 0 0 1-4.3 4.3 4.459 4.459 0 0 1-3.971-.838 6.988 6.988 0 0 1-1.986-6.354 10.624 10.624 0 0 1 3.089-6.575 10.4 10.4 0 0 1 7.964-3.089 12.545 12.545 0 0 1 5.14 1.368l.154.088-.044.176c0 .044-1.39 6.486-.993 10.457a23.863 23.863 0 0 0 1.037 5.405h.044l.132.309a2 2 0 0 1-.251.017 1.636 1.636 0 0 1-.234-.014Zm-9.2-5.648c.574.022 1.412-.684 2.118-2.669.309-.86.75-2.03 1.169-3.177l1.479-4.015a4.85 4.85 0 0 0-3.575 1.5l-.044-.022c-2.226 2.316-3.242 8.317-1.146 8.383Zm-45.645 1.677c-.839-2.184-.11-6.265.706-9.531s.573-3.861.573-3.861l.022.022a6.963 6.963 0 0 1 2.846.463c1.545.573 2.405 2.515 1.985 4.545s-1.522 6.42-1.721 8.3a9.341 9.341 0 0 0 .6 4.037 6.017 6.017 0 0 1-5.011-3.975Zm-44.9 2.074c.022-.287 1.985-14.1 1.985-14.1s.534-7.19 6.513-7.19h.268s-2.364 17.5-2.5 18.378c-.176 1.147-1.081 3.949-5.339 3.949a.875.875 0 0 1-.923-1.037Zm8.538-7.39a10.019 10.019 0 0 1 9.928-8.495l.022-.044a6.772 6.772 0 0 1 5.67 2.78 7.175 7.175 0 0 1 1.147 5.229 4.739 4.739 0 0 1-.132.772.891.891 0 0 1-.927.772H69.212c-.265 2.1 1.236 3.552 3.6 3.552a7.322 7.322 0 0 0 3.641-1.037.959.959 0 0 1 1.279.177l.772 1.125a.916.916 0 0 1-.243 1.258 11.1 11.1 0 0 1-6.666 2.311c-5.383 0-8.648-3.437-7.942-8.4Zm6.067-2.206h6.839a2.959 2.959 0 0 0-3.084-3.094h-.094a3.694 3.694 0 0 0-3.657 3.093Zm-32.062 6.574a6.289 6.289 0 0 1-6.233 4.015c-3.375 0-6.464-2.317-5.824-6.839 0 0 .86-5.78.86-5.978h-3.022c-.772 0-.353-.883-.265-1.39.107-.686 1.169-1.766 3.107-3.2 2.077-1.522 3.82-2.67 5.717-4.016.507-.309 1.544-.4 1.544.331-.265 1.743-.728 4.832-.728 4.964a5.857 5.857 0 0 1 .882 0h2.185c1.39.022 1.147.882 1.147.882l-.375 2.427h-3.242a1.205 1.205 0 0 0-1.169.9c-.221 1.522-.64 4.479-.64 4.479-.331 2.338.507 3.486 2.6 3.486a3.369 3.369 0 0 0 2.856-2.317 8.857 8.857 0 0 1 .057-2.118 10.06 10.06 0 0 1 9.95-8.538 6.773 6.773 0 0 1 5.67 2.78 7.178 7.178 0 0 1 1.146 5.234c-.044.265-.088.507-.132.772a.891.891 0 0 1-.927.772H42.677c-.265 2.1 1.236 3.552 3.6 3.552a7.316 7.316 0 0 0 3.64-1.037.956.956 0 0 1 1.28.177l.772 1.125a.916.916 0 0 1-.243 1.258 11.1 11.1 0 0 1-6.671 2.311c-3.597 0-6.248-1.532-7.401-4.032Zm5.523-6.575h6.861a2.96 2.96 0 0 0-3.086-3.093h-.091a3.716 3.716 0 0 0-3.684 3.093Zm82.378-.53.007-.017.059.039Z\"/></g></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aok9p1\",\"data-framer-name\":\"actahotels\",layoutDependency:layoutDependency,layoutId:\"FqcEZfn67\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:89.5,pixelHeight:80,pixelWidth:179,src:\"https://framerusercontent.com/images/VXOqMe4Vc72ZZWXYI9XY7ENyCA.png\"},className:\"framer-13id88v\",\"data-framer-name\":\"actahotels_logo\",layoutDependency:layoutDependency,layoutId:\"LTA0JTmG8\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h2hbt7\",\"data-framer-name\":\"grido\",layoutDependency:layoutDependency,layoutId:\"qJ570t5kF\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nd15w7\",\"data-framer-name\":\"grido_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:179,layoutDependency:layoutDependency,layoutId:\"tb_bUvsAQ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"179\" height=\"80\"><g data-name=\"Grupo 751\"><g data-name=\"Grupo 750\" transform=\"translate(-.098 -.249)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"179\" height=\"80\" rx=\"5\" transform=\"translate(.098 .249)\" fill=\"#0d122e\"/></g><path d=\"M49.555 65.162c-3.12-1.349-4.935-4.882-4.942-9.617 0-2.3-.041-2.4-2.146-5.335-3.983-5.56-5.951-10.837-5.45-14.612.5-3.738 2.425-6.243 8.892-11.549l2.856-2.343 10.889.3c5.989.165 12.714.3 14.946.3h4.057l1.411-2.3c1.629-2.66 4.559-5.587 6.334-6.329 3.819-1.6 8.172.851 11.709 6.582l1.327 2.149 13.963-.258 13.963-.258 1.574.8c6.7 3.408 11.267 8.731 11.842 13.8.448 3.95-1.519 8.773-5.23 12.822l-2.113 2.306-.091 3.61c-.1 3.937-.74 6.368-2.184 8.285-1.773 2.354 1.04 2.206-41.641 2.191-33.784-.012-38.89-.082-39.967-.548Z\" fill=\"#262e5b\"/><g data-name=\"Grupo 749\" fill=\"#0d122e\"><g data-name=\"Grupo 748\" transform=\"translate(44.149 17.102)\"><path d=\"M4.915 29.504c-2.632-1.2-4-2.978-4.665-6.09-1.218-5.677 2.1-10.453 7.9-11.37 2.979-.471 4.769-.23 5.583.751.476.573.2.693-1.606.694-2.674 0-5.448 1.323-6.283 2.992a9.593 9.593 0 0 0 .1 6.965 6 6 0 0 0 5.565 3.511c1.2 0 2.178-.127 2.178-.283a10.169 10.169 0 0 0-1.323-2.018l-1.323-1.735 1.672-1.725 1.672-1.725 1.658 1.607c.912.884 1.562 1.858 1.444 2.165a44.514 44.514 0 0 1-2.625 3.882l-2.411 3.324-2.75-.011a13.342 13.342 0 0 1-4.784-.935Zm26.812-1.41c-2.538-3.717-4.292-5.342-5.336-4.941-.688.264-.76.81-.469 3.532.337 3.151.318 3.226-.919 3.537-2.122.532-3 .09-3.475-1.759-.538-2.074-.288-15.714.3-16.3.625-.623 8.308-.316 10.565.423 3.856 1.262 4.874 6.41 1.655 8.368l-1.493.908 2.568 2.835c2.794 3.085 2.793 3.275-.038 5.291l-1.388.988Zm-2.906-6.679c2.607-1.188 3.053-4.779.865-6.968-2.745-2.745-3.53-1.9-3.53 3.821 0 3.989.227 4.258 2.665 3.147Zm12.807.957c.009-10.387.007-10.379 2.806-10.379h2.2l-.136 9.1-.136 9.1-2.37.152-2.37.152Zm10.029 7.618c-.206-.213-.374-4.363-.374-9.222v-8.834l1.467-.293c2.21-.442 9.374.516 11.4 1.525 2.792 1.39 3.789 3.147 3.981 7.016.23 4.623-.733 6.394-4.5 8.278-2.3 1.149-3.738 1.483-7.234 1.677-2.402.132-4.534.066-4.74-.147Zm7.5-1.712c6.234-2.829 5.067-14.23-1.567-15.306l-1.818-.295v8.3c0 6.31.149 8.294.624 8.286a12.36 12.36 0 0 0 2.761-.981Zm15.849 1.038c-6.012-4.052-5.754-13.16.46-16.268 4.1-2.048 8.069-1.657 10.922 1.074a9.527 9.527 0 0 1-1.819 15.243c-2.725 1.531-7.257 1.508-9.567-.049Zm7.5-1.334c3.151-3.151 1.84-11.63-2.208-14.283-1.208-.791-1.341-.789-2.25.033-3.3 2.989-2.228 12.76 1.606 14.608 1.574.761 1.751.739 2.848-.358Z\"/><ellipse cx=\"4.446\" cy=\"4.855\" rx=\"4.446\" ry=\"4.855\" transform=\"translate(40.269)\"/></g><path d=\"M66.34 59.751h-.931v-3.625h-4.112v3.625h-.932v-7.948h.931v3.486h4.113v-3.486h.931Zm9.405 0h-4.214v-7.948h4.035v.842h-3.1v2.644h2.865v.837h-2.867v2.782h3.281Zm8.763 0h-4.123v-7.948h.931v7.105h3.192Zm10.481 0h-1.031l-.842-2.229h-3.37l-.793 2.228h-1.036l3.048-7.948h.966Zm-2.178-3.065-1.247-3.387a3.242 3.242 0 0 1-.122-.532h-.022a2.969 2.969 0 0 1-.127.532l-1.237 3.387Zm6.457 3.065v-7.948h2.195q4.2 0 4.2 3.874a3.9 3.9 0 0 1-1.167 2.957 4.328 4.328 0 0 1-3.123 1.117Zm.931-7.105v6.262h1.186a3.366 3.366 0 0 0 2.433-.837 3.137 3.137 0 0 0 .87-2.372q0-3.054-3.248-3.054Zm13.34 7.238a3.489 3.489 0 0 1-2.708-1.119 4.132 4.132 0 0 1-1.017-2.9 4.378 4.378 0 0 1 1.037-3.054 3.62 3.62 0 0 1 2.821-1.146 3.41 3.41 0 0 1 2.652 1.108 4.147 4.147 0 0 1 1.006 2.9 4.392 4.392 0 0 1-1.031 3.076 3.553 3.553 0 0 1-2.76 1.135Zm.067-7.371a2.562 2.562 0 0 0-2.034.9 3.5 3.5 0 0 0-.781 2.372 3.522 3.522 0 0 0 .761 2.367 2.485 2.485 0 0 0 1.987.9 2.609 2.609 0 0 0 2.062-.859 3.488 3.488 0 0 0 .754-2.389 3.645 3.645 0 0 0-.732-2.433 2.509 2.509 0 0 0-2.017-.859Z\"/></g></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f86h2i\",\"data-framer-name\":\"ford\",layoutDependency:layoutDependency,layoutId:\"STWVRH2fF\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gku6ta\",\"data-framer-name\":\"ford_logo\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:179,layoutDependency:layoutDependency,layoutId:\"Gnn8zwapd\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"179\" height=\"80\"><g data-name=\"Grupo 721\" transform=\"translate(-.098 -.405)\"><rect data-name=\"Rect\\xe1ngulo 503\" width=\"179\" height=\"80\" rx=\"5\" transform=\"translate(.098 .405)\" fill=\"#0d122e\"/><path data-name=\"Trazado 197\" d=\"M90.461 15.978c-35.856 0-64.609 10.746-64.609 24.226 0 13.4 28.984 24.229 64.609 24.229s64.609-10.87 64.609-24.229-28.982-24.226-64.609-24.226\" fill=\"#262e5b\"/><path data-name=\"Trazado 198\" d=\"M128.419 33.254c.084-.148 0-.27-.191-.27h-3.259c-.243 0-.367.03-.483.253-.375.717-4.936 7.549-5.786 8.9-.143.2-.318.173-.337-.057a2.855 2.855 0 0 0-1.844-2.13 4.685 4.685 0 0 0-2.448-.27 8.734 8.734 0 0 0-4.014 1.887c-1.771 1.348-3.3 3.092-5.273 4.381-1.078.7-2.553 1.316-3.54.4-.892-.828-.79-2.669.574-4.09.146-.148.318-.024.291.108a1.806 1.806 0 0 0 .518 1.731 1.952 1.952 0 0 0 2.181.24 2.86 2.86 0 0 0 1.515-2.189 2.491 2.491 0 0 0-2.289-2.836 4.574 4.574 0 0 0-3.286 1.192 6.282 6.282 0 0 0-1.294 1.423c-.113.159-.283.175-.27-.062.051-1.86-.717-2.9-2.254-2.939a5.741 5.741 0 0 0-3.462 1.41 33.309 33.309 0 0 0-3.063 3.122c-.127.135-.237.129-.27-.132a6.284 6.284 0 0 0-.911-3.273.755.755 0 0 0-.981-.24 7.005 7.005 0 0 0-1.157.69.65.65 0 0 0-.2.733 8.608 8.608 0 0 1-.334 5.7 6.277 6.277 0 0 1-3.583 3.572 2.357 2.357 0 0 1-2.766-.747c-.911-1.262-.539-3.456.809-5.279a10.116 10.116 0 0 1 4.661-3.281.27.27 0 0 0 .189-.383c-.094-.283-.243-.671-.3-.849-.159-.421-.6-.491-1.146-.431a9.748 9.748 0 0 0-3.5 1.178c-2.933 1.556-4.4 4.6-5.047 6.22a6.358 6.358 0 0 1-.919 1.7 16.531 16.531 0 0 1-2.106 2.041.375.375 0 0 0-.086.431 5 5 0 0 0 .809 1.078.474.474 0 0 0 .453-.092 10.915 10.915 0 0 0 2.065-1.841c.154-.186.31-.108.391.175a4.567 4.567 0 0 0 2.933 3.117c2.7.906 5.478-.4 7.584-2.7a28.337 28.337 0 0 0 2.332-3.022 28.088 28.088 0 0 1 4.626-5.033c.747-.569 1.634-1.006 2.081-.717.359.232.472.771-.1 1.814-2.081 3.8-5.144 8.269-5.7 9.35-.1.189 0 .337.183.337h3.16a.378.378 0 0 0 .321-.2c1.6-2.5 3.1-4.882 4.713-7.341.089-.146.173-.032.175.03a4.086 4.086 0 0 0 .512 1.866 2.79 2.79 0 0 0 2.426 1.361 4.731 4.731 0 0 0 1.971-.415 6.888 6.888 0 0 0 1.618-.868c.24-.167.27.113.27.156-.369 1.984.086 4.338 2.06 5.311 2.359 1.164 4.955-.472 6.446-1.949.146-.143.3-.127.318.181a2.733 2.733 0 0 0 .755 1.7c1.251 1.254 3.774.758 6.309-1.205a31.626 31.626 0 0 0 4.853-4.907.218.218 0 0 0 0-.307c-.234-.243-.574-.526-.809-.741a.286.286 0 0 0-.351 0 40.828 40.828 0 0 1-5.044 4.621c-.69.482-1.793.871-2.289.2a1.077 1.077 0 0 1 .019-1.078c.6-1.491 10.061-15.906 10.552-16.747m-12.48 12.07c.019.11.162.216.3.27.048.019.078.054.022.17a13.973 13.973 0 0 1-1.275 2.108 7.922 7.922 0 0 1-1.618 1.752c-.954.79-2.278 1.65-3.375 1.078a1.661 1.661 0 0 1-.687-1.485 7.785 7.785 0 0 1 1.987-4.707c1.553-1.911 3.27-2.9 4.394-2.362s.8 1.906.27 2.966a.286.286 0 0 0-.022.218\" fill=\"#0d122e\"/><path data-name=\"Trazado 199\" d=\"M59.781 53.538c-3.529.024-6.637-2.157-6.993-5.931a7.619 7.619 0 0 1 1.577-5.492 7.791 7.791 0 0 1 4.33-2.782 1.639 1.639 0 0 1 1.418.291.769.769 0 0 1-.121 1.259 7.28 7.28 0 0 0-3.214 2.966 3.631 3.631 0 0 0 .181 3.75c1.415 2.138 5.365 2.2 9.039-1.213a31.821 31.821 0 0 0 2.55-2.588 58.279 58.279 0 0 0 4.314-5.508.116.116 0 0 0 .022-.1c-.019-.038-.049-.049-.111-.051a6.562 6.562 0 0 0-3.9 1.375.76.76 0 0 1-1.078-.116.859.859 0 0 1 .334-1.154c1.957-1.348 4.092-1.618 6.276-1.976a.356.356 0 0 0 .27-.159c.9-1.151 1.572-2.189 2.526-3.351a25.6 25.6 0 0 1 3.154-3.079 14.087 14.087 0 0 1 3.041-1.992c.226-.119-.03-.27-.1-.27-4.826-.906-9.84-2.079-14.631-.3-3.316 1.237-4.772 3.869-4.074 5.627.5 1.248 2.138 1.45 3.672.7a8.31 8.31 0 0 0 3.305-2.936c.469-.72 1.456-.2.922 1.049-1.4 3.294-4.079 5.91-7.344 6.02a4.282 4.282 0 0 1-4.562-4.473c0-4.971 5.546-8.244 11.361-8.735 7.009-.58 13.636 1.286 20.592 2.13a44.754 44.754 0 0 0 15.79-.572.809.809 0 0 1 1.035.906c-.051.925-.768 1.814-2.531 2.777a12.909 12.909 0 0 1-6.3 1.453c-5.3.043-10.245-2.022-15.345-3.133 0 .224.065.491-.121.631-2.831 2.087-5.392 4.206-7.1 7.182-.059.07-.027.135.073.127 1.485-.078 2.823-.116 4.214-.226.243-.022.251-.081.229-.27a3.451 3.451 0 0 1 1.078-3 2.014 2.014 0 1 1 3.165 2.491 3.4 3.4 0 0 1-2.057 1.669s-.162.035-.137.181c.032.235 1.078.809 1.167.971a.491.491 0 0 1-.116.539.666.666 0 0 1-.51.243 1.06 1.06 0 0 1-.518-.189 4.927 4.927 0 0 1-1.45-1.167c-.135-.167-.2-.17-.539-.154-1.5.086-3.847.315-5.432.512-.385.046-.442.119-.52.253-2.532 4.173-5.233 8.673-8.2 11.687-3.181 3.235-5.829 4.082-8.627 4.1m24.118-18.546c.04.213.124.256.221.237a2.319 2.319 0 0 0 1.321-.952c.286-.418.418-1.019.135-1.259a.747.747 0 0 0-.965.113 2.157 2.157 0 0 0-.712 1.86\" fill=\"#0d122e\"/><path data-name=\"Trazado 200\" d=\"M90.461 62.311c-34.193 0-61.913-9.9-61.913-22.107s27.717-22.107 61.913-22.107 61.908 9.9 61.908 22.107-27.717 22.107-61.908 22.107m0-42.386c-32.993 0-59.735 9.118-59.735 20.271S57.467 60.47 90.461 60.47s59.732-9.1 59.732-20.266-26.741-20.266-59.732-20.266\" fill=\"#0d122e\"/></g></svg>',withExternalLayout:true})})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IKfWF.framer-dzaiqn, .framer-IKfWF .framer-dzaiqn { display: block; }\",\".framer-IKfWF.framer-1rn47ji { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1248px; }\",\".framer-IKfWF .framer-1wsga17 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IKfWF .framer-1dcf3c4-container { flex: none; height: 61px; max-width: 1200px; mix-blend-mode: lighten; position: relative; width: 100%; }\",\".framer-IKfWF .framer-14hm11r, .framer-IKfWF .framer-1aok9p1, .framer-IKfWF .framer-f86h2i { height: 74px; overflow: hidden; position: relative; width: 175px; }\",\".framer-IKfWF .framer-1pg6fpc { aspect-ratio: 2.2375 / 1; bottom: -6px; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 0px; overflow: visible; position: absolute; right: -4px; }\",\".framer-IKfWF .framer-htyg6k, .framer-IKfWF .framer-kt7jx8 { height: 74px; overflow: hidden; position: relative; width: 174px; }\",\".framer-IKfWF .framer-19r4q58 { aspect-ratio: 2.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: -3px; position: absolute; right: -3px; top: -3px; }\",\".framer-IKfWF .framer-7s28f5 { height: 74px; overflow: hidden; position: relative; width: 176px; }\",\".framer-IKfWF .framer-xy3ezf { aspect-ratio: 2.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: -2px; position: absolute; right: -2px; top: -3px; }\",\".framer-IKfWF .framer-1bmwul7 { aspect-ratio: 2.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); left: 0px; position: absolute; top: 0px; width: 149px; }\",\".framer-IKfWF .framer-1wgqoao { height: 74px; overflow: hidden; position: relative; width: 177px; }\",\".framer-IKfWF .framer-zlcxok { aspect-ratio: 2.2625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: -2px; position: absolute; right: -2px; top: -3px; }\",\".framer-IKfWF .framer-3c3wob, .framer-IKfWF .framer-g0xvg9 { height: 74px; overflow: hidden; position: relative; width: 173px; }\",\".framer-IKfWF .framer-wptl88, .framer-IKfWF .framer-tln4ax { aspect-ratio: 2.2375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: -3px; position: absolute; right: -3px; top: -3px; }\",\".framer-IKfWF .framer-j0373v, .framer-IKfWF .framer-nisnw7, .framer-IKfWF .framer-1en8j3p, .framer-IKfWF .framer-h2hbt7 { height: 74px; overflow: hidden; position: relative; width: 172px; }\",\".framer-IKfWF .framer-xypasn { aspect-ratio: 2.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 0px; position: absolute; right: -8px; top: -3px; }\",\".framer-IKfWF .framer-2gcxuq { aspect-ratio: 2.2375 / 1; bottom: -6px; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 0px; position: absolute; right: -7px; }\",\".framer-IKfWF .framer-1v9fii8, .framer-IKfWF .framer-1nd15w7 { aspect-ratio: 2.2375 / 1; bottom: -3px; flex: none; left: 0px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 172px); }\",\".framer-IKfWF .framer-13id88v { aspect-ratio: 2.2375 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 166px); }\",\".framer-IKfWF .framer-1gku6ta { aspect-ratio: 2.2375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: -2px; position: absolute; right: -2px; top: -3px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IKfWF.framer-1rn47ji { gap: 0px; } .framer-IKfWF.framer-1rn47ji > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IKfWF.framer-1rn47ji > :first-child { margin-top: 0px; } .framer-IKfWF.framer-1rn47ji > :last-child { margin-bottom: 0px; } }\",\".framer-IKfWF.framer-v-xmvjte.framer-1rn47ji { width: 810px; }\",\".framer-IKfWF.framer-v-xmvjte .framer-1wsga17 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IKfWF.framer-v-18ripfb.framer-1rn47ji { padding: 24px 12px 24px 12px; width: 390px; }\",\".framer-IKfWF.framer-v-18ripfb .framer-1wsga17 { white-space: pre-wrap; width: 317px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,'.framer-IKfWF[data-border=\"true\"]::after, .framer-IKfWF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 160\n * @framerIntrinsicWidth 1248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kh4br9JXs\":{\"layout\":[\"fixed\",\"auto\"]},\"rpr0x_im8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"AS5InnxrQ\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHfkXPUgFF=withCSS(Component,css,\"framer-IKfWF\");export default FramerHfkXPUgFF;FramerHfkXPUgFF.displayName=\"Empresas\";FramerHfkXPUgFF.defaultProps={height:160,width:1248};addPropertyControls(FramerHfkXPUgFF,{variant:{options:[\"kQlnp1X8M\",\"kh4br9JXs\",\"rpr0x_im8\"],optionTitles:[\"1 Line\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},AS5InnxrQ:{defaultValue:\"Powering the world\u2019s best teams\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerHfkXPUgFF,[{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\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHfkXPUgFF\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1248\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"AS5InnxrQ\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kh4br9JXs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rpr0x_im8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"160\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HfkXPUgFF.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{motion}from\"framer-motion\";import{ControlType}from\"framer\";export function StripePromoNotice({promotionCodeId,borderRadius,padding}){const[promoDetails,setPromoDetails]=useState(null);const[error,setError]=useState(null);const[timeLeft,setTimeLeft]=useState(null);// Fetch promotion code details from Stripe API\nuseEffect(()=>{const fetchPromotionCode=async()=>{// Si promotionCodeId est\u00E1 vac\u00EDo, intenta obtenerlo de la URL\nif(!promotionCodeId){const urlParams=new URLSearchParams(window.location.search);const coupon=urlParams.get(\"coupon\");if(coupon){promotionCodeId=coupon// Asigna el valor del cup\u00F3n\n;}}try{const response=await fetch(`https://promotion-codes.leverio.workers.dev/${promotionCodeId}`);if(!response.ok){console.log(\"Error fetching promotion code\");}const data=(await response.json())?.data?.[0];if(!data){return setPromoDetails({valid:false,amountOff:0,percentOff:0,expiresAt:0});}const coupon=data.coupon;if(!coupon){console.log(\"Coupon details not found\");}setPromoDetails({valid:coupon.valid,amountOff:coupon.amount_off,percentOff:coupon.percent_off,expiresAt:data.expires_at});}catch(err){setError(err.message);}};fetchPromotionCode();},[promotionCodeId]);// Calculate countdown timer\nuseEffect(()=>{if(promoDetails?.expiresAt){const interval=setInterval(()=>{const now=new Date().getTime();const expiresAt=new Date(promoDetails.expiresAt*1e3).getTime();const timeRemaining=expiresAt-now;if(timeRemaining<=0){clearInterval(interval);setTimeLeft(null);}else{setTimeLeft(timeRemaining);}},1e3);return()=>clearInterval(interval);}},[promoDetails]);const formatTimeLeft=milliseconds=>{const seconds=Math.floor(milliseconds/1e3%60);const minutes=Math.floor(milliseconds/1e3/60%60);const hours=Math.floor(milliseconds/(1e3*60*60)%24);const days=Math.floor(milliseconds/(1e3*60*60*24));return`${days}d ${hours}h ${minutes}m ${seconds}s`;};if(error){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"none\"},children:[\"Error: \",error]});}if(!promoDetails){return /*#__PURE__*/_jsx(\"div\",{});}const{valid,amountOff,percentOff,expiresAt}=promoDetails;return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},style:{border:\"none\",backgroundColor:\"#88f0c6\",fontSize:\"13px\",textAlign:\"center\",borderRadius,padding,fontFamily:\"Space Grotesk\"},children:valid&&(!expiresAt||expiresAt*1e3>new Date().getTime())?/*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsxs(\"span\",{children:[\"\\xa1\",/*#__PURE__*/_jsx(\"strong\",{children:amountOff?`$${(amountOff/100).toFixed(2)} OFF aplicado`:percentOff?`${percentOff}% OFF aplicado`:\"Descuento no disponible\"}),\"! \uD83D\uDE0A\"]}),timeLeft!==null?/*#__PURE__*/_jsxs(\"span\",{children:[\" \",\"Finaliza en\",\" \",/*#__PURE__*/_jsx(\"strong\",{children:formatTimeLeft(timeLeft)})]}):/*#__PURE__*/_jsx(\"span\",{})]}):/*#__PURE__*/_jsxs(\"span\",{children:[\"Lo sentimos,\",\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"el cup\\xf3n no es v\\xe1lido o ha expirado\"}),\" \u2639\uFE0F\"]})});}// Define property controls for Framer\nStripePromoNotice.defaultProps={promotionCodeId:\"\"};StripePromoNotice.propertyControls={promotionCodeId:{type:ControlType.String,title:\"Promotion Code ID\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\"},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"8px\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"StripePromoNotice\":{\"type\":\"reactComponent\",\"name\":\"StripePromoNotice\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./StripePromoNotice.map"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "l", "cubicBezier", "__rest", "r", "n", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "d", "g", "glide", "f", "isOutOfBounds", "nearestBoundary", "l", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AS5InnxrQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "Image2", "SVG", "css", "FramerHfkXPUgFF", "withCSS", "HfkXPUgFF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "StripePromoNotice", "promotionCodeId", "borderRadius", "padding", "promoDetails", "setPromoDetails", "ye", "error", "setError", "timeLeft", "setTimeLeft", "ue", "coupon", "window", "response", "data", "err", "interval", "now", "timeRemaining", "formatTimeLeft", "milliseconds", "seconds", "minutes", "hours", "u", "p", "valid", "amountOff", "percentOff", "expiresAt", "motion", "ControlType"]
}
