{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/7An98C41oI87RydkXVcE/r1mLoukUACdJSP3IiJef/HlAbExhu2.js", "ssg:https://framerusercontent.com/modules/PdtDFokIttSWFV6ZggaP/mNVZ3w11T7YRZxKpJV3n/nDfNSESaW.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (6d7081c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"yTZ21cXi1\",\"nLInJXAl2\"];const serializationHash=\"framer-eprZw\";const variantClassNames={nLInJXAl2:\"framer-v-lvy4ak\",yTZ21cXi1:\"framer-v-1d4jp0m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:.4,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"yTZ21cXi1\",Mobile:\"nLInJXAl2\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"yTZ21cXi1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yTZ21cXi1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1d4jp0m\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"yTZ21cXi1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({nLInJXAl2:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mv1phw\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"rKofTQK_L\",style:{background:'linear-gradient(90deg, var(--token-281b061b-9177-43e7-b864-54bc6bcc149f, rgb(244, 242, 238)) /* {\"name\":\"Background\"} */ 0%, rgba(240, 239, 234, 0.45) 52.28392454954955%, var(--token-281b061b-9177-43e7-b864-54bc6bcc149f, rgb(244, 242, 238)) /* {\"name\":\"Background\"} */ 100%)'}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-11kgn1p-container\",\"data-framer-appear-id\":\"11kgn1p\",layoutDependency:layoutDependency,layoutId:\"BUMI2eY_q-container\",...addPropertyOverrides({nLInJXAl2:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.8,fadeContent:true,fadeInset:100,fadeWidth:16,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"BUMI2eY_q\",layoutId:\"BUMI2eY_q\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Hunziker Logo\",fit:\"fill\",intrinsicHeight:39,intrinsicWidth:178.5,pixelHeight:40,pixelWidth:184,src:\"https://framerusercontent.com/images/SNK229UEP2aJpFvjBSMmsDn4y0.png?lossless=1\"},className:\"framer-1d8yzjm\",\"data-framer-name\":\"Hunziker\",layoutDependency:layoutDependency,layoutId:\"tF9dfKYd3wgi1oQDzF\",style:{filter:\"brightness(0)\",WebkitFilter:\"brightness(0)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Eldora Logo\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:80,pixelHeight:52,pixelWidth:160,src:\"https://framerusercontent.com/images/5cf1BURoxsVqMLH9J8aQq4CrKg.svg\"},className:\"framer-1qt8up\",\"data-framer-name\":\"Eldora\",layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDHG4wbzonR\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-167c2ts\",\"data-framer-name\":\"SBB CFF FFS\",layoutDependency:layoutDependency,layoutId:\"wh3snq9gk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17sycqa\",\"data-framer-name\":\"CFF\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:121,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDKrDA6wXIX\",svg:'<svg width=\"121\" height=\"14\" viewBox=\"0 0 121 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.0004 13.422H0.125V0.833984H38.0004V13.422ZM26.5262 6.18048H22.4044L25.7464 2.83853H23.2956L19.0625 7.07167L23.2956 11.3048H25.7464L22.4044 8.07426H26.5262V11.3048H28.42V8.07426H32.5417L29.1997 11.3048H31.6505L35.8836 7.18307L31.6505 2.94993H29.1997L32.5417 6.18048H28.42V2.94993H26.5262V6.18048Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M41.8994 8.74329C41.8994 10.9713 43.6817 11.8624 45.6869 11.8624C48.1377 11.8624 49.3631 10.6371 49.3631 9.07748C49.3631 7.07231 47.3579 6.62672 46.6895 6.51532C44.4615 5.95833 44.0159 5.84693 44.0159 5.17854C44.0159 4.39875 44.6843 4.17596 45.3527 4.17596C46.2439 4.17596 47.0237 4.39875 47.1351 5.51273H49.0289C49.0289 3.50756 47.3579 2.61638 45.4641 2.61638C43.9045 2.61638 42.1222 3.50756 42.1222 5.28994C42.1222 6.96091 43.4589 7.40651 44.7957 7.8521C46.1325 8.18629 47.4693 8.40909 47.4693 9.30028C47.4693 10.1915 46.4667 10.4143 45.7983 10.4143C44.7957 10.4143 43.7931 9.96867 43.7931 8.74329\" fill=\"#0A0C0C\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M54.2646 4.39875C54.933 4.39875 55.6013 4.62155 55.6013 5.40133C55.6013 6.18112 55.0444 6.40392 54.376 6.40392H52.3708V4.39875H54.2646ZM50.5884 11.751H54.8216C56.3811 11.751 57.9407 10.9713 57.9407 9.18888C57.9407 8.0749 57.3837 7.29511 56.2697 6.96091C57.0495 6.62672 57.4951 5.95833 57.4951 5.06714C57.4951 3.39617 56.3811 2.83917 54.7102 2.83917H50.5884V11.751ZM52.4822 7.7407H54.5988C55.3786 7.7407 56.0469 8.0749 56.0469 8.96608C56.0469 9.85727 55.3786 10.0801 54.5988 10.0801H52.4822\" fill=\"#0A0C0C\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M62.9536 4.39875C63.622 4.39875 64.2904 4.62155 64.2904 5.40133C64.2904 6.18112 63.7334 6.40392 63.065 6.40392H61.0599V4.39875H62.9536ZM59.2775 11.751H63.5106C65.0702 11.751 66.6298 10.9713 66.6298 9.18888C66.6298 8.0749 66.0728 7.29511 64.9588 6.96091C65.7386 6.62672 66.1842 5.95833 66.1842 5.06714C66.1842 3.39617 65.0702 2.83917 63.3992 2.83917H59.2775V11.751ZM61.1713 7.7407H63.2878C64.0676 7.7407 64.736 8.0749 64.736 8.96608C64.736 9.85727 64.0676 10.0801 63.2878 10.0801H61.1713\" fill=\"#0A0C0C\"/>\\n<path d=\"M78.995 5.84693C78.7722 3.84176 77.1012 2.61638 75.2075 2.61638C72.4225 2.61638 70.8629 4.62155 70.8629 7.29511C70.8629 9.85727 72.4225 11.8624 75.2075 11.8624C77.324 11.8624 78.8836 10.4143 79.1064 8.29769H77.2126C77.1012 9.41168 76.4328 10.3029 75.2075 10.3029C73.4251 10.3029 72.7567 8.85469 72.7567 7.29511C72.7567 5.73553 73.4251 4.28735 75.2075 4.28735C76.2101 4.28735 76.9898 4.95574 77.1012 5.84693\" fill=\"#0A0C0C\"/>\\n<path d=\"M80.3318 11.751H82.2256V8.0749H85.9017V6.51532H82.2256V4.51015H86.4587V2.83917H80.2204\" fill=\"#0A0C0C\"/>\\n<path d=\"M87.6841 11.751H89.5779V8.0749H93.254V6.51532H89.5779V4.51015H93.811V2.83917H87.5727\" fill=\"#0A0C0C\"/>\\n<path d=\"M98.0441 11.751H100.049V8.0749H103.725V6.51532H100.049V4.51015H104.282V2.83917H98.0441\" fill=\"#0A0C0C\"/>\\n<path d=\"M105.731 11.751H107.624V8.0749H111.301V6.51532H107.624V4.51015H111.858V2.83917H105.619\" fill=\"#0A0C0C\"/>\\n<path d=\"M112.637 8.74329C112.637 10.9713 114.42 11.8624 116.425 11.8624C118.876 11.8624 120.101 10.6371 120.101 9.07748C120.101 7.07231 118.096 6.62672 117.427 6.51532C115.199 5.95833 114.754 5.84693 114.754 5.17854C114.754 4.39875 115.422 4.17596 116.091 4.17596C116.982 4.17596 117.762 4.39875 117.873 5.51273H119.767C119.767 3.50756 118.096 2.61638 116.202 2.61638C114.642 2.61638 112.86 3.50756 112.86 5.28994C112.86 6.96091 114.197 7.40651 115.534 7.8521C116.87 8.18629 118.096 8.40909 118.096 9.30028C118.096 10.1915 117.093 10.4143 116.425 10.4143C115.422 10.4143 114.42 9.96867 114.42 8.74329\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"CFF Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e2gef5\",\"data-framer-name\":\"EPFL\",layoutDependency:layoutDependency,layoutId:\"g1ZOaDJE1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j0hrwk\",\"data-framer-name\":\"EPFL\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:56,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDPNAXUohFJ\",svg:'<svg width=\"56\" height=\"17\" viewBox=\"0 0 56 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.113281 7.18035H3.54831V3.62479H11.6538V0.671875H0.113281V7.18035Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M0.113281 16.6417H11.6538V13.6888H3.54831V10.1333H0.113281V16.6417Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M10.9607 7.18035L3.54831 7.18035V10.1333H10.9607V7.18035Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M26.0267 2.14833C25.5445 1.66623 24.9419 1.30464 24.3091 1.09372C23.4956 0.792402 22.6218 0.671875 21.7479 0.702007H14.6067V16.6719H18.0417V10.1333H21.7178C22.5916 10.1634 23.4353 10.0127 24.279 9.74155C24.9118 9.5005 25.5144 9.13892 25.9965 8.68694C26.4184 8.2651 26.7498 7.75285 26.9607 7.18035C27.3525 6.03534 27.3525 4.79994 26.9607 3.68506C26.7799 3.08242 26.4485 2.57018 26.0267 2.14833ZM23.6161 6.30653C23.4353 6.54758 23.1943 6.72837 22.9231 6.8489C22.6218 6.96943 22.2903 7.05982 21.9287 7.12009C21.537 7.18035 21.1453 7.18035 20.7536 7.18035H18.0417V3.62479H20.7837C21.1754 3.62479 21.5671 3.65493 21.9589 3.68506C22.2903 3.71519 22.6218 3.80558 22.9532 3.95624C23.2244 4.07677 23.4654 4.25756 23.6161 4.49862C23.7969 4.7698 23.8873 5.07112 23.8873 5.40257C23.8873 5.73402 23.7969 6.03534 23.6161 6.30653Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M46.9683 13.6888V0.671875H43.5031V16.6417H55.0737V13.6888H46.9683Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M29.4617 7.18035H32.8967V3.62479H41.0323V0.671875H29.4617V7.18035Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M32.8967 10.1333H29.4617V16.6417H32.8967V10.1333Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M40.3091 7.18035L32.8967 7.18035V10.1333H40.3091V7.18035Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"EPFL Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v2zpx8\",\"data-framer-name\":\"Incyte\",layoutDependency:layoutDependency,layoutId:\"IqQTTG8yJ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8pjfke\",\"data-framer-name\":\"Incyte\",fill:\"black\",intrinsicHeight:21,intrinsicWidth:31,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDl3AnpFINN\",svg:'<svg width=\"31\" height=\"21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M15.646 11.68c-.535.247-.808.308-1.24.308a1.184 1.184 0 0 1-1.194-1.197c0-.762.558-1.22 1.23-1.22.369 0 .71.065 1.054.247.034.021.063.026.063-.014v-.805a4.291 4.291 0 0 0-1.237-.187c-1.312 0-2.228.85-2.228 1.98 0 1.126.902 1.976 2.266 1.976.653 0 1.163-.144 1.345-.23v-.836c0-.041-.036-.041-.059-.023Zm8.639-1.311c.01-.248.25-.857.863-.857.722 0 .86.633.86.857h-1.723Zm2.557 1.254c-.475.264-.93.396-1.509.396-.811 0-1.073-.564-1.073-.895h2.808v-.254c0-1.184-.712-2.056-1.92-2.056-1.261 0-2.007.85-2.007 1.977 0 1.145.902 1.978 2.145 1.978.852 0 1.407-.232 1.627-.318v-.806c0-.04-.045-.04-.071-.022Zm-21.725 1.02h1.065V7.154H5.117v5.489Z\"/><path d=\"M22.55 11.865c-.35.16-.775.177-.94.055-.11-.081-.16-.224-.16-.423V9.729h1.145v-.747H21.45V7.64c0-.028-.028-.037-.052-.03l-1.054.522a9.26 9.26 0 0 1-2.46 8.705A9.269 9.269 0 0 1 4.778 3.73a9.257 9.257 0 0 1 8.716-2.458l.018-.068A9.752 9.752 0 0 0 4.087 3.73c-3.809 3.809-3.809 9.986 0 13.796 3.81 3.81 9.988 3.81 13.798.001A9.707 9.707 0 0 0 20.58 12.4a.832.832 0 0 0 .107.107c.346.289 1.175.348 1.913.15v-.779c0-.023-.032-.026-.05-.013Z\"/><path d=\"M27.64 3.73c-3.81-3.81-9.987-3.81-13.798 0a9.712 9.712 0 0 0-2.782 5.705c-.24-.405-.697-.627-1.363-.627-.485 0-1.009.275-1.322.558v-.384h-.973v3.66h1.066v-2.457c.164-.178.585-.578 1.021-.578.435 0 .705.302.705.615v2.42h1.088a9.252 9.252 0 0 1 2.56-8.221 9.268 9.268 0 0 1 13.108 0 9.266 9.266 0 0 1-.001 13.106 9.257 9.257 0 0 1-8.715 2.458l-.018.069a9.753 9.753 0 0 0 9.423-2.527 9.755 9.755 0 0 0 0-13.796Z\"/><path d=\"m19.089 8.982-1.007 1.97-.985-1.97h-1.081l1.548 2.984-1.397 2.734h1.061l2.922-5.718h-1.06Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.98 .627)\" d=\"M0 0h29.756v20H0z\"/></clipPath></defs></svg>',title:\"Incyte Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p40en\",\"data-framer-name\":\"H\\xf4pital ophtalmique Jules-Gonin\",layoutDependency:layoutDependency,layoutId:\"IxamPsgh0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jr5ny1\",\"data-framer-name\":\"H\\xf4pital ophtalmique Jules-Gonin\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:121,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDZgihLcyz9\",svg:'<svg width=\"121\" height=\"18\" viewBox=\"0 0 121 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M74.8719 17.148H76.1076V14.8191C76.1076 14.2088 76.3023 13.239 77.1971 13.239C77.9947 13.239 78.0022 14.0253 78.0022 14.6057V17.148H79.2415V14.1526C79.2415 13.078 78.751 12.2805 77.624 12.2805C77.3214 12.2608 77.0188 12.3194 76.7453 12.4506C76.4719 12.5817 76.2368 12.781 76.0626 13.0293V12.389H74.8907L74.8719 17.148ZM72.0525 11.5316H73.2881V10.3372H72.0525V11.5316ZM72.0525 17.148H73.2881V12.389H72.0525V17.148ZM66.1029 17.148H67.3385V14.8191C67.3385 14.2088 67.5332 13.239 68.4281 13.239C69.2256 13.239 69.2331 14.0253 69.2331 14.6057V17.148H70.4724V14.1526C70.4724 13.078 69.9819 12.2805 68.8549 12.2805C68.5523 12.2608 68.2497 12.3194 67.9762 12.4506C67.7028 12.5817 67.4677 12.781 67.2936 13.0293H67.2748V12.389H66.0916L66.1029 17.148ZM61.1642 14.6543C61.1642 13.9392 61.5386 13.239 62.3586 13.239C63.1786 13.239 63.5605 13.9242 63.5605 14.6543C63.5605 15.4481 63.3097 16.2981 62.3586 16.2981C61.4076 16.2981 61.1642 15.4369 61.1642 14.6543ZM59.8724 14.8004C59.8724 15.4607 60.1348 16.0941 60.6017 16.561C61.0687 17.028 61.702 17.2903 62.3624 17.2903C63.0227 17.2903 63.6561 17.028 64.123 16.561C64.59 16.0941 64.8523 15.4607 64.8523 14.8004C64.8523 14.14 64.59 13.5067 64.123 13.0397C63.6561 12.5727 63.0227 12.3104 62.3624 12.3104C61.702 12.3104 61.0687 12.5727 60.6017 13.0397C60.1348 13.5067 59.8724 14.14 59.8724 14.8004ZM58.4571 10.8539C57.8438 10.6707 57.2063 10.5811 56.5662 10.5881C54.3758 10.5881 53.0279 11.8237 53.0279 14.0328C53.0279 16.2419 54.4769 17.2566 56.5662 17.2566C57.2728 17.2376 57.9738 17.1268 58.6518 16.9271V13.4524H56.0308V14.4671H57.4012V16.1483C57.1229 16.2147 56.8374 16.2461 56.5513 16.2419C55.1734 16.2419 54.3609 15.2534 54.3609 13.9392C54.3399 13.624 54.3872 13.3081 54.4993 13.0128C54.6115 12.7176 54.786 12.45 55.0109 12.2283C55.2359 12.0065 55.5059 11.8359 55.8028 11.728C56.0996 11.62 56.4162 11.5773 56.731 11.6028C57.3024 11.6037 57.8677 11.7196 58.3934 11.9435L58.4571 10.8539ZM51.9907 14.1526H49.5607V15.1561H51.9907V14.1526ZM48.4037 12.4527C47.9629 12.3419 47.5104 12.2841 47.0558 12.2805C46.086 12.2805 45.1837 12.7298 45.1837 13.7557C45.1837 15.4743 47.3366 14.8378 47.3366 15.7701C47.3366 16.2344 46.8349 16.3542 46.5204 16.3542C46.0956 16.3466 45.6787 16.2388 45.3035 16.0397L45.2286 17.0544C45.6861 17.1816 46.1579 17.2495 46.6327 17.2566C47.6399 17.2566 48.6284 16.8148 48.6284 15.7065C48.6284 13.9878 46.4754 14.4671 46.4754 13.7108C46.4754 13.3026 46.8723 13.1828 47.2243 13.1828C47.6081 13.1795 47.989 13.2481 48.3476 13.385L48.4037 12.4527ZM43.9106 15.8712C43.4352 16.1675 42.8904 16.3341 42.3305 16.3542C42.1603 16.3723 41.9882 16.3551 41.825 16.3037C41.6618 16.2522 41.5109 16.1675 41.3819 16.0551C41.2529 15.9426 41.1486 15.8047 41.0753 15.65C41.0021 15.4953 40.9616 15.3271 40.9564 15.1561H44.2476C44.2476 13.4899 43.7496 12.2842 42.001 12.2842C40.5033 12.2842 39.7957 13.4075 39.7957 14.7966C39.7957 16.358 40.7093 17.2603 42.2781 17.2603C42.8469 17.2808 43.4111 17.1517 43.9144 16.8859L43.9106 15.8712ZM40.9714 14.3024C41.0275 13.6621 41.3795 13.1791 42.0722 13.1791C42.7649 13.1791 43.0419 13.6958 43.0794 14.3024H40.9714ZM37.2608 17.148H38.5001V10.2174H37.2608V17.148ZM35.6807 12.389H34.4451V14.718C34.4451 15.3283 34.2504 16.2981 33.3518 16.2981C32.558 16.2981 32.5468 15.5118 32.5468 14.9314V12.389H31.3112V15.3845C31.3112 16.4553 31.8017 17.2566 32.9287 17.2566C33.2286 17.2579 33.5249 17.1912 33.7953 17.0615C34.0658 16.9318 34.3033 16.7424 34.49 16.5077H34.5088V17.1555H35.6807V12.389ZM27.0052 17.1368C27.3276 17.2222 27.6603 17.2625 27.9937 17.2566C28.2214 17.2788 28.4512 17.2526 28.668 17.1797C28.8848 17.1068 29.0837 16.9889 29.2517 16.8336C29.4197 16.6784 29.5529 16.4894 29.6426 16.279C29.7323 16.0686 29.7765 15.8416 29.7723 15.6129V10.6966H28.4655V14.9951C28.4655 15.4556 28.4655 16.1183 27.6231 16.1183C27.4119 16.1195 27.2024 16.0814 27.0052 16.006V17.1368ZM120.589 6.83256C120.115 7.12842 119.572 7.29494 119.013 7.31557C118.844 7.33097 118.673 7.31151 118.511 7.25837C118.349 7.20523 118.2 7.11955 118.073 7.00659C117.946 6.89364 117.843 6.75581 117.771 6.6016C117.699 6.44739 117.659 6.28005 117.654 6.10991H120.941C120.941 4.44746 120.443 3.23806 118.695 3.23806C117.216 3.23806 116.486 4.36134 116.486 5.75046C116.486 7.31557 117.399 8.21793 118.972 8.21793C119.54 8.23878 120.103 8.10963 120.604 7.84351L120.589 6.83256ZM117.654 5.26371C117.71 4.62344 118.058 4.14043 118.755 4.14043C119.451 4.14043 119.725 4.65714 119.762 5.26371H117.654ZM115.224 3.35039H113.985V5.67932C113.985 6.28964 113.794 7.2594 112.895 7.2594C112.101 7.2594 112.09 6.47311 112.09 5.89274V3.35039H110.854V6.3458C110.854 7.41666 111.341 8.21793 112.468 8.21793C112.769 8.21869 113.065 8.15176 113.336 8.02212C113.607 7.89247 113.845 7.70345 114.033 7.46908V8.11684H115.205L115.224 3.35039ZM106.945 4.20034C107.739 4.20034 108.069 5.05028 108.069 5.69804C108.069 6.3458 107.799 7.24068 106.979 7.24068C106.159 7.24068 105.931 6.35329 105.931 5.69804C105.931 5.0428 106.155 4.20034 106.96 4.20034M108.084 10.0489H109.323V3.35039H108.14V4.02436H108.121C107.977 3.77145 107.764 3.56386 107.508 3.42495C107.252 3.28604 106.963 3.22132 106.672 3.23806C105.174 3.23806 104.646 4.40253 104.646 5.71676C104.646 7.031 105.182 8.21793 106.672 8.21793C106.934 8.22646 107.194 8.1713 107.43 8.05718C107.666 7.94305 107.871 7.77337 108.027 7.56269L108.084 10.0489ZM102.111 2.48172H103.347V1.30227H102.111V2.48172ZM102.111 8.09812H103.347V3.35039H102.111V8.09812ZM93.5746 8.09812H94.8102V5.79539C94.8102 5.17385 94.9113 4.19659 95.735 4.19659C96.4464 4.19659 96.4464 4.82188 96.4464 5.26745V8.10561H97.6858V5.79539C97.6858 5.17385 97.7869 4.19659 98.6106 4.19659C99.322 4.19659 99.322 4.82188 99.322 5.26745V8.10561H100.558V5.11019C100.558 4.04682 100.224 3.23806 99.0599 3.23806C98.7572 3.22628 98.4572 3.29838 98.1929 3.44638C97.9286 3.59439 97.7103 3.81255 97.5622 4.07677C97.4476 3.80672 97.2503 3.58 96.9987 3.42928C96.747 3.27855 96.454 3.2116 96.1618 3.23806C95.8799 3.23819 95.6024 3.30924 95.3551 3.44468C95.1078 3.58012 94.8985 3.7756 94.7465 4.01312H94.7278V3.35039H93.5746V8.09812ZM90.7738 8.09812H92.0095V1.17871H90.7738V8.09812ZM86.2058 6.72023C86.2058 5.9901 87.0296 5.89649 87.5837 5.89649H88.1229C88.1461 6.24292 88.0554 6.58743 87.8646 6.87749C87.7639 7.01326 87.6322 7.1229 87.4803 7.19717C87.3285 7.27145 87.1611 7.3082 86.9921 7.30433C86.5503 7.30433 86.2058 7.12835 86.2058 6.72023ZM85.5806 4.67211C86.0033 4.34049 86.5224 4.1552 87.0595 4.14417C87.7897 4.14417 88.1341 4.40253 88.1341 5.1701H87.434C86.8872 5.14448 86.3414 5.23906 85.8352 5.44718C85.5784 5.56527 85.3634 5.7583 85.2184 6.00089C85.0733 6.24347 85.0051 6.52426 85.0227 6.80635C85.0227 7.71246 85.8427 8.21793 86.6851 8.21793C86.9803 8.21978 87.2709 8.14524 87.5288 8.00156C87.7866 7.85787 88.0029 7.64993 88.1566 7.39794H88.1828C88.1853 7.63594 88.2028 7.87355 88.2352 8.10935H89.3061C89.2799 7.73492 89.2612 7.40543 89.2499 7.04598C89.2387 6.68653 89.2499 6.33457 89.2499 5.8553V5.24499C89.2499 3.84089 88.6509 3.23806 87.2018 3.23806C86.6307 3.25086 86.0679 3.37818 85.5469 3.61249L85.5806 4.67211ZM81.8662 6.68653C81.8662 7.63008 82.4017 8.22917 83.3639 8.22917C83.672 8.23491 83.9794 8.19837 84.2775 8.12058L84.2401 7.13959C84.0679 7.23241 83.874 7.27764 83.6785 7.27063C83.2067 7.27063 83.0944 6.89621 83.0944 6.48434V4.25276H84.1952V3.35039H83.0944V2.00245L81.8587 2.39934V3.35039H80.9451V4.25276H81.8587L81.8662 6.68653ZM75.5347 8.12058H76.774V5.79539C76.774 5.18508 76.9687 4.21531 77.8636 4.21531C78.6612 4.21531 78.6686 5.00161 78.6686 5.58197V8.12433H79.908V5.12891C79.908 4.05431 79.4175 3.25678 78.2905 3.25678C77.9985 3.24871 77.709 3.31284 77.4477 3.44347C77.1865 3.5741 76.9615 3.7672 76.7928 4.00563H76.774V1.17871H75.5347V8.12058ZM71.9701 4.20034C72.7752 4.20034 72.9961 5.07649 72.9961 5.69804C72.9961 6.31959 72.7639 7.24068 71.9514 7.24068C71.1389 7.24068 70.8581 6.37201 70.8581 5.69804C70.8581 5.02407 71.1726 4.20034 71.9814 4.20034M69.6225 10.0489H70.8618V7.56269C71.0221 7.77907 71.2337 7.95223 71.4774 8.06661C71.7212 8.18098 71.9896 8.23298 72.2585 8.21793C73.7562 8.21793 74.2804 7.01977 74.2804 5.71676C74.2804 4.41376 73.7449 3.23806 72.2847 3.23806C71.9899 3.22165 71.6962 3.28625 71.4355 3.42486C71.1747 3.56346 70.957 3.77079 70.8057 4.02436H70.787V3.35039H69.6113L69.6225 10.0489ZM64.6763 5.61567C64.6763 4.90051 65.0507 4.20034 65.8707 4.20034C66.6907 4.20034 67.0726 4.88179 67.0726 5.61567C67.0726 6.40945 66.8218 7.2594 65.8707 7.2594C64.9197 7.2594 64.6763 6.39822 64.6763 5.61567ZM63.3845 5.76169C63.3845 6.42207 63.6469 7.05539 64.1138 7.52235C64.5808 7.9893 65.2141 8.25163 65.8745 8.25163C66.5348 8.25163 67.1682 7.9893 67.6351 7.52235C68.1021 7.05539 68.3644 6.42207 68.3644 5.76169C68.3644 5.10132 68.1021 4.468 67.6351 4.00104C67.1682 3.53409 66.5348 3.27176 65.8745 3.27176C65.2141 3.27176 64.5808 3.53409 64.1138 4.00104C63.6469 4.468 63.3845 5.10132 63.3845 5.76169ZM58.0265 8.10935H59.2621V1.17871H58.0265V8.10935ZM53.4585 6.73146C53.4585 6.00133 54.2822 5.90772 54.8364 5.90772H55.3718C55.395 6.25415 55.3043 6.59866 55.1135 6.88872C55.0134 7.0242 54.8823 7.13368 54.7311 7.20796C54.58 7.28224 54.4132 7.31914 54.2448 7.31557C53.803 7.31557 53.4585 7.13959 53.4585 6.73146ZM52.8332 4.67211C53.254 4.34632 53.7688 4.1651 54.3009 4.1554C55.0498 4.1554 55.3718 4.41376 55.3718 5.18133H54.6904C54.1424 5.15577 53.5954 5.25034 53.0878 5.45841C52.8321 5.57749 52.6181 5.77085 52.4739 6.01329C52.3296 6.25573 52.2617 6.536 52.279 6.81758C52.279 7.72369 53.099 8.22917 53.9415 8.22917C54.2362 8.23147 54.5265 8.15709 54.7838 8.01333C55.0412 7.86957 55.2567 7.66137 55.4093 7.40917H55.428C55.4339 7.64715 55.4526 7.88463 55.4841 8.12058H56.5737C56.5475 7.74616 56.5288 7.41666 56.5176 7.05721C56.5063 6.69776 56.4988 6.3458 56.4988 5.86653V5.24499C56.4988 3.84089 55.8998 3.23806 54.4507 3.23806C53.8796 3.25086 53.3168 3.37818 52.7958 3.61249L52.8332 4.67211ZM49.1189 6.68653C49.1189 7.63008 49.6543 8.22917 50.6166 8.22917C50.9247 8.23491 51.2321 8.19837 51.5302 8.12058L51.4927 7.13959C51.319 7.23204 51.1241 7.27723 50.9274 7.27063C50.4593 7.27063 50.347 6.89621 50.347 6.48434V4.25276H51.4478V3.35039H50.3657V2.00245L49.1301 2.39934V3.35039H48.2128V4.25276H49.1301L49.1189 6.68653ZM45.8913 2.49295H47.1307V1.30227H45.8913V2.49295ZM45.8913 8.10935H47.1307V3.35039H45.8913V8.10935ZM42.2968 4.20034C43.1018 4.20034 43.3228 5.07649 43.3228 5.69804C43.3228 6.31959 43.0906 7.24068 42.2781 7.24068C41.4656 7.24068 41.1885 6.37201 41.1885 5.69804C41.1885 5.02407 41.503 4.20034 42.3118 4.20034M39.9567 10.0489H41.196V7.56269C41.3565 7.77882 41.5681 7.9518 41.8118 8.06615C42.0556 8.18049 42.3238 8.23264 42.5926 8.21793C44.0903 8.21793 44.6145 7.01977 44.6145 5.71676C44.6145 4.41376 44.0828 3.23806 42.6226 3.23806C42.3278 3.22165 42.0341 3.28625 41.7734 3.42486C41.5127 3.56346 41.2949 3.77079 41.1436 4.02436H41.1249V3.35039H39.9417L39.9567 10.0489ZM35.0142 5.61567C35.0142 4.90051 35.3887 4.20034 36.2087 4.20034C37.0286 4.20034 37.4068 4.88179 37.4068 5.61567C37.4068 6.40945 37.1597 7.2594 36.2087 7.2594C35.2576 7.2594 35.0142 6.39822 35.0142 5.61567ZM33.7225 5.76169C33.7225 6.42207 33.9848 7.05539 34.4517 7.52235C34.9187 7.9893 35.552 8.25163 36.2124 8.25163C36.8728 8.25163 37.5061 7.9893 37.973 7.52235C38.44 7.05539 38.7023 6.42207 38.7023 5.76169C38.7023 5.10132 38.44 4.468 37.973 4.00104C37.5061 3.53409 36.8728 3.27176 36.2124 3.27176C35.552 3.27176 34.9187 3.53409 34.4517 4.00104C33.9848 4.468 33.7225 5.10132 33.7225 5.76169ZM35.7631 1.35469L34.7484 2.70263H35.5684L36.2161 1.90884L36.8452 2.70263H37.6689L36.6992 1.35469H35.7631ZM27.1812 8.09437H28.473V5.27868H31.0603V8.10935H32.3521V1.6767H31.0603V4.29769H28.473V1.6767H27.1812V8.09437ZM20.0634 13.5685V11.9472C18.8481 13.2679 17.3679 14.3174 15.7194 15.0271C14.071 15.7368 12.2913 16.0908 10.4968 16.0659C8.70549 16.0939 6.92847 15.7435 5.28189 15.0377C3.63531 14.3318 2.15625 13.2864 0.941406 11.9697V13.5647C0.941406 13.5647 4.33371 17.133 10.493 17.133C16.6523 17.133 20.0559 13.5685 20.0559 13.5685\" fill=\"#0A0C0C\"/>\\n<path d=\"M20.0634 9.09035V3.79221C17.2309 1.9179 13.9082 0.92147 10.5118 0.927847C7.10971 0.915558 3.78 1.90952 0.941406 3.78472V9.09035C3.295 6.70988 6.41418 5.23781 9.74792 4.93421C8.45329 5.12342 7.27826 5.7957 6.45907 6.81589C5.63987 7.83609 5.23723 9.12857 5.33208 10.4335C5.42693 11.7385 6.01225 12.9591 6.97037 13.8501C7.9285 14.7411 9.18839 15.2364 10.4968 15.2364C11.8052 15.2364 13.0651 14.7411 14.0232 13.8501C14.9813 12.9591 15.5666 11.7385 15.6615 10.4335C15.7563 9.12857 15.3537 7.83609 14.5345 6.81589C13.7153 5.7957 12.5403 5.12342 11.2456 4.93421C14.5826 5.23808 17.7052 6.7099 20.0634 9.09035Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"H\\xf4pital ophtalmique Jules-Gonin Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Immopro Logo\",fit:\"fill\",intrinsicHeight:31,intrinsicWidth:168.5,pixelHeight:40,pixelWidth:218,src:\"https://framerusercontent.com/images/dyMPUfH1uc2QL5JQII6QHiIcrI.png\"},className:\"framer-1tj7k9g\",\"data-framer-name\":\"Immopro\",layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDn5GvMTguP\",style:{filter:\"brightness(0)\",WebkitFilter:\"brightness(0)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13uuipi\",\"data-framer-name\":\"ISG\",layoutDependency:layoutDependency,layoutId:\"zi2yUv3un\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nb6rkf\",\"data-framer-name\":\"ISG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:33,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDT1UfpKJDr\",svg:'<svg width=\"33\" height=\"33\" viewBox=\"0 0 33 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.9961 9.62751C25.9961 8.5148 26.5486 7.17188 27.8685 7.17188C29.1731 7.17188 29.81 8.43806 29.81 9.60449C29.81 10.7939 29.2805 12.0985 27.8915 12.0985C26.564 12.0985 25.9961 10.7479 25.9961 9.62751Z\" fill=\"#0A0C0C\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.3125 32.6028V0.671875H32.3125V32.6028H0.3125ZM16.4967 12.6891H18.2386V6.68051H16.4967V12.6891ZM19.1902 10.7477C19.1518 12.2671 20.1648 12.7966 21.5921 12.7966C22.935 12.7966 24.2856 12.2824 24.2933 10.8014C24.2933 9.65727 23.0429 9.36044 22.1024 9.13718C22.0462 9.12384 21.9911 9.11076 21.9374 9.09778C21.8855 9.08517 21.833 9.07314 21.7804 9.06111C21.2888 8.94853 20.794 8.83525 20.794 8.24598C20.794 7.72415 21.3005 7.47092 21.7916 7.47092C22.4362 7.47092 22.7739 7.7702 22.8276 8.37643H24.1168C24.1168 7.16396 23.1729 6.53471 21.9605 6.53471C20.6713 6.53471 19.359 7.14094 19.359 8.51456C19.359 9.58123 20.5561 9.96492 21.431 10.1721C21.512 10.1918 21.6012 10.2097 21.694 10.2284C22.2166 10.3336 22.8583 10.4628 22.8583 11.0623C22.8583 11.6992 22.1446 11.8604 21.6075 11.8604C20.9015 11.8604 20.5024 11.4153 20.5561 10.7477H19.1902ZM27.8847 15.1294C28.4525 15.1294 28.7825 15.0834 29.266 14.8532C30.5726 14.2334 30.5716 13.0107 30.5706 11.8212C30.5706 11.7882 30.5705 11.7552 30.5705 11.7222V8.0618C30.5705 7.90117 30.5679 7.73966 30.5653 7.58023C30.5602 7.26745 30.5553 6.96266 30.5705 6.68818H29.8262V7.63974C29.3427 6.93375 28.6904 6.50401 27.8079 6.50401C25.9585 6.50401 25.2219 8.03878 25.2219 9.69634C25.2219 11.3692 26.0046 12.7736 27.831 12.7736C28.6137 12.7736 29.4655 12.3515 29.8185 11.6301V12.7736C29.7955 13.7942 28.9283 14.4618 27.9844 14.4618C27.2094 14.4618 26.3499 14.2162 26.2655 13.4872H25.4828C25.4828 14.7534 26.7873 15.1294 27.8847 15.1294Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"ISG Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pph3lg\",\"data-framer-name\":\"Helvetia\",layoutDependency:layoutDependency,layoutId:\"LiJuXMNPJ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7xt3ql\",\"data-framer-name\":\"Helvetia\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:120,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDBu7OdGyMJ\",svg:'<svg width=\"120\" height=\"29\" viewBox=\"0 0 120 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M107.893 22.2185L108.299 22.1832L110.485 27.3316L109.991 27.2434L107.893 22.2185Z\" fill=\"#0A0C0C\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M105.173 6.44065L105.087 6.23837L110.533 4.99435L110.594 5.141L105.173 6.44065Z\" fill=\"#0A0C0C\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M102.832 1.35357L102.885 1.21198L103.006 1.19175L105.13 6.31194L105.102 6.31447L105.09 6.3347L102.832 1.35357Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M103.601 10.6943L102.35 10.4458L98.242 20.5876L99.4928 20.8362L103.601 10.6943Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M108.104 19.9698H97.8297V23.2583H108.104V19.9698Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M104.132 18.4999L96.303 20.1668L96.9344 22.111L104.764 20.4441L104.132 18.4999Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M99.4659 19.2763L95.2148 19.1369L94.5389 20.8106L98.79 20.95L99.4659 19.2763Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M110.3 27.359L93.0265 24.2565L94.8721 19.9312L108.065 22.1902L110.3 27.359Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M71.9245 6.11824C70.6183 6.11824 69.5442 7.19164 69.5442 8.49849C69.5442 9.80462 70.6183 10.8787 71.9245 10.8787C73.2327 10.8787 74.3047 9.80462 74.3047 8.49849C74.3047 7.19164 73.2327 6.11824 71.9245 6.11824ZM0.0234375 6.70008V24.261H4.27262V18.1253C4.27262 16.7253 4.81425 15.269 6.49418 15.269C8.19737 15.269 8.39837 16.7253 8.39837 18.1253V24.261H12.6476V16.9263C12.6476 13.8923 11.1827 11.8837 8.15153 11.8837C6.49418 11.8837 5.28889 12.4994 4.30788 13.8055H4.27262V6.70008H0.0234375ZM28.2866 6.70008V24.261H32.5358V6.70008H28.2866ZM62.3506 8.69243V12.2892H60.9753V15.7803H62.3506V24.261H66.5998V15.7803H68.9976V12.2892H66.5998V8.69243H62.3506ZM20.4935 11.8837C16.5949 11.8837 13.8641 14.2929 13.8641 18.2839C13.8641 22.4146 16.8262 24.6489 20.7933 24.6489C23.5226 24.6489 26.1984 23.3639 26.8761 20.5408H22.8033C22.3364 21.3335 21.6854 21.6515 20.7756 21.6515C19.0252 21.6515 18.1133 20.7135 18.1133 18.9892H27.0524V18.5308C27.0524 14.4473 24.6461 11.8837 20.4935 11.8837ZM53.7641 11.8837C49.8682 11.8837 47.1523 14.2929 47.1523 18.2839C47.1523 22.4146 50.1151 24.6489 54.0814 24.6489C56.8101 24.6489 59.4887 23.3639 60.1643 20.5408H56.0738C55.6076 21.3335 54.956 21.6515 54.0462 21.6515C52.2957 21.6515 51.3838 20.7135 51.3838 18.9892H60.323V18.5308C60.323 14.4473 57.9173 11.8837 53.7641 11.8837ZM81.2868 11.8837C77.7386 11.8837 75.2921 14.8345 75.2921 18.2663C75.2921 21.6967 77.7746 24.6489 81.322 24.6489C82.7227 24.6489 84.1889 24.1122 84.9365 22.921H84.9894V24.261H89.2385V12.2892H84.9894V13.4529C84.1022 12.4021 82.6613 11.8837 81.2868 11.8837ZM32.959 12.2892L39.2358 24.261H41.9334L48.1925 12.2892H43.432L40.5758 18.425L37.7195 12.2892H32.959ZM69.8087 12.2892V24.261H74.0402V12.2892H69.8087ZM20.7051 14.6342C21.849 14.6342 22.8921 15.3952 23.103 16.5384H18.1838C18.4419 15.3021 19.4688 14.6342 20.7051 14.6342ZM53.9757 14.6342C55.1189 14.6342 56.1817 15.3952 56.3912 16.5384H51.4544C51.7104 15.3021 52.7386 14.6342 53.9757 14.6342ZM82.3975 15.5687C84.1233 15.5687 85.1304 16.8142 85.1304 18.2839C85.1304 19.8009 84.1233 20.9639 82.3975 20.9639C80.6704 20.9639 79.6647 19.8009 79.6647 18.2839C79.6647 16.8142 80.6704 15.5687 82.3975 15.5687Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M106.188 7.06708L104.594 5.99322L101.559 10.4973L103.153 11.5711L106.188 7.06708Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M104.454 10.5258L103.15 10.8432L98.918 20.6287L104.366 19.2181L106.112 15.2334L104.454 10.5258Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M102.881 1.19894L108.374 0L110.584 5.0687L105.108 6.329L102.881 1.19894Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M94.8721 19.9312L102.881 1.19894L105.108 6.329L98.919 20.6249L94.8721 19.9312Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M104.366 19.2181L98.918 20.6287L108.069 22.1979L108.686 22.0392C108.655 21.9608 108.231 20.993 107.698 19.7824L104.366 19.2181Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M103.154 10.8381L105.109 6.32871L114.565 28.1247L110.301 27.3595L103.154 10.8381Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M105.109 6.32871L110.584 5.0687L119.973 26.6022L114.565 28.1247L105.109 6.32871Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"Helvetia Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sbdrn4\",\"data-framer-name\":\"Visilab\",layoutDependency:layoutDependency,layoutId:\"nDwQaYncl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qqqe39\",\"data-framer-name\":\"Visilab\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:132,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDXfzdnImVl\",svg:'<svg width=\"132\" height=\"26\" viewBox=\"0 0 132 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M34.8409 1.90176V0.824156H16.9528V1.90176H18.1747C20.2274 1.90176 20.3741 2.39156 20.2274 2.68536L15.34 16.8405L9.2795 1.90176H12.0654V0.824156H0.824219V1.90176H2.877L12.5052 25.6569H13.6294L20.4229 6.11396C21.7914 2.14666 22.1824 1.95066 23.0133 1.95066H25.7014V24.0895H23.0133V25.1671H34.8409V24.0895H31.8107V1.90176H34.8409Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M51.5562 0.823856H52.6804V7.24026H51.5074C50.9698 4.25246 48.3794 1.36266 45.2514 1.36266C43.2476 1.36266 40.4617 2.53816 40.4617 4.93816C40.4617 7.09326 41.9768 7.68106 43.7852 8.07286C45.6424 8.46466 48.6727 9.19936 50.3344 9.93406C52.4849 10.8647 54.2932 12.8239 54.2932 17.0362C54.2932 21.2974 51.7029 25.7056 45.789 25.7056C43.9318 25.7056 42.319 25.1668 40.8038 23.9913L38.8977 25.3137H37.5781V18.2607H38.8977C39.8752 21.5913 42.2701 24.579 45.9357 24.579C49.9434 24.579 51.7029 21.9831 51.7029 19.6811C51.7029 16.5464 48.1839 16.3015 44.7138 15.3709C41.1948 14.4892 37.6759 13.0199 37.6759 7.53406C37.6759 3.37086 41.146 0.285156 45.3003 0.285156C47.0598 0.285156 48.7215 0.970856 50.1878 1.90146L51.5562 0.823856Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M57.5195 25.1181V24.0405H60.2076V1.90176H57.5195V0.824156H69.3472V1.90176H66.317V24.0405H69.3472V25.1181H57.5195Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M118.125 24.0404V12.971H119.005C124.137 12.971 124.576 14.1465 124.576 18.5547C124.576 21.1506 124.919 23.9914 121.693 23.9914L118.125 24.0404ZM118.125 1.90156H119.836C123.55 1.90156 123.843 2.24446 123.843 6.55466C123.843 11.4037 122.866 11.8935 119.005 11.8935H118.125V1.90156ZM121.106 25.1179C123.061 25.1179 126.14 25.069 127.998 24.1873C130.148 23.1098 131.223 21.3465 131.223 18.7506C131.223 14.3424 126.483 12.6281 122.866 12.5302L123.599 12.4812C129.122 11.4037 130.197 9.00366 130.002 6.21176C129.757 2.39136 125.456 0.872956 122.328 0.872956H109.523V1.95056H112.113V24.0894H107.812V25.1669H121.106V25.1179Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M107.518 24.0403L98.525 0.285156H97.108L90.1187 18.8484C88.8479 21.6403 86.7463 24.0403 83.374 24.0403H80.7347V1.90146H84.0093V0.823856H72.1328V1.90146H74.6254V24.0403H72.1328V25.1178H93.198V24.0403C92.709 24.0403 89.9232 24.3341 89.9232 23.4035C89.9232 23.0607 90.2653 22.0321 90.6563 20.9545L91.585 18.3586H99.014L100.969 24.0892H98.183V25.1668H109.668V24.0892L107.518 24.0403ZM92.074 17.2321L95.397 8.31776L98.623 17.2321H92.074Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M129.51 2.29326H129.608V1.85246H129.852L130.146 2.29326H130.243L129.95 1.85246C130.097 1.85246 130.195 1.75446 130.195 1.60756C130.195 1.41166 130.097 1.31366 129.852 1.31366H129.461L129.51 2.29326ZM129.559 1.36266H129.852C129.95 1.36266 130.097 1.41166 130.097 1.55856C130.097 1.75446 129.901 1.75446 129.804 1.75446H129.559V1.36266ZM129.804 1.01976C130.243 1.01976 130.586 1.36266 130.586 1.80346C130.586 2.24426 130.243 2.58716 129.804 2.58716C129.364 2.58716 129.022 2.24426 129.022 1.80346C129.07 1.31366 129.364 1.01976 129.804 1.01976ZM129.804 0.921856C129.315 0.921856 128.973 1.31366 128.973 1.75446C128.973 2.19526 129.364 2.58716 129.804 2.58716C130.292 2.58716 130.634 2.19526 130.634 1.75446C130.683 1.31366 130.292 0.921856 129.804 0.921856Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"Visilab Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-74xts1\",\"data-framer-name\":\"Tamoil\",layoutDependency:layoutDependency,layoutId:\"D8usbzy8r\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-168w6ml\",\"data-framer-name\":\"TAMOIL\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:136,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDHDRKwm3lx\",svg:'<svg width=\"136\" height=\"20\" viewBox=\"0 0 136 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.30079 5.19059H0L1.04297 0.436592H22.727L21.6841 5.19059H14.4075L11.3756 19.0403H4.2689L7.30079 5.19059Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M33.6903 4.58421L29.6883 10.4297H34.9031L33.6903 4.58421ZM29.5427 0.436592H39.8026L43.6349 19.0403H36.6737L35.7763 14.6016H26.9474L23.867 19.0403H16.8816L29.5427 0.436592Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M61.8263 11.9093L69.7577 0.436592H79.5083L75.3121 19.0403H68.933L71.6739 6.91271L62.8935 19.0403H56.9025L53.3127 6.91271L50.6204 19.0403H44.969L49.0681 0.436592H59.4978L61.8263 11.9093Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M91.9996 15.1352C97.0447 15.1352 98.3787 10.6237 98.1604 7.54334C98.0391 5.6757 96.9477 3.7838 93.649 3.7838C88.6039 3.7838 87.2699 8.29525 87.4882 11.3756C87.6337 13.2675 88.7252 15.1352 91.9996 15.1352ZM93.2366 0C100.198 0 104.588 2.47402 104.976 8.14972C105.413 14.4075 100.343 19.4769 91.9754 19.4769C85.0142 19.4769 80.5997 16.6875 80.2359 11.3271C79.7751 5.06932 84.8686 0 93.2366 0Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M110.094 0.436592H116.546L112.495 19.0403H106.019L110.094 0.436592Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M120.548 0.436592H127L123.968 14.262H135.61L134.567 19.0403H116.473L120.548 0.436592Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"Tamoil Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Regie Marmillod Logo\",fit:\"fill\",intrinsicHeight:29,intrinsicWidth:150,pixelHeight:58,pixelWidth:300,src:\"https://framerusercontent.com/images/GvQGvmeYtmeRuASeGGg0HjdHfY.png\"},className:\"framer-v48pl3\",\"data-framer-name\":\"Regie Marmillod\",layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDQlFcsCQJh\",style:{filter:\"brightness(0)\",WebkitFilter:\"brightness(0)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15e9hdt\",\"data-framer-name\":\"J.P. Morgan\",layoutDependency:layoutDependency,layoutId:\"U0278vooa\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lq3vv5\",\"data-framer-name\":\"J.P.\\xa0Morgan\",fill:\"black\",intrinsicHeight:34,intrinsicWidth:159,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDWWRGwpNYY\",svg:'<svg width=\"159\" height=\"34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.077 1.133H7.885v.782h2.924v15.198c0 4.533-1.269 5.86-4.114 5.86a1.904 1.904 0 0 1-2.096-1.69 1.383 1.383 0 0 1 0-.373c0-1.655-.09-2.675-1.61-2.675-1.518 0-1.688 1.541-1.688 2.006 0 2.096.93 3.695 5.111 3.695 4.987 0 7.684-1.678 7.684-7.231V1.903h3.071l-.09-.77ZM18.299 20.4a1.712 1.712 0 0 0-1.281.51 1.747 1.747 0 0 0-.521 1.28 1.689 1.689 0 0 0 .52 1.247c.342.336.803.523 1.282.521a1.86 1.86 0 0 0 1.303-.521 1.69 1.69 0 0 0 .521-1.247 1.767 1.767 0 0 0-1.745-1.79h-.08Zm20.401-.001a1.758 1.758 0 0 0-1.802 1.723v.068a1.655 1.655 0 0 0 .567 1.246 1.84 1.84 0 0 0 1.28.522 1.769 1.769 0 0 0 1.293-.522 1.656 1.656 0 0 0 .544-1.246 1.7 1.7 0 0 0-.533-1.281 1.745 1.745 0 0 0-1.258-.51M32.34 1.133h-9.066v.782h2.64v17.351a5.053 5.053 0 0 1-.237 2.097 1.812 1.812 0 0 1-1.134 1.02 5.428 5.428 0 0 1-1.711.283v.726h9.633v-.726a6.381 6.381 0 0 1-1.847-.26 1.848 1.848 0 0 1-1.133-1.02 3.173 3.173 0 0 1-.238-1.417V14.03h2.402c6.959 0 8.92-2.742 8.92-6.471S39.39 1.133 32.34 1.133Zm-1.246 12.013h-1.825V2.016h1.655c5.372-.022 6.641 2.165 6.641 5.747 0 3.581-2.108 5.463-6.38 5.463m38.113 8.08a4.622 4.622 0 0 1-.192-1.518V1.915h2.39v-.726h-5.745l-6.845 16.944a.158.158 0 0 1-.136.102.182.182 0 0 1-.17-.102s-7.197-16.74-7.276-16.944h-6.336v.703h2.777v18.79a2.355 2.355 0 0 1-.374 1.134c-.26.34-.615.592-1.02.726-.434.1-.88.142-1.326.124v.726h6.279v-.726a3.568 3.568 0 0 1-1.134-.17 2.017 2.017 0 0 1-1.133-.714 2.38 2.38 0 0 1-.385-1.133l-.068-1.564V4.249h.374s8.194 18.916 8.194 19.131h.793l7.73-18.972h.203v15.289a5.586 5.586 0 0 1-.192 1.564 1.837 1.837 0 0 1-.964 1.031 4.782 4.782 0 0 1-1.598.272v.726h8.784v-.726a4.726 4.726 0 0 1-1.632-.294 1.758 1.758 0 0 1-.975-1.134M81.145 7.084c-4.692 0-7.684 3.094-7.684 8.5 0 7.933 6.2 8.443 7.525 8.443 2.652 0 7.684-1.643 7.684-8.59 0-5.463-3.218-8.353-7.56-8.353m0 15.957c-3.535 0-4.08-1.745-4.08-7.378 0-4.363.273-7.638 4.08-7.638 4.092 0 4.115 3.4 4.115 7.332 0 5.667-.975 7.639-4.114 7.639m19.853-15.674c-2.81 0-3.672 1.655-4.465 3.332h-.216s-.408-2.436-.555-3.162h-5.474v.828H93.2v11.027a5.486 5.486 0 0 1-.363 2.267c-.295.555-.975.827-2.085.827h-.488v.975h9.067v-.975h-.43c-1.202 0-1.712-.26-2.03-.782a4.635 4.635 0 0 1-.373-2.312V13.6c0-1.915 1.45-4.114 3.196-4.114 1.745 0 1.779 2.8 3.853 1.677 1.133-.612.929-3.82-2.561-3.82m36.222 14.405c-.974 0-1.292-.544-1.348-1.44v-8.692a4.15 4.15 0 0 0-1.134-3.276c-.85-.838-2.459-1.28-4.805-1.28a8.329 8.329 0 0 0-4.998 1.224 2.976 2.976 0 0 0-1.439 2.561 1.31 1.31 0 0 0 .396 1.133c.278.237.633.362.998.352.906 0 1.405-.465 1.609-1.643a3.09 3.09 0 0 1 .714-1.87 2.858 2.858 0 0 1 2.187-.726 2.79 2.79 0 0 1 2.403.918c.454.687.677 1.501.635 2.323v2.664c-2.913.26-9.792.804-9.486 6.03a4.19 4.19 0 0 0 4.295 3.773 7.15 7.15 0 0 0 5.327-2.63 3.023 3.023 0 0 0 3.094 2.438c2.119 0 3.4-1.043 3.536-3.616h-.556c-.136 1.134-.827 1.723-1.405 1.723m-4.771-1.677a.103.103 0 0 1 0 .113v.068a5.896 5.896 0 0 1-3.627 1.915 2.489 2.489 0 0 1-2.36-1.455 2.503 2.503 0 0 1-.224-.948 2.123 2.123 0 0 1 0-.373c0-2.959 4.08-4.443 6.301-4.443l-.09 5.123Zm23.402 1.598a4.225 4.225 0 0 1-.566-2.37V12.07a5.585 5.585 0 0 0-.533-2.674 4.007 4.007 0 0 0-1.598-1.598 5.166 5.166 0 0 0-2.403-.522 5.667 5.667 0 0 0-5.179 3.072h-.351l-.567-2.88h-4.907v.828h2.482v10.97a7.308 7.308 0 0 1-.182 1.86 1.452 1.452 0 0 1-.929 1.02c-.439.16-.904.236-1.371.226v1.009h7.865v-1.02a2.013 2.013 0 0 1-1.609-.669 4.206 4.206 0 0 1-.442-2.266v-4.182a10.032 10.032 0 0 1 .6-4.534 3.538 3.538 0 0 1 3.162-1.768 2.267 2.267 0 0 1 2.199 1.134c.386 1.2.566 2.457.533 3.717v5.19c.058.642.058 1.286 0 1.927a1.53 1.53 0 0 1-.692 1.134 2.572 2.572 0 0 1-1.258.328v1.02h7.582v-1.008c-.952-.068-1.575-.295-1.858-.737M120.3 6.438a1.539 1.539 0 0 0-.94 1.247c-.125.646-.374 1.03-.703 1.133a1.824 1.824 0 0 1-1.133-.068 7.312 7.312 0 0 0-5.157-1.723 5.938 5.938 0 0 0-6.381 5.44v.714c0 3.4 1.304 4.976 4.148 5.576.182 0 .182.227 0 .25-2.391.442-4.533 1.133-4.533 3.456a2.607 2.607 0 0 0 1.745 2.47c1.516.522 3.112.772 4.715.738a34.832 34.832 0 0 1 3.785.17 4.533 4.533 0 0 1 2.063.714 2.165 2.165 0 0 1 .782 1.836 2.845 2.845 0 0 1-1.711 2.55 8.854 8.854 0 0 1-4.307.895 7.093 7.093 0 0 1-3.955-.873 2.095 2.095 0 0 1-.828-2.266 1.304 1.304 0 0 0-.804-1.644h-.17a1.43 1.43 0 0 0-1.36.612 2.55 2.55 0 0 0-.352 1.462 3.276 3.276 0 0 0 2.63 3.083c1.417.452 2.898.67 4.386.646a11.13 11.13 0 0 0 4.998-.93 5.184 5.184 0 0 0 3.173-4.725 4.704 4.704 0 0 0-.748-2.766c-1.587-2.176-3.831-1.881-8.885-2.13-2.426 0-2.902-.431-2.902-1.134 0-1.133.896-1.53 4.386-2.062 3.491-.533 6.698-1.802 6.698-6.007a6.98 6.98 0 0 0-.634-2.98 3.727 3.727 0 0 0 1.994 0 2.266 2.266 0 0 0 1.417-1.134 1.737 1.737 0 0 0 .272-1.485c-.295-.94-.861-1.28-1.723-1.02m-7.82 11.594c-2.062 0-3.298-.748-3.298-4.941 0-2.958 1.032-5.157 3.298-5.157 2.584 0 3.287 2.006 3.287 5.089 0 4.375-1.394 5.01-3.287 5.01Z\" fill=\"#000\"/></svg>',title:\"J.P Morgan Banque Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kiptn6\",\"data-framer-name\":\"MeyrinCentre\",layoutDependency:layoutDependency,layoutId:\"qKEdPlvk4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gsi8ha\",\"data-framer-name\":\"Meyrin Centre\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:118,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDnHnSSv4Sq\",svg:'<svg width=\"118\" height=\"27\" viewBox=\"0 0 118 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.83249 9.65774C12.3737 9.65774 14.8619 9.65774 17.4207 9.65774C17.4207 12.1636 17.4207 14.6519 17.4207 17.246C14.9325 17.246 12.409 17.246 9.83249 17.246C9.83249 14.7401 9.83249 12.2519 9.83249 9.65774Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M18.7973 9.65774C21.3385 9.65774 23.7915 9.65774 26.2973 9.65774C26.2973 12.1813 26.2973 14.6695 26.2973 17.246C23.8267 17.246 21.3385 17.246 18.7973 17.246C18.7973 14.7401 18.7973 12.2342 18.7973 9.65774Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M17.4563 26.1403C14.8798 26.1403 12.3916 26.1403 9.85041 26.1403C9.85041 23.6344 9.85041 21.1462 9.85041 18.605C12.3739 18.605 14.8798 18.605 17.4563 18.605C17.4563 21.1109 17.4563 23.5815 17.4563 26.1403Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M18.7443 26.105C18.7443 23.5991 18.7443 21.1462 18.7443 18.605C21.2501 18.605 23.7207 18.605 26.2795 18.605C26.2795 21.0756 26.2795 23.5462 26.2795 26.105C23.8266 26.105 21.3384 26.105 18.7443 26.105Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M9.85041 8.33431C10.0092 4.08137 12.7798 0.516666 17.4563 0.85196C17.4563 3.32255 17.4563 5.79314 17.4563 8.33431C14.9151 8.33431 12.4269 8.33431 9.85041 8.33431Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M8.52637 9.69306C8.52637 12.2342 8.52637 14.7225 8.52637 17.2636C6.00284 17.2636 3.5146 17.2636 1.02637 17.2636C0.920483 13.346 3.69107 9.49894 8.52637 9.69306Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M8.52665 18.605C8.52665 21.1285 8.52665 23.5991 8.52665 26.0697C4.0443 26.158 0.726651 22.8403 0.991356 18.605C3.46194 18.605 5.95018 18.605 8.52665 18.605Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M26.2794 8.36966C23.7735 8.36966 21.3029 8.36966 18.7794 8.36966C18.7794 5.86378 18.7794 3.37555 18.7794 0.904958C22.5029 0.640252 26.5971 3.6226 26.2794 8.36966Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M36.1089 20.0166C36.303 19.8401 36.4795 19.6813 36.6383 19.5401C37.8206 18.4813 39.1442 18.1637 40.6265 18.799C42.0912 19.4343 42.8677 20.5813 42.9206 22.1696C42.9559 23.3696 42.9206 24.5696 42.9206 25.8754C42.5147 25.9107 42.1442 25.946 41.6853 25.999C41.65 25.6107 41.5971 25.2931 41.5971 24.9931C41.5795 24.0225 41.6147 23.0519 41.5618 22.0813C41.4736 20.8284 40.5559 19.9284 39.3559 19.8401C38.1912 19.7519 37.1853 20.4578 36.903 21.6578C36.7618 22.2754 36.7794 22.9284 36.7618 23.5813C36.7442 24.3048 36.7618 25.046 36.7618 25.8931C36.3736 25.9284 36.0206 25.946 35.5089 25.9813C35.5089 25.4166 35.5265 24.9578 35.5089 24.5166C35.4736 23.5813 35.5265 22.6284 35.3677 21.7107C35.1559 20.4931 34.0265 19.7519 32.8442 19.8578C31.6971 19.9637 30.7618 20.8813 30.7089 22.0637C30.6559 23.3166 30.6912 24.5872 30.6912 25.9107C30.1795 25.9107 29.8265 25.9107 29.403 25.9107C29.403 24.3754 29.2089 22.8931 29.4383 21.4637C29.8795 18.746 33.2324 17.6343 35.3677 19.3813C35.6147 19.5578 35.8442 19.7872 36.1089 20.0166Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M92.0858 22.893C90.1446 22.893 88.2564 22.893 86.3329 22.893C86.7564 24.6577 88.2917 25.0283 90.7623 23.9165C90.974 24.1459 91.2211 24.4459 91.4858 24.7283C90.2682 26.1047 87.9035 26.3518 86.3858 25.3636C84.8329 24.34 84.2858 22.3636 85.0799 20.6165C85.8211 18.9753 87.6917 18.1459 89.5093 18.64C91.2564 19.1165 92.3329 20.793 92.0858 22.893ZM90.6034 21.5165C90.2505 20.3694 89.4211 19.8047 88.327 19.84C87.3035 19.8753 86.5623 20.4753 86.3329 21.5165C87.7446 21.5165 89.1387 21.5165 90.6034 21.5165Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M111.656 22.8226C112.256 24.6579 113.579 24.9755 116.173 23.952C116.368 24.1814 116.632 24.4814 116.879 24.7814C115.573 26.1755 113.262 26.3873 111.726 25.3284C110.209 24.2873 109.697 22.2755 110.526 20.5461C111.268 18.9755 113.191 18.1461 114.921 18.6402C116.668 19.1343 117.726 20.8108 117.497 22.8402C115.609 22.8226 113.685 22.8226 111.656 22.8226ZM111.726 21.5696C113.05 21.5696 114.303 21.5696 115.556 21.5696C115.697 21.5696 115.821 21.5343 115.962 21.5167C115.732 20.4755 114.956 19.8402 113.915 19.8226C112.838 19.8049 111.991 20.4226 111.726 21.5696Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M45.0386 22.8048C45.5503 24.6754 47.068 25.046 49.5386 23.9343C49.7327 24.146 49.9621 24.4284 50.1915 24.6931C49.168 26.0343 46.9092 26.3343 45.3209 25.4166C43.6974 24.4637 43.0445 22.399 43.8386 20.6696C44.5797 19.0107 46.5209 18.1107 48.2327 18.6225C50.1386 19.1872 51.1621 20.8284 50.7915 22.8048C48.9209 22.8048 47.015 22.8048 45.0386 22.8048ZM49.4503 21.5343C48.9562 20.3166 48.1092 19.7343 47.068 19.8225C46.0797 19.8931 45.3033 20.5637 45.1092 21.5343C46.5386 21.5343 47.9503 21.5343 49.4503 21.5343Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M100.291 23.6345C100.291 24.1992 100.291 24.7462 100.291 25.3109C100.291 25.7521 100.132 26.0521 99.6384 26.0521C99.1442 26.0521 98.9501 25.7698 98.9501 25.3286C98.9501 24.3933 98.9678 23.4404 98.9501 22.5051C98.9325 20.9521 97.9619 19.8227 96.6384 19.8227C95.2442 19.8051 94.2031 20.8992 94.1501 22.4698C94.1325 23.4051 94.1501 24.358 94.1678 25.2933C94.1678 25.7345 94.1501 26.158 93.5678 26.1756C92.9678 26.1933 92.8619 25.7874 92.8619 25.2933C92.8795 24.1992 92.8442 23.1227 92.8795 22.0286C92.9501 19.9815 94.5913 18.4462 96.6207 18.4815C98.5972 18.5168 100.203 20.0874 100.274 22.0462C100.309 22.5756 100.291 23.1051 100.291 23.6345Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M70.3439 25.9813C69.9204 25.946 69.5851 25.9107 69.1263 25.8577C69.1439 24.1636 68.8616 22.5224 69.3557 20.9342C69.8851 19.2754 71.6145 18.2871 73.3087 18.5518C75.1263 18.8342 76.4322 20.2283 76.4851 21.993C76.5204 23.1048 76.5204 24.2166 76.5204 25.346C76.5204 25.5224 76.4675 25.6813 76.4145 25.946C76.0439 25.9283 75.6734 25.893 75.2145 25.8754C75.2145 24.6224 75.2322 23.4577 75.2145 22.2754C75.1969 21.1989 74.6498 20.4401 73.6792 19.9989C72.7792 19.593 71.8792 19.7518 71.2439 20.4577C70.8204 20.9166 70.5204 21.6048 70.4322 22.2224C70.291 23.1048 70.3969 24.0401 70.3969 24.9577C70.3969 25.2577 70.3616 25.5754 70.3439 25.9813Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M83.2444 23.4048C83.562 23.6166 83.862 23.8107 84.1444 24.0048C83.6855 25.3284 82.062 26.1401 80.4208 25.9284C78.8679 25.7342 77.4738 24.2872 77.3502 22.7519C77.1738 20.7225 78.1444 19.1872 79.9267 18.6578C81.6561 18.146 83.3502 18.7813 84.215 20.3166C83.9502 20.546 83.6502 20.7754 83.3149 21.0401C82.5208 20.3342 81.762 19.5048 80.615 19.8578C80.0679 20.0342 79.5032 20.4048 79.1326 20.846C78.3208 21.8166 78.5326 23.1225 79.5032 23.9872C80.5267 24.9401 81.7444 24.7637 83.2444 23.4048Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M101.156 15.4813C101.456 15.4813 101.791 15.4813 102.285 15.4813C102.285 16.4342 102.285 17.3695 102.285 18.4283C103.362 18.4283 104.279 18.4283 105.303 18.4283C105.303 18.9224 105.303 19.293 105.303 19.7695C104.332 19.7695 103.415 19.7695 102.515 19.7695C102.056 22.946 102.356 24.5166 105.32 24.7107C105.32 25.0989 105.32 25.4695 105.32 25.8577C103.344 26.3342 101.156 24.746 101.068 22.8048C100.962 20.4401 101.05 18.0577 101.05 15.6754C101.032 15.6401 101.085 15.5872 101.156 15.4813Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M55.6619 23.793C55.6619 24.4812 55.6619 25.1341 55.6619 25.8753C55.256 25.9106 54.9031 25.9459 54.409 25.9988C54.3384 25.1871 54.2854 24.4812 54.2325 23.793C51.6384 22.3812 50.8795 21.0047 51.3913 18.5871C51.7266 18.5871 52.0795 18.5871 52.5031 18.5871C52.5384 19.1518 52.556 19.6459 52.6089 20.14C52.7678 21.5518 53.8442 22.5577 55.0972 22.4871C56.4031 22.3989 57.3737 21.3577 57.409 19.9636C57.4266 19.54 57.409 19.0989 57.409 18.6047C57.8501 18.6047 58.1854 18.6047 58.5913 18.6047C58.9442 19.7694 58.7501 20.8283 58.256 21.8518C57.7442 22.893 56.7207 23.3694 55.6619 23.793Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M110.35 18.5343C110.368 18.9048 110.403 19.3107 110.421 19.646C110.297 19.7343 110.244 19.7872 110.209 19.7872C108.144 19.9284 107.35 20.7754 107.35 22.8578C107.35 23.846 107.35 24.8519 107.35 25.9284C106.909 25.9284 106.521 25.9284 106.168 25.9284C106.168 24.3225 105.973 22.7343 106.221 21.1813C106.503 19.3637 108.285 18.3225 110.35 18.5343Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M64.1505 18.5874C64.5387 18.5697 64.9093 18.5521 65.474 18.5168C65.474 19.4344 65.474 20.2285 65.474 21.0403C65.474 21.5344 65.4564 22.0462 65.5093 22.5403C65.6152 23.6344 66.4799 24.4815 67.574 24.5874C67.8034 24.605 68.0328 24.5874 68.4211 24.5874C68.4564 25.0462 68.474 25.4344 68.5093 25.8227C66.4446 26.2815 64.3799 24.7991 64.1858 22.7168C64.0446 21.3932 64.1505 20.0344 64.1505 18.5874Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M63.3916 18.64C63.3916 18.9753 63.3916 19.3106 63.3916 19.7165C63.1445 19.7518 62.9151 19.7871 62.6857 19.8047C61.3269 19.9283 60.4092 20.8636 60.3916 22.2224C60.3563 23.3871 60.3916 24.5695 60.3916 25.84C59.968 25.8753 59.6151 25.9106 59.068 25.9636C59.068 25.3636 59.0504 24.8871 59.068 24.393C59.1033 23.4047 59.0504 22.3812 59.1916 21.4106C59.4739 19.5047 61.6092 18.1106 63.3916 18.64Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M65.4032 17.6694C64.9621 17.6694 64.5915 17.6694 64.1327 17.6694C64.1327 17.1047 64.0621 16.5753 64.1679 16.0812C64.2032 15.8518 64.5562 15.4989 64.768 15.4989C64.9797 15.4989 65.3327 15.8341 65.3856 16.0636C65.4738 16.5577 65.4032 17.1047 65.4032 17.6694Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"Meyrin Centre Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p965kt\",\"data-framer-name\":\"CCHE\",layoutDependency:layoutDependency,layoutId:\"nJ6pnwqLG\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yynt2o\",\"data-framer-name\":\"CCHE\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:210,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDo_fFYxpYC\",svg:'<svg width=\"210\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m63.407 31.546.065.242c2.287 8.429 8.877 13.082 18.518 13.094 6.216.003 10.938-1.799 14.039-5.374l.235-.279.233-.275 3.703 3.714-.208.239c-4.34 4.574-10.743 7.108-18.008 7.093-12.607-.012-21.707-6.62-24.436-17.685l-.091-.384-.086-.385h6.036Zm-57.374 0 .067.242c2.29 8.429 8.878 13.082 18.522 13.094 6.379.003 11.18-1.892 14.271-5.653l.23-.275 3.709 3.714-.208.239C38.282 47.481 31.88 50.015 24.616 50 11.868 49.988 2.703 43.228.089 31.931L0 31.546h6.033ZM153.176.394v49.349h-5.865v-25.19h-33.667V19.13h33.667V.394h5.865ZM210 44.072v5.417h-37.407v-5.417H210Zm-13.25-21.793v5.436h-23.925V22.28h23.925v-.001ZM81.94 0c7.362.012 13.922 2.373 18.057 6.503l.272.278.215.233-3.826 3.812-.226-.25c-3.098-3.526-8.244-5.473-14.5-5.486-9.693-.006-16.263 4.48-18.542 12.674l-.1.369-.064.241-5.831-.009.104-.403C58.927 12.544 64.159-.024 81.94 0ZM24.57 0c7.367.012 13.924 2.373 18.056 6.503l.272.278.22.233-3.831 3.812-.223-.25C35.969 7.05 30.819 5.102 24.56 5.09 14.867 5.084 8.298 9.57 6.018 17.764l-.099.369-.061.241-5.831-.009.104-.403C1.556 12.544 6.786-.024 24.57 0Zm184.806.655v5.213h-36.783V.655h36.783Z\" fill=\"#000\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h210v50H0z\"/></clipPath></defs></svg>',title:\"CCHE Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Police Lausanne Logo\",fit:\"fill\",intrinsicHeight:58.5,intrinsicWidth:269,pixelHeight:40,pixelWidth:184,src:\"https://framerusercontent.com/images/h33pVFQgpnsm5SkFWWKdH2SNd98.png\"},className:\"framer-2v7tso\",\"data-framer-name\":\"Police Lausanne\",layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDeXmEj8re0\",style:{filter:\"brightness(0)\",WebkitFilter:\"brightness(0)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qtfoko\",\"data-framer-name\":\"Coop\",layoutDependency:layoutDependency,layoutId:\"Uxt_3oaMu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18fherc\",\"data-framer-name\":\"Coop\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:61,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDIFc9ANINO\",svg:'<svg width=\"61\" height=\"19\" viewBox=\"0 0 61 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.3206 2.61626C27.5289 1.37609 25.0929 0.856365 22.8426 0.856365C18.6204 0.855988 13.674 2.66371 13.674 7.77304C13.674 8.44612 13.7811 9.07474 13.8885 9.61039C12.9854 10.6206 11.5048 11.6163 9.66745 11.6163C7.24742 11.6163 5.5327 10.0704 5.5327 7.69601C5.5327 5.49676 7.23149 3.8724 9.44776 3.8724C10.5654 3.87202 11.3925 4.25508 11.8522 4.56216L13.6284 1.74465C12.7398 1.30053 11.0147 0.671875 8.7173 0.671875C4.36843 0.671875 0.0703125 3.01525 0.0703125 7.72748C0.070689 12.4279 3.93985 14.8483 8.58021 14.8483C11.5152 14.8479 13.8726 13.378 15.2057 11.9078C16.936 13.7855 19.8565 14.6742 22.8426 14.6742C25.0277 14.6742 27.4974 14.1841 29.3203 12.9335V12.9099C29.3244 12.9128 29.3285 12.9157 29.3327 12.9185L29.3349 12.917C31.1199 14.1563 33.5526 14.6736 35.8232 14.6736H35.8336C38.6826 14.6736 41.3771 13.7761 43.1841 12.2444L43.1844 18.6714H47.5136V12.963C48.1867 13.5916 49.474 14.3732 51.2954 14.6018C51.6629 14.6488 52.0455 14.6736 52.4441 14.6736C55.8539 14.6736 60.3113 12.6274 60.3113 7.80253C60.3113 3.32143 56.7122 1.13145 52.3215 1.13145C51.9699 1.13145 51.6329 1.16145 51.2954 1.19293C49.7185 1.37557 48.4779 1.94308 47.5136 2.61612V1.36149H43.2759V3.39737C41.4842 1.59003 38.3151 0.855845 35.8336 0.855845L35.8232 0.855469C33.5782 0.855469 31.1288 1.36834 29.333 2.61767V2.61767C29.3291 2.62037 29.3245 2.62259 29.3206 2.6253V2.61626ZM22.8426 11.6477C20.7141 11.6477 18.9978 9.93192 18.9978 7.81897C18.9982 5.71084 20.7137 3.99503 22.8426 3.99503C24.9559 3.99503 26.6702 5.71084 26.6702 7.81897C26.6702 9.93192 24.9555 11.6477 22.8426 11.6477ZM31.9968 7.8534C31.997 7.82689 31.9972 7.80028 31.9972 7.77359C31.9972 7.73937 31.9969 7.70529 31.9965 7.67137C32.0417 5.58246 33.7383 3.91895 35.8232 3.91895C37.9325 3.91895 39.6468 5.62809 39.6468 7.75697C39.6468 9.86992 37.9321 11.5857 35.8232 11.5857C33.7422 11.5857 32.048 9.92188 31.9968 7.8534ZM51.3413 11.8758H51.2958C49.1513 11.8458 47.4066 10.177 47.4066 7.78845C47.4066 5.49624 49.198 3.81153 51.2954 3.79594H51.3417C53.5472 3.79594 55.1949 5.55215 55.1949 7.75697C55.1953 9.88547 53.5928 11.8758 51.3413 11.8758Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"Coop Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-id6m3a\",\"data-framer-name\":\"SC Architectes\",layoutDependency:layoutDependency,layoutId:\"NiwZt8KCI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d04khj\",\"data-framer-name\":\"SC ARCHITECTES\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:129,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDRC7uoni6A\",svg:'<svg width=\"129\" height=\"14\" viewBox=\"-1 -1 129 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M126.648 8.41406C126.648 9.44531 126.276 10.2578 125.531 10.8516C124.792 11.4453 123.76 11.7422 122.438 11.7422C121.219 11.7422 120.141 11.513 119.203 11.0547V8.80469C119.974 9.14844 120.625 9.39062 121.156 9.53125C121.693 9.67188 122.182 9.74219 122.625 9.74219C123.156 9.74219 123.562 9.64062 123.844 9.4375C124.13 9.23438 124.273 8.93229 124.273 8.53125C124.273 8.30729 124.211 8.10938 124.086 7.9375C123.961 7.76042 123.776 7.59115 123.531 7.42969C123.292 7.26823 122.799 7.01042 122.055 6.65625C121.357 6.32812 120.833 6.01302 120.484 5.71094C120.135 5.40885 119.857 5.05729 119.648 4.65625C119.44 4.25521 119.336 3.78646 119.336 3.25C119.336 2.23958 119.677 1.44531 120.359 0.867188C121.047 0.289062 121.995 0 123.203 0C123.797 0 124.362 0.0703125 124.898 0.210938C125.44 0.351562 126.005 0.549479 126.594 0.804688L125.812 2.6875C125.203 2.4375 124.698 2.26302 124.297 2.16406C123.901 2.0651 123.51 2.01562 123.125 2.01562C122.667 2.01562 122.315 2.1224 122.07 2.33594C121.826 2.54948 121.703 2.82812 121.703 3.17188C121.703 3.38542 121.753 3.57292 121.852 3.73438C121.951 3.89062 122.107 4.04427 122.32 4.19531C122.539 4.34115 123.052 4.60677 123.859 4.99219C124.927 5.5026 125.659 6.01562 126.055 6.53125C126.451 7.04167 126.648 7.66927 126.648 8.41406Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M117.516 11.5859H110.938V0.164062H117.516V2.14844H113.359V4.65625H117.227V6.64062H113.359V9.58594H117.516V11.5859Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M106.078 11.5859H103.656V2.17969H100.555V0.164062H109.18V2.17969H106.078V11.5859Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M96.3203 2.01562C95.4089 2.01562 94.7031 2.35938 94.2031 3.04688C93.7031 3.72917 93.4531 4.68229 93.4531 5.90625C93.4531 8.45312 94.4089 9.72656 96.3203 9.72656C97.1224 9.72656 98.0938 9.52604 99.2344 9.125V11.1562C98.2969 11.5469 97.25 11.7422 96.0938 11.7422C94.4323 11.7422 93.1615 11.2396 92.2812 10.2344C91.401 9.22396 90.9609 7.77604 90.9609 5.89062C90.9609 4.70312 91.1771 3.66406 91.6094 2.77344C92.0417 1.8776 92.6615 1.19271 93.4688 0.71875C94.2812 0.239583 95.2318 0 96.3203 0C97.4297 0 98.5443 0.268229 99.6641 0.804688L98.8828 2.77344C98.4557 2.57031 98.026 2.39323 97.5938 2.24219C97.1615 2.09115 96.737 2.01562 96.3203 2.01562Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M89.0781 11.5859H82.5V0.164062H89.0781V2.14844H84.9219V4.65625H88.7891V6.64062H84.9219V9.58594H89.0781V11.5859Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M77.6406 11.5859H75.2188V2.17969H72.1172V0.164062H80.7422V2.17969H77.6406V11.5859Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M67.9375 11.5859V0.164062H70.3594V11.5859H67.9375Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M65.0469 11.5859H62.6328V6.65625H58.1094V11.5859H55.6875V0.164062H58.1094V4.64062H62.6328V0.164062H65.0469V11.5859Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M50.3359 2.01562C49.4245 2.01562 48.7188 2.35938 48.2188 3.04688C47.7188 3.72917 47.4688 4.68229 47.4688 5.90625C47.4688 8.45312 48.4245 9.72656 50.3359 9.72656C51.138 9.72656 52.1094 9.52604 53.25 9.125V11.1562C52.3125 11.5469 51.2656 11.7422 50.1094 11.7422C48.4479 11.7422 47.1771 11.2396 46.2969 10.2344C45.4167 9.22396 44.9766 7.77604 44.9766 5.89062C44.9766 4.70312 45.1927 3.66406 45.625 2.77344C46.0573 1.8776 46.6771 1.19271 47.4844 0.71875C48.2969 0.239583 49.2474 0 50.3359 0C51.4453 0 52.5599 0.268229 53.6797 0.804688L52.8984 2.77344C52.4714 2.57031 52.0417 2.39323 51.6094 2.24219C51.1771 2.09115 50.7526 2.01562 50.3359 2.01562Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M37.3438 5.23438H38.125C38.8906 5.23438 39.4557 5.10677 39.8203 4.85156C40.1849 4.59635 40.3672 4.19531 40.3672 3.64844C40.3672 3.10677 40.1797 2.72135 39.8047 2.49219C39.4349 2.26302 38.8594 2.14844 38.0781 2.14844H37.3438V5.23438ZM37.3438 7.20312V11.5859H34.9219V0.164062H38.25C39.8021 0.164062 40.9505 0.447917 41.6953 1.01562C42.4401 1.57812 42.8125 2.4349 42.8125 3.58594C42.8125 4.25781 42.6276 4.85677 42.2578 5.38281C41.888 5.90365 41.3646 6.3125 40.6875 6.60938C42.4062 9.17708 43.526 10.8359 44.0469 11.5859H41.3594L38.6328 7.20312H37.3438Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M30.8672 11.5859L30.0391 8.86719H25.875L25.0469 11.5859H22.4375L26.4688 0.117188H29.4297L33.4766 11.5859H30.8672ZM29.4609 6.83594C28.6953 4.3724 28.263 2.97917 28.1641 2.65625C28.0703 2.33333 28.0026 2.07812 27.9609 1.89062C27.7891 2.55729 27.2969 4.20573 26.4844 6.83594H29.4609Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M14.3672 2.01562C13.4557 2.01562 12.75 2.35938 12.25 3.04688C11.75 3.72917 11.5 4.68229 11.5 5.90625C11.5 8.45312 12.4557 9.72656 14.3672 9.72656C15.1693 9.72656 16.1406 9.52604 17.2812 9.125V11.1562C16.3438 11.5469 15.2969 11.7422 14.1406 11.7422C12.4792 11.7422 11.2083 11.2396 10.3281 10.2344C9.44792 9.22396 9.00781 7.77604 9.00781 5.89062C9.00781 4.70312 9.22396 3.66406 9.65625 2.77344C10.0885 1.8776 10.7083 1.19271 11.5156 0.71875C12.3281 0.239583 13.2786 0 14.3672 0C15.4766 0 16.5911 0.268229 17.7109 0.804688L16.9297 2.77344C16.5026 2.57031 16.0729 2.39323 15.6406 2.24219C15.2083 2.09115 14.7839 2.01562 14.3672 2.01562Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M7.44531 8.41406C7.44531 9.44531 7.07292 10.2578 6.32812 10.8516C5.58854 11.4453 4.55729 11.7422 3.23438 11.7422C2.01562 11.7422 0.9375 11.513 0 11.0547V8.80469C0.770833 9.14844 1.42188 9.39062 1.95312 9.53125C2.48958 9.67188 2.97917 9.74219 3.42188 9.74219C3.95312 9.74219 4.35938 9.64062 4.64062 9.4375C4.92708 9.23438 5.07031 8.93229 5.07031 8.53125C5.07031 8.30729 5.00781 8.10938 4.88281 7.9375C4.75781 7.76042 4.57292 7.59115 4.32812 7.42969C4.08854 7.26823 3.59635 7.01042 2.85156 6.65625C2.15365 6.32812 1.63021 6.01302 1.28125 5.71094C0.932292 5.40885 0.653646 5.05729 0.445312 4.65625C0.236979 4.25521 0.132812 3.78646 0.132812 3.25C0.132812 2.23958 0.473958 1.44531 1.15625 0.867188C1.84375 0.289062 2.79167 0 4 0C4.59375 0 5.15885 0.0703125 5.69531 0.210938C6.23698 0.351562 6.80208 0.549479 7.39062 0.804688L6.60938 2.6875C6 2.4375 5.49479 2.26302 5.09375 2.16406C4.69792 2.0651 4.30729 2.01562 3.92188 2.01562C3.46354 2.01562 3.11198 2.1224 2.86719 2.33594C2.6224 2.54948 2.5 2.82812 2.5 3.17188C2.5 3.38542 2.54948 3.57292 2.64844 3.73438C2.7474 3.89062 2.90365 4.04427 3.11719 4.19531C3.33594 4.34115 3.84896 4.60677 4.65625 4.99219C5.72396 5.5026 6.45573 6.01562 6.85156 6.53125C7.2474 7.04167 7.44531 7.66927 7.44531 8.41406Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"SC Architectes Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14fazr4\",\"data-framer-name\":\"StudioSML\",layoutDependency:layoutDependency,layoutId:\"aBuxQBnhO\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1scdjhb\",\"data-framer-name\":\"Studio SML\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:86,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDqhwmQCTwO\",svg:'<svg width=\"86\" height=\"21\" viewBox=\"0 0 86 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.88288 12.152C6.88288 12.5852 6.81068 13.0184 6.59408 13.3072C6.44967 13.6682 6.16086 13.8848 5.87205 14.1015C5.58325 14.3181 5.22223 14.4625 4.86122 14.5347C4.50021 14.6069 4.1392 14.6791 3.70599 14.6791C3.27278 14.6791 2.76736 14.6069 2.26195 14.4625C1.75653 14.3181 1.32332 14.1015 0.890105 13.8126V12.4408C1.32332 12.8018 1.82873 13.0184 2.33415 13.1628C2.83956 13.3072 3.27278 13.4516 3.56158 13.4516C4.067 13.4516 4.50021 13.3072 4.86122 13.0906C5.22223 12.874 5.36664 12.5852 5.36664 12.152C5.36664 12.0076 5.36664 11.8632 5.29444 11.7188C5.22224 11.5744 5.15003 11.5022 5.07783 11.43C5.00563 11.3578 4.93343 11.2856 4.78902 11.2134C4.64462 11.1412 4.57241 11.069 4.42801 10.9968C4.28361 10.9246 4.35581 10.9968 4.2114 10.9246C4.067 10.8524 3.9226 10.7802 3.85039 10.7802C3.12837 10.4191 2.69516 10.2025 2.40635 10.0581C1.53992 9.48052 1.10671 8.8307 1.10671 8.10868C1.10671 7.67546 1.17891 7.31445 1.39552 7.02564C1.61213 6.73683 1.82873 6.44803 2.11754 6.23142C2.40635 6.01481 2.76736 5.87041 3.12837 5.79821C3.48938 5.726 3.85039 5.6538 4.2114 5.6538C5.00563 5.6538 5.72765 5.87041 6.37747 6.23142V7.38665C5.65545 7.02564 4.93343 6.80904 4.2114 6.80904C3.70599 6.80904 3.34498 6.95344 3.05617 7.17005C2.76736 7.38665 2.62296 7.67546 2.62296 8.03647C2.62296 8.18088 2.69516 8.39748 2.76736 8.54189C2.83956 8.68629 2.98397 8.8307 3.20057 8.9751C3.41718 9.1195 3.56158 9.19171 3.70599 9.26391C3.85039 9.33611 3.9948 9.40831 4.2114 9.48052C4.50021 9.62492 4.64462 9.69712 4.78902 9.76933C4.93343 9.84153 5.07783 9.91373 5.29444 10.0581C5.51104 10.0581 5.65545 10.2025 5.79985 10.2747C5.94426 10.3469 6.08866 10.4913 6.23307 10.6358C6.37747 10.7802 6.52187 10.9246 6.59408 11.069C6.66628 11.2134 6.73848 11.3578 6.81068 11.5744C6.88288 11.7188 6.95509 11.9354 6.88288 12.152Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M14.1753 14.4625L12.3702 14.7513C12.0092 14.7513 11.7204 14.6791 11.4316 14.6069C11.1428 14.5347 10.854 14.3903 10.6374 14.2458C10.4208 14.1014 10.2042 13.8126 10.0598 13.5238C9.91537 13.1628 9.84317 12.8018 9.84317 12.2964V7.02563H8.11032V5.79819L9.84317 5.65379L10.132 3.12671H11.2872V5.79819H13.8143V7.02563H11.2872V11.9354C11.2872 12.513 11.4316 12.9462 11.6482 13.1628C11.8648 13.3794 12.2258 13.5238 12.7313 13.5238L14.1031 13.3072L14.1753 14.4625Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M23.1284 14.4625H21.8287L21.6843 12.7296L20.3847 13.8126C19.7349 14.3903 19.0129 14.6791 18.2186 14.6791C17.5688 14.6791 16.9912 14.4625 16.4858 14.0293C15.9804 13.596 15.7638 13.0184 15.7638 12.2242V5.726L17.2078 5.6538V11.43C17.2078 12.152 17.28 12.6574 17.4966 13.0184C17.7132 13.3794 18.002 13.4516 18.5074 13.4516C18.724 13.4516 18.9407 13.3794 19.0851 13.3072C19.3017 13.235 19.4461 13.0906 19.5905 13.0184C19.7349 12.9462 19.8793 12.8018 20.0237 12.5852L21.6121 11.2134V5.726L23.0562 5.6538L23.1284 14.4625Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M33.8865 14.6069L32.8757 14.7513C32.5147 14.7513 32.2259 14.6791 31.9371 14.4625C31.6482 14.3181 31.4316 14.0293 31.3594 13.6683L31.2872 13.4517H31.215C30.9262 13.8127 30.5652 14.1737 30.132 14.3903C29.6988 14.6069 29.1934 14.7513 28.7602 14.7513C28.1825 14.7513 27.6771 14.6069 27.1717 14.3903C26.6663 14.1737 26.3053 13.8127 26.0165 13.4517C25.7277 13.0184 25.5111 12.5852 25.3667 12.0798C25.2223 11.5744 25.1501 10.9968 25.1501 10.4914C25.1501 9.91375 25.2223 9.26393 25.4389 8.75852C25.6555 8.1809 25.8721 7.67549 26.2331 7.24227C26.5941 6.80906 26.9551 6.44805 27.5327 6.15924C28.0381 5.87043 28.6158 5.72603 29.2656 5.72603C29.6988 5.72603 30.0598 5.79823 30.4208 5.94263C30.7818 6.08704 31.0706 6.23144 31.215 6.37585V0.744077L32.6591 0.671875V11.8632C32.6591 12.5852 32.7313 13.0906 32.8035 13.3073C32.8757 13.5239 33.0923 13.6683 33.3089 13.6683L33.8865 13.5961V14.6069ZM31.215 7.60328C30.9984 7.38668 30.7096 7.17007 30.3486 7.02567C29.9876 6.88126 29.6988 6.80906 29.41 6.80906C28.8324 6.80906 28.3269 6.95346 27.8937 7.31447C27.4605 7.67549 27.1717 8.1087 26.9551 8.61411C26.7385 9.11953 26.7385 9.84155 26.7385 10.4914C26.7385 11.3578 26.9551 12.0798 27.3161 12.6574C27.7493 13.2351 28.2547 13.5239 29.049 13.5239C29.2656 13.5239 29.5544 13.4517 29.771 13.3795C29.9876 13.2351 30.2764 13.0906 30.493 12.874C30.7096 12.6574 30.9262 12.3686 31.0706 12.0076C31.215 11.6466 31.2872 11.2134 31.2872 10.7802V7.60328H31.215Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M37.3522 2.69349C37.3522 2.9823 37.28 3.2711 37.0634 3.48771C36.8468 3.63212 36.6302 3.77652 36.3414 3.77652C36.0526 3.77652 35.7638 3.63212 35.5472 3.48771C35.3305 3.2711 35.2583 3.0545 35.2583 2.69349C35.2583 2.33248 35.4027 2.11587 35.5472 1.89926C35.7638 1.68266 36.0526 1.61045 36.3414 1.61045C36.6302 1.61045 36.919 1.68266 37.0634 1.89926C37.2078 2.11587 37.3522 2.33248 37.3522 2.69349ZM35.6194 14.4624V5.72598L37.0634 5.65378V14.4624H35.6194Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M47.3161 10.2025C47.3161 11.5744 46.9551 12.6574 46.1609 13.4516C45.3667 14.2458 44.428 14.6791 43.2006 14.6791C41.9732 14.6791 41.0345 14.2458 40.2403 13.3794C39.4461 12.513 39.0851 11.43 39.0851 10.1303C39.0851 9.40829 39.2295 8.75847 39.4461 8.18086C39.6627 7.60324 40.0237 7.09782 40.3847 6.73681C40.7457 6.3758 41.1789 6.08699 41.6843 5.87039C42.1898 5.65378 42.6952 5.58158 43.2006 5.58158C43.706 5.58158 44.2114 5.65378 44.7168 5.87039C45.2223 6.08699 45.6555 6.3758 46.0165 6.73681C46.3775 7.09782 46.7385 7.60324 46.9551 8.18086C47.1717 8.75847 47.3161 9.48049 47.3161 10.2025ZM45.7999 10.2747C45.7999 9.6971 45.7277 9.11948 45.5111 8.61407C45.2945 8.10865 45.0056 7.67544 44.6446 7.31443C44.2114 6.95342 43.7782 6.80901 43.2006 6.80901C42.7674 6.80901 42.4064 6.88122 42.0454 7.09782C41.6843 7.31443 41.3955 7.53104 41.2511 7.89205C41.0345 8.25306 40.8901 8.61407 40.7457 8.97508C40.6013 9.33609 40.6013 9.7693 40.6013 10.2025C40.6013 10.6357 40.6735 10.9967 40.7457 11.43C40.8179 11.8632 41.0345 12.152 41.2511 12.4408C41.4677 12.7296 41.7565 13.0184 42.0454 13.235C42.4064 13.4516 42.7674 13.5238 43.2006 13.5238C43.7782 13.5238 44.2836 13.3794 44.6446 13.0184C45.0778 12.6574 45.3667 12.2964 45.5111 11.791C45.7277 11.3578 45.8721 10.8523 45.7999 10.2747Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M60.2403 11.3577C60.2403 11.9354 60.0959 12.4408 59.8793 12.874C59.6627 13.3072 59.3739 13.6682 58.9406 13.957C58.5796 14.2458 58.1464 14.4624 57.641 14.6068C57.1356 14.7512 56.6302 14.8235 56.0526 14.8235C55.4027 14.8235 54.7529 14.679 54.0309 14.4624C53.3089 14.2458 52.7313 13.957 52.2258 13.596V12.0076C52.7313 12.2964 53.0923 12.513 53.4533 12.7296C53.8143 12.874 54.1753 13.0906 54.6807 13.235C55.1861 13.3794 55.6193 13.4516 56.0526 13.4516C56.3414 13.4516 56.6302 13.3794 56.919 13.3072C57.2078 13.235 57.4966 13.0906 57.7132 12.9462C57.9298 12.8018 58.1464 12.5852 58.2908 12.2964C58.4352 12.0076 58.5074 11.7188 58.5074 11.3577C58.5074 11.1411 58.4352 10.9245 58.363 10.7079C58.2908 10.4913 58.1464 10.3469 58.0742 10.2025C57.9298 10.0581 57.7854 9.9137 57.5688 9.7693C57.3522 9.6249 57.2078 9.48049 57.0634 9.40829C56.919 9.33609 56.7024 9.19168 56.4858 9.04728C56.3414 8.97508 56.1248 8.83067 55.836 8.68627C55.5472 8.54186 55.3305 8.39746 55.1861 8.32526C55.0417 8.25305 54.8251 8.10865 54.5363 7.89204C54.2475 7.74764 54.0309 7.53103 53.8865 7.38663C53.7421 7.24222 53.5255 7.09782 53.3089 6.88121C53.0923 6.66461 52.9479 6.448 52.8035 6.3036C52.8035 6.15919 52.7313 5.94258 52.6591 5.65378C52.5869 5.36497 52.5147 5.14836 52.5147 4.85955C52.5147 4.20973 52.7313 3.55991 53.0923 3.0545C53.4533 2.54908 53.8865 2.18807 54.4641 1.89926C55.0417 1.75486 55.6194 1.61045 56.2692 1.61045C57.3522 1.61045 58.363 1.89926 59.0851 2.40468V3.84872C58.5796 3.55991 58.1464 3.34331 57.641 3.1989C57.1356 3.0545 56.6302 2.9823 56.197 2.9823C55.6194 2.9823 55.1139 3.1989 54.7529 3.55991C54.3919 3.84872 54.1753 4.28193 54.1753 4.71515C54.1753 5.00396 54.2475 5.22056 54.3197 5.50937C54.3919 5.79818 54.6085 5.94259 54.8251 6.15919C55.0417 6.3758 55.2583 6.5202 55.4027 6.66461C55.5471 6.80901 55.836 6.95342 56.0526 7.09782C56.197 7.17002 56.4136 7.31443 56.7024 7.45883C56.9912 7.60324 57.2078 7.74764 57.4244 7.81984C57.641 7.89204 57.8576 8.03645 58.0742 8.25305C58.363 8.39746 58.5796 8.54186 58.724 8.68627C58.8684 8.83067 59.0851 8.97508 59.3017 9.19168C59.5183 9.40829 59.6627 9.6249 59.8071 9.7693C59.9515 9.98591 60.0237 10.2025 60.0959 10.4913C60.1681 10.7801 60.2403 10.9967 60.2403 11.2855V11.3577Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M73.5977 14.4625V7.96426L73.7421 4.57076H73.6699L69.41 14.4625H68.3269L64.067 4.57076H63.9948L64.1392 7.96426V14.4625H62.623V1.75487H64.3558L68.8324 12.2964H68.9046L73.4533 1.75487H75.1861V14.4625H73.5977Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M85.1501 14.4625H78.2908V1.75487H79.8793V13.1628H85.1501V14.4625Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M2.47856 20.5997L2.18976 20.6719C2.11755 20.6719 1.97315 20.6719 1.90095 20.5997C1.82875 20.5275 1.75654 20.4553 1.75654 20.3831V20.3109C1.53994 20.5275 1.25113 20.6719 1.03452 20.6719C0.817915 20.6719 0.673511 20.5997 0.529106 20.5275C0.384702 20.3831 0.3125 20.2387 0.3125 20.022C0.3125 19.7332 0.456904 19.5888 0.673511 19.4444C0.890117 19.3 1.25113 19.2278 1.68434 19.2278V18.939C1.68434 18.7946 1.61214 18.6502 1.53994 18.578C1.46773 18.5058 1.46773 18.5058 1.32333 18.5058C1.17893 18.5058 0.962319 18.578 0.745713 18.7224L0.601309 18.4336C0.890117 18.2892 1.17893 18.217 1.39553 18.217C1.61214 18.217 1.82875 18.2892 1.97315 18.4336C2.11755 18.578 2.18976 18.7946 2.18976 19.0112V19.8776C2.18976 20.0942 2.18976 20.2387 2.18976 20.2387C2.18976 20.3109 2.26196 20.3831 2.33416 20.3831H2.47856V20.5997ZM1.75654 19.4444C1.39553 19.4444 1.17893 19.5166 1.03452 19.5888C0.817915 19.661 0.745713 19.8054 0.745713 20.022C0.745713 20.1665 0.817915 20.2387 0.890117 20.2387C0.96232 20.3109 1.03452 20.3109 1.10672 20.3109C1.25113 20.3109 1.46773 20.1665 1.75654 19.9498V19.4444Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M4.28362 18.5058C4.21142 18.5058 4.13922 18.5058 4.06702 18.5058C3.92261 18.5058 3.85041 18.578 3.70601 18.6502L3.27279 19.0834V20.5997H2.91178V18.217H3.27279L3.34499 18.7946L3.6338 18.3614C3.77821 18.217 3.92261 18.1448 4.06702 18.1448C4.13922 18.1448 4.21142 18.1448 4.28362 18.1448V18.5058Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M6.59408 20.3109C6.37748 20.5275 6.08867 20.6719 5.72766 20.6719C5.51105 20.6719 5.29444 20.5997 5.15004 20.5275C4.93343 20.4553 4.78903 20.3109 4.71683 20.0942C4.57242 19.8776 4.57242 19.661 4.57242 19.4444C4.57242 19.2278 4.64462 19.0112 4.71683 18.7946C4.78903 18.578 4.93343 18.4336 5.15004 18.3614C5.36665 18.2892 5.51105 18.217 5.79986 18.217C6.08867 18.217 6.30527 18.2892 6.52188 18.3614L6.37748 18.6502C6.23307 18.578 6.01647 18.5058 5.87206 18.5058C5.65546 18.5058 5.43885 18.578 5.22224 18.7946C5.07784 18.939 4.93343 19.1556 4.93343 19.4444C4.93343 19.7332 5.00564 19.9498 5.22224 20.0942C5.36665 20.2387 5.58325 20.3831 5.79986 20.3831C6.01647 20.3831 6.23307 20.3109 6.44968 20.0942L6.59408 20.3109Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M9.04894 20.5997H8.68793V19.0112C8.68793 18.7946 8.68793 18.6502 8.61573 18.578C8.54352 18.5058 8.47132 18.4336 8.32692 18.4336C8.25471 18.4336 8.18251 18.4336 8.18251 18.5058C8.11031 18.5058 8.03811 18.578 8.03811 18.578C8.03811 18.578 7.96591 18.6502 7.8937 18.7224L7.53269 19.0834V20.5997H7.02728V16.773H7.38829V18.7224L7.6771 18.4336C7.8937 18.2892 8.11031 18.1448 8.32692 18.1448C8.54352 18.1448 8.68793 18.217 8.83233 18.2892C8.97674 18.4336 9.04894 18.578 9.04894 18.7946V20.5997Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M10.2764 17.3506C10.2764 17.4228 10.2764 17.495 10.2042 17.5672C10.132 17.6394 10.0598 17.6394 9.98759 17.6394C9.91539 17.6394 9.84318 17.6394 9.77098 17.5672C9.69878 17.495 9.69878 17.4228 9.69878 17.3506C9.69878 17.2783 9.69878 17.2061 9.77098 17.1339C9.84318 17.0617 9.91539 17.0617 9.98759 17.0617C10.0598 17.0617 10.132 17.0617 10.2042 17.1339C10.2764 17.2061 10.2764 17.2783 10.2764 17.3506ZM9.84318 18.217H10.2042V20.6719H9.84318V18.217Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M12.3702 20.5996L11.8648 20.6719C11.7926 20.6719 11.6482 20.6719 11.576 20.6719C11.5038 20.6719 11.4316 20.5996 11.3594 20.5996C11.2872 20.5274 11.215 20.4552 11.215 20.383C11.215 20.3108 11.1428 20.1664 11.1428 20.022V18.578H10.6374V18.217L11.1428 18.1448L11.215 17.4228H11.576V18.1448H12.298V18.5058H11.576V19.8776C11.576 20.022 11.576 20.1664 11.6482 20.2386C11.7204 20.3108 11.7926 20.3108 11.937 20.3108L12.298 20.2386L12.3702 20.5996Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M14.6807 20.383C14.4641 20.5996 14.1753 20.6718 13.8143 20.6718C13.6699 20.6718 13.5255 20.6718 13.3811 20.5996C13.2367 20.5274 13.1645 20.4552 13.0201 20.383C12.9479 20.3108 12.8757 20.2386 12.8035 20.0942C12.7313 20.022 12.6591 19.8776 12.6591 19.7332C12.6591 19.5888 12.5869 19.5166 12.5869 19.3722C12.5869 19.2278 12.5869 19.0834 12.6591 18.939C12.7313 18.7946 12.8035 18.6502 12.8757 18.5058C12.9479 18.3614 13.0923 18.2892 13.2367 18.217C13.3811 18.1447 13.5255 18.0725 13.7421 18.0725C14.0309 18.0725 14.2475 18.1447 14.3919 18.2892C14.5363 18.4336 14.6085 18.6502 14.6085 18.8668C14.6085 19.0834 14.5363 19.2278 14.4641 19.4444H13.0201C13.0201 19.5888 13.0201 19.661 13.0923 19.7332C13.1645 19.8054 13.1645 19.8776 13.2367 19.9498C13.3089 20.022 13.3811 20.0942 13.4533 20.0942C13.5255 20.0942 13.5977 20.1664 13.6699 20.1664C13.7421 20.1664 13.8143 20.1664 13.8865 20.1664C14.1031 20.1664 14.3197 20.0942 14.5363 19.9498L14.6807 20.383ZM14.2475 19.2278C14.2475 19.1556 14.3197 19.0834 14.3197 19.0112C14.3197 18.8668 14.2475 18.7224 14.1753 18.6502C14.1031 18.578 13.9587 18.5058 13.8143 18.5058C13.6699 18.5058 13.4533 18.578 13.3811 18.7224C13.2367 18.8668 13.1645 19.0112 13.1645 19.2278H14.2475Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M17.2078 20.3109C16.9912 20.5275 16.7024 20.6719 16.3414 20.6719C16.1248 20.6719 15.9082 20.5997 15.7638 20.5275C15.5472 20.4553 15.4028 20.3109 15.3305 20.0942C15.1861 19.8776 15.1861 19.661 15.1861 19.4444C15.1861 19.2278 15.2583 19.0112 15.3305 18.7946C15.4028 18.578 15.5472 18.4336 15.7638 18.3614C15.9804 18.2892 16.1248 18.217 16.4136 18.217C16.7024 18.217 16.919 18.2892 17.1356 18.3614L16.9912 18.6502C16.8468 18.578 16.6302 18.5058 16.4858 18.5058C16.2692 18.5058 16.0526 18.578 15.836 18.7946C15.6916 18.939 15.5472 19.1556 15.5472 19.4444C15.5472 19.7332 15.6194 19.9498 15.836 20.0942C15.9804 20.2387 16.197 20.3831 16.4136 20.3831C16.6302 20.3831 16.8468 20.3109 17.0634 20.0942L17.2078 20.3109Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M19.0851 20.5996L18.5796 20.6719C18.5074 20.6719 18.363 20.6719 18.2908 20.6719C18.2186 20.6719 18.1464 20.5996 18.0742 20.5996C18.002 20.5274 17.9298 20.4552 17.9298 20.383C17.8576 20.3108 17.8576 20.1664 17.8576 20.022V18.578H17.3522V18.217L17.8576 18.1448L17.9298 17.4228H18.2186V18.1448H18.9407V18.5058H18.2186V19.8776C18.2186 20.022 18.2186 20.1664 18.2908 20.2386C18.363 20.3108 18.4352 20.3108 18.5796 20.3108L18.9407 20.2386L19.0851 20.5996Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M21.4677 20.383C21.2511 20.5996 20.9623 20.6718 20.6013 20.6718C20.4569 20.6718 20.3125 20.6718 20.1681 20.5996C20.0237 20.5274 19.9515 20.4552 19.8071 20.383C19.7349 20.3108 19.6627 20.2386 19.5905 20.0942C19.5183 20.022 19.4461 19.8776 19.4461 19.7332C19.4461 19.5888 19.3739 19.5166 19.3739 19.3722C19.3739 19.2278 19.3739 19.0834 19.4461 18.939C19.5183 18.7946 19.5905 18.6502 19.6627 18.5058C19.7349 18.3614 19.8793 18.2892 20.0237 18.217C20.1681 18.1447 20.3125 18.0725 20.5291 18.0725C20.8179 18.0725 21.0345 18.1447 21.1789 18.2892C21.3233 18.4336 21.3955 18.6502 21.3955 18.8668C21.3955 19.0834 21.3233 19.2278 21.2511 19.4444H19.8071C19.8071 19.5888 19.8071 19.661 19.8793 19.7332C19.9515 19.8054 19.9515 19.8776 20.0237 19.9498C20.0959 20.022 20.1681 20.0942 20.2403 20.0942C20.3125 20.0942 20.3847 20.1664 20.4569 20.1664C20.5291 20.1664 20.6013 20.1664 20.6735 20.1664C20.8901 20.1664 21.1067 20.0942 21.3233 19.9498L21.4677 20.383ZM21.0345 19.2278C21.0345 19.1556 21.1067 19.0834 21.1067 19.0112C21.1067 18.8668 21.0345 18.7224 20.9623 18.6502C20.8901 18.578 20.7457 18.5058 20.6013 18.5058C20.4569 18.5058 20.2403 18.578 20.1681 18.7224C20.0237 18.8668 19.9515 19.0112 19.9515 19.2278H21.0345Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M23.4894 19.9499C23.4894 20.0943 23.4894 20.1665 23.4172 20.2387C23.345 20.3109 23.2728 20.3831 23.2006 20.4553C23.1284 20.5275 23.0562 20.5275 22.9118 20.5997C22.8396 20.5997 22.6952 20.6719 22.623 20.6719C22.4786 20.6719 22.3342 20.6719 22.262 20.5997C22.1176 20.5275 21.9731 20.5275 21.9009 20.4553V20.0943C22.0453 20.1665 22.1898 20.2387 22.262 20.3109C22.4064 20.3831 22.5508 20.3831 22.623 20.3831C22.7674 20.3831 22.9118 20.3831 22.984 20.3109C23.0562 20.2387 23.1284 20.1665 23.1284 20.0943C23.1284 20.0221 23.1284 20.0221 23.1284 19.9499C23.1284 19.9499 23.1284 19.8776 23.0562 19.8776L22.984 19.8054C22.9118 19.8054 22.9118 19.7332 22.9118 19.7332C22.9118 19.7332 22.8396 19.7332 22.8396 19.661C22.8396 19.5888 22.7674 19.661 22.7674 19.5888C22.5508 19.5166 22.4786 19.4444 22.4064 19.3722C22.1898 19.2278 22.0453 19.0112 22.0453 18.8668C22.0453 18.7224 22.0453 18.6502 22.1176 18.578C22.1898 18.5058 22.262 18.4336 22.3342 18.3614C22.4064 18.2892 22.4786 18.2892 22.623 18.217C22.6952 18.217 22.8396 18.1448 22.9118 18.1448C23.1284 18.1448 23.345 18.217 23.4894 18.2892V18.6502C23.2728 18.578 23.0562 18.5058 22.9118 18.5058C22.7674 18.5058 22.6952 18.5058 22.5508 18.578C22.4786 18.6502 22.4064 18.7224 22.4064 18.7946C22.4064 18.8668 22.4064 18.8668 22.4786 18.939C22.4786 19.0112 22.5508 19.0112 22.623 19.0834C22.6952 19.0834 22.6952 19.1556 22.7674 19.1556C22.8396 19.1556 22.8396 19.2278 22.9118 19.2278C22.984 19.2278 23.0562 19.3 23.0562 19.3C23.0562 19.3 23.1284 19.3722 23.2006 19.3722C23.2728 19.3722 23.345 19.4444 23.345 19.4444C23.345 19.4444 23.4172 19.5166 23.4894 19.5166C23.5616 19.5888 23.5616 19.5888 23.5616 19.661C23.5616 19.7332 23.6338 19.7332 23.6338 19.8054C23.4894 19.8776 23.4894 19.8776 23.4894 19.9499Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"Studio SML Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xj55p3\",\"data-framer-name\":\"Schmidt\",layoutDependency:layoutDependency,layoutId:\"ZMDUd60XE\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nbuvvv\",\"data-framer-name\":\"Schmidt\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:97,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDPhoQYOq0e\",svg:'<svg width=\"97\" height=\"20\" viewBox=\"0 0 97 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.7201 11.3652V12.2605C14.7199 12.3847 14.6705 12.5037 14.5827 12.5916C14.4949 12.6795 14.3759 12.7289 14.2517 12.7292H0.628621C-0.113276 10.5381 -0.0332412 8.1519 0.853813 6.01537C1.74087 3.87884 3.37443 2.13767 5.45012 1.11632C7.5258 0.0949699 9.90202 -0.136905 12.136 0.463905C14.37 1.06471 16.3093 2.45723 17.5927 4.38197H7.0346C6.28972 4.38261 5.57553 4.67875 5.04874 5.20538C4.52196 5.73201 4.22561 6.44613 4.22475 7.19101V8.08683C4.22554 8.83174 4.52186 9.54589 5.04866 10.0725C5.57546 10.5992 6.2897 10.8953 7.0346 10.8959H14.2508C14.3753 10.8959 14.4946 10.9454 14.5826 11.0334C14.6706 11.1214 14.7201 11.2407 14.7201 11.3652Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M7.03377 6.70836H18.7229C19.436 8.88845 19.3392 11.2525 18.4505 13.3671C17.5617 15.4816 15.9405 17.205 13.8841 18.221C11.8276 19.2371 9.47386 19.4778 7.25434 18.899C5.03482 18.3202 3.09833 16.9607 1.79997 15.0698H14.2516C14.9947 15.0672 15.7064 14.7699 16.2305 14.2432C16.7547 13.7164 17.0484 13.0033 17.0473 12.2602V11.3649C17.0484 10.6218 16.7547 9.90869 16.2305 9.38196C15.7064 8.85522 14.9947 8.55794 14.2516 8.55534H7.03377C6.90949 8.55519 6.79034 8.50576 6.70246 8.41788C6.61458 8.33 6.56515 8.21085 6.56501 8.08658V7.19102C6.5634 7.06492 6.61183 6.94333 6.69969 6.85286C6.78755 6.7624 6.90768 6.71044 7.03377 6.70836Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M20.6094 7.13716V12.2064C20.6102 12.9513 20.9064 13.6655 21.4331 14.1922C21.9599 14.719 22.674 15.0153 23.419 15.0162H33.1158V12.6754H23.419C23.2947 12.6751 23.1755 12.6255 23.0877 12.5376C22.9999 12.4496 22.9505 12.3304 22.9505 12.2061V7.13689C22.9489 7.01087 22.9973 6.88934 23.0851 6.79893C23.1729 6.70851 23.2929 6.65658 23.419 6.6545H33.1158V4.32812H23.419C22.6741 4.32892 21.9601 4.62511 21.4334 5.15172C20.9066 5.67833 20.6103 6.39235 20.6094 7.13716Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M37.0436 8.50177H45.1993V4.32813H47.5259V15.0159H45.1993V10.842H37.0436V15.0159H34.7034V4.32813H37.0436V8.50177Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M62.4196 4.32814H61.7584C61.4913 4.3332 61.2281 4.39298 60.985 4.5038C60.742 4.61462 60.5242 4.77411 60.3453 4.97242L56.5104 9.06211L52.6873 4.9855C52.5078 4.7838 52.2886 4.62131 52.0434 4.5082C51.7982 4.39509 51.5324 4.33379 51.2624 4.32814H50.6149C50.2188 4.32676 49.8384 4.48255 49.5571 4.76132C49.2758 5.04008 49.1165 5.41906 49.1143 5.8151V15.016H51.4548V7.07586L55.4456 11.3713C55.5741 11.5279 55.7355 11.6543 55.9184 11.7413C56.1013 11.8283 56.3012 11.8739 56.5037 11.8748C56.7063 11.8757 56.9065 11.8318 57.0902 11.7464C57.2738 11.661 57.4364 11.5361 57.5662 11.3806L61.5793 7.06033V15.016H63.906V5.8151C63.9056 5.42094 63.7489 5.04302 63.4702 4.76425C63.1916 4.48549 62.8137 4.32865 62.4196 4.32814Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M65.4946 4.32813H67.8351V15.0159H65.4946V4.32813Z\" fill=\"#0A0C0C\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M79.4964 4.32813H69.4693V15.0159H79.4964C80.2394 15.0128 80.9508 14.7154 81.4748 14.1887C81.9988 13.662 82.2926 12.949 82.2918 12.2061V7.1369C82.2923 6.39414 81.9983 5.68149 81.4744 5.15503C80.9504 4.62858 80.2392 4.33123 79.4964 4.32813ZM79.9649 7.13717V12.2064C79.9649 12.3307 79.9156 12.4499 79.8278 12.5379C79.7399 12.6259 79.6208 12.6755 79.4964 12.6757H71.8109V6.65478H79.4964C79.6225 6.65672 79.7427 6.7086 79.8306 6.79904C79.9185 6.88947 79.9666 7.01108 79.9649 7.13717Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M83.3022 6.65478V4.32813H96.1247V6.65478H90.8904V15.0159H88.5499V6.65478H83.3022Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"Schmidt Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sxlby4\",\"data-framer-name\":\"Jubin\",layoutDependency:layoutDependency,layoutId:\"nf35X8esz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mdb8bp\",\"data-framer-name\":\"Jubin\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDhPqZywGXN\",svg:'<svg width=\"28\" height=\"31\" viewBox=\"0 0 28 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.5497 29.6282C27.5497 30.2915 27.0152 30.8251 26.3535 30.8251H1.3179C0.655015 30.8251 0.121094 30.2915 0.121094 29.6282V4.59252C0.121094 3.93204 0.655015 3.39648 1.31681 3.39648H26.3535C27.0152 3.39648 27.5497 3.93204 27.5497 4.59252V29.6282Z\" fill=\"#0A0C0C\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.5497 29.6282C27.5497 30.2915 27.0152 30.8251 26.3535 30.8251H1.3179C0.655015 30.8251 0.121094 30.2915 0.121094 29.6282V4.59252C0.121094 3.93204 0.655015 3.39648 1.31681 3.39648H26.3535C27.0152 3.39648 27.5497 3.93204 27.5497 4.59252V29.6282Z\" stroke=\"#FEFEFE\" stroke-width=\"0.156862\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.4089 16.3852C25.0562 20.8764 22.7146 25.8592 18.1937 27.4936L17.5742 27.7177L18.0275 28.9553L18.647 28.7316C23.858 26.8475 26.5516 21.1085 24.6552 15.9343L21.5858 7.55273L20.3384 8.0036L23.4089 16.3852Z\" fill=\"#FCFCFC\" stroke=\"#0A0C0C\" stroke-width=\"0.103896\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.7461 25.6357L17.1971 26.8763C22.1256 24.9344 23.9045 20.9371 22.0596 15.8534L19.3469 8.38281L18.1091 8.83528L20.821 16.3066C22.4237 20.7308 21.0118 23.9473 16.7461 25.6357Z\" fill=\"#FCFCFC\" stroke=\"#0A0C0C\" stroke-width=\"0.103896\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.9308 23.3597L16.3919 24.5915C20.5715 22.7841 21.3683 20.3988 19.6074 15.6951L17.1841 9.21484L15.9141 9.66348L18.3405 16.1442C19.8484 20.1813 19.3877 21.8713 15.9308 23.3597Z\" fill=\"#FCFCFC\" stroke=\"#0A0C0C\" stroke-width=\"0.103896\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.6167 15.2364C15.7515 15.6089 15.8761 15.9547 15.9967 16.2812C16.6802 18.138 17.0911 19.2599 16.7992 19.8986C16.6266 20.2772 16.156 20.6343 15.2247 21.0605L15.6737 22.3054C16.8762 21.7653 17.6305 21.2218 17.9855 20.4514C18.5021 19.3168 18.0201 17.999 17.218 15.8202C17.1013 15.4974 16.9748 15.1551 16.8415 14.7865L15.0623 9.83789L13.8359 10.2902L15.6167 15.2364Z\" fill=\"#FCFCFC\" stroke=\"#0A0C0C\" stroke-width=\"0.103896\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.373 8.38243C12.5242 8.38243 11.099 7.61401 10.6579 6.37887C10.32 5.43732 10.5729 4.35248 11.3657 3.32528C12.128 2.34112 13.3067 1.51737 14.6884 1.0041C15.6046 0.667155 16.5598 0.486328 17.455 0.486328C19.305 0.486328 20.7301 1.25277 21.1697 2.48989C21.5096 3.43221 21.2558 4.51595 20.462 5.54425C19.7012 6.52874 18.5198 7.35227 17.1407 7.86236C16.223 8.20282 15.2675 8.38243 14.373 8.38243Z\" fill=\"#FCFCFC\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.5631 0.279297C16.6315 0.279297 15.638 0.461308 14.6858 0.804095C13.2515 1.32128 12.0222 2.16056 11.2257 3.1663C10.3616 4.25409 10.0948 5.41642 10.4708 6.43729C10.9559 7.76394 12.4943 8.59098 14.4755 8.59098C15.4056 8.59098 16.4024 8.4094 17.3517 8.06511C18.7859 7.54749 20.0176 6.7094 20.8129 5.70248C21.6759 4.61469 21.943 3.45342 21.5675 2.43149C21.0828 1.10334 19.547 0.279297 17.5631 0.279297ZM17.5631 0.877462C19.2333 0.877462 20.5878 1.50556 21.0015 2.63582C21.6255 4.33132 19.8958 6.51 17.1448 7.50202C16.2288 7.83354 15.3129 7.99014 14.4755 7.99014C12.8038 7.99014 11.4513 7.36054 11.0367 6.23297C10.4151 4.53897 12.1413 2.35952 14.8935 1.36676C15.8106 1.03524 16.7257 0.877462 17.5631 0.877462Z\" fill=\"#0A0C0C\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.2592 2.13606C17.8639 1.19655 20.4505 1.6287 21.3154 3.07798C21.2971 2.94859 21.2663 2.81998 21.2211 2.69606C20.5865 0.96799 17.7966 0.387953 14.9896 1.40048C12.182 2.4141 10.4208 4.63835 11.0551 6.36719C11.1002 6.49231 11.1618 6.60855 11.2276 6.72053C10.9531 5.05737 12.653 3.07677 15.2592 2.13606Z\" fill=\"#0A0C0C\" stroke=\"#0A0C0C\" stroke-width=\"0.207792\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.9234 16.3051C15.7883 15.9725 15.6481 15.6198 15.4961 15.2402L15.7271 15.8257C15.8792 16.2042 16.0206 16.557 16.1535 16.8884C16.2169 17.037 16.2708 17.1772 16.3273 17.3182C16.2053 17.0064 16.0712 16.6723 15.9234 16.3051Z\" fill=\"#B03322\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.51306 13.9941H4.2779V18.8712C4.2779 18.8712 4.1733 20.8513 1.99219 20.8513V19.0293C1.99219 19.0293 2.51306 19.0572 2.51306 18.3412V13.9941Z\" fill=\"#FCFCFC\" stroke=\"#0A0C0C\" stroke-width=\"0.248608\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.60558 20.8513C5.46299 20.8513 4.89844 19.7079 4.89844 18.2858V13.9941H6.73708V18.1936C6.73708 18.9106 6.95345 19.299 7.71322 19.299C8.45502 19.299 8.69208 18.9803 8.69208 18.1459V13.9941H10.5088V18.0453C10.5088 19.9952 9.39357 20.8513 7.60558 20.8513Z\" fill=\"#FCFCFC\" stroke=\"#0A0C0C\" stroke-width=\"0.248608\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.6857 17.9335C13.6176 17.9335 13.3171 17.9335 13.2057 17.9414V19.1417C13.3258 19.1526 13.5264 19.1606 13.6857 19.1606C14.1864 19.1606 14.5281 18.9478 14.5281 18.537C14.5281 18.196 14.2671 17.9335 13.6857 17.9335ZM13.7364 15.4573C13.5264 15.4573 13.3666 15.4663 13.2057 15.4747V16.5884C13.3171 16.5971 13.4473 16.5971 13.6066 16.5971C14.1864 16.5971 14.4596 16.3539 14.4596 15.9742C14.4596 15.6328 14.1782 15.4573 13.7364 15.4573ZM13.6772 20.6435C13.2677 20.6435 12.4861 20.6237 11.3438 20.6237V14.0525C12.0236 14.0135 13.1956 13.9941 14.0371 13.9941C15.4994 13.9941 16.4415 14.5408 16.4415 15.6905C16.4415 16.2754 16.0905 16.8023 15.5692 17.0648V17.0937C16.1493 17.2905 16.5386 17.8831 16.5386 18.5177C16.5386 19.7061 15.6097 20.6442 13.6772 20.6435Z\" fill=\"#FCFCFC\" stroke=\"#0A0C0C\" stroke-width=\"0.248608\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.3672 13.9941H19.2373V20.6435H17.3672V13.9941Z\" fill=\"#FCFCFC\" stroke=\"#0A0C0C\" stroke-width=\"0.248608\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.7686 20.6435L22.6534 18.3675C22.3982 17.8451 22.1599 17.3148 21.9919 16.871C22.0306 17.2642 22.0429 17.4914 22.0429 17.9256V20.6435H20.2773V13.9941H22.6238L23.5893 15.9738C23.8772 16.5663 24.173 17.1676 24.3975 17.6988C24.3511 17.2458 24.33 16.7326 24.33 16.3199V13.9941H26.0955V20.6435H23.7686Z\" fill=\"#FCFCFC\" stroke=\"#0A0C0C\" stroke-width=\"0.248608\"/>\\n</svg>\\n',title:\"Jubin Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9z4okc\",\"data-framer-name\":\"Rocades\",layoutDependency:layoutDependency,layoutId:\"tX447LIrX\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f768mh\",\"data-framer-name\":\"Rocades\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:120,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDgP68ZSKbU\",svg:'<svg width=\"120\" height=\"25\" viewBox=\"0 0 120 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M94.6214 15.36C95.2149 13.7542 96.0527 12.5324 97.0651 11.4502C97.1698 11.3455 97.3094 11.2756 97.4491 11.2756C97.7283 11.2756 97.9727 11.52 97.9727 11.7993C97.9727 11.9389 97.9029 12.0785 97.8331 12.1484C96.8905 13.1607 96.1225 14.2429 95.5989 15.7091C95.5291 15.9185 95.3196 16.0582 95.1102 16.0582C94.6912 16.0582 94.5167 15.6393 94.6214 15.36ZM74.0251 18.432C75.0374 15.8138 76.4338 13.6145 78.1443 12.0436C78.2142 11.9738 78.3538 11.904 78.4934 11.904C78.7727 11.904 79.0171 12.1484 79.0171 12.4276C79.0171 12.5673 78.9472 12.7069 78.8425 12.8116C77.2716 14.3127 75.9451 16.3025 75.0025 18.7811C74.9327 18.9905 74.7232 19.1302 74.5138 19.1302C74.0949 19.1302 73.9203 18.7113 74.0251 18.432ZM55.5931 18.432C56.6054 15.8138 58.0018 13.6145 59.7123 12.0436C59.7822 11.9738 59.9218 11.904 60.0614 11.904C60.3407 11.904 60.5851 12.1484 60.5851 12.4276C60.5851 12.5673 60.5152 12.7069 60.4105 12.8116C58.8396 14.3127 57.5131 16.3025 56.5705 18.7811C56.5007 18.9905 56.2912 19.1302 56.0818 19.1302C55.6629 19.1302 55.4883 18.7113 55.5931 18.432ZM27.1422 18.432C28.1545 15.8138 29.5509 13.6145 31.2614 12.0436C31.3312 11.9738 31.4709 11.904 31.6105 11.904C31.8898 11.904 32.1342 12.1484 32.1342 12.4276C32.1342 12.5673 32.0643 12.7069 31.9596 12.8116C30.3887 14.3127 29.0622 16.3025 28.1196 18.7811C28.0498 18.9905 27.8403 19.1302 27.6309 19.1302C27.212 19.1302 27.0374 18.7113 27.1422 18.432ZM6.61561 7.47055L0.0526987 23.7033C-0.121847 24.1222 0.122517 24.4364 0.576335 24.4364H7.20906C7.55815 24.4364 7.80252 24.2618 7.94215 23.9476L10.316 18.0829C11.9567 14.0335 14.3654 13.5098 15.1334 13.5098C15.4476 13.5098 15.6222 13.6145 15.6222 13.824C15.6222 14.0684 15.3429 14.1731 15.1334 14.208C14.3305 14.3825 11.7472 15.3949 11.5727 18.2575C11.5029 19.7236 13.0389 21.5738 15.4127 21.5738C17.5072 21.5738 19.2527 20.736 20.5792 19.4444C21.2076 18.8509 21.5916 18.4669 21.8709 18.4669C22.0105 18.4669 22.0454 18.5716 22.0454 18.7462C22.0454 21.9927 23.8956 24.7156 27.1771 24.7156C30.3189 24.7156 33.2512 22.7956 35.2411 20.0378C35.5203 19.6538 35.6251 19.5142 35.8345 19.5142C36.0789 19.5142 36.0789 19.7585 36.1836 20.2822C36.7072 22.8305 38.4527 24.7156 41.1756 24.7156C44.4222 24.7156 47.0403 22.7956 48.6112 21.2247C48.9952 20.8407 49.3094 20.7011 49.6585 20.7011C49.9727 20.7011 50.2869 20.8407 50.4963 21.3295C51.3341 23.3193 52.6258 24.7156 54.7552 24.7156C56.1865 24.7156 57.7574 23.9127 59.2934 22.3767C59.4331 22.2371 59.5727 22.1673 59.7123 22.1673C59.852 22.1673 60.0265 22.3069 60.1312 22.5513C60.7247 23.808 61.6323 24.7156 62.7145 24.7156C63.7618 24.7156 65.1232 24.1222 66.5545 22.3767C67.2178 21.5738 67.7414 21.12 68.2301 21.12C68.7887 21.12 69.1029 21.504 69.4869 22.3767C70.0803 23.7033 71.372 24.7156 73.1174 24.7156C74.5487 24.7156 76.1196 23.8778 77.6556 22.3767C77.7952 22.2371 77.9349 22.1673 78.0745 22.1673C78.2141 22.1673 78.3887 22.3069 78.4934 22.5513C79.0869 23.8429 79.9945 24.7156 81.0767 24.7156C82.124 24.7156 83.3109 23.9825 84.8469 22.3767C85.6149 21.5738 86.1385 21.12 86.7669 21.12C87.5349 21.12 88.0236 21.5389 88.5822 22.3767C89.5945 23.9127 91.1305 24.7156 93.4694 24.7156C95.8083 24.7156 98.0076 23.6684 99.5087 22.7258C100.242 22.272 101.115 21.8531 102.092 21.8531C103.279 21.8531 104.361 22.656 105.583 23.3193C107.014 24.0873 108.864 24.7156 111.378 24.7156C116.963 24.7156 118.36 21.3644 118.36 19.5491C118.36 17.6291 117.417 16.4073 115.672 15.0458L111.727 12.0087C111.622 11.9389 111.517 11.7644 111.517 11.5898C111.517 11.3105 111.762 11.0662 112.041 11.0662C112.146 11.0662 112.251 11.1011 112.355 11.1709L114.24 12.5673C115.392 13.4051 116.16 14.0684 117.557 14.0684C119.163 14.0684 120 12.9513 120 11.5898C120 8.832 116.684 6.70255 113.158 6.70255C108.69 6.70255 106.281 9.25091 106.176 12.3229C106.107 14.0684 106.77 15.36 109.039 17.1404L112.355 19.7236C112.46 19.8284 112.53 19.968 112.53 20.1425C112.53 20.4218 112.285 20.6662 112.006 20.6662C111.867 20.6662 111.762 20.6313 111.657 20.5615L107.992 17.6291C107.154 16.9309 106.491 16.2676 105.618 16.2676C104.92 16.2676 104.256 16.6865 103.104 17.3847C101.952 18.0829 101.429 18.3971 99.6134 19.2698C99.2643 19.4444 98.8105 19.2349 98.8105 18.8509C98.8105 18.5716 98.9851 18.3971 99.1596 18.3273C102.336 16.8262 105.059 15.0458 105.059 11.6596C105.059 8.832 103.244 6.70255 99.3341 6.70255C94.2723 6.70255 90.2578 10.2633 88.1981 15.2553L87.4651 17.0356C87.3952 17.2102 87.1858 17.3498 86.9763 17.3498C86.5574 17.3498 86.3829 16.896 86.4876 16.6167L92.9109 0.733091C93.0854 0.314182 92.876 0 92.4222 0H85.7894C85.4403 0 85.196 0.174545 85.0563 0.488727L81.6003 9.00655C81.5305 9.216 81.4607 9.28582 81.3909 9.28582C81.2861 9.28582 81.2163 9.14618 81.0418 8.76218C80.6229 7.81964 79.82 6.70255 78.0745 6.70255C75.3167 6.70255 71.9305 10.1585 70.2898 14.208L69.1378 17.0356C69.068 17.1753 68.8585 17.3498 68.6491 17.3498C68.2301 17.3498 68.0556 16.896 68.1603 16.6167L71.756 7.71491C71.9305 7.296 71.7211 6.98182 71.2672 6.98182H64.6345C64.2854 6.98182 64.0411 7.15636 63.9014 7.47055L63.2731 9.00655C63.2032 9.216 63.1334 9.28582 63.0636 9.28582C62.9589 9.28582 62.8891 9.14618 62.7145 8.76218C62.2956 7.81964 61.4927 6.70255 59.7472 6.70255C57.164 6.70255 53.9174 9.91418 51.9625 14.208C51.02 16.3025 49.1 18.1527 46.4818 18.1527C43.7938 18.1527 42.572 16.3025 41.8389 14.2778C41.7342 13.9985 41.9087 13.5796 42.3276 13.5796C42.5371 13.5796 42.7465 13.7193 42.8163 13.9287C43.4796 15.7789 44.3872 17.1055 46.4818 17.1055C49.3443 17.1055 51.6134 13.9287 51.6134 11.8342C51.6134 9.18109 50.2869 6.70255 46.9007 6.70255C43.6891 6.70255 40.6171 8.55273 38.5574 11.3804C38.2782 11.7644 38.1734 11.904 37.964 11.904C37.7545 11.904 37.6847 11.6945 37.6149 11.136C37.2658 8.448 35.7647 6.70255 32.9022 6.70255C30.1792 6.70255 27.4912 8.02909 25.5363 10.2284C24.7334 11.136 24.4192 11.5549 24.1749 11.5549C24.0702 11.5549 24.0003 11.52 24.0003 11.2756C24.0003 7.71491 22.2549 6.70255 20.3349 6.70255C17.9611 6.70255 15.5523 8.55273 13.5974 11.1011C13.4927 11.2407 13.4229 11.3105 13.3182 11.3105C13.2134 11.3105 13.1436 11.2058 13.1436 11.136C13.1436 11.0662 13.1436 10.9615 13.2832 10.6473L14.4702 7.71491C14.6447 7.296 14.4352 6.98182 13.9814 6.98182H7.3487C6.99961 6.98182 6.75524 7.15636 6.61561 7.47055Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"Rocades Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Osteria Balsamico Logo\",fit:\"fill\",intrinsicHeight:126,intrinsicWidth:274.5,pixelHeight:43,pixelWidth:94,src:\"https://framerusercontent.com/images/Xo0NymQ9FVjhwulckf5iaXB6Is.png\"},className:\"framer-1tejcps\",\"data-framer-name\":\"Osteria Balsamico\",layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDLGViVa4vR\",style:{filter:\"brightness(0)\",WebkitFilter:\"brightness(0)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1os8pqb\",\"data-framer-name\":\"Steiner\",layoutDependency:layoutDependency,layoutId:\"ECYfqmpeQ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ugen47\",\"data-framer-name\":\"Steiner\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:86,layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDrtGmcb0NI\",svg:'<svg width=\"86\" height=\"28\" viewBox=\"0 0 86 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.49639 18.1194C9.46812 18.1194 11.4415 16.6348 11.4415 14.1339V14.0979C11.4415 11.808 9.69453 10.8998 6.89776 10.2874C5.1842 9.90403 4.76481 9.65703 4.76481 9.09871V9.06269C4.76481 8.60985 5.16619 8.27537 5.98695 8.27537C7.07015 8.27537 8.29486 8.67675 9.41151 9.48207L11.1071 7.08668C9.77944 6.02149 8.15335 5.46059 6.07443 5.46059C3.13872 5.46059 1.33767 7.10212 1.33767 9.37401V9.41003C1.33767 11.9083 3.34713 12.6416 5.95093 13.236C7.62847 13.6373 8.02985 13.8998 8.02985 14.4247V14.4607C8.02985 14.9856 7.541 15.2995 6.61474 15.2995C5.19963 15.2995 3.872 14.7926 2.64729 13.8303L0.758766 16.0842C2.28451 17.4376 4.32999 18.1194 6.49639 18.1194Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M15.7251 17.9102H19.1162V8.64765H22.7852V5.67592H12.0741V8.64765H15.7251V17.9102Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M24.2694 17.9102H34.1958V15.026H27.6245V13.086H33.4985V10.4127H27.6245V8.5422H34.1083V5.67596H24.2694V17.9102Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M39.4216 5.67592H36.0305V17.9076H39.4216V5.67592Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M41.8396 17.9102H45.1947V11.2L50.4384 17.9102H53.3921V5.67592H50.037V12.1417L45.0043 5.67592H41.8396V17.9102Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M55.5586 17.9102H65.4849V15.0259H58.9137V13.0859H64.7851V10.4127H58.9137V8.54216H65.3974V5.67592H55.5586V17.9102Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M74.4657 10.0988C74.4657 10.9891 73.7839 11.55 72.6492 11.55H70.3953V8.59624H72.6312C73.7504 8.59624 74.4657 9.08509 74.4657 10.0654V10.0988ZM77.8568 9.86983V9.83381C77.8568 8.62711 77.4889 7.70086 76.7736 6.98559C75.9528 6.16482 74.6587 5.67597 72.7881 5.67597H67.0042V17.9076H70.3953V14.2026H71.8979L74.3628 17.9076H78.2608L75.3431 13.6443C76.8611 12.9985 77.8568 11.7584 77.8568 9.86983Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M80.894 0.640625V2.98713H78.4445V4.94513H80.894V7.35338H82.8931V4.94513H85.3425V2.98713H82.8931V0.640625H80.894Z\" fill=\"#0A0C0C\"/>\\n<path d=\"M76.7704 24.6463C77.4471 24.6463 77.8793 25.112 77.8793 25.7038V25.7115C77.8793 26.3033 77.4471 26.7613 76.7704 26.7613H76.1426V24.6438H76.7704V24.6463ZM75.8416 27.0417H76.7704C77.6117 27.0417 78.1907 26.4577 78.1907 25.7038V25.6961C78.1907 24.9422 77.6117 24.3659 76.7704 24.3659H75.8416V27.0417ZM73.0963 27.0417V24.8496L74.8227 27.0417H75.062V24.3685H74.7687V26.5117L73.0834 24.3685H72.8004V27.0417H73.0963ZM70.3201 26.0614L70.9324 24.7004L71.5396 26.0614H70.3201ZM69.5739 27.0417H69.8827L70.1992 26.3342H71.6554L71.9693 27.0417H72.2935L71.0739 24.3479H70.7909L69.5739 27.0417ZM66.9007 27.0417H67.2017V25.8376H68.7454V27.0417H69.0465V24.3685H68.7454V25.5571H67.2017V24.3685H66.9007V27.0417ZM65.0713 27.0829C65.7403 27.0829 66.1854 26.6789 66.1854 25.8993V24.3659H65.8844V25.9199C65.8844 26.504 65.5705 26.8024 65.079 26.8024C64.5696 26.8024 64.2608 26.4783 64.2608 25.9019V24.3659H63.9598V25.9199C63.9572 26.6789 64.4101 27.0829 65.0713 27.0829ZM61.4409 27.0417H63.3938V26.7664H61.7419V25.8299H63.2008V25.5546H61.7419V24.6412H63.3732V24.3659H61.4409V27.0417ZM58.9786 25.7321V24.6463H59.8045C60.2368 24.6463 60.4889 24.8444 60.4889 25.1738V25.1815C60.4889 25.5263 60.2033 25.7321 59.802 25.7321H58.9786ZM58.9786 27.0417V26.0023H59.7428L60.5172 27.0417H60.8877L60.067 25.9482C60.4864 25.871 60.7925 25.6112 60.7925 25.1686V25.1609C60.7925 24.9499 60.7154 24.7647 60.5867 24.6335C60.4195 24.4662 60.1545 24.3659 59.8251 24.3659H58.675V27.0417H58.9786ZM56.91 27.0417H57.2162V24.6463H58.1141V24.3685H56.012V24.6463H56.91V27.0417ZM52.0343 27.0417V24.8496L53.7607 27.0417H54V24.3685H53.7067V26.5117L52.0214 24.3685H51.7384V27.0417H52.0343ZM49.1809 27.0417H51.1338V26.7664H49.4845V25.8299H50.9434V25.5546H49.4845V24.6412H51.1158V24.3659H49.1835V27.0417H49.1809ZM48.0952 27.0417H48.3962V24.3685H48.0952V27.0417ZM45.7229 27.0417H47.5291V26.7638H46.024V24.3685H45.7229V27.0417ZM44.6371 27.0417H44.9382V24.3685H44.6371V27.0417ZM43.7057 26.2853V26.293C43.7057 26.5915 43.4536 26.7716 43.0471 26.7716H42.1491V25.8273H42.993C43.4613 25.8273 43.7057 25.9945 43.7057 26.2853ZM43.5565 25.0812C43.5565 25.3951 43.3044 25.5597 42.9416 25.5597H42.1517V24.6386H42.9647C43.3481 24.6386 43.5565 24.811 43.5565 25.0734V25.0812ZM43.0419 27.0417C43.626 27.0417 44.0119 26.7716 44.0119 26.3136V26.3059C44.0119 25.9379 43.7572 25.7553 43.4382 25.6601C43.6491 25.57 43.8627 25.3899 43.8627 25.04V25.0323C43.8627 24.8599 43.8009 24.7184 43.6903 24.6052C43.5385 24.4559 43.2967 24.3685 42.9905 24.3685H41.8507V27.0417H43.0419ZM39.8541 26.8102C39.2417 26.8102 38.7992 26.3136 38.7992 25.7064V25.6987C38.7992 25.0914 39.234 24.6026 39.8464 24.6026C40.4587 24.6026 40.9013 25.0992 40.9013 25.7064V25.7141C40.9013 26.3213 40.4664 26.8102 39.8541 26.8102ZM39.8464 27.088C40.6594 27.088 41.2152 26.4422 41.2152 25.7038V25.6961C41.2152 24.9577 40.6697 24.3196 39.8541 24.3196C39.0385 24.3196 38.4853 24.9654 38.4853 25.7012V25.7089C38.4853 26.45 39.0333 27.088 39.8464 27.088ZM35.5805 27.0417V24.8805L36.5556 26.3084H36.571L37.5462 24.8753V27.0417H37.8472V24.3685H37.541L36.5659 25.8273L35.5907 24.3685H35.2846V27.0417H35.5805ZM32.264 27.0417V24.8805L33.2391 26.3084H33.2545L34.2297 24.8753V27.0417H34.5307V24.3685H34.2245L33.2494 25.8273L32.2742 24.3685H31.9681V27.0417H32.264ZM30.8874 27.0417H31.1885V24.3685H30.8874V27.0417ZM26.956 25.7321V24.6463H27.7819C28.2142 24.6463 28.4663 24.8444 28.4663 25.1738V25.1815C28.4663 25.5263 28.1807 25.7321 27.7793 25.7321H26.956ZM26.9534 27.0417V26.0023H27.7176L28.492 27.0417H28.8625L28.0418 25.9482C28.4612 25.871 28.7673 25.6112 28.7673 25.1686V25.1609C28.7673 24.9499 28.6902 24.7647 28.5615 24.6335C28.3943 24.4662 28.1293 24.3659 27.7999 24.3659H26.6498V27.0417H26.9534ZM24.8231 27.0829C25.492 27.0829 25.9397 26.6789 25.9397 25.8993V24.3659H25.6387V25.9199C25.6387 26.504 25.3248 26.8024 24.8333 26.8024C24.3265 26.8024 24.0152 26.4783 24.0152 25.9019V24.3659H23.7141V25.9199C23.7115 26.6789 24.1618 27.0829 24.8231 27.0829ZM21.9851 27.0417H22.2913V24.6463H23.1892V24.3685H21.0872V24.6463H21.9851V27.0417ZM18.5683 27.0417H18.8693V26.3239L19.4379 25.7475L20.4671 27.0417H20.8453L19.6489 25.5366L20.7964 24.3685H20.4079L18.8719 25.9662V24.3685H18.5708V27.0417H18.5683ZM15.9902 27.0417H17.9431V26.7664H16.2938V25.8299H17.7527V25.5546H16.2938V24.6412H17.925V24.3659H15.9928V27.0417H15.9902ZM14.22 27.0417H14.5262V24.6463H15.4242V24.3685H13.3221V24.6463H14.22V27.0417ZM12.4293 27.0417H12.7303V24.3685H12.4293V27.0417ZM9.47813 27.0417H9.77916V25.8376H11.3229V27.0417H11.624V24.3685H11.3229V25.5571H9.77916V24.3685H9.47813V27.0417ZM7.88292 27.088C8.3692 27.088 8.67281 26.9002 8.95325 26.6198L8.75514 26.4242C8.50042 26.6686 8.25856 26.8102 7.89064 26.8102C7.30144 26.8102 6.85632 26.3239 6.85632 25.7064V25.6987C6.85632 25.0837 7.29886 24.6026 7.89064 24.6026C8.25342 24.6026 8.50557 24.7544 8.73198 24.9705L8.93782 24.7492C8.67023 24.4971 8.37949 24.3247 7.89578 24.3247C7.10847 24.3247 6.545 24.9499 6.545 25.7064V25.7141C6.54242 26.4808 7.11104 27.088 7.88292 27.088ZM4.19849 25.7321V24.6463H5.0244C5.45665 24.6463 5.7088 24.8444 5.7088 25.1738V25.1815C5.7088 25.5263 5.4232 25.7321 5.02183 25.7321H4.19849ZM3.89746 27.0417H4.19849V26.0023H4.96265L5.7371 27.0417H6.1076L5.28684 25.9482C5.70622 25.871 6.0124 25.6112 6.0124 25.1686V25.1609C6.0124 24.9499 5.93521 24.7647 5.80657 24.6335C5.63933 24.4662 5.37432 24.3659 5.04755 24.3659H3.89746V27.0417ZM1.45061 26.0614L2.06296 24.7004L2.67017 26.0614H1.45061ZM0.707031 27.0417H1.01578L1.33225 26.3342H2.78853L3.10242 27.0417H3.42661L2.20705 24.3479H1.9266L0.707031 27.0417Z\" fill=\"#0A0C0C\"/>\\n</svg>\\n',title:\"Steiner Logo\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Vasano Ristorante Logo\",fit:\"fill\",intrinsicHeight:190,intrinsicWidth:300,pixelHeight:41,pixelWidth:64,src:\"https://framerusercontent.com/images/paib3qArc28g9tH3tp1thqmV0oc.png\"},className:\"framer-17v4xcl\",\"data-framer-name\":\"Vasano ristorante\",layoutDependency:layoutDependency,layoutId:\"cIVTFCdmDeHOLblb86\",style:{filter:\"brightness(0)\",WebkitFilter:\"brightness(0)\"}})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({nLInJXAl2:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:48,speed:30}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eprZw.framer-kb643c, .framer-eprZw .framer-kb643c { display: block; }\",\".framer-eprZw.framer-1d4jp0m { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1440px; }\",\".framer-eprZw .framer-1mv1phw { flex: none; height: 40px; left: 0px; position: absolute; top: calc(49.33333333333336% - 40px / 2); width: 100%; z-index: 5; }\",\".framer-eprZw .framer-11kgn1p-container { flex: none; height: 32px; position: relative; width: 100%; }\",\".framer-eprZw .framer-1d8yzjm { aspect-ratio: 4.611111111111111 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 111px; }\",\".framer-eprZw .framer-1qt8up { aspect-ratio: 3.090909090909091 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 74px; }\",\".framer-eprZw .framer-167c2ts { aspect-ratio: 7.75 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 186px; }\",\".framer-eprZw .framer-17sycqa, .framer-eprZw .framer-j0hrwk, .framer-eprZw .framer-1jr5ny1, .framer-eprZw .framer-1qqqe39, .framer-eprZw .framer-168w6ml, .framer-eprZw .framer-gsi8ha, .framer-eprZw .framer-18fherc, .framer-eprZw .framer-d04khj, .framer-eprZw .framer-1scdjhb, .framer-eprZw .framer-1nbuvvv, .framer-eprZw .framer-1mdb8bp, .framer-eprZw .framer-f768mh { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eprZw .framer-e2gef5 { aspect-ratio: 3.4375 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 83px; }\",\".framer-eprZw .framer-1v2zpx8 { aspect-ratio: 1.4642857142857142 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: hidden; position: relative; width: 41px; }\",\".framer-eprZw .framer-8pjfke { aspect-ratio: 1.4761904761904763 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eprZw .framer-1p40en { aspect-ratio: 6.315789473684211 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 152px; }\",\".framer-eprZw .framer-1tj7k9g { aspect-ratio: 5.451612903225806 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 153px; }\",\".framer-eprZw .framer-13uuipi { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: hidden; position: relative; width: 28px; }\",\".framer-eprZw .framer-nb6rkf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eprZw .framer-1pph3lg { aspect-ratio: 4.3 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 103px; }\",\".framer-eprZw .framer-7xt3ql { aspect-ratio: 4.285714285714286 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eprZw .framer-sbdrn4 { aspect-ratio: 6 / 1; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 120px; }\",\".framer-eprZw .framer-74xts1 { aspect-ratio: 4.875 / 1; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 98px; }\",\".framer-eprZw .framer-v48pl3 { aspect-ratio: 5.172413793103448 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 124px; }\",\".framer-eprZw .framer-15e9hdt { aspect-ratio: 4.666666666666667 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 112px; }\",\".framer-eprZw .framer-lq3vv5 { aspect-ratio: 4.676470588235294 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eprZw .framer-kiptn6 { aspect-ratio: 4.777777777777778 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 115px; }\",\".framer-eprZw .framer-p965kt { aspect-ratio: 4.2 / 1; height: var(--framer-aspect-ratio-supported, 22px); overflow: hidden; position: relative; width: 92px; }\",\".framer-eprZw .framer-yynt2o { aspect-ratio: 4.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eprZw .framer-2v7tso { aspect-ratio: 4.6 / 1; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 101px; }\",\".framer-eprZw .framer-qtfoko { aspect-ratio: 3.3333333333333335 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 80px; }\",\".framer-eprZw .framer-id6m3a { aspect-ratio: 9 / 1; height: var(--framer-aspect-ratio-supported, 22px); overflow: hidden; position: relative; width: 198px; }\",\".framer-eprZw .framer-14fazr4 { aspect-ratio: 3.8333333333333335 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: hidden; position: relative; width: 107px; }\",\".framer-eprZw .framer-1xj55p3, .framer-eprZw .framer-9z4okc { aspect-ratio: 4.777777777777778 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: hidden; position: relative; width: 124px; }\",\".framer-eprZw .framer-sxlby4 { aspect-ratio: 0.9032258064516129 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 29px; }\",\".framer-eprZw .framer-1tejcps { aspect-ratio: 2.1882352941176473 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 70px; }\",\".framer-eprZw .framer-1os8pqb { align-content: center; align-items: center; aspect-ratio: 3.230769230769231 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 30px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 97px; }\",\".framer-eprZw .framer-1ugen47 { flex: none; height: 26px; position: relative; width: 84px; }\",\".framer-eprZw .framer-17v4xcl { aspect-ratio: 1.5833333333333333 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eprZw.framer-1d4jp0m, .framer-eprZw .framer-1os8pqb { gap: 0px; } .framer-eprZw.framer-1d4jp0m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eprZw.framer-1d4jp0m > :first-child { margin-top: 0px; } .framer-eprZw.framer-1d4jp0m > :last-child { margin-bottom: 0px; } .framer-eprZw .framer-1os8pqb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-eprZw .framer-1os8pqb > :first-child { margin-left: 0px; } .framer-eprZw .framer-1os8pqb > :last-child { margin-right: 0px; } }\",\".framer-eprZw.framer-v-lvy4ak.framer-1d4jp0m { width: 390px; }\",\".framer-eprZw.framer-v-lvy4ak .framer-11kgn1p-container { height: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nLInJXAl2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHlAbExhu2=withCSS(Component,css,\"framer-eprZw\");export default FramerHlAbExhu2;FramerHlAbExhu2.displayName=\"Slider\";FramerHlAbExhu2.defaultProps={height:32,width:1440};addPropertyControls(FramerHlAbExhu2,{variant:{options:[\"yTZ21cXi1\",\"nLInJXAl2\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHlAbExhu2,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHlAbExhu2\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nLInJXAl2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HlAbExhu2.map", "// Generated by Framer (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Host Grotesk Medium\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Host Grotesk Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/4j59bRz37ZkLWe4AT57ulhAhzQ.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-1yk5E .framer-styles-preset-mstuzr:not(.rich-text-wrapper), .framer-1yk5E .framer-styles-preset-mstuzr.rich-text-wrapper h3 { --framer-font-family: \"Host Grotesk Medium\", \"Host Grotesk Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.2px; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-986bfe09-56b9-48e0-88f2-d71ddb469565, #141411); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-1yk5E\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "a", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "f", "l", "g", "glide", "r", "d", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "n", "dispatchViewEvent", "se", "o", "i", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "SVG", "css", "FramerHlAbExhu2", "withCSS", "HlAbExhu2_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className"]
}
