{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/EDRjbk70VYM6yMFp5STe/4hf4iciXYOUaseOPV4Ft/GRJ1J0syA.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(u));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=f.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return i(e)?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return l(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){d(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:g(i,s,o[r]),easing:m(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,O(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=x((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=G.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=w(p(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const s=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:i(t)?()=>t(n):scrubAnimation(t,n[s])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const ce={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const le={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of ue)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0e55b13)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"QxrtwIFJy\",\"qPFuyEioj\"];const serializationHash=\"framer-jgknE\";const variantClassNames={qPFuyEioj:\"framer-v-1htocak\",QxrtwIFJy:\"framer-v-ij73l0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"QxrtwIFJy\",Tablet:\"qPFuyEioj\"};const getProps=({height,id,showTitle,speed,width,...props})=>{return{...props,CzSH7CrT6:showTitle??props.CzSH7CrT6??true,REBTle8_G:speed??props.REBTle8_G??50,variant:humanReadableVariantMap[props.variant]??props.variant??\"QxrtwIFJy\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,REBTle8_G,CzSH7CrT6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QxrtwIFJy\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ij73l0\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QxrtwIFJy\",ref:refBinding,style:{...style},...addPropertyOverrides({qPFuyEioj:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[CzSH7CrT6&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 143, 152))\"},children:\"Built for and used by businesses of all sizes and scale\"})}),className:\"framer-9pd1ly\",\"data-framer-name\":\"Built for and used by businesses of all sizes and scale\",fonts:[\"GF;IBM Plex Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ZQeQtJ8Pe\",style:{\"--extracted-r6o4lv\":\"rgb(138, 143, 152)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fj1dij\",\"data-framer-name\":\"container.logo-carousel\",layoutDependency:layoutDependency,layoutId:\"Yxzan0_6Q\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wwb2yx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fuvxwecpD-container\",nodeId:\"fuvxwecpD\",rendersWithMotion:true,scopeId:\"GRJ1J0syA\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:.5,id:\"fuvxwecpD\",layoutId:\"fuvxwecpD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6xi0a7\",\"data-framer-name\":\"logo-delhivery\",layoutDependency:layoutDependency,layoutId:\"tS76hQnUh\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vcd0vn\",\"data-framer-name\":\"Logo-delhivery\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:139,layoutDependency:layoutDependency,layoutId:\"aGD4N0cea\",svg:'<svg width=\"139\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path d=\"M53.89 13c.021 2.72.02 5.44.021 8.161 0 .34.004.344.352.344h3.845c.3 0 .313-.013.313-.317v-7.69c0-.078-.02-.166.01-.233.03-.07.102-.13.17-.171.043-.026.112-.008.17-.008h4.424c.33 0 .338.008.338.337v21.241c0 .319-.01.33-.324.33h-4.467c-.31 0-.32-.012-.32-.333v-7.668c0-.418 0-.418-.428-.418h-3.76c-.313 0-.323.01-.323.33v7.71c0 .378 0 .379-.382.379h-4.38c-.29 0-.306-.017-.306-.305V13.02C50.518 13 52.194 13 53.89 13Zm-40.938 0c.078.08.127.168.195.237.707.711 1.413 1.42 2.126 2.125a.59.59 0 0 1 .194.452c-.004 5.467-.004 10.934 0 16.4a.587.587 0 0 1-.187.456c-.724.713-1.435 1.438-2.163 2.148a.621.621 0 0 1-.39.169c-2.54.009-7.643-.006-7.643-.006l-.001-5.057H.007L0 13.02S8.621 13 12.952 13Zm-7.868 5.114s.003 10.506 0 11.81c0 0 3.472.002 4.993 0 .304 0 .317-.012.318-.312V18.465c0-.297-.014-.31-.322-.31-1.664-.001-3.326-.01-4.99-.041ZM106.557 13c.02 1.582.02 3.164.02 4.746 0 .365-.001.367-.374.365l-7.105-.042c-.381-.002-.382 0-.382.379v2.706c0 .348.004.351.344.351h4.853c.341.001.344.005.344.353v4.38c0 .33-.007.336-.338.336h-4.853c-.346 0-.35.004-.35.347v2.577c0 .334.007.341.334.341.966.001 1.932-.004 2.899.002 1.445.01 2.889.027 4.334.042.273.002.293.02.293.295l.001 4.423c0 .346-.004.35-.347.35-3.106 0-6.213-.012-9.32.012-.536.005-.924-.127-1.286-.531-.568-.633-1.194-1.215-1.8-1.813a.54.54 0 0 1-.18-.415c.004-5.483.004-10.966 0-16.45 0-.17.054-.296.175-.416.697-.69 1.39-1.384 2.08-2.08.07-.07.127-.152.194-.244C99.576 13 103.056 13 106.556 13Zm-74.961 0c.02 1.582.02 3.164.02 4.746 0 .365-.001.367-.374.365-2.369-.013-4.737-.028-7.105-.042-.381-.002-.382 0-.382.379v2.706c0 .348.004.351.344.351h4.832c.365 0 .365.002.365.374v4.36c0 .328-.007.335-.338.335h-4.854c-.345 0-.349.004-.349.347v2.577c0 .334.007.341.333.341.967.001 1.933-.005 2.9.002 1.444.01 2.89.027 4.334.042.273.002.293.02.293.295.001 1.474 0 2.949 0 4.424 0 .345-.003.35-.346.35-3.12 0-6.242-.012-9.363.01-.506.005-.87-.121-1.213-.5-.58-.641-1.214-1.235-1.83-1.844a.541.541 0 0 1-.18-.414c.004-5.483.004-10.966 0-16.45 0-.17.054-.296.175-.416.697-.69 1.389-1.385 2.08-2.08.07-.07.127-.152.193-.244C24.615 13 28.095 13 31.596 13Zm107.071 10.548c-.126.143-.262.257-.374.391-.795.956-1.585 1.916-2.377 2.875-.56.677-1.127 1.349-1.674 2.036-.088.11-.123.29-.124.437-.008 1.768-.005 3.536-.005 5.304 0 .36-.002.36-.358.36h-4.424c-.318 0-.329-.01-.329-.323-.001-1.769-.006-3.537.005-5.305.002-.265-.089-.46-.251-.653-.801-.96-1.594-1.927-2.391-2.891-.564-.683-1.123-1.371-1.697-2.046a.861.861 0 0 1-.224-.599c.005-3.364.004-6.729.004-10.113 1.676-.02 3.352-.02 5.048 0 .021 2.76.018 5.501.026 8.242.001.16.041.355.136.474.566.71 1.152 1.402 1.734 2.099.171.205.199.2.375-.014.531-.645 1.061-1.291 1.598-1.932a.916.916 0 0 0 .239-.637c-.015-1.073.004-3.201.004-3.201h5.059v5.496ZM121.893 13c.02 1.568.02 3.136.02 4.704 0 .364-.001.365-.374.365h-6.143c-.355 0-.356.001-.356.362v15.786c0 .122.001.244-.001.365-.003.26-.022.282-.284.282-1.511.002-3.021.001-4.532 0l-.107-.001c-.124 0-.185-.062-.185-.185 0-.072-.003-.143-.003-.215 0-6.2.002-12.4-.004-18.6a.763.763 0 0 1 .25-.602c.677-.66 1.34-1.332 2.007-2.002.07-.07.127-.153.192-.245 3.169-.014 6.334-.014 9.52-.014ZM39.5 13c.02 5.511.02 11.022.02 16.534 0 .344.004.348.348.348h6.162c.362 0 .363.001.363.355v4.38c0 .327-.007.334-.34.334-2.95 0-5.898-.001-8.847.004a.631.631 0 0 1-.491-.205 185.41 185.41 0 0 0-2.08-2.08.565.565 0 0 1-.186-.434c.003-6.398.003-12.797.003-19.216C36.127 13 37.804 13 39.5 13Z\"/><path d=\"M138.667 18.049s-3.412.018-5.056.003V13h5.056v5.049Z\" fill-opacity=\".5\"/><path d=\"M75.562 13.73c.01-.737-.092-.64.632-.643 1.382-.004 2.763-.002 4.145-.001.327 0 .334.008.334.34V26.14c0 .762.005.758.496 1.338.457.54.904 1.089 1.353 1.635.15.183.176.184.333-.006.555-.673 1.106-1.348 1.669-2.014a.79.79 0 0 0 .19-.547c-.003-4.31-.002-8.62-.002-12.928v-.237c.003-.273.021-.294.295-.294h4.53c.263 0 .286.022.286.282 0 5.04-.001 10.079.004 15.118 0 .31-.22.472-.38.67-.995 1.217-1.998 2.427-2.999 3.64-.55.666-1.097 1.337-1.657 1.995a.49.49 0 0 1-.33.152c-1.18.01-2.362.013-3.543-.002-.127-.002-.287-.098-.373-.2-1.363-1.636-2.717-3.28-4.073-4.921-.269-.325-.542-.646-.801-.979a.596.596 0 0 1-.103-.294c-.017-.163-.006-.329-.006-.493V13.73Zm-3.874-.643c.298.012.308.02.308.323v21.15c0 .086.02.18-.01.255a.405.405 0 0 1-.17.172c-.042.025-.111.007-.168.007h-4.424c-.331 0-.34-.008-.34-.335V13.423c0-.329.009-.336.34-.336h4.464Z\"/><path d=\"M.008 29.924h5.076v5.06H.008v-5.06Z\" fill-opacity=\".5\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x8pinx\",\"data-framer-name\":\"logo-bharatpe\",layoutDependency:layoutDependency,layoutId:\"EGu_OBEUw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qji3fx\",\"data-framer-name\":\"Logo-bharatpe\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:136,layoutDependency:layoutDependency,layoutId:\"rzgxDYNO1\",svg:'<svg width=\"136\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path d=\"M22.44 20.106 8.92 23.972v-3.62l13.52-3.866v3.62ZM8.92 31.487l13.52-3.894v-3.62L8.92 27.867v3.62Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.667 39c-8.282 0-15-6.746-15-15 0-8.281 6.746-15 15-15 8.281 0 15 6.746 15 15 .027 8.254-6.719 15-15 15Zm0-26.956c-6.582 0-11.93 5.347-11.93 11.929 0 6.581 5.348 11.928 11.93 11.928 6.581 0 11.928-5.347 11.928-11.928 0-6.582-5.32-11.93-11.928-11.93Zm31.422 18.949c-1.698 1.482-3.262 1.481-5.397 1.48H36.23V15.39h5.21c2.03 0 3.95.027 5.403 1.672.713.796 1.014 1.755 1.014 2.825 0 1.453-.713 2.715-1.974 3.428 1.837.658 2.77 2.029 2.77 3.976 0 1.371-.494 2.825-1.563 3.702Zm-4.58-5.457h-2.166v3.126h2.139c1.07 0 2.029-.356 2.029-1.645 0-1.234-.987-1.481-2.002-1.481Zm-.494-6.307h-1.672v2.66h1.645c.932 0 1.7-.274 1.7-1.371s-.795-1.29-1.673-1.29Z\"/><path d=\"M57.619 25.509v6.965h3.784v-7.272c0-1.707.001-3.207-1.18-4.575-.822-.96-2.22-1.398-3.454-1.398-1.29 0-2.606.411-3.264 1.618h-.055V15.39h-3.784v17.084h3.812V25.37c0-1.453.466-2.55 2.111-2.55 1.646 0 2.03 1.316 2.03 2.688Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M72.454 32.474v-1.371h-.055c-.685 1.316-2.33 1.81-3.702 1.81-3.894 0-6.362-3.044-6.362-6.856 0-3.73 2.55-6.828 6.362-6.828 1.399 0 2.934.52 3.702 1.81h.055v-1.371h3.784v12.806h-3.784Zm-3.181-9.653c-1.837 0-3.126 1.481-3.126 3.29 0 1.783 1.371 3.237 3.153 3.237 1.838 0 3.181-1.426 3.181-3.264-.027-1.892-1.37-3.263-3.208-3.263Z\"/><path d=\"M81.64 32.501v-7.047c0-2.002 1.317-2.331 3.017-2.359V19.23c-1.48 0-2.523.493-3.181 1.81h-.055v-1.371h-3.565V32.5h3.785Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.913 32.474v-1.371h-.055c-.685 1.316-2.33 1.81-3.702 1.81-3.894 0-6.362-3.044-6.362-6.856 0-3.73 2.55-6.828 6.362-6.828 1.399 0 2.934.52 3.702 1.81h.055v-1.371h3.784v12.806h-3.784Zm-3.208-9.653c-1.838 0-3.127 1.481-3.127 3.29 0 1.783 1.371 3.237 3.154 3.237 1.837 0 3.181-1.426 3.181-3.264 0-1.892-1.344-3.263-3.208-3.263Z\"/><path d=\"M105.526 32.474v-9.9h1.837v-2.906h-1.837V15.39h-3.785v4.278h-1.864v2.906h1.864v9.9h3.785Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M120.087 25.646c-1.454 1.288-3.044 1.48-4.936 1.48h-1.865v5.348h-4.141V15.39h5.512c1.728 0 3.812.082 5.21 1.234 1.317 1.124 1.975 2.77 1.975 4.524.027 1.59-.576 3.428-1.755 4.498Zm-5.21-6.417h-1.591v4.058h1.755c1.426 0 2.687-.329 2.687-2.056 0-1.755-1.425-2.002-2.851-2.002Zm10.66 8.011h9.488a6.31 6.31 0 0 0 .082-1.014c0-3.867-2.824-6.993-6.691-6.993-3.729 0-6.636 3.181-6.636 6.883 0 3.73 3.016 6.773 6.718 6.773 2.852 0 5.074-1.892 6.171-4.442h-3.867c-.603.795-1.289 1.207-2.304 1.207-1.48 0-2.742-.878-2.961-2.414Zm.027-2.577c.302-1.399 1.509-2.194 2.88-2.194s2.577.795 2.879 2.194h-5.759Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v60ria\",\"data-framer-name\":\"logo-tata1mg\",layoutDependency:layoutDependency,layoutId:\"HfEwLdNt5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-v6xm0e\",\"data-framer-name\":\"Logo-tata1mg\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:118,layoutDependency:layoutDependency,layoutId:\"NHQ_vfS6i\",svg:'<svg width=\"118\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path d=\"M80.973 11v4.271c.648.077 36.176.039 36.405-.038.038-.539.038-4.04-.037-4.233H80.973Zm3.965 6.158v1.424c.038 0 .076 0 .076-.039.648-.885 1.525-1.385 2.555-1.654 1.105-.308 2.172-.231 3.24.153.8.27 1.41.808 1.868 1.501a.83.83 0 0 0 .064.101c.037.053.082.117.126.207a.839.839 0 0 1 .115-.192c.762-1 1.753-1.655 2.973-1.848 1.22-.23 2.44-.115 3.545.462 1.411.693 2.211 1.848 2.44 3.425.076.385.076.808.076 1.193v8.928h-4.003v-7.773a6.2 6.2 0 0 0-.066-.808l-.01-.078c-.19-.846-.724-1.423-1.6-1.577-.801-.116-1.564 0-2.136.693-.38.461-.571 1-.571 1.616v7.889h-4.08v-7.774c0-.385-.037-.77-.152-1.116-.343-.885-.953-1.27-1.753-1.347a2.68 2.68 0 0 0-.953.077c-.839.27-1.296.885-1.487 1.732-.038.192-.038.423-.038.654v7.773H81.05V17.159h3.888Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M113.414 18.427v-1.27h3.965v12.468c0 1.54-.381 2.964-1.144 4.31-.8 1.386-1.944 2.27-3.431 2.694-1.753.5-3.545.5-5.299-.038-1.372-.424-2.478-1.27-3.317-2.463-.343-.5-.61-1.078-.724-1.655a.304.304 0 0 0-.018-.096.275.275 0 0 1-.019-.096c0-.039 0-.116-.039-.193.609-.173 1.209-.346 1.809-.518l.002-.001.005-.001h.001a426.12 426.12 0 0 1 1.805-.519.721.721 0 0 1 .076.27 2.86 2.86 0 0 0 2.706 2.04c.496 0 .992-.04 1.449-.193 1.03-.385 1.64-1.193 1.906-2.232a7.248 7.248 0 0 0 .152-2.04l-.037-.038h-.039c-.571.731-1.334 1.116-2.249 1.27-1.182.192-2.363.192-3.469-.27-1.982-.77-3.278-2.193-3.85-4.194-.534-1.847-.42-3.656.496-5.35.762-1.462 1.906-2.578 3.507-3.116a6.585 6.585 0 0 1 3.66-.116c.838.193 1.524.655 2.096 1.347Zm-5.87 5.118v.424c.114 1.116.685 1.962 1.715 2.386.419.192.915.23 1.372.192 1.297-.077 2.211-.847 2.516-1.924a3.75 3.75 0 0 0 .152-1.463c-.152-1.847-1.867-3.117-3.811-2.5-1.22.422-1.944 1.5-1.944 2.885Z\"/><path d=\"M74.95 36.898v-4.272h27.066v4.272H74.95Zm-.038-6.118h4.27V11.037h-3.66c0 .02-.01.048-.019.077a.284.284 0 0 0-.019.077c-.19.77-.572 1.424-1.182 1.924-.953.808-2.02 1.155-3.24 1.232h-.343v2.924h4.193V30.78Zm-41.284 1.347h-5.947c-.267 0-.38-.077-.457-.308l-.63-1.831v-.002a612.719 612.719 0 0 1-2.42-7.133 6.71 6.71 0 0 0-.152-.423 8.019 8.019 0 0 1-.154.418c-.057.148-.11.282-.151.428-.476 1.403-.952 2.816-1.428 4.228-.477 1.416-.954 2.832-1.431 4.238-.076.27-.19.347-.458.347h-5.908c.19-.462.343-.924.495-1.386 1.83-4.848 3.66-9.697 5.451-14.508.115-.269.23-.384.534-.384h6.023c.267 0 .381.077.496.346a2631.663 2631.663 0 0 0 6.023 15.624c.05.077.067.154.084.23.009.04.017.078.03.116Zm31.717 0c-.038-.115-.038-.192-.038-.269-1.012-2.62-2.024-5.252-3.036-7.883l-.005-.014v-.001a6893.42 6893.42 0 0 0-3.02-7.841c-.115-.231-.23-.308-.458-.308h-6.061c-.305 0-.42.077-.534.346-.971 2.596-1.952 5.191-2.933 7.787v.001c-.982 2.599-1.965 5.198-2.937 7.797a4.888 4.888 0 0 0-.115.385h5.833c.305 0 .42-.115.495-.385a603.405 603.405 0 0 1 1.507-4.428c.505-1.47 1.01-2.942 1.505-4.423l.036-.115c.029-.097.063-.212.116-.346.077.192.115.307.153.423a616.092 616.092 0 0 0 2.415 7.12l.003.008.632 1.838c.076.231.19.308.457.308h5.985ZM47.81 15.887v4.772h-4.46v11.506h-6.48V20.698h-4.612v-4.772c5.146-.039 10.33-.039 15.553-.039Zm-31.717-.001H.503v4.81h4.612v11.468h6.518V20.658h4.46v-4.772Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dy5b6z\",\"data-framer-name\":\"logo-birdeye\",layoutDependency:layoutDependency,layoutId:\"rYvcfnRJ3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-88400z\",\"data-framer-name\":\"Logo-birdeye\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"eKknxuTWa\",svg:'<svg width=\"116\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.09 15.074c.305.077.586.251.78.523a1.3 1.3 0 0 1-.632 1.984v.012l-1.11.32a6.668 6.668 0 0 1-1.961 3.573 6.65 6.65 0 0 1 1.81 2.772c1.191 3.516-.777 7.304-4.395 8.461-3.352 1.072-6.824-.65-8.43-3.51l-3.672-5.14-.007-.008a.088.088 0 0 1-.008-.009.02.02 0 0 1-.006-.01.068.068 0 0 0-.006-.009L.319 17.25l.009-.01a1.39 1.39 0 0 1-.148-.299c-.25-.738.164-1.534.924-1.777.343-.11.697-.082 1.007.043l.003-.003 4.92 1.938 2.074-3.288a6.809 6.809 0 0 1 4.079-3.516c3.619-1.158 7.518.754 8.71 4.27l.025.09c.006.023.012.047.02.071l1.147.3v.005Zm-6.498 8.662a2.844 2.844 0 0 1 1.72 2.607 2.854 2.854 0 0 1-2.864 2.844 2.864 2.864 0 0 1-2.143-.959l-4.208-4.801a1.28 1.28 0 0 1-.094-.108l-.01-.012a1.274 1.274 0 0 1-.267-.78 1.291 1.291 0 0 1 1.821-1.177l5.87 2.316c.057.02.114.043.17.068l.005.002Zm1.27-8.147c-.439-1.263-1.872-1.95-3.203-1.534-1.33.416-2.054 1.777-1.617 3.04.439 1.263 1.873 1.95 3.203 1.534 1.33-.416 2.054-1.777 1.616-3.04Z\" fill=\"#fff\"/><path d=\"M48.878 18.337a2.346 2.346 0 0 0 2.36-2.335 2.346 2.346 0 0 0-2.36-2.335c-1.26 0-2.31 1.05-2.31 2.335 0 1.286 1.05 2.335 2.31 2.335Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M39.116 14.405c3.68 0 5.81 2.124 5.81 4.983 0 1.915-1.21 3.49-2.735 3.988 1.683.393 3.313 1.94 3.313 4.354 0 3.012-2.267 5.228-5.73 5.272h-7.625V14.404h6.967Zm-.316 10.86h-2.602v4.354H38.8c1.604 0 2.577-.84 2.577-2.178 0-1.272-.928-2.159-2.528-2.176H38.8Zm-.394-7.424h-2.208v4.013h2.26c1.447 0 2.393-.76 2.393-2.02 0-1.194-.799-1.977-2.396-1.993h-.049Z\" fill=\"#fff\"/><path d=\"M50.911 19.976v13.026h-4.014V19.976h4.014Zm6.029 13.026V27.3c0-2.6 1.44-3.547 3.037-3.547.393 0 .812.026 1.257.131v-3.94a3.921 3.921 0 0 0-1.047-.132c-1.048 0-2.697.42-3.378 1.892v-1.76h-3.85v13.058h3.98Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M75.222 30.68V13.995h-3.927v6.968l-.01-.015-.02-.031-.022-.031-.023-.032a2.1 2.1 0 0 0-.026-.033l-.027-.033a1.675 1.675 0 0 0-.029-.034l-.03-.034a2.122 2.122 0 0 0-.103-.105l-.037-.035c-.499-.456-1.467-.953-3.18-.953-3.69 0-6.308 2.907-6.308 6.784 0 4.008 2.774 6.837 6.439 6.837 1.57 0 2.879-.655 3.481-1.545v.098l.003.1.004.099.004.065.004.066.006.096.005.062.01.122.007.058.011.11.012.102.011.09.018.127.01.062h3.821l-.021-.249-.014-.175-.015-.207-.012-.2-.01-.184-.007-.157-.007-.165-.006-.173-.002-.09-.004-.138-.003-.143-.001-.097-.002-.149v-.153Zm-9.737-4.243c0-2.174 1.387-3.222 2.931-3.222s2.932 1.048 2.932 3.222c0 2.148-1.388 3.249-2.932 3.249s-2.931-1.1-2.931-3.249Zm17.325-6.871c4.036 0 6.526 2.496 6.526 6.7l-.001.146-.001.058-.002.059c-.012.466-.052.905-.075.972h-9.069c.08 1.47 1.416 2.522 2.962 2.522 1.442 0 2.254-.683 2.621-1.708l3.33.946c-.63 2.26-2.7 4.151-6.003 4.151-3.591 0-6.789-2.575-6.789-6.962 0-4.204 3.12-6.884 6.5-6.884Zm.052 3.153c-1.677 0-2.516 1.235-2.595 2.207h5.216c-.052-.999-.734-2.207-2.621-2.207Z\" fill=\"#fff\"/><path d=\"M103.264 19.976 95.234 38h-4.198L94 31.241l-5.484-11.265h4.46l3.176 6.969 2.886-6.97h4.225Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M108.863 19.566c4.037 0 6.527 2.496 6.527 6.7l-.002.146-.001.058-.001.059c-.012.466-.053.905-.075.972h-9.069c.079 1.47 1.415 2.522 2.962 2.522 1.441 0 2.254-.683 2.621-1.708l3.329.946c-.629 2.26-2.7 4.151-6.003 4.151-3.591 0-6.788-2.575-6.788-6.962 0-4.204 3.119-6.884 6.5-6.884Zm.052 3.153c-1.677 0-2.516 1.235-2.594 2.207h5.216c-.053-.999-.734-2.207-2.622-2.207Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0huds\",\"data-framer-name\":\"logo-otpless\",layoutDependency:layoutDependency,layoutId:\"tK19AXDIk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-auzxji\",\"data-framer-name\":\"Logo-otpless\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:154,layoutDependency:layoutDependency,layoutId:\"Hld8XhSqu\",svg:'<svg width=\"154\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path d=\"M24.824 20.743v15.77L17.394 41V24.67a6.065 6.065 0 0 0-3.1-5.292L4.852 14.06l-.062 14.3 10.204 5.871v5.41L.284 31.115V11.488L7.914 7l13.504 7.835a6.826 6.826 0 0 1 3.406 5.908Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.021 35.484c-1.937 0-3.605-.418-5.011-1.26-1.407-.84-2.481-2.018-3.244-3.527-.756-1.508-1.137-3.266-1.137-5.273 0-2.007.381-3.758 1.137-5.273.756-1.508 1.837-2.686 3.244-3.528 1.406-.841 3.074-1.259 5.011-1.259 1.937 0 3.606.418 5.012 1.26 1.406.84 2.48 2.019 3.243 3.527.756 1.509 1.137 3.266 1.137 5.273 0 2.007-.38 3.759-1.137 5.273-.756 1.515-1.837 2.686-3.243 3.528-1.406.841-3.075 1.259-5.012 1.259Zm0-3.434c1.231.018 2.25-.243 3.068-.792.82-.548 1.431-1.322 1.838-2.319.406-1.003.612-2.175.612-3.515 0-1.34-.206-2.506-.612-3.49-.407-.985-1.019-1.745-1.838-2.294-.818-.548-1.837-.829-3.068-.848-1.23-.018-2.25.25-3.068.792-.819.542-1.425 1.321-1.837 2.319-.407 1.003-.613 2.175-.613 3.515 0 1.34.206 2.505.613 3.49.406.985 1.018 1.752 1.837 2.294s1.837.829 3.068.848Z\"/><path d=\"M58.456 35.079V19.166H52.35v-3.409h15.872v3.41h-6.105v15.912h-3.662Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M70.773 15.763V35.08l.006-.007h3.656v-6.544h4.518a13.5 13.5 0 0 0 1.618-.106c1.15-.18 2.094-.56 2.831-1.14a5.247 5.247 0 0 0 1.638-2.194c.356-.88.53-1.864.53-2.942 0-1.079-.174-2.063-.524-2.942a5.181 5.181 0 0 0-1.631-2.194c-.738-.58-1.688-.96-2.844-1.14a6.614 6.614 0 0 0-.856-.088 27.348 27.348 0 0 0-.762-.019h-8.18Zm8.011 9.362H74.43v-5.959h4.355c.188 0 .394.007.619.025.225.02.431.05.619.106.493.137.874.362 1.143.68.269.317.45.673.556 1.06.106.392.157.76.157 1.109s-.057.723-.157 1.11c-.1.386-.287.74-.556 1.059-.269.318-.65.548-1.143.679a3.57 3.57 0 0 1-.62.106 7.47 7.47 0 0 1-.618.025Z\"/><path d=\"M88.932 35.079V15.763h3.656V31.67h8.336v3.41H88.932Zm14.686-19.316v19.322h12.642v-3.41h-8.986v-4.96h7.367v-3.41h-7.367v-4.132h8.986v-3.41h-12.642Zm23.59 19.721c-1.437 0-2.731-.256-3.881-.76-1.15-.505-2.099-1.228-2.837-2.176-.737-.947-1.206-2.069-1.406-3.372l3.818-.56c.269 1.109.825 1.963 1.669 2.561.843.598 1.8.898 2.881.898.6 0 1.181-.094 1.749-.28.563-.188 1.031-.468 1.394-.83a1.85 1.85 0 0 0 .544-1.352c0-.2-.032-.387-.088-.568a1.574 1.574 0 0 0-.287-.517 2.13 2.13 0 0 0-.575-.455 4.311 4.311 0 0 0-.938-.386l-5.03-1.478a15.457 15.457 0 0 1-1.312-.454c-.5-.2-.982-.48-1.444-.848-.469-.368-.856-.854-1.162-1.452-.313-.605-.463-1.365-.463-2.288 0-1.296.325-2.375.981-3.235.657-.86 1.531-1.496 2.625-1.92 1.094-.417 2.306-.623 3.631-.617 1.337.02 2.53.25 3.574.686a6.883 6.883 0 0 1 2.637 1.914c.706.835 1.219 1.857 1.531 3.066l-3.955.673c-.144-.623-.407-1.153-.794-1.583a3.8 3.8 0 0 0-1.381-.978 4.665 4.665 0 0 0-1.675-.362 4.463 4.463 0 0 0-1.618.237c-.506.175-.919.43-1.238.76-.318.33-.474.723-.474 1.178 0 .418.131.76.387 1.029.262.261.587.473.981.636.394.162.8.292 1.212.405l3.362.91c.5.13 1.056.311 1.669.53a7.625 7.625 0 0 1 1.756.91 4.634 4.634 0 0 1 1.387 1.533c.363.63.544 1.44.544 2.412 0 1.035-.219 1.945-.65 2.717a5.693 5.693 0 0 1-1.756 1.92 8.128 8.128 0 0 1-2.494 1.134c-.931.25-1.887.374-2.874.374v-.012Zm14.973-.76c1.15.504 2.443.76 3.881.76v.012c.987 0 1.943-.124 2.874-.374a8.111 8.111 0 0 0 2.493-1.134 5.673 5.673 0 0 0 1.756-1.92c.431-.772.65-1.682.65-2.717 0-.973-.181-1.783-.543-2.412a4.637 4.637 0 0 0-1.388-1.534 7.584 7.584 0 0 0-1.756-.91 20.732 20.732 0 0 0-1.668-.53l-3.362-.91a10.207 10.207 0 0 1-1.212-.404 2.974 2.974 0 0 1-.982-.636c-.256-.268-.387-.611-.387-1.029 0-.455.156-.847.475-1.178.319-.33.731-.585 1.237-.76a4.468 4.468 0 0 1 1.619-.237 4.66 4.66 0 0 1 1.674.362 3.79 3.79 0 0 1 1.381.978c.388.43.65.96.794 1.583l3.956-.673c-.313-1.209-.825-2.231-1.531-3.066a6.898 6.898 0 0 0-2.637-1.914c-1.044-.436-2.237-.667-3.575-.685-1.324-.007-2.537.199-3.63.616-1.094.424-1.969 1.06-2.625 1.92-.656.86-.981 1.939-.981 3.235 0 .922.15 1.683.462 2.288.307.598.694 1.084 1.163 1.452.462.367.943.648 1.443.848.5.193.937.349 1.312.454l5.031 1.478c.381.112.687.243.937.386.25.143.438.293.575.455.132.162.231.337.288.517a1.9 1.9 0 0 1 .087.568c0 .536-.181.984-.544 1.352-.362.362-.831.642-1.393.83-.569.186-1.15.28-1.75.28-1.081 0-2.037-.3-2.881-.898-.843-.598-1.399-1.452-1.668-2.562l-3.818.561c.2 1.303.668 2.425 1.406 3.372.737.947 1.687 1.67 2.837 2.176ZM11.539 24.85a.888.888 0 0 0 .581-.355l.006.007c.356-.518.044-1.36-.706-1.883-.75-.523-1.65-.53-2.012-.012-.306.43-.138 1.097.375 1.602l-.488 2.356 2.425 1.396-.181-3.11Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aiz1eh\",\"data-framer-name\":\"logo-nykaa\",layoutDependency:layoutDependency,layoutId:\"z1Np1lZWg\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17rjgsn\",\"data-framer-name\":\"Logo-nykaa\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:93,layoutDependency:layoutDependency,layoutId:\"i0f8mH5_P\",svg:'<svg width=\"93\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M26.797 10.502c.992-1.904-2.22-1.369-2.22-1.369-1.15 0-1.666 1.388-1.904 1.785l-3.47 6.84c-.654 1.131-2.816 5.97-3.53 7.04-.059-1.09.02-3.272.04-3.787.139-2.063.278-3.629.496-5.513.159-1.467.476-3.113.178-4.58-.198-.912-.495-.972-1.804-1.11-1.368-.14-2.3 1.844-2.756 2.776-1.666 3.45-3.53 6.82-5.017 10.35-.436 1.031-.971 2.062-1.428 3.073-.535 1.23-1.03 2.44-1.606 3.649-.614 1.269-2.538 5.433-3.073 6.742-.595 1.427-.714 2.577 1.666 2.518.376 0 1.21.08 2.24-1.031.813-.873.972-1.686 1.448-2.895 1.705-4.283 2.914-7.119 4.778-11.362.179-.416.595-1.626 1.012-2.558-.02 1.329-.238 2.915-.338 3.966-.317 3.847-.535 7.554-.872 11.362-.04.515-.178 1.13.06 1.606.238.476.832.595 1.308.654 1.904.238 2.102-.714 2.697-2.022.535-1.17.853-2.122 1.328-3.312 1.468-3.668 3.014-7.297 4.72-10.866.436-.912.872-1.804 1.348-2.696.872-1.646 1.586-3.193 2.538-5.017.714-1.309 1.408-2.796 2.161-4.243Zm65.335 10.33c-.218-2.2-3.232-1.09-5.036-.753-.674.119-2.756.515-5.156.971-.099-2.478-.06-1.983-.079-3.49-.06-2.18-.178-3.886-.297-5.81-.08-1.209-.258-2.894-2.44-2.577-2.537.357-2.954 1.626-3.628 3.153-1.765 3.985-1.705 4.005-3.708 8.447-.158.337-.892 2.121-1.011 2.478a9 9 0 0 0-.436.12l-2.895.634.02-.1c.257-2.022.575-4.044.852-6.067.258-1.844.536-4.858.754-6.702.238-1.983-2.063-1.943-2.063-1.943-1.407-.08-1.943.337-2.835 1.487-1.527 1.983-3.37 4.124-4.997 6.305-2.954 3.946-5.115 6.92-7.792 10.886-.774 1.15-1.963 2.895-2.994 4.264-.694-1.369-1.29-2.876-1.864-4.264-.833-1.982-1.448-3.212-1.844-4.52-.357-1.15.079-1.31.932-1.964 2.458-1.864 5.234-3.152 7.752-4.937 1.785-1.269 3.927-2.677 5.672-3.985 0 0 1.01-.595 1.566-1.349.694-.951-1.27-1.943-1.27-1.943-1.11-.178-1.724.08-2.498.436-.793.357-1.824 1.17-2.498 1.706-1.487 1.15-3.37 2.518-4.838 3.668-1.804 1.408-3.034 2.28-5.017 3.45l5.037-7.535c1.645-2.122-2.717-2.716-4.382-.476-1.547 2.003-2.598 3.768-3.807 5.592-2.915 4.342-5.314 8.903-7.714 13.682a132.018 132.018 0 0 0-2.637 5.611c-.397.912-1.566 3.014.04 3.232 3.43.436 3.985-1.19 4.759-3.153 1.269-3.232 1.685-3.827 2.498-5.83.793-1.942 1.368-3.053 2.26-4.718.02-.02.278-.437.278-.437.159.337 1.21 3.827 1.348 4.224.714 1.884 1.963 6.285 2.677 8.288.516 1.666.655 2.142 2.895 2.082 1.11-.02 1.587-.456 2.32-1.844.734-1.388 3.906-7.297 3.906-7.297.952-.158 2.32-.396 3.213-.555.158-.02.515-.1 1.01-.198.338-.04.615-.1.834-.159.02 0 .02 0 .04-.02.872-.178 1.982-.396 3.192-.634-.218 1.09-.893 3.49-1.031 4.104 0 0-1.468 5.71.436 6.008 1.19.179 1.804-.02 1.804-.02 2.221-.257 2.26-3.251 2.26-3.251l1.21-7.753c.873-.179 1.745-.357 2.598-.516l-2.618 8.844c-.376 1.249-.654 2.855 1.587 2.855 1.824.1 1.943-1.051 1.943-1.051.04-.178 1.487-4.838 1.844-6.504.238-1.07 1.09-3.827 1.428-4.937.951-.178 1.665-.317 2.002-.377.397-.06 1.17-.198 2.181-.357-.02 1.031 0 2.459.02 2.657.218 3.133-.02 6.385.635 9.459.099.495.297 1.13.932 1.13.753 0 .991-.08 1.784-.139 2.3-.198 1.884-2.518 1.745-3.986a122.21 122.21 0 0 0-.535-4.62c-.179-1.328-.298-3.073-.317-5.175v-.04c3.767-.634 7.832-1.328 8.427-1.427.951-.258 1.745-.179 1.546-2.36Zm-29.445 4.164c0 .02-.02.02-.02.04-2.637.575-5.116 1.13-6.504 1.447 1.388-2.32 7.495-10.767 8.428-11.758-.516 2.617-1.349 7.475-1.904 10.271Zm15.228-3.331v.139c-1.269.238-2.459.476-3.41.654 1.21-3.133 2.478-6.98 3.232-8.923-.06 1.448.238 6.702.178 8.13Zm-36.98-9.34c.397-.733 1.289-2.18.178-2.736-.654-.317-1.526-.515-2.2-.178-.556.297-.972.873-1.25 1.408L33.42 17.5c-.694.952-1.348 2.141-2.756 2.3-.932.1-1.606-.297-1.586-1.13.02-.853.515-1.983.892-2.717 1.11-2.101 1.25-2.815 2.32-4.897 1.03-2.003-2.34-2.459-3.173-1.011-.595 1.03-1.745 2.974-2.002 3.628-.476 1.19-4.045 6.86-2.499 9.101 1.983 2.539 7.257-1.467 4.56 3.153-2.18 3.708-3.549 5.83-5.452 9.26-.416.734-.932 1.467-1.07 2.34-.2 1.23 1.486 1.21 2.22 1.17 1.289-.1 1.904-.694 2.419-1.864.278-.615.654-1.368.932-1.983 2.498-5.453 5.155-10.192 8.447-15.466 1.566-2.499 2.954-4.64 4.263-7.06Z\" fill=\"#fff\" style=\"mix-blend-mode:luminosity\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12mb4h4\",\"data-framer-name\":\"logo-xoxoday\",layoutDependency:layoutDependency,layoutId:\"cqjalAx_4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3ymswt\",\"data-framer-name\":\"Logo-xoxoday\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:142,layoutDependency:layoutDependency,layoutId:\"IFNh5jcdD\",svg:'<svg width=\"142\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M96.94 6.37c.256-.247.582-.37.98-.37.397 0 .723.123.981.37.257.248.386.583.386 1.006v16.66c-.048 1.836-.497 3.49-1.35 4.96a9.412 9.412 0 0 1-3.468 3.476c-1.46.847-3.077 1.27-4.923 1.27s-3.504-.428-4.976-1.288a9.452 9.452 0 0 1-3.486-3.512c-.854-1.482-1.28-3.189-1.28-5.047 0-1.858.415-3.53 1.245-5.012a9.35 9.35 0 0 1 3.381-3.512c1.424-.858 3.036-1.288 4.836-1.288 1.564 0 2.978.335 4.24 1.006 1.26.67 2.277 1.56 3.048 2.664V7.376c0-.423.127-.758.385-1.006Zm-3.767 23.931a7.057 7.057 0 0 0 2.522-2.63c.618-1.105.929-2.388.929-3.776s-.31-2.641-.929-3.759a6.891 6.891 0 0 0-2.522-2.63c-1.064-.635-2.296-.953-3.627-.953-1.332 0-2.536.318-3.61.953a6.981 6.981 0 0 0-2.557 2.63c-.63 1.118-.946 2.347-.946 3.759s.315 2.671.946 3.777a7.147 7.147 0 0 0 2.558 2.63c1.073.647 2.255.97 3.609.97s2.564-.323 3.626-.97ZM27.372 14.257c1.868 0 3.533.42 4.993 1.26a9.19 9.19 0 0 1 3.452 3.462c.84 1.47 1.272 3.148 1.296 5.037 0 1.866-.427 3.533-1.279 5.001a9.325 9.325 0 0 1-3.469 3.463c-1.46.84-3.123 1.26-4.993 1.26s-3.539-.42-5.01-1.26a9.154 9.154 0 0 1-3.47-3.463c-.84-1.468-1.26-3.113-1.26-5.001 0-1.89.42-3.568 1.26-5.037a9.157 9.157 0 0 1 3.47-3.463c1.471-.84 3.142-1.259 5.01-1.259Zm3.644 16.09a6.726 6.726 0 0 0 2.523-2.589c.607-1.095.911-2.343.911-3.742 0-1.4-.304-2.652-.91-3.76a6.695 6.695 0 0 0-2.524-2.606c-1.075-.63-2.288-.944-3.644-.944-1.355 0-2.57.314-3.644.944a6.808 6.808 0 0 0-2.54 2.606c-.62 1.108-.929 2.36-.929 3.76 0 1.399.309 2.647.929 3.742a6.827 6.827 0 0 0 2.54 2.588c1.073.63 2.29.945 3.644.945s2.57-.315 3.644-.945Z\"/><path d=\"m16.142 16.501-5.902 7.336 6.044 7.766c.306.38.437.736.39 1.068-.02.145-.06.277-.119.395a1.101 1.101 0 0 1-.324.389c-.248.19-.503.285-.763.285-.283 0-.514-.047-.691-.143-.177-.093-.361-.26-.55-.498l-5.833-7.447-6.013 7.66c-.213.285-.532.428-.958.428-.379 0-.68-.118-.905-.357a1.257 1.257 0 0 1-.354-.854c-.013-.332.111-.653.372-.962l6.13-7.692-5.809-7.409c-.261-.308-.385-.628-.372-.962a1.38 1.38 0 0 1 .336-.872c.213-.25.521-.374.923-.374a1.4 1.4 0 0 1 1.028.427L8.5 22.046l5.62-7.146c.164-.236.348-.403.55-.499.2-.094.407-.142.62-.142.402 0 .71.124.922.374.213.249.313.547.302.89a1.694 1.694 0 0 1-.373.98Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M72.344 15.516c-1.461-.84-3.125-1.259-4.994-1.259-1.868 0-3.539.42-5.01 1.26a9.156 9.156 0 0 0-3.47 3.462c-.84 1.47-1.26 3.148-1.26 5.037 0 1.888.42 3.533 1.26 5.001a9.153 9.153 0 0 0 3.47 3.463c1.471.84 3.14 1.26 5.01 1.26 1.87 0 3.533-.42 4.994-1.26a9.324 9.324 0 0 0 3.468-3.463c.852-1.468 1.28-3.135 1.28-5.001-.025-1.89-.456-3.568-1.297-5.037a9.19 9.19 0 0 0-3.451-3.463Zm1.173 12.242a6.728 6.728 0 0 1-2.522 2.588c-1.076.63-2.29.945-3.645.945-1.353 0-2.57-.315-3.644-.945a6.828 6.828 0 0 1-2.54-2.588c-.62-1.095-.929-2.343-.929-3.742 0-1.4.31-2.652.929-3.76a6.808 6.808 0 0 1 2.54-2.606c1.074-.63 2.289-.944 3.644-.944 1.356 0 2.57.314 3.645.944a6.697 6.697 0 0 1 2.522 2.606c.607 1.108.911 2.36.911 3.76 0 1.399-.304 2.647-.91 3.742Zm43.439-12.224c-1.461-.85-3.114-1.276-4.959-1.276-1.844 0-3.504.426-4.975 1.276a9.417 9.417 0 0 0-3.487 3.48c-.853 1.47-1.279 3.137-1.279 5.002 0 1.865.414 3.498 1.244 4.967a9.298 9.298 0 0 0 3.382 3.48c1.423.852 3.035 1.277 4.835 1.277 1.704 0 3.229-.39 4.573-1.172a8.678 8.678 0 0 0 2.715-2.46v2.128c0 .397.127.717.386.962.256.244.583.367.98.367.399 0 .724-.123.982-.367.256-.245.385-.565.385-.962v-8.22c-.023-1.865-.461-3.532-1.314-5.002a9.474 9.474 0 0 0-3.468-3.48Zm-1.332 14.813c-1.062.63-2.273.944-3.627.944-1.353 0-2.535-.314-3.609-.944a6.937 6.937 0 0 1-2.558-2.606c-.63-1.106-.946-2.348-.946-3.725 0-1.376.316-2.645.946-3.742a7.126 7.126 0 0 1 2.558-2.606c1.074-.64 2.278-.962 3.609-.962 1.332 0 2.563.321 3.627.962a7.03 7.03 0 0 1 2.522 2.606c.619 1.097.929 2.343.929 3.742 0 1.4-.31 2.617-.929 3.725a6.846 6.846 0 0 1-2.522 2.606Z\"/><path d=\"M139.007 15.043c.352-.752.915-.964 1.688-.635.797.33 1.021.882.669 1.658L129.963 41.19c-.234.54-.574.811-1.019.811-.096 0-.2-.013-.309-.038a2.196 2.196 0 0 1-.324-.103c-.799-.353-1.021-.917-.669-1.694l3.499-7.735-.008-.014-.003-.005-.005-.008-7.846-16.301c-.165-.353-.189-.682-.071-.989.117-.304.353-.54.704-.705.352-.164.68-.194.985-.089.304.106.539.336.704.689l6.858 14.508 6.548-14.473Zm-91.748 2.906a3.168 3.168 0 1 0 0-6.34 3.169 3.169 0 1 0 0 6.34Zm-1.787 4.528-.046.039a1.268 1.268 0 0 1-1.785-.178L38.698 16.3a1.268 1.268 0 0 1 .178-1.784l.046-.038a1.268 1.268 0 0 1 1.784.178l4.944 6.037a1.267 1.267 0 0 1-.178 1.784Zm10.173-7.963-.047-.039a1.268 1.268 0 0 0-1.784.178l-4.944 6.038a1.268 1.268 0 0 0 .178 1.784l.047.038c.541.444 1.34.364 1.784-.178l4.943-6.038a1.268 1.268 0 0 0-.177-1.784Zm-7.363 8.724 6.833 8.345c.45.548.418 1.376-.117 1.841a1.3 1.3 0 0 1-1.858-.157l-5.744-7.015a.163.163 0 0 0-.252 0l-5.745 7.015a1.296 1.296 0 0 1-1.826.183 1.296 1.296 0 0 1-.182-1.826l6.868-8.386a1.297 1.297 0 0 1 1.011-.476c.378-.001.753.16 1.011.476Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fg38ii\",\"data-framer-name\":\"logo-spinny\",layoutDependency:layoutDependency,layoutId:\"QVIPx8afK\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qxqaau\",\"data-framer-name\":\"Logo-spinny\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"gassF5kpi\",svg:'<svg width=\"116\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.264 21.225 21.183 7.145a3.939 3.939 0 0 0-5.553 0L1.549 21.225a3.937 3.937 0 0 0 0 5.553l14.08 14.077a3.937 3.937 0 0 0 5.554 0l14.079-14.077a3.937 3.937 0 0 0 .002-5.553Zm-30.36 1.673a1.105 1.105 0 1 1 .002 2.21 1.105 1.105 0 0 1-.003-2.21Zm8.801 4.233c1.905 1.667 3.667 2.5 5.287 2.5a2.782 2.782 0 0 0 1.71-.468 1.499 1.499 0 0 0 .62-1.266 1.478 1.478 0 0 0-.657-1.267c-.254-.18-.65-.36-1.19-.543l-.153-.05a13.97 13.97 0 0 0-.42-.13c-.259-.075-.542-.15-.848-.227-2.062-.49-3.569-1.127-4.521-1.913-.956-.787-1.434-2.02-1.434-3.699 0-1.679.604-2.975 1.814-3.889 1.206-.91 2.713-1.366 4.52-1.366 1.21.005 2.409.21 3.55.608 1.13.375 2.178.96 3.091 1.723l.234 2.408-2.237.48c-1.536-1.166-3.123-1.75-4.763-1.75a2.392 2.392 0 0 0-1.558.467 1.528 1.528 0 0 0-.57 1.242 1.4 1.4 0 0 0 .696 1.229c.465.303 1.537.662 3.22 1.076 1.681.414 2.986 1.035 3.914 1.861.929.828 1.394 2.036 1.394 3.623a4.774 4.774 0 0 1-1.786 3.863c-1.192.99-2.759 1.484-4.7 1.482-2.797 0-5.315-1.032-7.555-3.096l2.356-.494-.014-2.404Zm17.864-2.06a1.109 1.109 0 0 1-.74-.647 1.106 1.106 0 0 1 1.444-1.445l.032.014.017.008.022.01a1.052 1.052 0 0 1 .148.09l.038.028a1.108 1.108 0 0 1 .102 1.654 1.104 1.104 0 0 1-.698.32l-.03.002h-.026l-.028.002a1.1 1.1 0 0 1-.28-.037Z\"/><path d=\"M53.495 20.514c-.885-.8-1.725-1.01-2.357-1.01-.4 0-.968.063-1.327.358a1.336 1.336 0 0 0-.483 1.01 1.145 1.145 0 0 0 .326.813l.039.038.023.02.036.03a.8.8 0 0 0 .06.046 2.133 2.133 0 0 0 .306.218c.242.146.551.287.992.487l.07.032.82.379c.715.295 1.35.756 1.852 1.345.499.617.754 1.396.715 2.188a5.139 5.139 0 0 1-1.41 3.598c-1.136 1.115-2.588 1.368-4.019 1.368a5.456 5.456 0 0 1-2.798-.632 7.692 7.692 0 0 1-1.873-1.493l1.81-2.315c.329.434.728.811 1.18 1.115.495.3 1.062.46 1.641.463.55.003 1.09-.15 1.557-.442a1.637 1.637 0 0 0 .59-1.304 1.286 1.286 0 0 0-.098-.526 1.287 1.287 0 0 0-.302-.442 3.263 3.263 0 0 0-1.115-.631l-.82-.337a6.185 6.185 0 0 1-1.979-1.242 3.244 3.244 0 0 1-.828-1.475l-.012-.05-.01-.041-.014-.068a3.304 3.304 0 0 1-.062-.743 4.4 4.4 0 0 1 1.263-3.177c1.136-1.115 2.588-1.327 3.788-1.327a6.222 6.222 0 0 1 4.06 1.389l-1.62 2.358Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.662 35.936h3.031l.756-5.974a3.554 3.554 0 0 0 1.22 1.073 4.372 4.372 0 0 0 2.042.4 4.195 4.195 0 0 0 3.177-1.263c.926-.926 1.579-2.42 1.579-4.208 0-1.452-.485-2.756-1.243-3.513-.505-.485-1.388-1.032-2.84-1.032a4.035 4.035 0 0 0-1.936.442 3.923 3.923 0 0 0-1.178.968l.168-1.094h-3.03l-1.746 14.2Zm4.2-10.326c.13-.326.328-.62.578-.867a2.33 2.33 0 0 1 .676-.486l.038-.017.047-.021.047-.02c.305-.123.631-.181.96-.172l.053-.001h.121a2.022 2.022 0 0 1 .778.186 2.05 2.05 0 0 1 1.194 1.94 2.978 2.978 0 0 1-.842 2.02c-.46.422-1.06.654-1.683.653a2.082 2.082 0 0 1-2.027-1.383 2.09 2.09 0 0 1-.12-.805c-.011-.351.05-.7.18-1.027Z\"/><path d=\"m73.17 21.991-1.159 9.384h-3.03l1.158-9.384h3.03Zm-1.116-5.193a1.768 1.768 0 1 1-1.768 1.767 1.752 1.752 0 0 1 1.736-1.767h.032Zm6.586 6.226.147-1.033h-3.03L74.6 31.376h3.03l.547-4.628c.063-.505.19-1.41.736-1.978a1.834 1.834 0 0 1 1.368-.505c.41-.019.811.125 1.115.4.268.316.403.723.38 1.136a11.15 11.15 0 0 1-.127 1.515l-.505 4.06h3.03l.568-4.818c.087-.592.136-1.19.147-1.788 0-.568-.062-1.515-.8-2.23-.715-.694-1.662-.8-2.44-.8a3.537 3.537 0 0 0-1.852.4 4.44 4.44 0 0 0-1.157.885Zm12.078-1.033-.147 1.033a4.461 4.461 0 0 1 1.157-.885c.57-.3 1.21-.438 1.852-.4.778 0 1.725.106 2.44.8.738.715.8 1.662.8 2.23-.011.599-.06 1.196-.147 1.788l-.568 4.818h-3.03l.505-4.06a11.15 11.15 0 0 0 .126-1.515 1.616 1.616 0 0 0-.379-1.136 1.56 1.56 0 0 0-1.115-.4 1.821 1.821 0 0 0-1.368.505c-.29.302-.463.7-.57 1.081-.093.336-.137.66-.167.897l-.547 4.628h-3.03l1.158-9.383h3.03Zm7.428-.256 3.64 8.184-3.87 6.017h3.409l9.068-14.201h-3.558l-3.156 5.134-2.083-5.134h-3.45Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M112.601 22.62h.427a.9.9 0 0 1 .532.122.61.61 0 0 1 .263.514.593.593 0 0 1-.341.559l.603.826h-.588l-.414-.592v.592h-.482v-2.02Zm.483.834c.179-.004.27-.07.27-.195-.001-.088-.033-.177-.27-.178v.373Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M113.169 21.582a2.11 2.11 0 0 0-.388 4.174 2.096 2.096 0 0 0 1.214-.096 2.087 2.087 0 0 0 .705-.454 2.105 2.105 0 0 0 .64-1.513 2.11 2.11 0 0 0-2.171-2.111Zm1.703 2.111a1.696 1.696 0 0 1-1.051 1.574 1.7 1.7 0 0 1-1.967-.49 1.708 1.708 0 0 1-.356-.75c-.029-.146-.038-.294-.029-.441a1.704 1.704 0 0 1 3.403.107Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oxxwhn\",\"data-framer-name\":\"logo-ather\",layoutDependency:layoutDependency,layoutId:\"iWvDUW6zR\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jp1ma3\",\"data-framer-name\":\"Logo-ather\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:111,layoutDependency:layoutDependency,layoutId:\"CBcREPfXk\",svg:'<svg width=\"111\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.051 15.371c1.787 1.065 2.319 2.368 2.828 4.332.54 2.072 1.398 3.544 2.909 5.066 1.047 1.065 1.698 2.05 1.73 3.572-.012 1.127-.158 1.855-.936 2.678-.94.857-1.766 1.058-3.028 1.03-1.035-.103-1.77-.49-2.492-1.235-.782-.98-1.06-2.128-1.349-3.317a91.32 91.32 0 0 0-.064-.264c-.506-1.909-1.386-3.25-2.743-4.644-1.218-1.26-1.91-2.436-1.893-4.212a3.883 3.883 0 0 1 1.31-2.545c1.162-.774 2.394-.839 3.728-.46Zm-4.984 9.879c.85.592 1.458 1.172 1.727 2.198.161 1.294.03 2.403-.785 3.454-1.048.887-1.861 1.167-3.223 1.151-.99-.095-1.755-.426-2.415-1.182-.737-1.059-.93-1.982-.798-3.265.279-1.05.812-1.774 1.727-2.355 1.247-.66 2.524-.68 3.767 0Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.53 4h.346c1.828.008 3.545.133 5.296.687l.37.115c5.234 1.666 9.48 5.29 12.02 10.158 2.36 4.753 2.728 10.366 1.1 15.402-.847 2.47-2.067 4.675-3.758 6.662l-.352.424c-.838.974-1.767 1.78-2.787 2.559l-.365.282c-3.493 2.58-7.486 3.712-11.781 3.71l-.401.001c-2.082-.004-3.998-.158-5.976-.854l-.32-.107c-4.283-1.45-7.925-4.429-10.355-8.213l-.337-.522c-.894-1.474-1.505-3.016-2.017-4.658l-.108-.34C-.363 24.44.534 18.893 2.832 14.458c2.46-4.58 6.705-8.103 11.67-9.652 1.999-.594 3.946-.813 6.029-.807ZM8.278 12.38l-.335.324c-1.652 1.712-2.869 4.018-3.59 6.269l-.098.305c-1.296 4.2-.657 8.81 1.33 12.67a16.621 16.621 0 0 0 2.379 3.35l.208.232c3.064 3.366 7.257 5.151 11.772 5.454a17.157 17.157 0 0 0 11.41-3.96l.403-.325c3.276-2.777 5.33-6.968 5.698-11.233.255-4.693-1.127-9.178-4.29-12.713-2.804-3.053-6.753-5.277-10.943-5.59-5.499-.224-10.037 1.32-13.944 5.217Zm94.785 5.295-.367.004c-.771.008-1.369.014-2.039.45-.604.573-.832 1.189-.922 2v.556a82.4 82.4 0 0 0 0 .97l.002.69c0 .48 0 .962.002 1.443.003.624.006 1.248.005 1.872v1.466l.002.698v.682l.005.628c0 .31.001.447.009.583.006.106.016.212.034.4.135.136.218.219.318.27.162.084.366.085.901.087l.35-.004a14.8 14.8 0 0 0 1.256-.039c.17-.17.248-.248.29-.342.035-.08.043-.17.06-.339l-.005-.453-.003-.49-.008-.515a236.59 236.59 0 0 0-.015-1.459l-.005-.326a7.73 7.73 0 0 1 1.364-.03c.642.48.971.727 1.229 1.033.271.322.464.71.86 1.508l.041.077c.286.545.523.996 1.058 1.336.886.173 2.168.25 2.983-.157.021-.242.035-.412.013-.578-.052-.395-.312-.763-1.195-2.01l-.26-.365-.747-1.053-.166-.232c.318-.204.631-.414.942-.628.895-.819 1.373-1.688 1.446-2.901.016-1.55-.119-2.645-1.22-3.8-1.423-1.065-3.022-1.078-4.718-1.047-.252.005-.503.008-.755.01l-.745.005Zm-.151 3.651c.001-.209.006-.419.021-.627.071-.087.11-.134.16-.159.061-.03.139-.027.313-.019h.854l.469.001.466-.002h.445c.249.001.498.007.747.022.468.234.66.5.941.941.079.546.095 1.068-.157 1.57-.7.61-1.213.7-2.133.691l-.427-.014-.156-.001h-.084a14.633 14.633 0 0 1-1.281-.048c-.088-.071-.134-.11-.158-.158-.027-.056-.024-.125-.019-.273l-.001-.736.001-.403-.001-.402v-.383Z\" fill=\"#fff\"/><path d=\"m73.591 17.695.38.001.38-.001c.711 0 .881.001 1 .08.037.024.07.056.111.098.014.348.017.697.016 1.046l-.001.578-.005.74-.01 2.345h4.71l-.007-1.484-.008-1.484v-.558l-.003-.573c.01-.254.014-.366.044-.47.023-.082.062-.16.13-.297.439-.008.877-.015 1.315-.02l.378-.008c.326-.002.651.012.976.028.354.354.355.559.356.999v.118l-.001.337.001.356c.002.39 0 .779 0 1.168v.81c.001.565 0 1.13-.001 1.697-.002.726 0 1.452.001 2.179v2.475c.002.374 0 .748-.001 1.122l.002.337c-.004.456-.006.641-.08.79-.05.101-.135.185-.277.327a14.8 14.8 0 0 1-1.256.04l-.35.003c-.866-.003-.866-.003-1.22-.357a11.941 11.941 0 0 1-.028-.438 12.819 12.819 0 0 1-.002-.623l.002-.577.009-.736.02-2.335h-4.71v4.866c-.4.2-.812.19-1.243.18-.082 0-.165-.003-.248-.003l-.328.002c-.538-.002-.718-.002-.882-.054-.084-.026-.162-.066-.281-.125a4342.755 4342.755 0 0 1-.012-7.09 1205.19 1205.19 0 0 1-.005-2.998l-.001-1.157-.002-.35c.002-.984.112-.984 1.024-.984h.108Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.383 21.38c-.515-1.358-1.136-2.995-2.211-3.664-1.731-.206-2.535.32-3.222 1.919l-.124.303c-.144.339-.288.678-.43 1.019-.1.241-.2.483-.302.724l-.63 1.498c-.306.734-.615 1.467-.928 2.198l-.43 1.01-.272.64-.263.614-.241.571c-.27.635-.48 1.214-.536 1.905l.314.314c.283.02.566.036.85.035l.327-.005c.395 0 .783-.01 1.178-.03.14-.07.217-.109.277-.166.076-.07.124-.17.233-.39l.206-.503c.134-.325.262-.652.382-.982l.157-.784 5.023.157c.542 1.298.71 1.702.916 2.084.093.172.194.34.34.584.377.053.513.072.65.077.077.003.155.002.277 0l.349-.018c.095-.002.198.002.305.006.392.015.834.032 1.088-.222-.036-1.04-.297-1.861-.701-2.817l-.228-.522-.075-.176c-.176-.41-.352-.822-.53-1.232-.21-.485-.42-.97-.628-1.456a773.31 773.31 0 0 0-.492-1.146l-.237-.552c-.128-.296-.256-.635-.392-.992Zm-3.938 1.987c.26-.576.522-1.152.785-1.727h.157c.465 1.087.899 2.17 1.256 3.297h-2.669c0-.489.117-.787.314-1.227l.157-.343Z\" fill=\"#fff\"/><path d=\"M90.295 17.665h.522l1.09.007a747.255 747.255 0 0 1 2.734.012l.509.002.467.005.413.003c.178.013.254.018.316.05a.675.675 0 0 1 .151.129c.016.394.022.783.02 1.177l.002.334c-.002.61-.002.768-.074.881a.712.712 0 0 1-.105.12c-.464.025-.925.04-1.389.05l-.373.008-1.237.027-.15.003-3.13.069v6.907h.006c1.022.02 1.534.029 2.046.038l2.046.037h.007c.256.005.513.01.77.017l.406.005c.618.015.84.02 1.011.115.096.053.176.133.301.258v.002c.02.227.03.351.035.475.006.148.006.297.004.621v.001l.003.599c-.022.264-.033.388-.084.493-.045.095-.123.173-.272.321-.142.018-.22.029-.298.034-.097.008-.195.008-.412.01l-.446.004H94.7l-.498.001h-1.044c-.531 0-1.062.004-1.593.008H90.55l-.48.005c-1.087-.008-1.88-.125-2.736-.847-.43-.529-.434-1.003-.44-1.648v-.069l-.006-.58-.004-.63-.002-.32-.007-1.68c-.001-.577-.007-1.153-.013-1.73-.004-.445-.006-.89-.006-1.335a99.619 99.619 0 0 0-.01-.947c.003-1.118.004-1.454.117-1.747.049-.125.119-.243.218-.41.926-.912 1.816-.901 3.035-.886h.079Zm-29.432.029-.617.002h-.02c-1.038 0-1.109 0-1.11 1.076l.001.357c-.002.42.004.835.02 1.256.063.063.1.1.145.124.068.035.152.04.361.05l.456-.002.492-.002.518-.004 1.466-.007.33-.002c-.004 1.15-.007 2.3-.008 3.451v.144a1242.018 1242.018 0 0 1-.007 3.339l-.001.654-.003.642v.59c0 .305.003.609.018.912a.754.754 0 0 0 .118.104c.117.076.28.077.93.082h.355c.428.008.838-.002 1.266-.029.164-.164.242-.242.285-.337.04-.086.048-.186.066-.378l-.002-.514c0-.297 0-.594-.002-.891l-.003-.638c-.001-.557-.003-1.114-.007-1.67a499.59 499.59 0 0 1-.007-1.732c-.003-1.123-.008-2.245-.014-3.368l-.002-.361 1.212.015.495.004.491.008.47.003.433.005c.158-.016.245-.025.322-.058.094-.04.171-.118.344-.291.02-.286.036-.571.035-.857l-.005-.33c0-.392-.01-.777-.03-1.168-.058-.058-.094-.095-.138-.119-.074-.04-.168-.045-.424-.058h-.547c-.316-.001-.633-.002-.95-.001h-2.094a630.375 630.375 0 0 1-3.28 0h-1.358Z\" fill=\"#fff\"/><path d=\"m93.783 22.526-.357.007h-.095c-.554-.003-1.078-.006-1.608.188-.386.272-.537.525-.72.96 0 .637.037.967.469 1.444.556.333.896.352 1.53.346l.385-.014c.464-.006.92-.021 1.383-.05.427-.212.649-.402.942-.784.081-.544.094-1.069-.157-1.57-.585-.463-1.052-.528-1.772-.527Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ij02p\",\"data-framer-name\":\"logo-bluecopa\",layoutDependency:layoutDependency,layoutId:\"QcOIo0acj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lz6uq\",\"data-framer-name\":\"Logo-bluecopa\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:149,layoutDependency:layoutDependency,layoutId:\"idWDQzotv\",svg:'<svg width=\"149\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.782 14.28v19.25h3.096V14.28h-3.096ZM37.14 33.535v-1.842c1.033 1.34 2.676 2.12 4.631 2.12 3.96 0 6.972-3.154 6.972-7.196s-3.013-7.196-6.972-7.196c-1.867 0-3.456.721-4.49 1.95v-7.084h-3.096v19.248h2.955Zm4.295-11.213c2.428 0 4.212 1.784 4.212 4.295 0 2.482-1.784 4.266-4.212 4.266s-4.183-1.755-4.183-4.266c0-2.51 1.755-4.295 4.183-4.295Zm14.676 5.045v-7.67h3.096v7.563c0 2.316 1.311 3.627 3.29 3.627 1.98 0 3.292-1.311 3.292-3.627v-7.562h3.096v7.67c0 4.017-2.653 6.445-6.387 6.445-3.735 0-6.387-2.428-6.387-6.446Zm21.705-7.951c-3.934 0-7.03 3.15-7.03 7.196l.005.005c0 4.018 3.096 7.196 7.167 7.196 3.072 0 5.778-1.867 6.835-4.88h-3.178c-.615 1.311-1.926 2.174-3.657 2.174-2.175 0-3.74-1.287-4.1-3.544h10.823c.054-.337.054-.697.054-1.034 0-4.1-2.984-7.113-6.919-7.113Zm3.77 5.885H73.94c.449-2.01 1.926-3.209 3.852-3.209 2.092 0 3.54 1.341 3.793 3.209Zm4.743 1.311c0-4.047 3.154-7.196 7.225-7.196 3.57 0 6.417 2.452 7.002 5.83h-3.18c-.53-1.73-1.925-2.93-3.822-2.93-2.345 0-4.13 1.868-4.13 4.296s1.785 4.296 4.13 4.296c1.897 0 3.291-1.23 3.823-2.93h3.179c-.561 3.349-3.433 5.83-7.002 5.83-4.07 0-7.225-3.154-7.225-7.196Zm22.677-7.196c-4.101 0-7.309 3.15-7.309 7.196 0 4.042 3.238 7.196 7.309 7.196s7.279-3.154 7.279-7.196-3.179-7.196-7.279-7.196Zm0 2.9c2.428 0 4.183 1.814 4.183 4.296s-1.755 4.296-4.183 4.296-4.213-1.814-4.213-4.296 1.785-4.295 4.213-4.295ZM117.797 39V19.697h2.96v1.843c1.004-1.34 2.676-2.12 4.631-2.12 3.959 0 6.972 3.154 6.972 7.196s-3.013 7.196-6.972 7.196c-1.867 0-3.456-.726-4.49-1.98V39h-3.101Zm11.467-12.384c0-2.511-1.784-4.296-4.212-4.296s-4.183 1.785-4.183 4.296c0 2.51 1.755 4.266 4.183 4.266s4.212-1.785 4.212-4.266Zm11.434-7.201c-3.959 0-6.973 3.15-6.973 7.196 0 4.042 3.014 7.196 6.973 7.196 1.955 0 3.627-.78 4.631-2.12v1.843h2.955V19.693h-2.955v1.843c-1.034-1.341-2.676-2.121-4.631-2.121Zm.336 2.9c2.428 0 4.183 1.814 4.183 4.296s-1.755 4.266-4.183 4.266-4.212-1.784-4.212-4.266 1.784-4.295 4.212-4.295Z\" fill=\"#fff\"/><path d=\"M3.285 22.145c0-3.526 1.37-6.719 3.598-9.079.049-.049.093-.102.142-.151l-2.511 2.511a13.183 13.183 0 0 0-3.988 9.473v13.145h12.983c3.53 0 6.733-1.429 9.074-3.75.02-.02.204-.21.229-.229h-.005l2.408-2.403c-2.33 2.247-5.48 3.632-8.951 3.632-7.172 0-12.984-5.885-12.984-13.145l.005-.005Z\" fill=\"#fff\" fill-opacity=\".5\"/><path d=\"M25.479 31.389h-.01a1.75 1.75 0 0 1-.088.097l.098-.097Z\" fill=\"#8AC2FF\"/><path d=\"M25.259 31.613c.043-.04.082-.088.122-.127l-.166.166s.029-.024.044-.04ZM7.127 12.808l-.102.102.165-.165-.063.058v.005Z\" fill=\"#3449FF\"/><path d=\"M16.264 9c-3.53 0-6.733 1.429-9.074 3.75l-.165.165c-.049.05-.093.103-.142.152a13.175 13.175 0 0 0-3.598 9.078c0 7.26 5.812 13.144 12.984 13.144 3.471 0 6.62-1.384 8.951-3.632 0 0 .454-.453.546-.556a13.183 13.183 0 0 0 3.486-8.956V9H16.264Zm2.94 18.956a.803.803 0 0 1-.078.044 6.35 6.35 0 0 1-2.862.683c-3.564 0-6.455-2.925-6.455-6.538a6.54 6.54 0 0 1 .677-2.896c.025-.054.059-.108.088-.161 1.082-2.068 3.223-3.477 5.695-3.477 3.564 0 6.455 2.926 6.455 6.539a6.54 6.54 0 0 1-3.515 5.811l-.005-.005Z\" fill=\"#fff\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13vavg4\",\"data-framer-name\":\"logo-73strings\",layoutDependency:layoutDependency,layoutId:\"kRFcD750F\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u2sssb\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:38,layoutDependency:layoutDependency,layoutId:\"dKs1AAzO5\",svg:'<svg width=\"38\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.447 33.324c-4.607 0-8.646-2.464-8.808-8.079h4.12c.163 3.07 2.304 4.363 4.688 4.363 2.666 0 4.686-1.737 4.686-4.766 0-2.908-1.576-4.726-4.807-4.726h-.688v-3.595h.688c2.989 0 4.363-1.737 4.363-4.362 0-2.908-1.898-4.443-4.242-4.443-2.505 0-4.12 1.575-4.323 4.12h-4.12C20.244 6.948 23.84 4 28.445 4c4.89 0 8.363 3.272 8.363 8.038 0 3.07-1.373 5.049-3.595 6.14 2.464 1.09 4.04 3.23 4.04 6.785 0 5.533-4 8.36-8.807 8.36Zm-20.12-.283H3.883l9.656-25.083H4.77v4.524H.812v-8.2h17.13v3.676L8.327 33.041ZM.811 43.05c.708.717 1.538.95 2.63.95 1.507 0 2.67-.788 2.672-2.184 0-.637-.172-1.163-.556-1.527-.304-.284-.719-.465-1.376-.556l-.85-.122c-.293-.041-.526-.152-.668-.284a.691.691 0 0 1-.212-.515c0-.495.364-.91 1.112-.91.475 0 1.021.06 1.477.495l.89-.88c-.617-.596-1.336-.838-2.327-.838-1.558 0-2.508.9-2.508 2.184 0 .606.171 1.072.515 1.416.324.313.78.505 1.396.596l.87.122c.334.05.496.121.637.253.152.14.223.353.223.606 0 .577-.445.89-1.275.89-.667 0-1.284-.151-1.74-.606l-.91.91Zm8.719-5.056v5.946H8.124v-5.946H6.243V36.74h5.168v1.254H9.53Zm4.784 3.074 1.406 2.872h1.628l-1.608-3.105c.698-.252 1.315-.879 1.315-1.89 0-1.204-.87-2.205-2.336-2.205h-2.822v7.2h1.406v-2.872h1.011Zm-1.011-3.074h1.325c.617 0 1.021.396 1.021.951 0 .556-.404.95-1.021.95h-1.325v-1.9Zm4.55 5.946v-7.2h1.406v7.2h-1.405Zm3.834-4.419 2.853 4.419h1.254v-7.2h-1.406v4.41l-2.852-4.41h-1.254v7.2h1.405v-4.419Zm9.568 3.66c-.557.566-1.224.819-2.033.819-.769 0-1.416-.263-1.942-.788a2.08 2.08 0 0 1-.587-1.083c-.08-.404-.121-1-.121-1.79 0-.788.04-1.384.121-1.789a2.04 2.04 0 0 1 .587-1.082c.526-.526 1.173-.789 1.942-.789 1.638 0 2.519 1.052 2.71 2.306h-1.416c-.171-.697-.597-1.052-1.294-1.052-.375 0-.678.132-.9.385-.263.333-.344.596-.344 2.022 0 1.415.06 1.698.344 2.032.213.253.516.375.9.375.415 0 .748-.132 1.001-.404.213-.243.324-.567.324-.961v-.273h-1.325v-1.174h2.72v1.052c0 1.051-.192 1.668-.687 2.194Zm.698-.131c.708.717 1.537.95 2.63.95 1.507 0 2.67-.788 2.672-2.184 0-.637-.173-1.163-.557-1.527-.304-.284-.718-.465-1.376-.556l-.85-.122c-.293-.041-.526-.152-.668-.284a.692.692 0 0 1-.212-.515c0-.495.364-.91 1.112-.91.476 0 1.022.06 1.477.495l.89-.88c-.617-.596-1.335-.838-2.326-.838-1.558 0-2.509.9-2.509 2.184 0 .606.172 1.072.516 1.416.323.313.779.505 1.396.596l.87.122c.333.05.495.121.637.253.151.14.222.353.222.606 0 .577-.444.89-1.274.89-.668 0-1.285-.151-1.74-.606l-.91.91Z\" fill=\"#F2F2F2\" style=\"mix-blend-mode:luminosity\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-174mv3q\",\"data-framer-name\":\"logo-chitale\",layoutDependency:layoutDependency,layoutId:\"BM5BC4y40\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-thycpo\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:85,layoutDependency:layoutDependency,layoutId:\"E64P6Mnab\",svg:'<svg width=\"85\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path d=\"M67.949 20.613c-.185.2-.485.916-.585 1.385-.139.647-.108 1.832.061 2.502.17.655.454 1.363.555 1.363.107 0 1.547-1.409 1.724-1.694.462-.731.6-1.948.293-2.617-.208-.44-.5-.747-.901-.932-.416-.185-.986-.192-1.147-.008ZM52.267 24.07c-.631.369-.985.707-1.193 1.13-.7 1.433.177 3.126 1.616 3.126.324 0 .832-.108.947-.192.015-.015-.093-.472-.226-1.033l-.012-.053c-.147-.592-.377-1.547-.516-2.132a21.148 21.148 0 0 0-.254-1.055c-.008.008-.17.1-.362.208ZM50.48 34.854a.92.92 0 0 1 .165.081l.13-.269a.997.997 0 0 0-.26-.117 1.018 1.018 0 0 0-.308-.047.77.77 0 0 0-.303.055.458.458 0 0 0-.203.154.385.385 0 0 0-.073.235c0 .077.014.14.043.19.03.05.068.091.115.124a.76.76 0 0 0 .156.079c.057.02.114.038.171.053.057.015.109.031.156.05a.341.341 0 0 1 .113.064c.029.025.043.06.043.102 0 .05-.02.089-.06.116a.28.28 0 0 1-.162.04.615.615 0 0 1-.173-.028.963.963 0 0 1-.357-.198l-.135.265c.057.048.12.09.19.128a1.1 1.1 0 0 0 .47.113c.11 0 .21-.018.297-.053a.484.484 0 0 0 .212-.154.393.393 0 0 0 .077-.246.392.392 0 0 0-.043-.192.338.338 0 0 0-.113-.128.656.656 0 0 0-.156-.084 1.83 1.83 0 0 0-.169-.055 5.662 5.662 0 0 1-.156-.05.37.37 0 0 1-.115-.063.136.136 0 0 1-.043-.103c0-.044.017-.077.051-.098a.254.254 0 0 1 .14-.034.965.965 0 0 1 .301.07Zm3.977.132a.53.53 0 0 0-.39-.196.445.445 0 0 0-.42.29.518.518 0 0 0-.034.19c0 .068.011.13.034.189.023.058.055.11.096.153a.445.445 0 0 0 .325.139.488.488 0 0 0 .205-.047.663.663 0 0 0 .184-.13l.198.207a.931.931 0 0 1-.387.235.826.826 0 0 1-.53-.026.793.793 0 0 1-.247-.164.793.793 0 0 1-.224-.553.753.753 0 0 1 .48-.707.849.849 0 0 1 .906.19l-.196.23Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.914 35.76a.526.526 0 0 1-.147-.073l-.126.233a.985.985 0 0 0 .462.12.631.631 0 0 0 .354-.099.638.638 0 0 0 .23-.275.993.993 0 0 0 .082-.417.935.935 0 0 0-.075-.393.561.561 0 0 0-.216-.252.6.6 0 0 0-.333-.09.618.618 0 0 0-.284.062.46.46 0 0 0-.188.178.523.523 0 0 0-.067.269c0 .097.02.181.058.254a.408.408 0 0 0 .165.169c.07.04.155.06.252.06.087 0 .16-.016.222-.047a.38.38 0 0 0 .15-.14.645.645 0 0 1-.039.244.33.33 0 0 1-.122.163.353.353 0 0 1-.21.057.617.617 0 0 1-.168-.023Zm.115-.95a.274.274 0 0 1 .13-.03.3.3 0 0 1 .114.018.206.206 0 0 1 .077.054.217.217 0 0 1 .047.077.264.264 0 0 1-.015.211.23.23 0 0 1-.088.09.292.292 0 0 1-.143.032.24.24 0 0 1-.177-.064.238.238 0 0 1-.062-.173.27.27 0 0 1 .03-.133.206.206 0 0 1 .087-.083Zm2.938-.293c.21 0 .37.065.483.196.112.131.168.318.168.562 0 .245-.056.434-.168.566-.113.131-.274.197-.483.197-.211 0-.373-.066-.487-.197-.113-.132-.169-.32-.169-.564 0-.245.056-.433.169-.564.114-.13.276-.197.487-.197Zm0 .247a.259.259 0 0 0-.235.122c-.05.081-.075.212-.075.391 0 .177.025.306.075.389.051.083.13.124.235.124a.25.25 0 0 0 .23-.124c.05-.083.075-.212.075-.389 0-.18-.025-.31-.075-.39a.252.252 0 0 0-.23-.123Z\"/><path d=\"M59.392 35.075h.167c.117 0 .218.018.303.057a.467.467 0 0 1 .199.16c.047.068.07.147.07.235a.487.487 0 0 1-.074.271.504.504 0 0 1-.21.178.715.715 0 0 1-.314.064 1.02 1.02 0 0 1-.303-.05 1.148 1.148 0 0 1-.276-.13l.13-.245a.868.868 0 0 0 .197.117.576.576 0 0 0 .216.043c.084 0 .15-.02.199-.06a.202.202 0 0 0 .072-.165.185.185 0 0 0-.07-.153c-.047-.039-.118-.058-.214-.058h-.032l-.045.002c-.034 0-.072 0-.113.002l-.12.005c-.038.001-.07.003-.094.006v-.825h.983v.272h-.67v.274Zm-2.712-.545h.639v1.495h-.338v-1.22h-.3v-.276Zm-.684 0h-1.14v1.495h1.163v-.271h-.825v-.344h.72v-.272h-.72v-.337h.802v-.272Zm-3.998 0h-.308v1.495h.323v-.975l.724.975h.305v-1.496h-.318v.98l-.726-.98Zm-.978 0h.338v1.495h-.338v-1.496Zm-27.435.318a.285.285 0 0 1-.197.066h-.516v-.488h.516c.082 0 .148.02.197.061.052.041.078.1.078.176a.236.236 0 0 1-.078.185Zm.061 1.102a.402.402 0 0 1-.258.07h-.516v-.52h.516a.418.418 0 0 1 .258.065.216.216 0 0 1 .099.185.238.238 0 0 1-.099.2Zm4.004-1.311.343.939h-.697l.354-.94Zm8.975 1.353a.617.617 0 0 0 .263-.054.639.639 0 0 0 .205-.155.674.674 0 0 0 .135-.242.932.932 0 0 0 .05-.312.93.93 0 0 0-.05-.311.686.686 0 0 0-.144-.246.569.569 0 0 0-.217-.16.725.725 0 0 0-.283-.053h-.389v1.533h.43Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m39.187 6.848 1.278-.924c.7-.508 1.309-.924 1.347-.924.047 0 .516.316 1.055.708.128.093.259.187.385.28h.003c.399.29.76.55.882.644l.308.216c9.413 0 26.072.05 33.24.073a3.454 3.454 0 0 1 3.441 3.458l.018 10.942.831 1.147c.415.56.805 1.107.936 1.291l.034.048.131.2-1.94 2.695c0 2.362-.006 7.491-.01 10.947a3.453 3.453 0 0 1-3.454 3.457H44.53l-1.347.962c-.74.531-1.386.947-1.44.932a42.913 42.913 0 0 1-1.362-.963l-1.27-.931H22.073c-7.11-.01-12.767-.008-16.142-.005a3.465 3.465 0 0 1-3.468-3.465l-.006-11.003-.924-1.263c-.508-.693-.924-1.309-.924-1.355 0-.054.416-.677.924-1.386l.932-1.293V10.312a3.455 3.455 0 0 1 3.453-3.464h33.268Zm32.788 10.639c1.37-.054 2.487-.562 3.634-1.648.4-.377.831-.893.831-.993 0-.1-.092-.077-.262.046a3.625 3.625 0 0 1-.577.285c-.423.17-.516.177-4.511.216l-4.08.038-.693.455c-.862.562-2.04 1.447-2.04 1.524 0 .054 6.536.115 7.698.077Zm-46.807.423c0-2.263-.007-2.34-.169-2.671-.1-.193-.23-.354-.293-.362-.277-.054-2.324 1.255-2.617 1.67-.123.17-.123.224-.03.386.084.161.1 1.262.107 6.197 0 3.78.03 6.105.077 6.282.293 1.062 1.255 1.393 2.425.854.862-.408 2.271-1.493 2.271-1.755 0-.13-.03-.13-.47 0-.615.185-.946 0-1.162-.639-.139-.423-.185-6.651-.046-6.76.308-.245 1.047-.43 1.763-.438.693-.008.754.008 1.108.223.424.262.685.7.809 1.355.046.224.077 1.817.077 3.61 0 3.404.023 3.65.377 4.143.346.492 1.216.639 1.978.338 1.224-.485 3.21-2.255 2.102-1.87-.416.146-.824.107-1.032-.1-.338-.34-.37-.601-.423-3.857-.054-3.334-.085-3.565-.516-4.365-.793-1.463-2.81-1.794-4.85-.801a8.81 8.81 0 0 0-1.047.616c-.2.154-.377.277-.4.277-.023 0-.039-1.047-.039-2.333Zm19-.731c-.023-1.74-.03-1.863-.184-2.07-.093-.116-.208-.224-.27-.232-.239-.046-1.694.855-2.333 1.447-.385.355-.392.362-.292.624.054.154.092.631.092 1.109v.839l-.746.5c-1.07.716-2.118 1.532-2.064 1.624.031.039.64.07 1.432.07h1.378v3.795c0 4.157.008 4.265.454 4.88.894 1.233 2.849.932 4.612-.707.423-.385.785-.909.7-.993-.023-.024-.261.046-.53.153-.401.17-.578.193-1.048.17-.5-.023-.593-.054-.8-.254-.124-.123-.27-.347-.308-.493-.047-.161-.077-1.586-.077-3.418V21.09h.523c1.247-.008 2.256-.462 3.642-1.648.523-.446.739-.708.662-.785-.016-.015-.216.046-.447.139-.377.154-.585.169-2.394.2l-1.979.03-.023-1.847Zm18.53-1.748-.177-.292c-.1-.154-.223-.285-.277-.285-.246 0-1.601.832-2.302 1.409-.346.285-.37.33-.315.546.03.131.077 3.026.1 6.436l.008 1.007v.012c.037 4.875.041 5.457.334 5.764a1.446 1.446 0 0 0 .168.145l.029.024c.731.608 1.778.377 3.21-.708.785-.585 1.085-.909.978-1.016-.062-.062-.177-.047-.424.038-.546.177-.893.03-1.131-.493-.108-.238-.131-.977-.162-6.428l-.039-6.159Zm-41.84.278c0-.077-.67-.208-1.579-.316-1.894-.208-3.487.046-5.12.816-1.139.539-2.163 1.27-3.117 2.225-.916.908-1.47 1.655-1.956 2.64-1.07 2.14-1.016 4.473.162 6.467.139.239.547.731.908 1.101 1.001 1.009 2.133 1.617 3.596 1.91 2.24.461 4.418-.062 6.713-1.594 1.424-.955 1.847-1.61.692-1.063-.823.393-1.37.516-2.47.562-3.142.131-5.69-1.14-6.783-3.387-.531-1.078-.631-1.563-.631-3.018 0-1.078.023-1.301.177-1.81.238-.754.647-1.546.985-1.924.793-.877 2.556-1.34 3.688-.962.5.17 1.07.531 1.332.855l.215.261 1.594-1.355c.877-.739 1.593-1.378 1.593-1.408Zm16.713 4.08c.415-.508.462-1.209.115-1.725-.092-.138-.239-.254-.316-.27-.207-.022-1.277.594-2.086 1.21-.816.623-.87.692-.731 1.023.354.87.362.978.115 1.579-.207.492 2.28-1.063 2.903-1.817Zm35.428.069c-.254-.5-.708-.87-1.27-1.04-.478-.138-1.594-.146-2.025-.007-1.055.339-2.848 1.594-3.895 2.725-.763.824-1.286 1.802-1.455 2.718-.116.6-.093 2.04.046 2.61.662 2.825 3.695 4.357 6.643 3.348 1.032-.346 1.956-.893 2.926-1.732 1.116-.954 1.34-1.57.339-.9-.778.515-1.363.692-2.295.692-.908.008-1.593-.169-2.309-.6-.439-.262-1.347-1.078-1.347-1.209 0-.038.616-.515 1.37-1.078 1.755-1.293 2.718-2.247 3.133-3.094.27-.54.308-.678.331-1.309.023-.647.008-.731-.192-1.124Zm-18.384-.262a3.189 3.189 0 0 0-.793-.57c-.346-.161-.57-.207-1.093-.223-.747-.023-1.201.085-2.04.47-1.232.57-3.426 2.155-3.426 2.479 0 .108.393-.016.87-.277 1.724-.947 3.249-.585 4.018.939.147.3.27.585.27.639 0 .054-.331.277-.731.493-.408.215-1.14.639-1.64.939-2.125 1.285-2.587 1.878-2.587 3.34-.008.917.131 1.287.678 1.872.508.538 1.124.808 1.886.808.908.008 1.678-.3 3.094-1.216l.74-.485.177.4c.415.924.924 1.301 1.77 1.293.716-.007 1.263-.238 2.348-.985.593-.408 1.27-1.086 1.27-1.27 0-.185-.023-.185-.523.007-.631.239-1.108.193-1.386-.146-.277-.331-.539-1.186-1.216-3.918-.824-3.303-1.055-3.942-1.686-4.589Zm-16.582 8.5c-.108-.232-.131-.763-.162-3.496-.023-2.055-.07-3.233-.116-3.248-.107-.031-2.163 1.354-2.594 1.755l-.37.338v2.841c0 1.67.031 2.964.078 3.126.3 1.078 1.262 1.4 2.47.823.87-.415 2.226-1.47 2.226-1.724 0-.13-.031-.13-.478 0-.554.17-.839.062-1.054-.416Zm24.704 8.622v-2.926H48.572v2.926h14.165Zm-38.718-2.842a1.707 1.707 0 0 0-.586-.09h-1.41v2.874h1.472c.232 0 .431-.033.598-.098.17-.066.3-.159.394-.28a.677.677 0 0 0 .14-.426.71.71 0 0 0-.578-.726.678.678 0 0 0 .356-.233.609.609 0 0 0 .13-.385.57.57 0 0 0-.134-.381.866.866 0 0 0-.382-.255Zm3.217-.09h.878l1.184 2.874h-.91l-.167-.46h-1.16l-.173.46h-.877l1.225-2.874Zm4.31 0h-.726v2.874h.783v-1.598l1.217 1.598h.726v-2.874h-.779v1.606l-1.222-1.606Zm5.055 0c.235 0 .447.034.635.103.189.068.35.165.484.29.137.127.242.278.316.456.073.175.11.37.11.586 0 .216-.037.413-.11.59-.074.175-.18.327-.32.455a1.46 1.46 0 0 1-.5.291 1.905 1.905 0 0 1-.644.103h-1.23v-2.874h1.259Zm4.028 0h-.852v2.874h.852v-1.07h1.021v1.07h.853v-2.874h-.853v1.148h-1.02v-1.148Zm4.621 2.079a.54.54 0 0 1-.143-.394v-1.685h-.853v1.685c0 .252.055.472.164.66.112.186.268.33.467.435.203.1.44.151.71.151.267 0 .5-.05.697-.151.199-.104.352-.25.459-.435.109-.188.164-.409.164-.66v-1.685h-.853v1.685a.57.57 0 0 1-.131.394.435.435 0 0 1-.336.143.47.47 0 0 1-.345-.143Z\"/><path d=\"M82.507 5.152h-1.352v.268h.516v1.39h.32V5.42h.516v-.268Zm.587 0h-.362V6.81h.288V5.595l.519 1.044h.203l.516-1.044v1.214h.292V5.152h-.363l-.544 1.087-.55-1.087Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bfyiog\",\"data-framer-name\":\"logo-travclan\",layoutDependency:layoutDependency,layoutId:\"j4QAfXx_K\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zohcq9\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:118,layoutDependency:layoutDependency,layoutId:\"eDeY_I_4V\",svg:'<svg width=\"118\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path d=\"M14.15 12.377c0 1.864-1.493 3.376-3.335 3.376-1.841 0-3.334-1.511-3.334-3.376S8.974 9 10.815 9c1.842 0 3.335 1.512 3.335 3.377Z\"/><path d=\"M21.48 16.72c-.368-.818-1.33-1.182-2.168-.892a26.154 26.154 0 0 1-7.322 1.398H9.64a25.89 25.89 0 0 1-7.322-1.398c-.837-.29-1.8.074-2.167.892a1.75 1.75 0 0 0 .999 2.373c1.608.558 3.254.967 4.92 1.242a3.416 3.416 0 0 1 2.858 3.384v15.277h3.775V23.712a3.416 3.416 0 0 1 2.857-3.384 29.453 29.453 0 0 0 4.92-1.243 1.737 1.737 0 0 0 1-2.365Zm54.637 14.798-.066.2a7.86 7.86 0 0 1-.882 1.875c-.528.796-1.182 1.398-1.975 1.807-.793.41-1.719.633-2.806.662-1.08-.03-2.012-.23-2.805-.587a5.259 5.259 0 0 1-1.572-1.079c-.675-.677-1.19-1.562-1.55-2.677-.36-1.116-.55-2.455-.572-4.024.022-1.413.176-2.64.462-3.682a7.674 7.674 0 0 1 .867-2.038c.544-.862 1.241-1.502 2.108-1.933.867-.432 1.917-.647 3.15-.647h.089c1.219 0 2.225.23 3.033.669.404.223.756.498 1.065.826.308.327.573.713.793 1.167.118.268.257.506.411.722.243.32.53.572.867.736.33.164.705.245 1.109.245h1.792l-.044-.342c-.147-1.048-.426-2.008-.845-2.856a7.548 7.548 0 0 0-1.674-2.239c-.742-.661-1.63-1.16-2.651-1.487-1.029-.327-2.19-.49-3.49-.49h-.241c-1.704.029-3.21.29-4.502.78a8.53 8.53 0 0 0-2.571 1.51c-1.109.952-1.939 2.201-2.482 3.726-.551 1.525-.823 3.325-.83 5.4-.008 1.844.19 3.466.602 4.871.309 1.05.727 1.979 1.278 2.775a7.585 7.585 0 0 0 3.253 2.7c1.344.595 2.938.892 4.774.892h.272c1.256 0 2.394-.149 3.408-.439 1.527-.446 2.776-1.227 3.73-2.35.955-1.123 1.616-2.566 1.976-4.329l.074-.357h-3.555v-.007Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.091 23.598a3.568 3.568 0 0 0-.932-1.07c-.588-.454-1.344-.782-2.255-1.005-.918-.216-1.99-.327-3.239-.327-1.072.007-2.012.119-2.827.32a6.564 6.564 0 0 0-1.623.632c-.706.401-1.249.945-1.609 1.606-.36.67-.536 1.458-.536 2.343v.298h3.496v-.298c0-.335.059-.602.176-.84.088-.171.206-.328.36-.461.235-.201.55-.365.97-.484.418-.119.932-.186 1.542-.193.14-.008.272-.008.404-.008.55 0 1.035.037 1.432.12a3.5 3.5 0 0 1 .771.23c.162.074.294.156.411.245.17.134.287.283.368.462.08.178.124.379.124.617 0 .268-.044.498-.117.692a1.367 1.367 0 0 1-.235.401 1.745 1.745 0 0 1-.61.461c-.264.127-.587.23-.977.29-1.292.246-2.46.447-3.51.61h-.015c-.844.156-1.6.38-2.247.677-.977.446-1.74 1.049-2.262 1.822a4.79 4.79 0 0 0-.595 1.272c-.14.461-.213.96-.228 1.488v.2c0 .856.133 1.622.397 2.284.198.498.477.937.83 1.316.529.566 1.226.982 2.078 1.257.845.275 1.844.41 2.997.41 1.395 0 2.592-.127 3.606-.395 1.013-.268 1.836-.662 2.467-1.212a5.029 5.029 0 0 0 1.403-2.053c.309-.818.463-1.77.463-2.841v-7.006c-.015-.677-.17-1.31-.478-1.86Zm-6.874 7.163a41.447 41.447 0 0 0 1.74-.246c.493-.082.897-.163 1.213-.253.315-.082.594-.178.837-.29l.093-.047.04-.02v2.589c0 .61-.09 1.123-.25 1.562a2.768 2.768 0 0 1-.5.847c-.316.357-.734.633-1.278.819-.543.185-1.204.282-1.99.282-.551 0-1.021-.052-1.41-.156a2.736 2.736 0 0 1-.757-.313 1.794 1.794 0 0 1-.698-.75c-.154-.313-.235-.692-.235-1.16 0-.417.067-.774.191-1.087.096-.238.228-.446.397-.64.25-.282.587-.527 1.02-.72a6.456 6.456 0 0 1 1.587-.417Z\"/><path d=\"M22.458 21.934a6.44 6.44 0 0 0-1.91 1.012c-.822.647-1.439 1.51-1.85 2.566-.404 1.056-.602 2.298-.602 3.733V38.7h3.437v-9.885c.007-.67.102-1.25.271-1.733a2.925 2.925 0 0 1 1.785-1.837c.536-.2 1.182-.312 1.954-.312h1.564V21.45h-1.322c-1.256 0-2.365.156-3.327.483Zm33.619-.357a3.29 3.29 0 0 1 .918-.126h1.564l-5.971 17.24h-3.386l-5.831-16.846-.14-.394h3.599l4.04 12.153 3.422-10.108c.161-.498.39-.907.69-1.235.294-.32.668-.557 1.095-.684Zm27.715-4.694c.294.112.537.283.72.513.117.149.213.327.28.52.087.261.131.559.131.878V38.69h-3.437V16.72h1.322c.367 0 .698.051.984.163Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.632 23.598a3.586 3.586 0 0 0-.933-1.071c-.587-.454-1.344-.78-2.254-1.004-.918-.216-1.99-.327-3.24-.327-1.072.007-2.012.119-2.827.32a6.56 6.56 0 0 0-1.623.632c-.705.401-1.248.944-1.608 1.606-.36.67-.536 1.458-.536 2.343v.298h3.495v-.298c0-.335.06-.602.177-.84.088-.171.205-.328.36-.462.234-.2.55-.364.969-.483.419-.119.933-.186 1.542-.193.14-.008.272-.008.404-.008.551 0 1.036.037 1.432.12.302.059.559.133.772.23.161.074.293.156.41.245.17.134.287.283.368.461.08.179.125.38.125.618 0 .267-.044.498-.118.692a1.37 1.37 0 0 1-.235.401 1.749 1.749 0 0 1-.61.461 3.47 3.47 0 0 1-.976.29c-1.293.246-2.46.447-3.51.61H92.2c-.845.156-1.601.38-2.248.677-.976.446-1.74 1.049-2.262 1.822-.257.387-.455.81-.595 1.272a5.68 5.68 0 0 0-.227 1.488v.193c0 .855.132 1.621.396 2.29.199.5.478.938.83 1.317.529.565 1.227.982 2.079 1.257.844.275 1.843.41 2.996.41 1.395 0 2.593-.127 3.606-.395 1.014-.268 1.836-.662 2.468-1.212a5.036 5.036 0 0 0 1.403-2.053c.308-.818.462-1.77.462-2.841v-7.006c-.014-.677-.169-1.31-.477-1.86Zm-6.882 7.163a41.637 41.637 0 0 0 1.74-.246c.493-.082.897-.164 1.213-.253a5.03 5.03 0 0 0 .837-.29l.132-.067v2.589c0 .61-.088 1.123-.25 1.561a2.766 2.766 0 0 1-.499.848c-.316.357-.734.632-1.278.818-.543.187-1.204.283-1.99.283-.551 0-1.021-.052-1.41-.156a2.74 2.74 0 0 1-.757-.313 1.794 1.794 0 0 1-.697-.75c-.155-.313-.236-.692-.236-1.161 0-.416.067-.773.191-1.086.096-.238.228-.446.397-.64.25-.282.588-.527 1.021-.721a6.641 6.641 0 0 1 1.586-.416Z\"/><path d=\"M116.56 23.486c.395.52.712 1.13.939 1.822.302.922.449 1.978.449 3.176V38.68h-1.388c-.369 0-.699-.052-.985-.164a1.64 1.64 0 0 1-1.007-1.041 2.752 2.752 0 0 1-.131-.878v-8.352c0-.766-.104-1.413-.302-1.941a2.87 2.87 0 0 0-.873-1.25 2.93 2.93 0 0 0-.911-.498c-.47-.164-1.028-.246-1.683-.246-.748 0-1.372.105-1.887.313-.513.2-.91.505-1.218.907a3.05 3.05 0 0 0-.486.952c-.161.491-.242 1.078-.242 1.763V38.68h-3.437V28.41c0-1.332.184-2.5.573-3.481.389-.982.977-1.793 1.755-2.395a6.15 6.15 0 0 1 1.807-.945c.911-.305 1.96-.453 3.143-.453 1.344 0 2.505.193 3.489.58.984.386 1.791.982 2.395 1.77Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-il4f96\",\"data-framer-name\":\"logo-apica\",layoutDependency:layoutDependency,layoutId:\"G7I9ABTCr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-q2c0gi\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:120,layoutDependency:layoutDependency,layoutId:\"rHTAfJEzQ\",svg:'<svg width=\"120\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path d=\"m19.332 26.127-.012.02-.057-.085a2.165 2.165 0 0 1-.084-.13l-1.7-2.936a13768 13768 0 0 0-5.83-10.064c-.1-.171-.125-.3-.016-.486.714-1.22 1.419-2.446 2.123-3.671l.388-.674c.331-.576.807-.947 1.47-1.066a2.058 2.058 0 0 1 2.17.978c.233.385.456.774.678 1.164l.252.438 1.082 1.878v.002a3517.97 3517.97 0 0 0 3.858 6.684c.109.188.109.324-.003.512-.456.768-.902 1.541-1.354 2.323-.133.23-.265.46-.4.69-.854 1.476-1.699 2.931-2.565 4.423ZM9.88 15.492c.025.037.05.07.071.1.043.059.079.108.11.16l2.795 4.829 1.634 2.823.631 1.09a672.392 672.392 0 0 0 2.4 4.127c.142.241.127.416-.009.648a866.498 866.498 0 0 0-3.345 5.76c-.102.178-.212.244-.42.243-2.576-.004-5.153-.004-7.73-.004l-3.806-.001c-.692 0-1.297-.222-1.729-.785-.564-.736-.641-1.533-.189-2.347.402-.722.816-1.437 1.23-2.151l.509-.88.693-1.203 7.154-12.41Zm15.527 5.756c-.705 1.211-1.385 2.379-2.074 3.566l-2.295 3.95c-1.256 2.16-2.513 4.323-3.777 6.502h2.382c3.388 0 6.776 0 10.165-.003.216 0 .44-.03.647-.088a2.077 2.077 0 0 0 1.275-2.967c-.175-.337-.367-.664-.559-.992-.075-.128-.15-.255-.224-.384a44752.28 44752.28 0 0 0-5.353-9.289c-.035-.06-.072-.119-.114-.187a13.317 13.317 0 0 1-.07-.113l-.003.005Zm53.439-5.323c-.16.516-.142 1.04.042 1.576.041.069.08.138.117.206.093.17.182.332.303.466.77.852 2.235.94 3.117.2.37-.309.63-.693.706-1.174.043-.273.064-.555.046-.83a1.973 1.973 0 0 0-.672-1.385 2.212 2.212 0 0 0-1.382-.561c-1.03-.06-1.953.46-2.277 1.502Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.282 31.756h2.494c2.202-.002 4.39-.002 6.577-.01.266 0 .412.084.523.333.235.53.479 1.056.722 1.583.203.44.407.88.606 1.321.094.211.215.302.451.3.582-.008 1.163-.007 1.745-.006h.946c.144 0 .288-.006.445-.012h.001l.24-.01-.085-.199c-.054-.127-.102-.241-.155-.354L54.17 20.474l-.3-.644-1.2-2.579-.194-.417c-.242-.52-.484-1.039-.724-1.56-.07-.151-.145-.274-.343-.273-.947.005-1.894.004-2.84 0-.137 0-.229.056-.288.173-.02.038-.036.077-.053.116l-.033.074-1.37 2.95-.049.107-5.2 11.208-1.308 2.813v.001l-.002.003c-.39.838-.78 1.676-1.168 2.515-.03.063-.056.129-.084.202l-.047.115h.89c.865 0 1.712-.001 2.559.002.194.001.28-.106.352-.263l.472-1.031c.295-.642.59-1.284.875-1.93.1-.228.23-.313.474-.31.56.01 1.121.01 1.693.01Zm-.429-3.413.506-1.104 3.619-7.793.006-.013a3312.88 3312.88 0 0 1 3.26 7.015l.007.015.871 1.88h-8.269Zm16.669-7.553V41h3.202v-7.62l.122.112c.072.065.133.12.19.18.764.78 1.63 1.4 2.698 1.696a7.171 7.171 0 0 0 2.691.217c1.37-.144 2.583-.646 3.606-1.566 1.358-1.22 2.034-2.796 2.296-4.571.106-.719.065-1.437.024-2.156l-.019-.35c-.05-.97-.3-1.88-.714-2.753-.75-1.583-1.924-2.713-3.563-3.35-1.287-.499-2.612-.481-3.943-.243-1.317.236-2.377.928-3.253 1.92a.493.493 0 0 0-.069.115l-.029.057-.081-.053v-1.852h-1.153a111.64 111.64 0 0 0-2.005.007Zm6.604 2.732.075-.014c.839-.104 1.6-.024 2.338.273 1.194.482 1.98 1.339 2.35 2.57.331 1.102.367 2.214.028 3.322-.504 1.649-1.841 2.708-3.556 2.872-.736.07-1.454.046-2.144-.23-1.242-.494-2.074-1.372-2.441-2.67-.364-1.287-.352-2.554.204-3.79.585-1.3 1.592-2.052 2.986-2.302l.16-.03Zm37.89 11.184c-1.805 1.022-3.67 1.171-5.555.378-1.474-.62-2.29-1.791-2.493-3.387-.12-.933-.01-1.824.408-2.672.426-.868 1.107-1.469 1.966-1.885.736-.357 1.52-.518 2.328-.597a163.59 163.59 0 0 0 1.716-.18 369.072 369.072 0 0 1 1.99-.212l.154-.016a.767.767 0 0 1 .09-.006c.66-.064.867-.324.794-.989-.087-.796-.517-1.338-1.269-1.573-1.28-.4-2.553-.357-3.785.211a2.468 2.468 0 0 0-1.338 1.453 3.822 3.822 0 0 1-.082.206v.001l-.001.002-.048.117-.459-.288-.008-.005-.002-.002c-.369-.23-.73-.457-1.09-.684-.22-.14-.438-.282-.655-.425l-.01-.007-.003-.001-.108-.071c-.21-.138-.218-.155-.128-.387a4.473 4.473 0 0 1 1.827-2.221c.956-.6 2.009-.901 3.129-.973.845-.053 1.691-.097 2.536.018 1.082.147 2.096.463 2.96 1.162.782.634 1.227 1.474 1.475 2.433.145.563.197 1.135.197 1.716a578.688 578.688 0 0 0 .018 4.064l.005.98.005.949.016 3.242c0 .033-.002.067-.004.1l-.002.045c-.216.068-2.499.092-3.151.033v-1.772l-.059-.03-.187.211c-.142.162-.284.324-.44.47a6.484 6.484 0 0 1-.506.413l-.231.18Zm-1.357-5.763-.405.054c-.308.042-.616.084-.925.122-.428.052-.84.153-1.22.361-.946.517-1.195 1.727-.523 2.556.294.363.686.564 1.134.667.553.128 1.102.091 1.658.005 1.321-.203 2.906-1.265 3.033-3.204a6.73 6.73 0 0 0 .006-.587c-.001-.096-.003-.193-.003-.292l-.139.01c-.083.005-.154.01-.225.018l-1.007.122-1.384.168Z\"/><path d=\"M95.802 30.916c-1.095 1.002-2.306 1.625-3.814 1.607-1.56-.054-2.783-.678-3.577-2.01-.66-1.107-.797-2.32-.545-3.576.533-2.651 2.898-3.705 4.956-3.347a5.052 5.052 0 0 1 2.284 1.034c.126.098.252.195.382.293h.001l.001.002.185.14 1.907-2.489a6.256 6.256 0 0 1-.14-.136 5.628 5.628 0 0 0-.27-.253c-1.27-1.091-2.756-1.636-4.417-1.736-.77-.046-1.53.043-2.287.168a7.027 7.027 0 0 0-5.734 5.323c-.312 1.286-.28 2.578-.062 3.856.37 2.166 1.548 3.811 3.465 4.893 1.598.9 3.34 1.052 5.125.858.927-.1 1.797-.427 2.642-.808.66-.297 1.209-.757 1.736-1.274l-.482-.671-.002-.003c-.449-.626-.895-1.25-1.354-1.871Zm-13.264 4.317h-3.151V20.8h3.15v14.434Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M117.548 33.633c.066.122.132.244.205.388.236.36.45.43.813.279l-.484-.826.054-.038c.031-.022.057-.04.082-.06.299-.232.419-.551.337-.855-.169-.634-.655-.627-1.484-.616a22.29 22.29 0 0 1-.38.004v2.4h.532v-.805c.188 0 .26.01.325.129Zm-.322-1.239c.469 0 .738 0 .738.306s-.269.306-.738.306v-.612Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M117.349 30.736c.431-.023.825.03 1.192.2.876.402 1.333 1.101 1.393 2.056.078 1.264-.69 2.245-1.775 2.496-1.525.353-2.751-.535-2.999-1.816-.296-1.528.673-2.714 1.926-2.9a7.57 7.57 0 0 1 .263-.036Zm-1.401 1.577c-.614 1.158.187 2.73 1.749 2.6.747-.06 1.35-.553 1.539-1.252.208-.768-.066-1.56-.681-1.985-.715-.494-2-.45-2.607.637Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kowbsm\",\"data-framer-name\":\"logo-lemnisk\",layoutDependency:layoutDependency,layoutId:\"Rtdca8Eeo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2d554d\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:124,layoutDependency:layoutDependency,layoutId:\"TVnUs0Clt\",svg:'<svg width=\"124\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M93.406 11.542c-.629-.569-1.27-1.15-1.944-1.753-2.049-1.252-4.347-.994-6.04.667-.418.411-.827.834-1.258 1.28l-.63.65-.179-.187c-.167-.176-.33-.35-.49-.522a31.555 31.555 0 0 0-1.38-1.417c-1.686-1.59-4.341-1.68-6.16-.243-1.855 1.465-2.367 4.041-1.21 6.08a4.754 4.754 0 0 0 7.386 1.146c.48-.444.923-.927 1.363-1.407.201-.219.401-.436.604-.65 1.778 1.431 3.626 1.898 4.785 1.27-.96-.328-1.612-1.02-2.276-1.726-.313-.332-.628-.667-.979-.967.206-.204.405-.404.602-.601.426-.426.837-.838 1.254-1.243 1.193-1.163 2.782-1.164 3.972-.002.27.265.533.54.77.787.1.106.197.207.288.3l1.522-1.462Zm-17.83 1.949c.137-1.224.852-2.008 2.034-2.36 1.126-.21 1.994.103 2.728.857.39.401.792.79 1.214 1.2.193.187.391.379.594.578-.256.242-.503.487-.747.729l-.001.001c-.547.543-1.08 1.072-1.675 1.518-.894.67-1.932.63-2.886.034-.932-.582-1.383-1.463-1.26-2.557Z\"/><path d=\"m119.583 34.335-4.064-4.744-.855-1.012 7.972-8.058h-.832l-.485-.001c-1.315-.002-2.562-.004-3.808.015a1.09 1.09 0 0 0-.695.297 666.704 666.704 0 0 0-4.12 4.29l-1.092 1.144-.232.246-.005.005-.008.009-.003.003-.018.019a113.2 113.2 0 0 0-.202.215V13.968h-4.05v24.423h4.083v-7.858l1.618 1.912a688.675 688.675 0 0 1 4.514 5.364c.369.446.729.655 1.327.63.901-.036 1.804-.03 2.708-.023.395.004.789.007 1.184.006.093 0 .187-.007.308-.016l.08-.006.053-.004.025-.002.07-.005-3.473-4.054Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.26 30.725c.137 1.484.697 2.703 1.955 3.441.72.423 1.551.729 2.371.895 1.881.379 3.74.154 5.54-.516.486-.18.971-.367 1.481-.562l.01-.003.018-.007.008-.004.006-.002.752-.287v2.02c0 .126-.005.254-.01.381-.01.284-.02.569.02.846.088.61-.167.889-.728 1.055-2.77.824-5.58 1.23-8.443.662-5.4-1.072-7.914-5.537-7.423-10.338.106-1.036.355-2.101.767-3.054 2.791-6.452 10.828-6.274 14.092-2.75 1.441 1.556 2.174 3.41 2.365 5.484.056.609.042 1.224.027 1.855-.006.291-.013.586-.013.884H14.259Zm3.649-7.13c-1.945.393-3.318 1.8-3.528 3.621h8.657c-.328-2.314-1.821-3.661-4.073-3.694a7.147 7.147 0 0 0-.779.047l-.277.025Z\"/><path d=\"m41.245 37.8-.012-3.043v-.002c-.008-2.375-.017-4.734-.038-7.092-.025-2.861-2.377-3.756-4.21-3.307-.575.141-1.126.388-1.674.633h-.002l-.403.18c-.305.132-.393.405-.392.756.01 3.122.01 6.244.01 9.366l-.001 3.1h-4.465V20.546h4.189v1.702c1.383-1.572 3.085-2.077 4.978-2.077 1.888 0 3.584.478 4.822 2.078l.08-.054c.049-.034.092-.063.131-.097 2.146-1.887 4.66-2.376 7.371-1.77 2.693.602 4.15 2.476 4.715 5.093.14.646.207 1.319.21 1.98.016 2.692.014 5.384.011 8.076l-.001 2.577c0 .101-.01.202-.016.335h-4.294l-.009-.165-.003-.055a13.516 13.516 0 0 1-.008-.145v-.036l-.002-.024a1313.082 1313.082 0 0 1 0-2.693v-.006c.004-2.106.007-4.212-.015-6.318a9.799 9.799 0 0 0-.282-2.324c-.316-1.228-1.175-1.973-2.416-2.244-1.29-.28-2.505-.119-3.636.61-.295.19-.4.39-.4.737.01 3.185.01 6.37.009 9.554v3.114h-4.248V37.8Zm29.481-13.346c-2-.666-3.74-.22-5.284 1.09-.133.112-.182.386-.183.585a3484.82 3484.82 0 0 0-.007 9.7v2.561h-4.319V20.564h4.035v1.553l.026-.02.034-.026.088-.066.037-.027.022-.017.015-.012a1.043 1.043 0 0 0 .103-.091c.732-.802 1.66-1.248 2.705-1.457 1.712-.34 3.408-.276 5.028.416 2.398 1.025 3.742 2.848 3.921 5.462.08 1.15.085 2.308.09 3.462v.222c.01 1.85.008 3.701.006 5.552l-.001 2.284v.59H72.68V36.72l.002-1.356c.003-2.221.006-4.442-.013-6.662a11.105 11.105 0 0 0-.239-2.228c-.2-.93-.764-1.626-1.705-2.02Zm18.716 12.575c2.414 1.508 5.041 2.13 7.917 1.936 1.427-.138 2.732-.5 3.879-1.314 1.951-1.382 2.637-3.727 1.744-5.94-.56-1.388-1.546-2.387-2.922-2.923-.936-.365-1.89-.68-2.845-.995a97.164 97.164 0 0 1-1.653-.556l-.112-.04c-.51-.177-1.027-.357-1.49-.624-.716-.412-.82-1.32-.192-1.861.357-.308.84-.526 1.303-.644.946-.241 1.922-.16 2.83.156.81.282 1.596.626 2.383.97h.001a109.793 109.793 0 0 0 .92.398c.11.046.215.105.337.172.062.035.129.072.203.111v-.362l.001-.527c.002-.981.004-1.925-.014-2.868-.003-.137-.165-.325-.301-.396-2.094-1.083-4.32-1.582-6.678-1.41-1.513.11-2.93.536-4.112 1.523-1.615 1.35-2.223 3.071-1.691 5.127.324 1.251 1.074 2.252 2.264 2.757 1.07.454 2.17.84 3.27 1.228.493.174.987.347 1.478.527.167.061.336.119.505.177.447.152.894.305 1.306.522.373.196.75.52.95.883.474.864.037 1.827-.929 2.187-.981.366-1.99.282-2.982.066-1.887-.41-3.642-1.148-5.233-2.257-.144-.1-.293-.195-.516-.344v.257l.001.79v.007c.003.884.006 1.728-.01 2.572-.006.336.109.52.388.695ZM.003 15.081v-1.102h4.232v18.61c0 .188-.006.377.015.563.091.789.565 1.22 1.365 1.232a85.2 85.2 0 0 0 1.528.004l.7-.002v4.015c-.24.003-.481.01-.722.016-1.624.043-3.245.085-4.705-.916-1.56-1.07-2.404-2.544-2.408-4.44-.01-4.302-.008-8.603-.007-12.923v-.088l.002-4.969Zm85.702 23.314h-4.002V20.559h4.002v17.835Zm-.246-21.361c.076.103.133.178.218.279 2.05 1.692 4.7 1.583 6.56-.255.79-.78 1.575-1.567 2.36-2.352.408-.41.817-.82 1.227-1.229a7.098 7.098 0 0 1 .208-.2l.09-.084.26-.246 1.127 1.26v-3.893h-3.892l-.099.14 1.295 1.063a5.75 5.75 0 0 0-.037.05l-.036.048c-.076.103-.113.156-.158.202l-1.16 1.163c-.997 1.003-1.994 2.006-3.01 2.99-.952.923-2.126 1.348-3.452 1.282a8.2 8.2 0 0 1-1.005-.135 19.996 19.996 0 0 0-.496-.083Zm34.735-3.291h.331l1.098 1.589 1.114-1.59h.331v3.036h-.331V14.36c-.414.583-1.114 1.594-1.114 1.594l-1.098-1.594v2.416h-.329l-.002-3.034Zm-.629.342v-.342l-2.377-.004v.345l.993.007v2.695h.377v-2.694l1.007-.007Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3i892h\",\"data-framer-name\":\"logo-shiprocket\",layoutDependency:layoutDependency,layoutId:\"EW9uyUY0K\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ustq2b\",\"data-framer-name\":\"logo-shiprocket\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:152,layoutDependency:layoutDependency,layoutId:\"k0M2mQfnl\",svg:'<svg width=\"152\" height=\"48\" viewBox=\"0 0 152 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:luminosity\">\\n<path d=\"M12.3864 27.7637C11.8812 28.0891 11.3545 27.7083 11.3545 27.2274V20.6758C11.3545 20.1949 11.8812 19.8142 12.3864 20.1395L17.9817 23.3841C18.4159 23.6359 18.4159 24.267 17.9817 24.5191L12.3864 27.7637Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.5753 21.8396L6.45109 11.323C3.55656 9.7266 0 11.7359 0 15.1057V32.8851C0 35.9634 2.96751 37.9065 5.68788 37.0003C5.85685 36.9431 5.96917 36.7858 5.96917 36.6069V34.696C5.96917 34.3779 5.62751 34.1795 5.3534 34.3385C3.98357 35.2235 2.55312 34.1884 2.55312 32.8851V15.1057C2.55312 13.8024 3.98357 12.7693 5.3534 13.6523C6.03126 14.0456 6.44936 14.7732 6.44936 15.5614V36.6732L6.45109 36.6712C6.47781 40.1036 10.2053 42.1092 13.1248 40.2842L28.26 31.5051C30.879 29.9856 31.1137 26.3855 28.9646 24.4924C28.9475 24.4773 28.9295 24.464 28.9104 24.4521C28.8936 24.4417 28.8763 24.4326 28.8585 24.4249C28.8117 24.4046 28.762 24.3932 28.7115 24.3912C28.6351 24.388 28.5574 24.4061 28.4879 24.4459L26.835 25.4058C26.5609 25.5649 26.5609 25.9617 26.835 26.1208L26.9827 26.2066C28.1623 26.8894 28.1623 28.6002 26.9827 29.2832L11.8047 38.0871C10.4347 38.972 9.00422 37.9369 9.00422 36.6339C9.00422 35.74 9.47922 34.9142 10.2496 34.4672L28.2919 24.0026C31.1405 22.3186 31.1315 18.1606 28.2618 16.4963L13.1266 7.71577C10.4507 6.04436 7.10051 7.58687 6.53471 10.4972C6.50107 10.6707 6.58098 10.8476 6.73411 10.9351L8.39043 11.895C8.66454 12.0541 9.00595 11.8557 9.00595 11.5375V11.3658C9.00595 10.0628 10.4364 9.02944 11.8065 9.91264L26.9845 18.7165C28.164 19.3995 28.164 21.1103 26.9845 21.7931L26.906 21.8396C26.1856 22.2579 25.296 22.2579 24.5753 21.8396ZM20.5348 25.5345L11.616 30.7077C10.3085 31.3819 9.00793 30.3844 9.00793 29.1437V18.8488C9.00793 17.6816 10.239 16.4857 11.8082 17.3956L20.5348 22.4581C21.7144 23.1409 21.7144 24.8499 20.5348 25.5345Z\" fill=\"white\"/>\\n<path d=\"M44.7438 17.2704L42.4113 18.6593C41.9754 17.8996 41.5593 17.4026 41.1642 17.172C40.7533 16.9075 40.2231 16.7752 39.572 16.7752C38.7731 16.7752 38.1111 17.0023 37.5846 17.4562C37.0579 17.9033 36.7947 18.4644 36.7947 19.142C36.7947 20.0769 37.4849 20.8277 38.8674 21.398L40.7674 22.179C42.3136 22.8067 43.4452 23.5736 44.1604 24.4798C44.8756 25.3843 45.2331 26.4943 45.2331 27.8083C45.2331 29.5692 44.6495 31.0242 43.4806 32.1718C42.3047 33.3284 40.8441 33.9076 39.1004 33.9076C37.4476 33.9076 36.0812 33.416 35.003 32.4328C33.9427 31.4497 33.2789 30.0643 33.0157 28.2803L35.9283 27.6348C36.0599 28.7593 36.2893 29.5368 36.6185 29.9661C37.2111 30.7919 38.0737 31.2065 39.209 31.2065C40.1056 31.2065 40.8493 30.9044 41.4418 30.302C42.0343 29.6996 42.3297 28.9344 42.3297 28.0084C42.3297 27.6368 42.278 27.2952 42.1748 26.9859C42.1565 26.9305 42.1362 26.8758 42.1139 26.8219C42.1023 26.7937 42.0902 26.7657 42.0776 26.738C42.064 26.7078 42.0496 26.6777 42.0348 26.6477C41.9435 26.4656 41.8302 26.2927 41.6944 26.1297C41.5751 25.9874 41.4373 25.8506 41.2807 25.7188C41.1501 25.6087 41.0064 25.502 40.8493 25.3986C40.5041 25.1715 40.0932 24.9553 39.6145 24.748L37.7766 23.9793C35.1686 22.871 33.8643 21.2513 33.8643 19.1187C33.8643 17.6796 34.4105 16.4785 35.5048 15.5115C36.599 14.5352 37.9599 14.0491 39.5898 14.0491C41.7958 14.0474 43.511 15.1216 44.7438 17.2704Z\" fill=\"white\"/>\\n<path d=\"M50.9514 12.6209H48.1742V33.5627H50.9514V27.7227C50.9514 26.2336 51.1454 25.1841 51.5313 24.5728C51.9264 23.9704 52.6077 23.6683 53.5793 23.6683C54.3353 23.6683 54.885 23.8846 55.2267 24.319C55.5683 24.7534 55.739 25.454 55.739 26.4211V33.5627H58.5163V26.1601C58.5163 24.4746 58.1694 23.2465 57.4792 22.4776C56.6643 21.5929 55.579 21.1513 54.2215 21.1513C53.0276 21.1513 51.9388 21.5981 50.9514 22.4902V12.6209Z\" fill=\"white\"/>\\n<path d=\"M61.612 16.4642C61.612 15.9761 61.7881 15.5543 62.1421 15.2002C62.4961 14.8445 62.9197 14.6676 63.4125 14.6676C63.9142 14.6676 64.3412 14.8445 64.6952 15.2002C65.0493 15.5471 65.2254 15.9726 65.2254 16.4765C65.2254 16.9807 65.0493 17.4115 64.6952 17.7655C64.3501 18.1212 63.9266 18.2981 63.4249 18.2981C63.2094 18.2981 63.0073 18.2655 62.819 18.1999C62.5689 18.1131 62.343 17.9683 62.1421 17.7655C61.7898 17.4115 61.612 16.9773 61.612 16.4642Z\" fill=\"white\"/>\\n<path d=\"M64.8073 21.4856V33.5607H62.0301V21.4856H64.8073Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.3248 40.134H71.1021L71.1038 32.2094C72.2141 33.341 73.4719 33.9078 74.8793 33.9078C76.5089 33.9078 77.8574 33.3071 78.9267 32.1095C80.0048 30.9027 80.5439 29.3958 80.5439 27.5849C80.5439 25.7329 79.9996 24.201 78.9143 22.9855C77.8451 21.7627 76.4822 21.1513 74.8293 21.1513C73.438 21.1513 72.1963 21.7001 71.1021 22.7995V21.4856H68.3248V40.134ZM76.7652 24.773C77.3896 25.5006 77.7026 26.4426 77.7026 27.5992C77.7026 28.6897 77.3824 29.5997 76.7402 30.3253C76.1138 31.0529 75.3204 31.4158 74.3578 31.4158C73.3385 31.4158 72.5147 31.0566 71.8903 30.3379C71.2569 29.6031 70.9403 28.6699 70.9403 27.5366C70.9403 26.3801 71.2569 25.4469 71.8903 24.7356C72.5236 24.0258 73.3509 23.6701 74.3704 23.6701C75.3328 23.6701 76.1316 24.0382 76.7652 24.773Z\" fill=\"white\"/>\\n<path d=\"M83.4778 21.4856H86.2551V22.5635C86.7657 22.0254 87.2177 21.659 87.6125 21.4606C88.0145 21.2533 88.4932 21.1513 89.0447 21.1513C89.776 21.1513 90.5409 21.3908 91.3398 21.87L90.0696 24.4244C89.5429 24.0436 89.0289 23.8541 88.5271 23.8541C87.0131 23.8541 86.2568 25.0035 86.2568 27.3006V33.561H83.4795L83.4778 21.4856Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.003 22.9855C92.7613 24.2082 92.1404 25.6918 92.1404 27.4367C92.1404 29.2884 92.7489 30.8258 93.9659 32.0486C95.1826 33.2873 96.6914 33.9078 98.4937 33.9078C100.312 33.9078 101.846 33.3 103.096 32.0843C104.338 30.8616 104.959 29.3458 104.959 27.5349C104.959 25.742 104.344 24.2297 103.109 22.9979C101.858 21.7681 100.337 21.1513 98.5434 21.1513C96.759 21.1513 95.2449 21.7627 94.003 22.9855ZM95.9406 30.3503C95.2984 29.6479 94.978 28.6932 94.978 27.4867C94.978 26.3622 95.3073 25.4451 95.9639 24.7336C96.6219 24.0241 97.4831 23.6683 98.5434 23.6683C99.6199 23.6683 100.488 24.0221 101.146 24.7336C101.796 25.4362 102.121 26.3729 102.121 27.5475C102.121 28.7202 101.796 29.6585 101.146 30.3611C100.497 31.0655 99.6288 31.4158 98.5434 31.4158C97.467 31.4158 96.5989 31.0618 95.9406 30.3503Z\" fill=\"white\"/>\\n<path d=\"M117.252 22.0076V25.715C116.618 24.9375 116.05 24.4048 115.549 24.1151C115.056 23.8185 114.476 23.6683 113.809 23.6683C112.765 23.6683 111.896 24.0367 111.206 24.7712C110.516 25.5077 110.169 26.4283 110.169 27.5366C110.169 28.6702 110.501 29.5997 111.169 30.3273C111.843 31.0548 112.702 31.4175 113.748 31.4175C114.415 31.4175 115.003 31.2728 115.513 30.9833C116.006 30.7026 116.586 30.1573 117.253 29.3458V33.0283C116.125 33.6146 114.999 33.9078 113.873 33.9078C112.014 33.9078 110.459 33.3054 109.208 32.0969C107.957 30.8814 107.333 29.3743 107.333 27.5708C107.333 25.7687 107.966 24.2475 109.233 23.0088C110.5 21.7681 112.054 21.1496 113.898 21.1496C115.079 21.1513 116.198 21.4373 117.252 22.0076Z\" fill=\"white\"/>\\n<path d=\"M123.372 25.3915V12.6209H120.596V33.5627H123.374V28.9131L123.818 28.4663L127.791 33.5627H131.394L125.791 26.5572L131.011 21.4856H127.284L123.372 25.3915Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M143.72 28.1821H135.107C135.182 29.1741 135.502 29.9623 136.07 30.5506C136.637 31.1298 137.365 31.4175 138.254 31.4175C138.945 31.4175 139.518 31.253 139.969 30.9225C140.414 30.5917 140.92 29.9804 141.487 29.0883L143.832 30.4022C143.469 31.0224 143.087 31.5533 142.685 31.9949C142.584 32.1053 142.481 32.2107 142.377 32.3114C142.064 32.6137 141.735 32.8722 141.389 33.0855C140.929 33.3715 140.43 33.5788 139.897 33.7111C139.74 33.7497 139.58 33.7826 139.416 33.8098C139.019 33.8761 138.599 33.9095 138.156 33.9095C136.363 33.9095 134.924 33.3304 133.838 32.1738C132.753 31.0081 132.209 29.4619 132.209 27.5366C132.209 25.6275 132.736 24.0812 133.789 22.8997C134.849 21.7342 136.256 21.1513 138.009 21.1513C139.777 21.1513 141.176 21.7181 142.204 22.8495C143.224 23.9739 143.734 25.531 143.734 27.5243L143.72 28.1821ZM140.87 25.8991C140.484 24.412 139.55 23.6683 138.069 23.6683C137.731 23.6683 137.415 23.7201 137.119 23.8237C136.824 23.9276 136.554 24.0758 136.312 24.2708C136.169 24.3853 136.039 24.513 135.92 24.6542C135.837 24.7532 135.76 24.8588 135.689 24.9714C135.516 25.245 135.385 25.5542 135.294 25.9011H140.87V25.8991Z\" fill=\"white\"/>\\n<path d=\"M149.84 33.5627V24.0902L152 24.0882V21.4856H149.84V17.0594H147.063V21.4856H145.878V24.0902H147.063V33.5627H149.84Z\" fill=\"white\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ugd0b7\",\"data-framer-name\":\"logo-ipcortex\",layoutDependency:layoutDependency,layoutId:\"nYgaAKn38\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-npskwt\",\"data-framer-name\":\"logo-ipcortex\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"fOniWwNDb\",svg:'<svg width=\"112\" height=\"48\" viewBox=\"0 0 112 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:luminosity\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M49.0028 5.0018C77.0637 5.0018 94.2057 13.664 101.971 21.5408C102.953 22.5372 103.856 23.5931 104.685 24.6733L107.19 20.6518L111.695 22.2024L107.165 28.3048C110.463 33.7092 111.974 38.7293 112 39.0049L106.978 40.6744C106.969 40.6145 106.096 37.1195 103.926 32.7154L103.835 32.8391L100.703 37.7439L100.692 37.7408L100.693 37.7646L89.5771 37.7595C84.7002 37.7595 81.1278 34.2242 81.1278 29.3554C81.1278 24.4869 84.5759 20.9516 89.7945 20.9516C92.9941 20.9516 95.4481 22.4712 97.4674 25.6341L87.1127 32.3016C87.8615 32.967 88.8337 33.3267 89.836 33.3093H98.1205L101.164 29.0556L101.598 28.5522C100.074 26.1454 98.1791 23.7004 95.8573 21.5511C89.0387 15.2302 76.4528 6.56264 48.9872 6.56264C36.0453 6.49392 23.1729 8.45592 10.8411 12.3772C10.949 12.8188 11.0045 13.2715 11.0067 13.7262C11.0116 15.0466 10.5592 16.3283 9.72607 17.3538C8.89296 18.3795 7.73038 19.0864 6.43513 19.3545C7.57305 18.7609 8.47851 17.8035 9.00681 16.6354C9.53492 15.4673 9.65535 14.1561 9.3489 12.9116C9.04226 11.667 8.32629 10.561 7.31557 9.77082C6.30502 8.98041 5.05783 8.55158 3.7741 8.5525C3.53233 8.55305 3.29112 8.56844 3.05155 8.5985C2.91212 8.61609 2.77324 8.63863 2.63509 8.66612C3.95391 7.97357 5.49147 7.82202 6.92067 8.24389C8.34968 8.66575 9.55758 9.62751 10.2871 10.9248C22.8001 6.93027 35.8659 4.93125 49.0028 5.0018ZM86.0151 28.9213C85.9971 28.4034 86.086 27.8871 86.2763 27.405C86.4665 26.9228 86.7543 26.4848 87.1213 26.1183C87.4884 25.7518 87.9271 25.4646 88.4103 25.2748C88.8933 25.0847 89.4102 24.996 89.9292 25.014C90.5646 25.0268 91.1855 25.2049 91.7308 25.5308L86.0358 29.1901L86.0151 28.9213Z\" fill=\"white\"/>\\n<path d=\"M6.97622 16.4635C7.39561 15.8386 7.62001 15.1036 7.62092 14.3514C7.62092 13.3422 7.21963 12.3741 6.50512 11.6599C5.7908 10.9457 4.82155 10.5436 3.81046 10.5424C3.05703 10.5424 2.3206 10.7654 1.69399 11.183C1.06756 11.6009 0.579099 12.1946 0.290555 12.8894C0.00201115 13.5841 -0.0738253 14.3487 0.0729136 15.0865C0.21947 15.8243 0.58184 16.502 1.11416 17.0344C1.64666 17.5666 2.32516 17.9293 3.06398 18.0766C3.80279 18.2239 4.56883 18.1494 5.26506 17.8622C5.96148 17.575 6.55702 17.0883 6.97622 16.4635Z\" fill=\"white\"/>\\n<path d=\"M70.8148 21.6027H72.4921V18.3465L77.2139 16.4549V21.6234H80.1339V25.7582H77.2139V30.4717C77.2139 32.4564 78.0216 33.0559 80.3514 33.0559C80.4553 33.0559 80.5783 33.0487 80.7066 33.0414C80.8466 33.0333 80.9929 33.0249 81.128 33.0249L79.7611 37.7386H79.3468C74.7184 37.7386 72.4819 35.6712 72.4819 31.4433V25.7582H69.4428L69.4463 25.7478H69.3132C67.1699 25.7478 66.1447 27.2259 66.1447 29.3347V37.0253L61.4231 37.6145V21.6647L65.6789 21.1479V24.0319C66.3932 22.0471 67.8844 21.582 70.0899 21.582C70.3314 21.578 70.573 21.5859 70.8139 21.6057L70.8148 21.6027Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.8907 29.3554C59.8907 24.4869 56.3183 20.9516 51.2239 20.9516C46.0985 20.9516 42.5261 24.5179 42.5261 29.3554C42.5261 29.5383 42.5313 29.7194 42.5415 29.8986L39.544 32.0842H39.487C39.3629 32.1722 39.2387 32.2651 39.1195 32.3633L39.0951 32.3815L39.068 32.4014L39.0344 32.4256L39.0086 32.4438L38.9735 32.468C38.9121 32.5097 38.8495 32.5497 38.7857 32.5878C38.6402 32.6747 38.4889 32.7516 38.3327 32.8182C37.7231 33.0764 37.0688 33.2133 36.4066 33.2213C35.8856 33.2432 35.3657 33.1557 34.8806 32.9646C34.3954 32.7736 33.9557 32.4832 33.5899 32.1122C33.4296 31.9497 33.2851 31.773 33.1577 31.585C33.0802 31.4706 33.0091 31.3521 32.9448 31.2298C32.9026 31.1492 32.8631 31.0671 32.8268 30.9834C32.8019 30.9264 32.7785 30.8686 32.7566 30.8104C32.5729 30.3231 32.4936 29.8028 32.5236 29.2831C32.5236 26.647 34.2322 24.9416 36.5619 24.9416C37.6655 24.9343 38.7309 25.3442 39.544 26.0888L41.8738 22.8328C40.3622 21.5221 38.4074 20.8349 36.4066 20.9102C31.188 20.9102 27.7088 24.4143 27.7088 29.314C27.7088 34.2137 31.2812 37.7179 36.1581 37.7179C38.1878 37.7736 40.173 37.119 41.7703 35.8676H41.8014L43.9267 34.1283C45.4288 36.3613 48.0341 37.7595 51.2239 37.7595C56.3183 37.7595 59.8907 34.2242 59.8907 29.3554ZM55.0759 29.3245C55.0759 31.5262 53.5226 33.0767 51.2239 33.0767C48.9253 33.0767 47.3409 31.5262 47.3409 29.3245C47.3409 28.3006 47.7484 27.3185 48.4737 26.5944C49.199 25.8704 50.1827 25.4637 51.2084 25.4637C52.2341 25.4637 53.2178 25.8704 53.9431 26.5944C54.6684 27.3185 55.0759 28.3006 55.0759 29.3245Z\" fill=\"white\"/>\\n<path d=\"M6.15043 20.9619L1.39777 21.4787V37.6042L6.15043 37.0874V20.9619Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.28805 43V21.4477L13.6992 21.0136V23.2774C14.2415 22.5658 14.9491 21.9966 15.7606 21.6183C16.5724 21.2402 17.4639 21.0647 18.3586 21.1067C23.2356 21.1067 26.4662 24.3627 26.4662 29.2004C26.4662 34.193 23.2045 37.6042 18.2654 37.6042C16.4328 37.6042 15.0348 37.0874 14.0096 35.9917V42.4108L9.28805 43ZM17.8616 33.3559C20.1292 33.3559 21.7446 31.7122 21.7446 29.3245C21.7446 26.9366 20.1602 25.2931 17.8616 25.2931C15.5629 25.2931 13.9788 26.9366 13.9788 29.3245C13.9788 31.7122 15.5629 33.3559 17.8616 33.3559Z\" fill=\"white\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nbjdzw\",\"data-framer-name\":\"logo-cookr\",layoutDependency:layoutDependency,layoutId:\"nfUcS3ADx\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sk3cuo\",\"data-framer-name\":\"Logo-cookr\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:98,layoutDependency:layoutDependency,layoutId:\"HQYZCOLnU\",svg:'<svg width=\"98\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g style=\"mix-blend-mode:luminosity\" fill=\"#fff\"><path d=\"M24.968 7.258c2.822 1.482 4.245 3.946 4.245 7.151.025 1.577-.925 2.702-2.326 2.92-1.47.239-2.868-.72-3.224-2.177-.426-1.625-1.468-2.558-2.94-3.157-2.228-.885-4.552-1.1-6.875-1.292a830.767 830.767 0 0 0-2.942-.24c-.51-.04-1.037-.08-1.586-.12a14.723 14.723 0 0 1 5.738-3.515c3.343-1.077 6.71-1.27 9.91.43Zm54.653 8.059a2.49 2.49 0 0 0-1.684.692l-6.923 6.004 1.35-10.882a2.1 2.1 0 0 0-.425-1.625 1.893 1.893 0 0 0-1.541-.67c-.617 0-1.21.214-1.636.644-.45.407-.735.981-.807 1.58l-2.418 19.636a2.1 2.1 0 0 0 .426 1.625c.379.455.948.693 1.541.67.617 0 1.21-.215 1.637-.645.45-.407.734-.98.807-1.58l.403-3.205 1.375-1.147 4.696 5.788c.378.503.948.79 1.566.766.569-.023 1.09-.24 1.54-.599.523-.359.878-.933.949-1.58.07-.598-.095-1.22-.499-1.673l-4.553-5.788 5.026-4.21c.617-.502.973-1.05 1.043-1.65a1.908 1.908 0 0 0-.45-1.41 1.711 1.711 0 0 0-1.423-.741Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.01 15.03a8.2 8.2 0 0 1 4.363 1.173c1.256.764 2.227 1.914 2.82 3.231.638 1.362.853 2.965.615 4.76-.378 3.371-2.37 6.36-5.357 7.94a9.74 9.74 0 0 1-4.623 1.147c-1.541.048-3.035-.36-4.363-1.148a7.28 7.28 0 0 1-2.821-3.228c-.64-1.362-.83-2.964-.616-4.76.19-1.698.806-3.326 1.778-4.736a10.281 10.281 0 0 1 3.581-3.206c1.424-.79 3.012-1.172 4.624-1.172Zm2.467 11.745c.498-.79.829-1.699.924-2.632a5.265 5.265 0 0 0-.263-2.654 3.663 3.663 0 0 0-1.375-1.721 3.614 3.614 0 0 0-2.135-.622c-.805 0-1.612.215-2.323.622a5.648 5.648 0 0 0-1.85 1.746 6.084 6.084 0 0 0-.947 2.68c-.14.885-.045 1.77.286 2.606a3.67 3.67 0 0 0 1.376 1.721 3.61 3.61 0 0 0 2.135.622c.804 0 1.611-.215 2.323-.622a5.65 5.65 0 0 0 1.849-1.746ZM57.05 15.03a8.2 8.2 0 0 1 4.363 1.173 7.525 7.525 0 0 1 2.844 3.253c.64 1.363.829 2.965.616 4.76a10.4 10.4 0 0 1-1.779 4.737 10.28 10.28 0 0 1-3.58 3.205 9.74 9.74 0 0 1-4.624 1.148c-1.541.048-3.035-.36-4.363-1.148a7.389 7.389 0 0 1-2.844-3.253c-.64-1.362-.83-2.964-.616-4.76a10.668 10.668 0 0 1 1.779-4.736 10.28 10.28 0 0 1 3.58-3.206 9.496 9.496 0 0 1 4.624-1.172Zm2.443 11.745a6.12 6.12 0 0 0 .924-2.632c.14-.91.048-1.817-.262-2.654a3.662 3.662 0 0 0-1.376-1.721 3.613 3.613 0 0 0-2.134-.622c-.805 0-1.612.215-2.323.622a5.65 5.65 0 0 0-1.85 1.746 6.087 6.087 0 0 0-.947 2.68c-.14.885-.045 1.77.286 2.606a3.66 3.66 0 0 0 1.376 1.721c.616.43 1.375.645 2.134.622.805 0 1.611-.215 2.323-.622a5.658 5.658 0 0 0 1.85-1.746Z\"/><path d=\"M92.924 15.005a2.378 2.378 0 0 1 1.754.622c.45.385.664.958.547 1.53-.096.788-.38 1.362-.855 1.721a2.236 2.236 0 0 1-1.423.526 2.95 2.95 0 0 1-1.185-.263 2.157 2.157 0 0 0-.947-.192 2.64 2.64 0 0 0-1.043.24 3.81 3.81 0 0 0-1.067.766 5.501 5.501 0 0 0-.902 1.34 5.946 5.946 0 0 0-.522 1.89l-.925 7.535a2.549 2.549 0 0 1-.806 1.58c-.451.43-1.02.644-1.636.644a1.892 1.892 0 0 1-1.541-.67 2.103 2.103 0 0 1-.427-1.625l1.636-13.106a2.55 2.55 0 0 1 .807-1.58c.427-.43 1.02-.644 1.637-.644.995-.049 1.872.717 1.967 1.72a.968.968 0 0 0 .07-.076c.04-.044.075-.084.12-.115.053-.049.108-.096.162-.143l.037-.031.042-.035a6.594 6.594 0 0 1 .322-.253c.281-.21.574-.396.883-.567a6.789 6.789 0 0 1 1.636-.622 7.56 7.56 0 0 1 1.66-.192ZM23.144 25.65c-1.21-.07-2.087.455-2.584 1.58-.499 1.124-1.376 1.58-2.56 1.506a8.753 8.753 0 0 1-2.61-.55c-1.426-.518-2.787-1.2-4.15-1.883a83.127 83.127 0 0 0-1.966-.964c-1.493-.693-2.964-1.435-4.48-2.176-.095 2.654 1.255 6.792 3.842 9.09 3.768 3.397 9.982 3.85 14.177.98a7.504 7.504 0 0 0 3.083-4.496c.117-.36.142-.766.047-1.125-.333-1.03-1.542-1.888-2.8-1.962ZM2.855 13.261c3.628 1.555 7.28 3.086 10.907 4.593.331.143.665.24 1.02.288a1.252 1.252 0 0 0 1.423-1.1v-.119c.023-.718-.499-1.292-1.518-1.58l-.164-.046h-.002a1907.972 1907.972 0 0 0-11.286-3.159l-.053-.015c-.42-.118-.974-.273-1.157.255-.196.53.222.672.6.8l.076.026.05.017.067.025.037.015Zm11.303 9.4c-.165.574-.664.764-1.303.741-.308-.025-.594-.121-.88-.236-3.372-1.405-6.743-2.83-10.116-4.256l-.007-.003-.902-.382a.733.733 0 0 1-.237-.096 6.437 6.437 0 0 0-.136-.079c-.328-.187-.676-.386-.551-.805.168-.526.689-.455 1.115-.31 2.647.813 5.293 1.65 7.94 2.487l.045.014c1.298.41 2.596.821 3.895 1.229.235.07.448.19.639.334.451.333.664.788.498 1.362ZM94.567 9.934V9.44h-2.196v.494h.839v2.182h.52V9.934h.837Zm3.324 2.182V9.44h-.702l-.78 1.933-.797-1.933h-.68v2.676h.493v-1.86l.764 1.86h.43l.764-1.876v1.876h.508ZM29.76 41.89h1.008v-2.019h1.994v-.929H30.76v-1.28h2.249v-.958h-3.25v5.187Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M37 40.09c0-1.11-.805-1.908-1.871-1.908-1.067 0-1.871.804-1.871 1.909S34.062 42 35.128 42C36.196 42 37 41.203 37 40.09Zm-.965 0c0 .681-.435 1.025-.906 1.025-.471 0-.907-.344-.907-1.024s.435-1.024.907-1.024c.471 0 .907.344.907 1.024Zm5.2 0c0-1.11-.805-1.908-1.871-1.908-1.066 0-1.87.804-1.87 1.909S38.297 42 39.363 42c1.065 0 1.87-.797 1.87-1.91Zm-.965 0c0 .681-.435 1.025-.906 1.025-.472 0-.907-.344-.907-1.024s.436-1.024.907-1.024c.47 0 .906.344.906 1.024Zm5.127 1.149v-4.645h-.95v2.055c-.1-.19-.392-.446-1.008-.446-1.008 0-1.711.79-1.711 1.88 0 1.09.725 1.895 1.74 1.895.479 0 .842-.22 1.001-.505 0 .168.022.344.036.417h.921a7.406 7.406 0 0 1-.03-.651Zm-1.813-.131c-.508 0-.885-.38-.885-1.024s.392-1.01.885-1.01.877.35.877 1.002-.37 1.032-.877 1.032Z\"/><path d=\"M49.388 37.896c0-.402.283-.497.501-.497.16 0 .254.021.304.036v-.82a1.39 1.39 0 0 0-.478-.072c-.79 0-1.298.526-1.298 1.339v.41h-.595v.833h.595v2.766h.971v-2.766h.805v-.834h-.805v-.395Zm3.607 1.361v-.98a2.012 2.012 0 0 0-.224-.015c-.305 0-.798.087-1.016.563v-.534h-.935v3.6h.965v-1.646c0-.776.428-1.017.92-1.017.087 0 .182.007.29.029Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.112 40.09c0-1.11-.804-1.908-1.87-1.908s-1.871.804-1.871 1.909S54.176 42 55.241 42c1.067 0 1.871-.797 1.871-1.91Zm-.963 0c0 .681-.436 1.025-.907 1.025-.471 0-.906-.344-.906-1.024s.434-1.024.906-1.024c.471 0 .907.344.907 1.024Z\"/><path d=\"M57.874 41.89h.965v-2.106c0-.396.232-.71.667-.71.434 0 .63.292.63.68v2.137h.958v-2.107c0-.388.247-.71.66-.71.442 0 .63.292.63.68v2.137h.936v-2.334c0-.965-.63-1.368-1.29-1.368-.472 0-.85.16-1.132.6-.18-.388-.572-.6-1.059-.6-.391 0-.848.19-1.044.541v-.439h-.92v3.6Zm9.179 0v-2.113c.022-.395.261-.702.668-.702.463 0 .66.314.66.716v2.1h.964v-2.268c0-.79-.42-1.426-1.327-1.426-.34 0-.732.117-.965.395v-1.998h-.964v5.297h.965Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M73.798 40.09c0-1.11-.805-1.908-1.87-1.908-1.067 0-1.872.804-1.872 1.909S70.862 42 71.927 42c1.066 0 1.87-.797 1.87-1.91Zm-.965 0c0 .681-.435 1.025-.906 1.025-.471 0-.907-.344-.907-1.024s.436-1.024.907-1.024c.471 0 .906.344.906 1.024Z\"/><path d=\"M74.56 41.89h.963v-2.106c0-.396.233-.71.668-.71.435 0 .631.292.631.68v2.137h.957v-2.107c0-.388.247-.71.66-.71.442 0 .631.292.631.68v2.137h.936v-2.334c0-.965-.631-1.368-1.291-1.368-.472 0-.849.16-1.132.6-.181-.388-.573-.6-1.06-.6-.39 0-.847.19-1.042.541v-.439h-.922v3.6Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m84.181 40.859-.805-.241c-.116.322-.363.549-.812.549-.479 0-.878-.344-.9-.82h2.553l.002-.032c.004-.054.013-.163.013-.268 0-1.155-.66-1.865-1.763-1.865-.913 0-1.755.745-1.755 1.894 0 1.214.863 1.924 1.842 1.924.877 0 1.444-.519 1.625-1.141Zm-1.697-1.888c.551 0 .783.352.797.71h-1.595a.775.775 0 0 1 .798-.71Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l7dgrh\",\"data-framer-name\":\"logo-zupee\",layoutDependency:layoutDependency,layoutId:\"fNtl3Q66p\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yvmoye\",\"data-framer-name\":\"logo-zupee\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:111,layoutDependency:layoutDependency,layoutId:\"h7vluF1o3\",svg:'<svg width=\"111\" height=\"48\" viewBox=\"0 0 111 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:luminosity\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.8105 8.20126C18.1384 7.39623 18.5168 6.11321 18.6934 5.35849L18.9961 4H21.3423L21.7459 5.68553C21.973 6.64151 22.4018 7.92453 22.6793 8.57862L23.1839 9.78616L27.9266 9.83648L32.6693 9.91195L32.8964 13.2579L33.0982 16.6289L30.9034 18.8679L31.5341 19.3459C32.8964 20.4025 37.1345 22.1635 39.6825 22.717C40.288 22.8679 40.3636 22.9937 40.3636 23.9748V25.0566L38.6734 25.5094C35.0911 26.4654 30.6764 28.7547 29.0114 30.5409L28.4311 31.1698H33.0477L33.0225 32.478C32.9973 33.2075 32.9216 34.7673 32.8459 35.8994L32.6693 38.0126L28.1284 37.9874C25.6309 37.9623 23.4614 38.0377 23.2848 38.1635C22.9568 38.3648 21.8468 41.5598 21.5693 43.044C21.3927 43.9748 21.3675 44 20.207 44H19.0466L18.6934 42.5409C18.5168 41.761 18.088 40.4025 17.7348 39.5472L17.1041 37.9623H7.64386L7.46727 36.0252C7.39159 34.9686 7.31591 33.4843 7.31591 32.7044C7.31591 31.3962 7.39159 31.2453 8.40068 30.2138L9.46023 29.1321L8.82955 28.6289C7.46727 27.5723 3.30477 25.8616 0.706364 25.283C0.0756818 25.1321 0 25.0314 0 24C0 23.4483 0 23.1716 0.134314 22.9985C0.269479 22.8243 0.540666 22.7552 1.08476 22.6164C4.43999 21.761 8.07273 20.0503 10.4693 18.1635L11.983 16.956L7.31591 16.805L7.34114 14.8679C7.36636 13.8113 7.44205 12.2516 7.54295 11.4214L7.69432 9.91195L17.2555 9.66038L17.8105 8.20126ZM23.2343 12.956C22.0739 11.044 21.3675 9.53459 20.7873 7.74843C20.5602 6.99371 20.2827 6.31447 20.207 6.21384C20.1314 6.13837 19.8034 6.86793 19.4755 7.84906C17.1293 15.2201 10.3936 21.6604 3.02727 23.6226L1.89205 23.9245L4.26341 24.7799C5.57523 25.2327 7.56818 26.1384 8.65295 26.7925L10.6711 27.9497L24.1677 14.4906L23.2343 12.956ZM35.8732 23.1447C34.7632 22.7673 32.9468 21.9119 31.8368 21.283C30.7016 20.6289 29.7682 20.1006 29.7177 20.1006C29.6673 20.1006 26.6148 23.1195 22.9064 26.8176L16.1707 33.5598L17.1798 35.1447C18.1889 36.7296 19.9295 40.8302 19.9295 41.6604C19.9295 42.3648 20.3332 41.7107 20.7873 40.2264C22.3766 35.195 26.0598 30.3899 30.6007 27.4465C32.5936 26.1635 35.4443 24.805 37.0589 24.3774C37.6391 24.2264 38.0932 24.0252 38.0175 23.9497C37.9418 23.8994 36.9832 23.522 35.8732 23.1447Z\" fill=\"white\"/>\\n<path d=\"M49.6977 18.9937C49.6977 18.2642 49.7734 17.5849 49.8743 17.5094C49.95 17.4088 52.4475 17.3333 55.4243 17.3333H60.7977V18.0629C60.7977 18.4654 60.8482 18.9434 60.9239 19.1447C60.9995 19.3208 59.6373 21.1824 57.8966 23.2956C56.1559 25.3836 54.7432 27.1698 54.7432 27.2453C54.7432 27.3208 56.2316 27.3962 58.0227 27.3962H61.3023V30.4151H55.6514C50.9115 30.4151 50.1473 30.4151 49.9348 30.0736C49.894 30.008 49.8735 29.9298 49.8491 29.8365C49.5211 28.6541 49.7986 28.1509 52.8259 24.3774L55.9541 20.478L49.6977 20.327V18.9937Z\" fill=\"white\"/>\\n<path d=\"M62.8664 22.3145L62.8666 22.331C62.9421 27.2705 62.9428 27.3219 63.6484 28.3522C64.5061 29.6855 65.9946 30.4402 68.038 30.6163C70.9896 30.8428 73.1339 29.8616 74.2186 27.8239C74.7484 26.8679 74.7989 26.3396 74.8746 22.0377L74.9755 17.3333H71.1409V21.4843C71.1409 23.9748 71.04 25.8616 70.8634 26.2138C70.0814 27.8994 67.2559 27.6478 66.6252 25.8616C66.4739 25.4088 66.3477 23.3711 66.3477 21.2075V17.3333H62.7655L62.8664 22.3145Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.1955 30.4151V17.3333H80.803C84.2591 17.3333 84.4861 17.3585 85.798 18.0126C86.8575 18.566 87.2864 18.9686 87.7405 19.8491C88.7748 21.8868 88.3711 24.1006 86.7061 25.5597C85.5961 26.5409 84.587 26.8679 82.4932 26.9434L80.8534 27.0189L80.702 30.4151H77.1955ZM84.1582 22.9937C84.7132 22.1635 84.4357 21.2075 83.5023 20.7296C82.5689 20.2516 81.0048 20.2264 80.8282 20.7044C80.7525 20.8805 80.7273 21.6604 80.7777 22.3899L80.7781 22.3966C80.8534 23.7234 80.8548 23.7486 81.7111 23.8239C82.9473 23.9497 83.7041 23.6981 84.1582 22.9937Z\" fill=\"white\"/>\\n<path d=\"M89.5568 22.5184C89.5568 26.8935 89.5567 28.8447 90.5293 29.7149C91.3122 30.4153 92.7253 30.4152 95.2759 30.4151L99.3955 30.4151V27.4214L93.467 27.2704L93.3157 25.4088L98.008 25.2579L98.1593 22.3648H93.3409V20.3522L96.198 20.3522C97.8494 20.3524 98.5749 20.3524 98.8936 19.9934C99.1433 19.7121 99.1433 19.2103 99.1432 18.3153V17.3333H89.5568V22.5184Z\" fill=\"white\"/>\\n<path d=\"M102.574 30.1635C101.313 29.6855 101.161 28.9308 101.161 22.8679V17.3333H110.798L110.495 20.327L104.819 20.478L104.744 21.4088L104.668 22.3648H109.814L109.638 23.2956C109.562 23.8239 109.486 24.5031 109.486 24.805C109.486 25.3585 109.411 25.3836 107.09 25.3836C104.718 25.3836 104.693 25.3836 104.693 25.9874C104.693 27.3711 104.769 27.3962 107.998 27.3962H111L110.697 30.4151H106.938C104.895 30.4151 102.927 30.3145 102.574 30.1635Z\" fill=\"white\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17jtg0v\",\"data-framer-name\":\"logo-emt-madrid\",layoutDependency:layoutDependency,layoutId:\"gf19piN7x\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3ucvhc\",\"data-framer-name\":\"logo-emt-madrid\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:149,layoutDependency:layoutDependency,layoutId:\"CTdjMHFv5\",svg:'<svg width=\"149\" height=\"48\" viewBox=\"0 0 149 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:luminosity\">\\n<path d=\"M128.805 5.0225H134.629V5C135.192 5.00195 135.746 5.13922 136.245 5.40011C136.743 5.66093 137.171 6.03781 137.493 6.49872L148.371 22.0005C148.781 22.5868 149 23.2842 149 23.9987C149 24.7133 148.781 25.4106 148.371 25.997L137.493 41.5013C137.171 41.9622 136.743 42.339 136.245 42.5999C135.746 42.8608 135.192 42.998 134.629 43H128.805C128.645 42.9999 128.488 42.9562 128.352 42.8735C128.215 42.7909 128.104 42.6724 128.03 42.531C127.956 42.3896 127.923 42.2307 127.933 42.0716C127.943 41.9125 127.997 41.7593 128.089 41.6286L139.05 26.0095C139.459 25.4231 139.678 24.7257 139.678 24.0113C139.678 23.2967 139.459 22.5993 139.05 22.013L128.089 6.39383C127.997 6.26314 127.943 6.10995 127.933 5.95085C127.923 5.79174 127.956 5.63288 128.03 5.49146C128.104 5.3501 128.215 5.23161 128.352 5.14892C128.488 5.06623 128.645 5.0225 128.805 5.0225Z\" fill=\"white\"/>\\n<path d=\"M123.819 38.0671C121.76 39.0253 119.515 39.5206 117.243 39.5179C114.972 39.5195 112.729 39.0236 110.671 38.0655C108.613 37.1073 106.791 35.7102 105.333 33.9727C105.227 33.8452 105.16 33.6903 105.139 33.5259C105.118 33.3615 105.144 33.1946 105.215 33.0447C105.285 32.8948 105.397 32.768 105.537 32.6793C105.678 32.5906 105.84 32.5437 106.006 32.5439H128.487C128.653 32.5437 128.816 32.5906 128.956 32.6793C129.096 32.768 129.208 32.8948 129.279 33.0447C129.349 33.1946 129.376 33.3615 129.355 33.5259C129.334 33.6903 129.266 33.8452 129.16 33.9727C127.702 35.7112 125.878 37.1089 123.819 38.0671Z\" fill=\"white\"/>\\n<path d=\"M131.481 17.8565C131.452 17.7909 131.423 17.7267 131.392 17.661C131.364 17.5991 131.334 17.536 131.305 17.4694C130.985 16.7826 130.615 16.1205 130.196 15.4885C128.865 13.4703 127.078 11.7907 124.98 10.5838C122.882 9.37687 120.531 8.67605 118.113 8.53725C115.695 8.39846 113.279 8.82552 111.056 9.78436C108.833 10.7432 106.866 12.2073 105.311 14.0597C105.204 14.1872 105.137 14.3422 105.116 14.5066C105.095 14.6709 105.121 14.8378 105.192 14.9878C105.263 15.1377 105.375 15.2645 105.515 15.3531C105.655 15.4418 105.818 15.4888 105.984 15.4885H117.22C118.598 15.4871 119.956 15.8195 121.177 16.4574C122.398 17.0952 123.445 18.0194 124.229 19.1504C124.322 19.2809 124.377 19.4344 124.388 19.5941C124.399 19.7537 124.366 19.9133 124.293 20.0555C124.219 20.1976 124.107 20.3168 123.97 20.3999C123.833 20.483 123.676 20.5269 123.516 20.5267H99.2355C99.0252 20.5265 98.8219 20.6023 98.6631 20.7401C98.5044 20.8778 98.401 21.0682 98.372 21.2761C98.1088 23.0985 98.1088 24.949 98.372 26.7714C98.4037 26.977 98.5083 27.1644 98.6668 27.2996C98.8252 27.4349 99.027 27.5089 99.2355 27.5083H125.017C126.167 27.5079 127.299 27.2247 128.313 26.6838C129.327 26.1429 130.191 25.3609 130.83 24.4071C131.469 23.4533 131.862 22.357 131.975 21.2152C132.088 20.0735 131.917 18.9216 131.478 17.8615L131.481 17.8565Z\" fill=\"white\"/>\\n<path d=\"M42.2674 8.51201V21.4959H51.4764V19.063H45.0384V16.123H51.3387V13.6901H45.0384V10.9449H51.4764V8.51201H42.2674Z\" fill=\"white\"/>\\n<path d=\"M68.8553 21.4959V12.4037L65.1883 21.4959H63.9768L60.3098 12.4037V21.4959H57.5413V8.51201H61.4236L64.5825 16.3553L67.744 8.51201H71.6438V21.4959H68.8553Z\" fill=\"white\"/>\\n<path d=\"M81.123 10.9449V21.4959H83.9115V10.9449H87.6962V8.51201H77.3208V10.9449H81.123Z\" fill=\"white\"/>\\n<path d=\"M11.0412 39.518V28.0528L6.3028 39.518H5.87227L1.11387 28.0528V39.518H0V26.5341H1.65953L6.08757 37.2425L10.4955 26.5341H12.1726V39.518H11.0412Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.4441 36.3257L28.7331 39.518H30.0198L24.6957 26.5291H23.3089L17.9848 39.518H19.2739L20.558 36.3257H27.4441ZM20.9285 35.3141L23.9923 27.7231L27.0761 35.3141H20.9285Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.8319 39.518V26.5291H39.9871C44.0246 26.5291 46.5602 29.4691 46.5602 33.0236C46.5602 36.6255 44.0246 39.5055 39.9871 39.5055L35.8319 39.518ZM45.3912 33.0361C45.3912 29.9987 43.4413 27.5408 39.9871 27.5408H36.9433V38.5063H39.9871C43.4188 38.5063 45.3912 36.0734 45.3912 33.0361Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.2109 34.1476L60.8579 39.518L62.1921 39.523L58.4374 34.0726C60.3698 33.9853 62.0469 32.7013 62.0469 30.3259C62.0469 27.9504 60.3398 26.5291 58.087 26.5291H53.2285V39.518H54.3423V34.1476H57.2109ZM57.9894 27.5483C59.7065 27.5483 60.878 28.6947 60.878 30.3309V30.3334C60.878 31.9695 59.7065 33.1359 57.9894 33.1359H54.3423V27.5483H57.9894Z\" fill=\"white\"/>\\n<path d=\"M69.8291 26.5341H68.7177V39.518H69.8291V26.5341Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M81.1231 26.5291H76.9679V39.518L81.1231 39.5055C85.1606 39.5055 87.6963 36.6255 87.6963 33.0236C87.6963 29.4691 85.1606 26.5291 81.1231 26.5291ZM81.1231 27.5408C84.5748 27.5408 86.5273 29.9987 86.5273 33.0361C86.5273 36.0734 84.5549 38.5063 81.1231 38.5063H78.0793V27.5408H81.1231Z\" fill=\"white\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})})],speed:REBTle8_G,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jgknE.framer-tqiqsm, .framer-jgknE .framer-tqiqsm { display: block; }\",\".framer-jgknE.framer-ij73l0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1080px; }\",\".framer-jgknE .framer-9pd1ly { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jgknE .framer-1fj1dij { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jgknE .framer-1wwb2yx-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-jgknE .framer-6xi0a7 { height: 48px; overflow: hidden; position: relative; width: 139px; }\",\".framer-jgknE .framer-vcd0vn { aspect-ratio: 2.8958333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-x8pinx { height: 48px; overflow: hidden; position: relative; width: 136px; }\",\".framer-jgknE .framer-1qji3fx { aspect-ratio: 2.8333333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-1v60ria, .framer-jgknE .framer-bfyiog { height: 48px; overflow: hidden; position: relative; width: 118px; }\",\".framer-jgknE .framer-v6xm0e, .framer-jgknE .framer-zohcq9 { aspect-ratio: 2.4583333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-dy5b6z, .framer-jgknE .framer-1fg38ii { height: 48px; overflow: hidden; position: relative; width: 116px; }\",\".framer-jgknE .framer-88400z { aspect-ratio: 2.4166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-1r0huds { height: 48px; overflow: hidden; position: relative; width: 154px; }\",\".framer-jgknE .framer-auzxji { aspect-ratio: 3.2083333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-aiz1eh { height: 48px; overflow: hidden; position: relative; width: 93px; }\",\".framer-jgknE .framer-17rjgsn, .framer-jgknE .framer-3ymswt, .framer-jgknE .framer-1qxqaau, .framer-jgknE .framer-jp1ma3, .framer-jgknE .framer-1lz6uq, .framer-jgknE .framer-sk3cuo { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-jgknE .framer-12mb4h4 { height: 48px; overflow: hidden; position: relative; width: 142px; }\",\".framer-jgknE .framer-oxxwhn { height: 48px; overflow: hidden; position: relative; width: 111px; }\",\".framer-jgknE .framer-10ij02p { height: 48px; overflow: hidden; position: relative; width: 149px; }\",\".framer-jgknE .framer-13vavg4 { height: 48px; overflow: hidden; position: relative; width: 38px; }\",\".framer-jgknE .framer-1u2sssb { aspect-ratio: 0.7916666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-174mv3q { height: 48px; overflow: hidden; position: relative; width: 85px; }\",\".framer-jgknE .framer-thycpo { aspect-ratio: 1.7708333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-il4f96 { height: 48px; overflow: hidden; position: relative; width: 120px; }\",\".framer-jgknE .framer-q2c0gi { aspect-ratio: 2.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-1kowbsm { height: 48px; overflow: hidden; position: relative; width: 124px; }\",\".framer-jgknE .framer-2d554d { aspect-ratio: 2.5833333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-3i892h { gap: 10px; height: 48px; overflow: hidden; position: relative; width: 152px; }\",\".framer-jgknE .framer-1ustq2b { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jgknE .framer-1ugd0b7, .framer-jgknE .framer-1l7dgrh, .framer-jgknE .framer-17jtg0v { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jgknE .framer-npskwt { flex: none; height: 48px; position: relative; width: 112px; }\",\".framer-jgknE .framer-nbjdzw { height: 48px; overflow: hidden; position: relative; width: 98px; }\",\".framer-jgknE .framer-1yvmoye { flex: none; height: 48px; position: relative; width: 111px; }\",\".framer-jgknE .framer-3ucvhc { flex: none; height: 48px; position: relative; width: 149px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jgknE.framer-ij73l0, .framer-jgknE .framer-1fj1dij, .framer-jgknE .framer-1ugd0b7, .framer-jgknE .framer-1l7dgrh, .framer-jgknE .framer-17jtg0v { gap: 0px; } .framer-jgknE.framer-ij73l0 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-jgknE.framer-ij73l0 > :first-child { margin-top: 0px; } .framer-jgknE.framer-ij73l0 > :last-child { margin-bottom: 0px; } .framer-jgknE .framer-1fj1dij > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jgknE .framer-1fj1dij > :first-child, .framer-jgknE .framer-1ugd0b7 > :first-child, .framer-jgknE .framer-1l7dgrh > :first-child, .framer-jgknE .framer-17jtg0v > :first-child { margin-left: 0px; } .framer-jgknE .framer-1fj1dij > :last-child, .framer-jgknE .framer-1ugd0b7 > :last-child, .framer-jgknE .framer-1l7dgrh > :last-child, .framer-jgknE .framer-17jtg0v > :last-child { margin-right: 0px; } .framer-jgknE .framer-1ugd0b7 > *, .framer-jgknE .framer-1l7dgrh > *, .framer-jgknE .framer-17jtg0v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 109\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"qPFuyEioj\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerVariables {\"REBTle8_G\":\"speed\",\"CzSH7CrT6\":\"showTitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerGRJ1J0syA=withCSS(Component,css,\"framer-jgknE\");export default FramerGRJ1J0syA;FramerGRJ1J0syA.displayName=\"UI Elements/customer-carousel\";FramerGRJ1J0syA.defaultProps={height:109,width:1080};addPropertyControls(FramerGRJ1J0syA,{variant:{options:[\"QxrtwIFJy\",\"qPFuyEioj\"],optionTitles:[\"Variant 1\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum},REBTle8_G:{defaultValue:50,displayStepper:true,max:1e3,min:0,step:5,title:\"Speed\",type:ControlType.Number},CzSH7CrT6:{defaultValue:true,title:\"Show title\",type:ControlType.Boolean}});addFonts(FramerGRJ1J0syA,[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v21/zYXGKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1swZSAXcomDVmadSD6llzBaI5loa26g.woff2\",weight:\"400\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGRJ1J0syA\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"109\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"qPFuyEioj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"REBTle8_G\\\":\\\"speed\\\",\\\"CzSH7CrT6\\\":\\\"showTitle\\\"}\",\"framerIntrinsicWidth\":\"1080\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GRJ1J0syA.map"],
  "mappings": "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",
  "names": ["noopReturn", "t", "isFunction", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "r", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "P", "j", "testAnimation", "C", "R", "H", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "n", "dispatchViewEvent", "ae", "o", "s", "__rest", "inView$1", "t", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "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", "showTitle", "speed", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "REBTle8_G", "CzSH7CrT6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramerGRJ1J0syA", "withCSS", "GRJ1J0syA_default", "addPropertyControls", "ControlType", "addFonts"]
}
