{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/jeUiaouldnjDYEj3XIU5/JJG8Rzqtm6QHJyR5TSeh/AJkzZHUFt.js", "ssg:https://framerusercontent.com/modules/vaf0z1Zn6fabRHRHsYG0/dld8HnmfpE14uSbWvDZF/Pq3TYIkET.js", "ssg:https://framerusercontent.com/modules/L1DqSDkF5TSys2O86blI/3BZgcw7yAt8UCut4dN8l/u8AXb2IMH.js", "ssg:https://framerusercontent.com/modules/1aQUluvxjZSTDG5AnrUT/xYYvwELQ22yVVC1rmbzP/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)})},index+\"-original\");});}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:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/67iq89j1NxMpxuIlD5r9/cXB4jl7KJ9TioDYDsIkQ/fGk35Lq2b.js\";const cycleOrder=[\"YY0TQudSm\",\"WY1m73Cox\"];const serializationHash=\"framer-qevia\";const variantClassNames={WY1m73Cox:\"framer-v-f744f2\",YY0TQudSm:\"framer-v-pxohpq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Closed\":\"WY1m73Cox\",\"Desktop Open\":\"YY0TQudSm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YY0TQudSm\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YY0TQudSm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap17f2kna=activeVariantCallback(async(...args)=>{setVariant(\"WY1m73Cox\");});const onTap1e2g2mv=activeVariantCallback(async(...args)=>{setVariant(\"YY0TQudSm\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-pxohpq\",className,classNames),\"data-framer-name\":\"Desktop Open\",layoutDependency:layoutDependency,layoutId:\"YY0TQudSm\",ref:refBinding,style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",...style},...addPropertyOverrides({WY1m73Cox:{\"data-framer-name\":\"Desktop Closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15586i2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"S_Tnb5j4R\",onTap:onTap17f2kna,style:{backgroundColor:\"rgba(255, 255, 255, 0.9)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(94, 46, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://us-east-2.aws.modelbit.com\",motionChild:true,nodeId:\"y4mU1VixH\",openInNewTab:true,scopeId:\"AJkzZHUFt\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-1obkjx\",\"data-styles-preset\":\"fGk35Lq2b\",children:[\" \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace'},children:\"laptop_mac\"}),\" app\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-dqhihp, rgb(0, 0, 0))\"},children:\".modelbit.com\"})]})})})}),className:\"framer-1w188wt\",fonts:[\"GF;Fragment Mono-regular\",\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"y4mU1VixH\",style:{\"--extracted-dqhihp\":\"rgb(0, 0, 0)\",\"--extracted-r6o4lv\":\"rgb(94, 46, 119)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(94, 46, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://doc.modelbit.com\",motionChild:true,nodeId:\"pCh_xFXkY\",openInNewTab:true,scopeId:\"AJkzZHUFt\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-1obkjx\",\"data-styles-preset\":\"fGk35Lq2b\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace'},children:\"description\"}),\" doc\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-dqhihp, rgb(0, 0, 0))\"},children:\".modelbit.com\"})]})})})}),className:\"framer-114a21y\",fonts:[\"GF;Fragment Mono-regular\",\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"pCh_xFXkY\",style:{\"--extracted-dqhihp\":\"rgb(0, 0, 0)\",\"--extracted-r6o4lv\":\"rgb(94, 46, 119)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://trust.modelbit.com\",motionChild:true,nodeId:\"izBxJPAa3\",openInNewTab:true,scopeId:\"AJkzZHUFt\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-1obkjx\",\"data-styles-preset\":\"fGk35Lq2b\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-text-color\":\"var(--extracted-hl0iuy, rgb(94, 46, 119))\"},children:\"lock\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-dqhihp, rgb(94, 46, 119))\"},children:\" trust\"}),\".modelbit.com\"]})})})}),className:\"framer-13rzguu\",fonts:[\"GF;Fragment Mono-regular\",\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"izBxJPAa3\",style:{\"--extracted-dqhihp\":\"rgb(94, 46, 119)\",\"--extracted-hl0iuy\":\"rgb(94, 46, 119)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(94, 46, 119))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://status.modelbit.com\",motionChild:true,nodeId:\"GfN2pkcKx\",openInNewTab:true,scopeId:\"AJkzZHUFt\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-1obkjx\",\"data-styles-preset\":\"fGk35Lq2b\",children:[\" \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace'},children:\"stacked_line_chart\"}),\" status\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-dqhihp, rgb(0, 0, 0))\"},children:\".modelbit.com\"})]})})})}),className:\"framer-1e4x8k6\",fonts:[\"GF;Fragment Mono-regular\",\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"GfN2pkcKx\",style:{\"--extracted-dqhihp\":\"rgb(0, 0, 0)\",\"--extracted-r6o4lv\":\"rgb(94, 46, 119)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"20px\"},children:\"\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\"})}),className:\"framer-19jcpro\",fonts:[\"GF;Fragment Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"AOWPkShj2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZDVpNQKii\"},motionChild:true,nodeId:\"EHJUPRIeE\",openInNewTab:false,scopeId:\"AJkzZHUFt\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-1obkjx\",\"data-styles-preset\":\"fGk35Lq2b\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-text-color\":\"var(--extracted-hl0iuy, rgb(94, 46, 119))\"},children:\"group\"}),\" modelbit.com/\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-dqhihp, rgb(94, 46, 119))\"},children:\"customers\"})]})})})}),className:\"framer-4u0irw\",fonts:[\"GF;Fragment Mono-regular\",\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"EHJUPRIeE\",style:{\"--extracted-dqhihp\":\"rgb(94, 46, 119)\",\"--extracted-hl0iuy\":\"rgb(94, 46, 119)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7hvnsg\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rI1is1JZe\",onTap:onTap17f2kna,...addPropertyOverrides({WY1m73Cox:{onTap:onTap1e2g2mv}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-udurvc\",layoutDependency:layoutDependency,layoutId:\"PTnJA9yxm\",...addPropertyOverrides({WY1m73Cox:{\"data-highlight\":true,onTap:onTap1e2g2mv}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(94, 46, 119))\"},children:\" \"})}),className:\"framer-shfq3n\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"cVpfBgBmg\",style:{\"--extracted-r6o4lv\":\"rgb(94, 46, 119)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-drs2ks\",layoutDependency:layoutDependency,layoutId:\"h2PmnbzpI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"keyboard_arrow_up\"})}),className:\"framer-no4mn0\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"a5DgKQT8Y\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WY1m73Cox:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"keyboard_arrow_down\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y5bewh\",\"data-framer-name\":\"Modelbit-logo-with-name\",fill:\"black\",intrinsicHeight:180,intrinsicWidth:684,layoutDependency:layoutDependency,layoutId:\"ciZG_0H8q\",svg:'<svg version=\"1.1\" id=\"modif_logo\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 683.65 179.63\" style=\"enable-background:new 0 0 683.65 179.63\" xml:space=\"preserve\"><style>.st0{display:none}.st4{display:inline;fill-rule:evenodd;clip-rule:evenodd}</style><linearGradient id=\"SVGID_1_\" gradientUnits=\"userSpaceOnUse\" x1=\"287.472\" y1=\"91.08\" x2=\"413.397\" y2=\"-40.321\"><stop offset=\"0\" style=\"stop-color:#0066fb\"/><stop offset=\"1\" style=\"stop-color:#00c6db\"/></linearGradient><path d=\"M153.22 48.55c0-.13-.04-.26-.1-.37v-.01c0-.01-.02-.01-.02-.02a.69.69 0 0 0-.24-.24L123.39 30.9c.41-.91.66-1.92.66-2.99 0-4.03-3.26-7.29-7.29-7.29-2.44 0-4.58 1.21-5.9 3.04l-23.21-13.4c.41-.91.65-1.92.65-2.98A7.298 7.298 0 0 0 81 0c-4.02 0-7.29 3.26-7.29 7.29 0 1.07.24 2.07.65 2.98l-23.2 13.4c-1.32-1.83-3.47-3.04-5.9-3.04-4.02 0-7.29 3.26-7.29 7.29 0 1.07.24 2.07.66 2.99L9.17 47.92c-.11.07-.21.16-.27.27-.06.11-.1.24-.1.37v82.52c0 .13.04.26.1.37.07.12.18.21.29.28l35.7 20.61c.01.01.02.01.03.02l29.44 17c-.41.91-.65 1.92-.65 2.98 0 4.02 3.26 7.29 7.29 7.29s7.29-3.26 7.29-7.29c0-1.07-.24-2.07-.65-2.98l65.21-37.65c.11-.07.21-.16.27-.27.06-.11.1-.24.1-.37V48.55zM43.81 69.19 10.27 88.55V49.83l33.54 19.36zm37.93 19.35V55.76c2.12-.22 3.98-1.32 5.16-2.97l28.37 16.38-33.53 19.37zm34.27-18.09v38.72L82.48 89.81l33.53-19.36zM80.28 55.77v32.77L46.74 69.19l28.37-16.38a7.279 7.279 0 0 0 5.17 2.96zm-.74 34.04-33.53 19.36V70.45l33.53 19.36zm-35 19.37L11.01 89.82l33.53-19.36v38.72zm35.74-18.1v38.72l-33.53-19.36 33.53-19.36zm1.46 0 33.54 19.36-33.53 19.36-.01-38.72zm35.74-20.63 33.53 19.36-33.53 19.36V70.45zm34.27 18.09-33.54-19.36 33.54-19.37v38.73zm-35.74-53.41v32.78L87.64 51.53c.41-.91.65-1.91.65-2.98s-.24-2.07-.65-2.98l23.21-13.4a7.278 7.278 0 0 0 5.16 2.96zM74.37 51.54 46.01 67.91V35.12a7.278 7.278 0 0 0 5.16-2.96l23.21 13.4c-.41.91-.66 1.92-.66 2.99 0 1.07.24 2.08.65 2.99zm-64.1 39.54 33.54 19.36-33.54 19.37V91.08zm34.27 20.64v38.72l-33.53-19.36 33.53-19.36zm1.47 0 33.53 19.36-33.53 19.36v-38.72zm70-.01v38.72l-33.53-19.36 33.53-19.36zm1.47 0 33.54 19.36-33.54 19.36v-38.72zm.73-1.27 33.54-19.37v38.73l-33.54-19.36zm32.8-61.89-33.53 19.36V35.13a7.245 7.245 0 0 0 5.17-2.96l28.36 16.38zm-40.9-23.61c-.41.91-.65 1.91-.65 2.98s.24 2.07.65 2.98L86.9 44.3a7.244 7.244 0 0 0-5.16-2.96V14.5c2.12-.22 3.98-1.32 5.16-2.96l23.21 13.4zm-35-13.4a7.245 7.245 0 0 0 5.17 2.96v26.84a7.225 7.225 0 0 0-5.16 2.96L51.9 30.9c.41-.91.65-1.92.65-2.99 0-1.06-.24-2.07-.65-2.98l23.21-13.39zM44.54 35.13v32.79L11 48.55l28.37-16.38a7.265 7.265 0 0 0 5.17 2.96zm2.2 116.58 33.54-19.36v32.78a7.266 7.266 0 0 0-5.18 2.96l-28.36-16.38zm35.01 13.42v-32.78l33.53 19.36-28.38 16.38a7.238 7.238 0 0 0-5.15-2.96z\" style=\"fill:#9d2fd4\"/><path d=\"M162.02 89.81c0-4.51-3.14-8.26-7.34-9.26V57.8c4.2-.99 7.34-4.75 7.34-9.26 0-5.27-4.27-9.53-9.53-9.53s-9.53 4.27-9.53 9.53c0 .94.18 1.84.44 2.7l-19.73 11.39c-1.74-1.84-4.18-3-6.91-3-5.27 0-9.53 4.27-9.53 9.53 0 .95.18 1.84.44 2.7L87.92 83.28c-1.74-1.84-4.18-3-6.91-3-2.73 0-5.18 1.16-6.92 3L54.36 71.89c.26-.87.44-1.76.44-2.71 0-5.27-4.27-9.53-9.53-9.53-2.73 0-5.18 1.16-6.92 3L18.63 51.27c.26-.86.44-1.76.44-2.71 0-5.27-4.27-9.53-9.53-9.53C4.27 39.02 0 43.29 0 48.55c0 4.51 3.13 8.26 7.33 9.25v22.75C3.13 81.55 0 85.3 0 89.8c0 4.51 3.13 8.26 7.33 9.25v22.75c-4.2 1-7.33 4.75-7.33 9.25 0 5.27 4.27 9.53 9.53 9.53 2.73 0 5.18-1.16 6.92-3l19.72 11.38c-.26.86-.44 1.76-.44 2.71 0 5.27 4.27 9.53 9.53 9.53s9.53-4.27 9.53-9.53c0-4.51-3.13-8.26-7.33-9.25v-22.75a9.451 9.451 0 0 0 4.71-2.72l19.72 11.39c-.26.86-.44 1.76-.44 2.71 0 5.27 4.27 9.53 9.53 9.53 5.27 0 9.53-4.27 9.53-9.53 0-.95-.18-1.85-.44-2.71l19.73-11.39a9.42 9.42 0 0 0 4.71 2.72v22.75c-4.2 1-7.33 4.75-7.33 9.25 0 5.27 4.27 9.53 9.53 9.53 5.27 0 9.53-4.27 9.53-9.53 0-.95-.18-1.84-.44-2.71l19.72-11.39c1.74 1.84 4.18 3 6.92 3 5.27 0 9.53-4.27 9.53-9.53 0-4.51-3.13-8.26-7.34-9.25V99.04c4.26-.97 7.39-4.72 7.39-9.23zm-38.35 55.36a9.498 9.498 0 0 0-4.72-2.73v-22.75c4.2-1 7.34-4.75 7.34-9.25 0-5.27-4.27-9.53-9.53-9.53-5.27 0-9.53 4.27-9.53 9.53 0 .95.18 1.84.44 2.71l-19.73 11.39c-1.74-1.84-4.18-3-6.92-3-2.73 0-5.18 1.16-6.92 3l-19.72-11.39c.26-.86.44-1.76.44-2.71 0-5.27-4.27-9.53-9.53-9.53s-9.53 4.27-9.53 9.53c0 4.51 3.13 8.26 7.33 9.25v22.75c-1.84.44-3.46 1.4-4.71 2.72l-19.72-11.38c.26-.86.44-1.76.44-2.71 0-4.51-3.13-8.26-7.33-9.25V99.07c4.2-1 7.33-4.75 7.33-9.25 0-4.51-3.13-8.26-7.33-9.25V57.81a9.451 9.451 0 0 0 4.71-2.72L36.2 66.47c-.26.86-.44 1.76-.44 2.71 0 5.27 4.27 9.53 9.53 9.53 2.73 0 5.18-1.16 6.91-3L71.91 87.1c-.26.86-.44 1.76-.44 2.71 0 5.27 4.27 9.53 9.53 9.53 5.27 0 9.53-4.27 9.53-9.53 0-.95-.18-1.85-.44-2.71l19.73-11.39c1.74 1.84 4.19 3.01 6.92 3.01 5.27 0 9.53-4.27 9.53-9.53 0-.95-.18-1.85-.44-2.72l19.72-11.39a9.498 9.498 0 0 0 4.72 2.73v22.75c-4.2 1-7.33 4.75-7.33 9.25s3.13 8.26 7.33 9.25v22.75c-4.2 1-7.33 4.75-7.33 9.25 0 .95.18 1.85.44 2.71l-19.71 11.4zm174.01-26.14h-9.43V77.26c0-5.25-1.51-9.75-4.54-13.49-3.03-3.74-7-5.61-11.93-5.61-5.01 0-9.33 1.63-12.95 4.89-3.62 3.26-5.43 7.32-5.43 12.17v43.8h-9.55v-43.8c0-4.85-1.81-8.91-5.43-12.17-3.62-3.26-7.94-4.89-12.95-4.89-4.94 0-8.87 1.85-11.81 5.55-2.95 3.7-4.42 8.22-4.42 13.55v41.77h-9.43v-40.7c0-8.51 2.43-15.36 7.28-20.53 4.54-4.85 10.5-7.6 17.9-8.24 9.87-.79 17.74 3.42 23.63 12.65 5.89-9.23 13.77-13.45 23.63-12.65 7.4.64 13.41 3.38 18.02 8.24 4.93 5.17 7.4 12.02 7.4 20.53v40.7zm79.72-34.02c0 9.79-3.56 18.24-10.68 25.36-7.12 7.12-15.58 10.52-25.36 10.2-9.47-.24-17.49-3.82-24.05-10.74-6.56-6.92-9.85-15.16-9.85-24.71 0-9.95 3.54-18.48 10.62-25.6 7.08-7.12 15.51-10.52 25.3-10.2 9.47.32 17.5 3.96 24.11 10.92 6.61 6.97 9.91 15.22 9.91 24.77zm-9.07-.72c-.24-7.19-2.81-13.35-7.72-18.46-4.91-5.11-10.83-7.67-17.76-7.67-7.26-.08-13.44 2.46-18.54 7.61-5.11 5.15-7.7 11.37-7.78 18.64-.16 7.19 2.19 13.49 7.06 18.88 4.86 5.4 10.81 8.21 17.83 8.45 7.5.4 13.89-2.2 19.2-7.79 5.3-5.59 7.87-12.14 7.71-19.66zm86.3 1.08c.24 9.79-3.26 18.24-10.5 25.36-7.24 7.12-15.75 10.52-25.54 10.21-9.47-.24-17.49-3.82-24.05-10.74s-9.85-15.16-9.85-24.71c0-9.95 3.53-18.48 10.6-25.6 7.07-7.12 15.48-10.52 25.25-10.21 10.01.4 18.35 4.42 25.02 12.06V27.49h9.07v57.88zm-9.08-.72c-.16-7.19-2.69-13.35-7.6-18.46-4.9-5.12-10.87-7.67-17.88-7.67-7.18-.08-13.34 2.46-18.48 7.61-5.14 5.15-7.76 11.37-7.83 18.64-.08 7.19 2.31 13.49 7.18 18.88 4.86 5.4 10.81 8.21 17.82 8.45 7.5.4 13.89-2.2 19.2-7.79 5.3-5.59 7.83-12.14 7.59-19.66zm89.16 3.47H473.6c.72 6.84 3.62 12.49 8.71 16.95 5.09 4.46 11.1 6.64 18.02 6.56 10.74-.16 18.42-5.13 23.04-14.92h9.67c-2.55 7.32-6.84 13.13-12.89 17.43-6.05 4.3-12.77 6.49-20.17 6.56-9.31.16-17.54-3.24-24.71-10.2-7.16-6.96-10.82-15.26-10.98-24.88-.24-10.18 3.36-18.96 10.8-26.32 7.44-7.36 16.21-10.76 26.32-10.2 9.07.56 16.95 4.3 23.63 11.22 6.45 6.84 9.67 14.48 9.67 22.92v4.88zm-8.95-8.36c-1.27-6.36-4.26-11.52-8.95-15.46-4.69-3.94-10.3-5.95-16.83-6.03-6.52-.08-12.23 1.87-17.13 5.85-4.89 3.98-7.98 9.19-9.25 15.63h52.16zm26.13 39.27h-9.07V27.01h9.07v92.02zm80.09-34.02c0 9.55-3.3 17.78-9.91 24.71s-14.64 10.54-24.11 10.86c-9.79.32-18.3-3.1-25.54-10.26-7.24-7.16-10.74-15.64-10.5-25.42V27.01h9.07v34.37C577.66 53.66 586 49.65 596 49.33c9.77-.4 18.2 2.98 25.31 10.15 7.11 7.15 10.67 15.67 10.67 25.53zm-9.07-.66c-.16-7.18-2.78-13.34-7.85-18.48-5.08-5.14-11.25-7.71-18.52-7.71-6.96 0-12.91 2.55-17.87 7.65-4.96 5.1-7.51 11.25-7.67 18.42-.24 7.58 2.32 14.14 7.67 19.68 5.36 5.54 11.75 8.15 19.18 7.83 7.03-.32 12.99-3.15 17.86-8.49s7.28-11.64 7.2-18.9zm26.01-41.47h-9.07V27.01h9.07v15.87zm0 76.15h-9.07V51h9.07v68.03zm34.73 1.43c-16.55 0-24.82-7.04-24.82-21.13v-72.2h9.07v23.75h15.75v8.47H667.9v38.43c0 10.11 5.25 15.16 15.75 15.16v7.52z\" style=\"fill:#4b1766\"/></svg>',withExternalLayout:true})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qevia.framer-1a1xrwf, .framer-qevia .framer-1a1xrwf { display: block; }\",\".framer-qevia.framer-pxohpq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 10px 0px 0px; position: relative; width: 1200px; }\",\".framer-qevia .framer-15586i2 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: visible; padding: 80px 15px 0px 0px; position: relative; width: 1px; }\",\".framer-qevia .framer-1w188wt, .framer-qevia .framer-114a21y, .framer-qevia .framer-13rzguu, .framer-qevia .framer-1e4x8k6, .framer-qevia .framer-4u0irw { --framer-custom-cursors: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qevia .framer-19jcpro, .framer-qevia .framer-shfq3n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qevia .framer-7hvnsg { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; left: 10px; overflow: visible; padding: 15px 15px 0px 0px; position: absolute; right: 10px; top: 0px; z-index: 1; }\",\".framer-qevia .framer-udurvc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-qevia .framer-drs2ks { flex: none; height: 36px; overflow: visible; position: relative; width: 167px; }\",\".framer-qevia .framer-no4mn0 { flex: none; height: auto; left: 0px; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-qevia .framer-1y5bewh { aspect-ratio: 3.8 / 1; bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 137px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qevia.framer-pxohpq, .framer-qevia .framer-15586i2, .framer-qevia .framer-7hvnsg { gap: 0px; } .framer-qevia.framer-pxohpq > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-qevia.framer-pxohpq > :first-child, .framer-qevia .framer-7hvnsg > :first-child { margin-left: 0px; } .framer-qevia.framer-pxohpq > :last-child, .framer-qevia .framer-7hvnsg > :last-child { margin-right: 0px; } .framer-qevia .framer-15586i2 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-qevia .framer-15586i2 > :first-child { margin-top: 0px; } .framer-qevia .framer-15586i2 > :last-child { margin-bottom: 0px; } .framer-qevia .framer-7hvnsg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-qevia.framer-v-f744f2.framer-pxohpq { height: 60px; }\",\".framer-qevia.framer-v-f744f2 .framer-1w188wt { order: 0; }\",\".framer-qevia.framer-v-f744f2 .framer-114a21y { order: 1; }\",\".framer-qevia.framer-v-f744f2 .framer-13rzguu { order: 2; }\",\".framer-qevia.framer-v-f744f2 .framer-1e4x8k6 { order: 3; }\",\".framer-qevia.framer-v-f744f2 .framer-19jcpro { order: 4; }\",\".framer-qevia.framer-v-f744f2 .framer-4u0irw { order: 5; }\",\".framer-qevia.framer-v-f744f2 .framer-udurvc { cursor: pointer; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WY1m73Cox\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAJkzZHUFt=withCSS(Component,css,\"framer-qevia\");export default FramerAJkzZHUFt;FramerAJkzZHUFt.displayName=\"Homepage Menu\";FramerAJkzZHUFt.defaultProps={height:800,width:1200};addPropertyControls(FramerAJkzZHUFt,{variant:{options:[\"YY0TQudSm\",\"WY1m73Cox\"],optionTitles:[\"Desktop Open\",\"Desktop Closed\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAJkzZHUFt,[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"},{family:\"Material Icons\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/materialicons/v143/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhI8tIHh.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAJkzZHUFt\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"800\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WY1m73Cox\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AJkzZHUFt.map", "// Generated by Framer (4d21961)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Headland One-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Headland One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3Tx1flTeZ3mJA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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\"},{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/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{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/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-RdVbj .framer-styles-preset-1p6ga8w:not(.rich-text-wrapper), .framer-RdVbj .framer-styles-preset-1p6ga8w.rich-text-wrapper p { --framer-font-family: \"Headland One\", \"Headland One Placeholder\", serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 180%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-RdVbj\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3bc9980)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-iHKgI .framer-styles-preset-1mqb7ph:not(.rich-text-wrapper), .framer-iHKgI .framer-styles-preset-1mqb7ph.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }\"];export const className=\"framer-iHKgI\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4307032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import HomepageMenu from\"#framer/local/canvasComponent/AJkzZHUFt/AJkzZHUFt.js\";import*as sharedStyle5 from\"#framer/local/css/C2N9e_Oka/C2N9e_Oka.js\";import*as sharedStyle4 from\"#framer/local/css/fmARDc4OL/fmARDc4OL.js\";import*as sharedStyle from\"#framer/local/css/Fnw4JR1gk/Fnw4JR1gk.js\";import*as sharedStyle2 from\"#framer/local/css/hYqGO1F1o/hYqGO1F1o.js\";import*as sharedStyle7 from\"#framer/local/css/nWixc4KUd/nWixc4KUd.js\";import*as sharedStyle9 from\"#framer/local/css/Pq3TYIkET/Pq3TYIkET.js\";import*as sharedStyle8 from\"#framer/local/css/sNwWGL7EC/sNwWGL7EC.js\";import*as sharedStyle1 from\"#framer/local/css/tLqvxtax1/tLqvxtax1.js\";import*as sharedStyle3 from\"#framer/local/css/TVonpmPeX/TVonpmPeX.js\";import*as sharedStyle6 from\"#framer/local/css/u8AXb2IMH/u8AXb2IMH.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HomepageMenuFonts=getFonts(HomepageMenu);const TickerFonts=getFonts(Ticker);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const breakpoints={mb9m9VFzt:\"(max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gsn3R\";const variantClassNames={mb9m9VFzt:\"framer-v-1y6vrh4\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={delay:.5,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"mb9m9VFzt\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"XOSx2Ympi\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"PwqlY98bq\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Op8ktj6nn\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"wlMSid4uX\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"TncmAceii\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sfqqra-container\",layoutScroll:true,nodeId:\"cuhkdkAte\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HomepageMenu,{height:\"100%\",id:\"cuhkdkAte\",layoutId:\"cuhkdkAte\",style:{width:\"100%\"},variant:\"WY1m73Cox\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-co5gxf\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ipjj3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1hq9q29\",\"data-styles-preset\":\"tLqvxtax1\",children:[\"Welcome to the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit\"}),\" platform.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1b2qwo5\",\"data-styles-preset\":\"Fnw4JR1gk\",children:[\"Welcome to the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit\"}),\" platform.\"]})}),className:\"framer-1lx689a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pzxad4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:\"Modelbit is an infrastructure-as-code platform for running your company\u2019s machine learning models in production.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:\"Modelbit is an infrastructure-as-code platform for running your company\u2019s machine learning models in production.\"})}),className:\"framer-1pdo3qb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:\"In practice, this includes deployment, staging, hosting, autoscaling, retraining, re-evaluating, drift detection, shadow deployments, and the rest of the ops workflow.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:\"In practice, this includes deployment, staging, hosting, autoscaling, retraining, re-evaluating, drift detection, shadow deployments, and the rest of the ops workflow.\"})}),className:\"framer-x4kad2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:[\"All this is described in code and configuration in your git repo. You then \",/*#__PURE__*/_jsx(\"code\",{className:\"framer-styles-preset-1hj9qya\",\"data-styles-preset\":\"fmARDc4OL\",children:\"git push\"}),\" your repo Modelbit to make it true in prod.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:[\"All this is described in code and configuration in your git repo. You then \",/*#__PURE__*/_jsx(\"code\",{className:\"framer-styles-preset-1hj9qya\",\"data-styles-preset\":\"fmARDc4OL\",children:\"git push\"}),\" your repo Modelbit to make it true in prod.\"]})}),className:\"framer-w5b0h4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:[\"We invite you to \",/*#__PURE__*/_jsx(Link,{href:\"https://us-east-2.aws.modelbit.com\",motionChild:true,nodeId:\"pRY6Kf_SK\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"try it out for free\"})}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:[\"We invite you to \",/*#__PURE__*/_jsx(Link,{href:\"https://us-east-2.aws.modelbit.com\",motionChild:true,nodeId:\"pRY6Kf_SK\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"try it out for free\"})}),\".\"]})}),className:\"framer-m1340i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qr2hsu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MgNPeJDd1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",hoverFactor:1,id:\"MgNPeJDd1\",layoutId:\"MgNPeJDd1\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:306.4,pixelHeight:100,pixelWidth:383,src:\"https://framerusercontent.com/images/2aP3diFh7ztKgrIvCfUavOF8NU.png\"},className:\"framer-128246x\",\"data-framer-name\":\"Prescient-gray-100\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:360,pixelHeight:100,pixelWidth:450,src:\"https://framerusercontent.com/images/AVZPN3Eg3hC6DtdqPMfdAtbwc.png\"},className:\"framer-40xdi6\",\"data-framer-name\":\"Dronedeploy-gray-100\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:372,pixelHeight:100,pixelWidth:465,src:\"https://framerusercontent.com/images/N21FDIobPw2C0hxUwhlwyOlLbo.png\"},className:\"framer-16b8rry\",\"data-framer-name\":\"Inventa-gray-100\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:269.6,pixelHeight:100,pixelWidth:337,src:\"https://framerusercontent.com/images/L4odtlBZ5lcHVTJ0A7KbpBpt9uk.png\"},className:\"framer-1gz09y5\",\"data-framer-name\":\"Fresha-gray-100\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:53.6,pixelHeight:40,pixelWidth:67,src:\"https://framerusercontent.com/images/chrFoAa0PhIn0MCdGNOZof3cKWQ.png\"},className:\"framer-6bpyr5\",\"data-framer-name\":\"Zippi grayscale2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:72.8,pixelHeight:40,pixelWidth:91,src:\"https://framerusercontent.com/images/Y7iepJfnMcnngA1vO45CCr1KKGE.png\"},className:\"framer-11g020t\",\"data-framer-name\":\"Nelo grayscale\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:106.4,pixelHeight:40,pixelWidth:133,src:\"https://framerusercontent.com/images/KitiJ5ml02Kmmk2HtF18cbOOtHY.png\"},className:\"framer-1lgerq7\",\"data-framer-name\":\"Bambee grayscale\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:122.4,pixelHeight:40,pixelWidth:153,src:\"https://framerusercontent.com/images/nH2vLBxWRMB0CNQrrg45taLWs.png\"},className:\"framer-1qvqsaj\",\"data-framer-name\":\"Ambient grayscale\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:96.8,pixelHeight:40,pixelWidth:121,src:\"https://framerusercontent.com/images/WIlgpdzAuJi15ddxxivPk0RCdk.png\"},className:\"framer-1auwcj4\",\"data-framer-name\":\"Digs grayscale\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:122.4,pixelHeight:40,pixelWidth:153,src:\"https://framerusercontent.com/images/KliRhoEKH05UWcTbVZq1UB7TOw.png\"},className:\"framer-trhtuo\",\"data-framer-name\":\"Turbine grayscale\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:128.8,pixelHeight:40,pixelWidth:161,src:\"https://framerusercontent.com/images/o7kMNU2nlOZgPu8v92mpiFC6meI.png\"},className:\"framer-obbuqc\",\"data-framer-name\":\"Dailypay grayscale\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:183.2,pixelHeight:40,pixelWidth:229,src:\"https://framerusercontent.com/images/vrVWdwa4qdjQPNnH8xtORmx8iKk.png\"},className:\"framer-1mjzpkx\",\"data-framer-name\":\"Zello grayscale\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":PwqlY98bq\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"gEvDheXP3\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mqb7ph\",\"data-styles-preset\":\"u8AXb2IMH\",children:\"keyboard_arrow_down\"})})})}),className:\"framer-d8a39z\",\"data-framer-appear-id\":\"d8a39z\",fonts:[\"GF;Material Icons-regular\"],initial:animation2,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gukwe3\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15rx4vn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40piro\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XOSx2Ympi\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"C6eV5d7Rt\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mqb7ph\",\"data-styles-preset\":\"u8AXb2IMH\",children:\"keyboard_arrow_up\"})})})}),className:\"framer-xswou6\",fonts:[\"GF;Material Icons-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-15qb7s\",\"data-styles-preset\":\"sNwWGL7EC\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit\"}),\" is most popular with teams with serious production ML infra needs.\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-oi925l\",\"data-styles-preset\":\"nWixc4KUd\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit\"}),\" is most popular with teams with serious production ML infra needs.\\xa0\"]})}),className:\"framer-nrhaka\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:[\"Needs like \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{bdMH8XQT0:\"ambient-ai\"},unresolvedPathSlugs:{bdMH8XQT0:{collectionId:\"LPoM80JoN\",collectionItemId:\"RSsqG7INK\"}},webPageId:\"BYrjQXybc\"},motionChild:true,nodeId:\"ApOSNZuVu\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"realtime threat detection with vision models\"})}),\"; \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{bdMH8XQT0:\"om1\"},unresolvedPathSlugs:{bdMH8XQT0:{collectionId:\"LPoM80JoN\",collectionItemId:\"XqzDCjn64\"}},webPageId:\"BYrjQXybc\"},motionChild:true,nodeId:\"ApOSNZuVu\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"text understanding on batches of 250M+ documents\"})}),\"; \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{bdMH8XQT0:\"nelo\"},unresolvedPathSlugs:{bdMH8XQT0:{collectionId:\"LPoM80JoN\",collectionItemId:\"XOz_RvEyw\"}},webPageId:\"BYrjQXybc\"},motionChild:true,nodeId:\"ApOSNZuVu\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"fraud detection and loan underwriting\"})}),\"; and other demanding workloads.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:[\"Needs like \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{bdMH8XQT0:\"ambient-ai\"},unresolvedPathSlugs:{bdMH8XQT0:{collectionId:\"LPoM80JoN\",collectionItemId:\"RSsqG7INK\"}},webPageId:\"BYrjQXybc\"},motionChild:true,nodeId:\"ApOSNZuVu\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"realtime threat detection with vision models\"})}),\"; \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{bdMH8XQT0:\"om1\"},unresolvedPathSlugs:{bdMH8XQT0:{collectionId:\"LPoM80JoN\",collectionItemId:\"XqzDCjn64\"}},webPageId:\"BYrjQXybc\"},motionChild:true,nodeId:\"ApOSNZuVu\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"text understanding on batches of 250M+ documents\"})}),\"; \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{bdMH8XQT0:\"nelo\"},unresolvedPathSlugs:{bdMH8XQT0:{collectionId:\"LPoM80JoN\",collectionItemId:\"XOz_RvEyw\"}},webPageId:\"BYrjQXybc\"},motionChild:true,nodeId:\"ApOSNZuVu\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"fraud detection and loan underwriting\"})}),\"; and other demanding workloads.\"]})}),className:\"framer-10vbtfu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o2jq9t\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{bdMH8XQT0:\"prescient\"},unresolvedPathSlugs:{bdMH8XQT0:{collectionId:\"LPoM80JoN\",collectionItemId:\"nOLWSUpLJ\"}},webPageId:\"BYrjQXybc\"},motionChild:true,nodeId:\"CRDPMuJRs\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lsl0ds framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-imqot5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/UhqaxuTJrG5OquqDTbkRfJhL5A.jpeg\"},className:\"framer-1suu99q\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xjt8d1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:\"Cody Greco\"})}),className:\"framer-pf5dxz\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Co-Founder and CTO\"})}),className:\"framer-194cg1m\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:'\"We retrain and redeploy thousands of models daily, so choosing the right partner for model deployment is critical. We initially investigated SageMaker, but Modelbit\u2019s performance paired with its ease of use was a game-changer for us.\"'})}),className:\"framer-9d0xac\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{bdMH8XQT0:\"om1\"},unresolvedPathSlugs:{bdMH8XQT0:{collectionId:\"LPoM80JoN\",collectionItemId:\"XqzDCjn64\"}},webPageId:\"BYrjQXybc\"},motionChild:true,nodeId:\"lbjqrEyCY\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-t3sc79 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmhccm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/gBsULFyoV9wEH6K4Xx1HXf8ck.jpeg\"},className:\"framer-1qhdt12\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jj2sls\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:\"Nick Pilkington\"})}),className:\"framer-1rq448o\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Co-Founder and CTO\"})}),className:\"framer-1mcijrp\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:'\"Modelbit enabled us to easily deploy several large vision transformer-based models to environments with GPUs. Rapidly deploying and iterating on these models in Modelbit allowed us to build the next generation of our product in days instead of months.\"'})}),className:\"framer-rsy7n7\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{bdMH8XQT0:\"ambient-ai\"},unresolvedPathSlugs:{bdMH8XQT0:{collectionId:\"LPoM80JoN\",collectionItemId:\"RSsqG7INK\"}},webPageId:\"BYrjQXybc\"},motionChild:true,nodeId:\"H4IvwcCSV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-kp2j16 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pq1ie2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/vm0866UDeoc45orgpIuA1vZ44xo.jpeg\"},className:\"framer-vr1wxk\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z5lwgc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:\"Daniel Mewes\"})}),className:\"framer-42smvd\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Staff Software Engineer\"})}),className:\"framer-1xu8e9e\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RnJhZ21lbnQgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Fragment Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\"},children:'\"With Modelbit, we\u2019ve been able to experiment with new models faster than ever before. Once a model is up, we\u2019re able to make iterations in a manner of minutes. It feels a bit like magic every time I make a change to our model code, push it to Github, and see it live on Modelbit just seconds later.\"'})}),className:\"framer-1cdv622\",fonts:[\"GF;Fragment Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Op8ktj6nn\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"Q5EqVWCcX\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mqb7ph\",\"data-styles-preset\":\"u8AXb2IMH\",children:\"keyboard_arrow_down\"})})})}),className:\"framer-1jueup6\",fonts:[\"GF;Material Icons-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c22k01\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6jez4d\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e4obuo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":PwqlY98bq\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"QcPSngDjk\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mqb7ph\",\"data-styles-preset\":\"u8AXb2IMH\",children:\"keyboard_arrow_up\"})})})}),className:\"framer-1nu3i4v\",fonts:[\"GF;Material Icons-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-15qb7s\",\"data-styles-preset\":\"sNwWGL7EC\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit\"}),\"'s interfaces are git, Python, CLI and web.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-oi925l\",\"data-styles-preset\":\"nWixc4KUd\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit\"}),\"'s interfaces are git, Python, CLI and web.\"]})}),className:\"framer-5x9g2q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:\"Modelbit provides a high-level Python API designed to be used by data scientists and ML researchers from Python notebooks. We also provide a CLI and web application for managing the staging and production environments.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:\"Modelbit provides a high-level Python API designed to be used by data scientists and ML researchers from Python notebooks. We also provide a CLI and web application for managing the staging and production environments.\"})}),className:\"framer-1wqhrtx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5sz0a9\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:741.6,intrinsicWidth:1035.2,pixelHeight:927,pixelWidth:1294,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1040px) - 80px, 698px)`,src:\"https://framerusercontent.com/images/wY6ATUjdraoR7hDG4CSw8KqAE.png\",srcSet:\"https://framerusercontent.com/images/wY6ATUjdraoR7hDG4CSw8KqAE.png?scale-down-to=512 512w,https://framerusercontent.com/images/wY6ATUjdraoR7hDG4CSw8KqAE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wY6ATUjdraoR7hDG4CSw8KqAE.png 1294w\"},className:\"framer-r4f7l8\",\"data-framer-name\":\"Modelbit-screenshot\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wlMSid4uX\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"mDbGx7wP5\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mqb7ph\",\"data-styles-preset\":\"u8AXb2IMH\",children:\"keyboard_arrow_down\"})})})}),className:\"framer-lse044\",fonts:[\"GF;Material Icons-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-arbiws\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-j8duvq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lbowc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Op8ktj6nn\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"PorGbEnsK\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mqb7ph\",\"data-styles-preset\":\"u8AXb2IMH\",children:\"keyboard_arrow_up\"})})})}),className:\"framer-1bdmdrc\",fonts:[\"GF;Material Icons-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-15qb7s\",\"data-styles-preset\":\"sNwWGL7EC\",children:[\"Each running deployment in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit\"}),\" is containerized and isolated so that customers don\u2019t impact each other.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-oi925l\",\"data-styles-preset\":\"nWixc4KUd\",children:[\"Each running deployment in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit\"}),\" is containerized and isolated so that customers don\u2019t impact each other.\"]})}),className:\"framer-1687ori\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:[\"Running deployments are idempotent. Each \",/*#__PURE__*/_jsx(\"code\",{className:\"framer-styles-preset-1hj9qya\",\"data-styles-preset\":\"fmARDc4OL\",children:\"git push\"}),\" creates a new version. Each version gets its own container with a unique REST API and Snowflake API. By default, these deployments are run in our cloud; they can be configured to run in yours.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:[\"Running deployments are idempotent. Each \",/*#__PURE__*/_jsx(\"code\",{className:\"framer-styles-preset-1hj9qya\",\"data-styles-preset\":\"fmARDc4OL\",children:\"git push\"}),\" creates a new version. Each version gets its own container with a unique REST API and Snowflake API. By default, these deployments are run in our cloud; they can be configured to run in yours.\"]})}),className:\"framer-14g0t3z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:\"We think these design decisions are why we've achieved 99.99% uptime over a period of years.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:\"We think these design decisions are why we've achieved 99.99% uptime over a period of years.\"})}),className:\"framer-1x6tjdh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sgbjzd\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:312.8,intrinsicWidth:847.2,pixelHeight:391,pixelWidth:1059,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1040px) - 76px, 848px)`,src:\"https://framerusercontent.com/images/JTZPS9NgTTeVUT4Yhab6pj9wy94.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JTZPS9NgTTeVUT4Yhab6pj9wy94.png?scale-down-to=512 512w,https://framerusercontent.com/images/JTZPS9NgTTeVUT4Yhab6pj9wy94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JTZPS9NgTTeVUT4Yhab6pj9wy94.png 1059w\"},className:\"framer-1v8tzpz\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":TncmAceii\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"Yy8XemmvM\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mqb7ph\",\"data-styles-preset\":\"u8AXb2IMH\",children:\"keyboard_arrow_down\"})})})}),className:\"framer-bcd4qf\",fonts:[\"GF;Material Icons-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vqrj7c\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-q39nmk\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11bzems\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wlMSid4uX\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"kx7NkIsN5\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1mqb7ph\",\"data-styles-preset\":\"u8AXb2IMH\",children:\"keyboard_arrow_up\"})})})}),className:\"framer-433hhj\",fonts:[\"GF;Material Icons-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15qb7s\",\"data-styles-preset\":\"sNwWGL7EC\",style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit is a Tom & Harry joint. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-oi925l\",\"data-styles-preset\":\"nWixc4KUd\",style:{\"--framer-text-color\":\"rgb(94, 46, 119)\"},children:\"Modelbit is a Tom & Harry joint. \"})}),className:\"framer-1xl1php\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:\"You may know us from Periscope Data, which we founded and grew to $25M-ish ARR before we sold it. Real OGs know us from LAN parties and programming competitions in Rochester, NY circa 2006.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:\"You may know us from Periscope Data, which we founded and grew to $25M-ish ARR before we sold it. Real OGs know us from LAN parties and programming competitions in Rochester, NY circa 2006.\"})}),className:\"framer-1sui4v9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:\"We're venture-funded. Backed by Susa Ventures, Homebrew, SV Angel, and lots more funds and angels. We've got good money from good people, is what we're saying.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:\"We're venture-funded. Backed by Susa Ventures, Homebrew, SV Angel, and lots more funds and angels. We've got good money from good people, is what we're saying.\"})}),className:\"framer-1gfakdd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mb9m9VFzt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-wlhzat\",\"data-styles-preset\":\"TVonpmPeX\",children:[\"You can find us at \",/*#__PURE__*/_jsx(Link,{href:\"mailto:founders@modelbit.com\",motionChild:true,nodeId:\"ExfEroPSJ\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"founders@modelbit.com\"})}),\"; in our office in San Francisco trying to find the Goldilocks autoscaling algorithm; and at Warriors games when the same-day tickets are cheap. We hope you'll get in touch.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1idvzt7\",\"data-styles-preset\":\"hYqGO1F1o\",children:[\"You can find us at \",/*#__PURE__*/_jsx(Link,{href:\"mailto:founders@modelbit.com\",motionChild:true,nodeId:\"ExfEroPSJ\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"founders@modelbit.com\"})}),\"; in our office in San Francisco trying to find the Goldilocks autoscaling algorithm; and at Warriors games when the same-day tickets are cheap. We hope you'll get in touch.\"]})}),className:\"framer-8elkzq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p6ga8w\",\"data-styles-preset\":\"Pq3TYIkET\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://doc.modelbit.com/terms-of-service.html\",motionChild:true,nodeId:\"oJVrG8HTJ\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-142u4m5\",\"data-styles-preset\":\"C2N9e_Oka\",children:\"(terms of service)\"})})})}),className:\"framer-xrxo8d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gsn3R.framer-lux5qc, .framer-gsn3R .framer-lux5qc { display: block; }\",\".framer-gsn3R.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-gsn3R .framer-1sfqqra-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-gsn3R .framer-co5gxf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 100vh; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-gsn3R .framer-11ipjj3, .framer-gsn3R .framer-15rx4vn, .framer-gsn3R .framer-6jez4d, .framer-gsn3R .framer-j8duvq, .framer-gsn3R .framer-q39nmk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; max-width: 1040px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-gsn3R .framer-1lx689a, .framer-gsn3R .framer-1pdo3qb, .framer-gsn3R .framer-x4kad2, .framer-gsn3R .framer-w5b0h4, .framer-gsn3R .framer-nrhaka, .framer-gsn3R .framer-5x9g2q, .framer-gsn3R .framer-1wqhrtx, .framer-gsn3R .framer-1687ori, .framer-gsn3R .framer-14g0t3z, .framer-gsn3R .framer-1x6tjdh, .framer-gsn3R .framer-1xl1php, .framer-gsn3R .framer-1sui4v9, .framer-gsn3R .framer-1gfakdd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gsn3R .framer-pzxad4, .framer-gsn3R .framer-40piro, .framer-gsn3R .framer-e4obuo, .framer-gsn3R .framer-lbowc, .framer-gsn3R .framer-11bzems { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gsn3R .framer-m1340i, .framer-gsn3R .framer-xswou6, .framer-gsn3R .framer-10vbtfu, .framer-gsn3R .framer-1jueup6, .framer-gsn3R .framer-1bdmdrc, .framer-gsn3R .framer-bcd4qf, .framer-gsn3R .framer-433hhj, .framer-gsn3R .framer-8elkzq, .framer-gsn3R .framer-xrxo8d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gsn3R .framer-qr2hsu-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-gsn3R .framer-128246x { aspect-ratio: 3.8299999999999996 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 153px; }\",\".framer-gsn3R .framer-40xdi6 { aspect-ratio: 4.5 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 180px; }\",\".framer-gsn3R .framer-16b8rry { aspect-ratio: 4.65 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 186px; }\",\".framer-gsn3R .framer-1gz09y5 { aspect-ratio: 3.37 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 135px; }\",\".framer-gsn3R .framer-6bpyr5 { aspect-ratio: 1.675 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 67px; }\",\".framer-gsn3R .framer-11g020t { aspect-ratio: 2.275 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 91px; }\",\".framer-gsn3R .framer-1lgerq7 { aspect-ratio: 3.325 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 133px; }\",\".framer-gsn3R .framer-1qvqsaj, .framer-gsn3R .framer-trhtuo { aspect-ratio: 3.825 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 153px; }\",\".framer-gsn3R .framer-1auwcj4 { aspect-ratio: 3.025 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 121px; }\",\".framer-gsn3R .framer-obbuqc { aspect-ratio: 4.025 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 161px; }\",\".framer-gsn3R .framer-1mjzpkx { aspect-ratio: 5.725 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 229px; }\",\".framer-gsn3R .framer-d8a39z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1000px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-gsn3R .framer-1gukwe3, .framer-gsn3R .framer-c22k01, .framer-gsn3R .framer-arbiws, .framer-gsn3R .framer-1vqrj7c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 100vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gsn3R .framer-o2jq9t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gsn3R .framer-1lsl0ds, .framer-gsn3R .framer-t3sc79, .framer-gsn3R .framer-kp2j16 { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 380px; justify-content: flex-start; padding: 30px; position: relative; text-decoration: none; width: 320px; }\",\".framer-gsn3R .framer-imqot5, .framer-gsn3R .framer-1xmhccm, .framer-gsn3R .framer-pq1ie2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gsn3R .framer-1suu99q, .framer-gsn3R .framer-1qhdt12, .framer-gsn3R .framer-vr1wxk { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gsn3R .framer-1xjt8d1, .framer-gsn3R .framer-1jj2sls, .framer-gsn3R .framer-z5lwgc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-gsn3R .framer-pf5dxz, .framer-gsn3R .framer-194cg1m, .framer-gsn3R .framer-1rq448o, .framer-gsn3R .framer-1mcijrp, .framer-gsn3R .framer-42smvd, .framer-gsn3R .framer-1xu8e9e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-gsn3R .framer-9d0xac, .framer-gsn3R .framer-rsy7n7, .framer-gsn3R .framer-1cdv622 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gsn3R .framer-1nu3i4v, .framer-gsn3R .framer-lse044 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1000px; word-break: break-word; word-wrap: break-word; }\",\".framer-gsn3R .framer-5sz0a9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-gsn3R .framer-r4f7l8 { aspect-ratio: 1.395900755124056 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 500px); max-height: 500px; max-width: 698px; overflow: visible; position: relative; width: 100%; }\",\".framer-gsn3R .framer-sgbjzd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 313px; justify-content: center; overflow: hidden; padding: 0px 16px 0px 20px; position: relative; width: 100%; }\",\".framer-gsn3R .framer-1v8tzpz { aspect-ratio: 2.70843989769821 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 313px); max-height: 313px; max-width: 848px; overflow: visible; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-gsn3R[data-border=\"true\"]::after, .framer-gsn3R [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 1199px) { .framer-gsn3R.framer-72rtr7 { width: 390px; } .framer-gsn3R .framer-r4f7l8 { height: var(--framer-aspect-ratio-supported, 222px); } .framer-gsn3R .framer-1v8tzpz { height: var(--framer-aspect-ratio-supported, 115px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5880\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mb9m9VFzt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"XOSx2Ympi\":{\"pattern\":\":XOSx2Ympi\",\"name\":\"page-one\"},\"PwqlY98bq\":{\"pattern\":\":PwqlY98bq\",\"name\":\"page-two\"},\"Op8ktj6nn\":{\"pattern\":\":Op8ktj6nn\",\"name\":\"page-three\"},\"wlMSid4uX\":{\"pattern\":\":wlMSid4uX\",\"name\":\"page-four\"},\"TncmAceii\":{\"pattern\":\":TncmAceii\",\"name\":\"page-five\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-gsn3R\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5880,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Material Icons\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/materialicons/v143/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhI8tIHh.woff2\",weight:\"400\"},{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v5/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]},...HomepageMenuFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mb9m9VFzt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5880\",\"framerScrollSections\":\"{\\\"XOSx2Ympi\\\":{\\\"pattern\\\":\\\":XOSx2Ympi\\\",\\\"name\\\":\\\"page-one\\\"},\\\"PwqlY98bq\\\":{\\\"pattern\\\":\\\":PwqlY98bq\\\",\\\"name\\\":\\\"page-two\\\"},\\\"Op8ktj6nn\\\":{\\\"pattern\\\":\\\":Op8ktj6nn\\\",\\\"name\\\":\\\"page-three\\\"},\\\"wlMSid4uX\\\":{\\\"pattern\\\":\\\":wlMSid4uX\\\",\\\"name\\\":\\\"page-four\\\"},\\\"TncmAceii\\\":{\\\"pattern\\\":\\\":TncmAceii\\\",\\\"name\\\":\\\"page-five\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "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", "keyframes", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap17f2kna", "args", "onTap1e2g2mv", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "Link", "SVG", "css", "FramerAJkzZHUFt", "withCSS", "AJkzZHUFt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "HomepageMenuFonts", "getFonts", "AJkzZHUFt_default", "TickerFonts", "Ticker", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "AJkzZHUFt_default", "PropertyOverrides2", "x", "RichText", "Link", "Ticker", "Image2", "RichTextWithFXWithOptimizedAppearEffect", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "HomepageMenuFonts", "TickerFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
