{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/VGw7pIT76cJDEWR5ggWO/sDmmZoxW2KMpgt6gfIQM/OvDfRJbFL.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-3qJel\";const variantClassNames={IONGOMCMn:\"framer-v-w6smbf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const 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({defaultVariant:\"IONGOMCMn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-w6smbf\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"IONGOMCMn\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f7ezr9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KxuYOUve1-container\",nodeId:\"KxuYOUve1\",rendersWithMotion:true,scopeId:\"OvDfRJbFL\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"KxuYOUve1\",layoutId:\"KxuYOUve1\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tz7utt\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"w4aHKOjdz\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45,intrinsicWidth:280,pixelHeight:90,pixelWidth:560,sizes:\"111px\",src:\"https://framerusercontent.com/images/gmm2YuHXJlzPAkm90wSPaaHvE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gmm2YuHXJlzPAkm90wSPaaHvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/gmm2YuHXJlzPAkm90wSPaaHvE.png 560w\"},className:\"framer-udqa2m\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"dcUzXjMYw\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yja6g\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"KrrICoIAP\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:63,intrinsicWidth:500,pixelHeight:126,pixelWidth:1e3,sizes:\"103px\",src:\"https://framerusercontent.com/images/uob1BIuVC2kQXPQUFE2jtboeBg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uob1BIuVC2kQXPQUFE2jtboeBg.png?scale-down-to=512 512w,https://framerusercontent.com/images/uob1BIuVC2kQXPQUFE2jtboeBg.png 1000w\"},className:\"framer-1xw8kot\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"i4W34Oe_s\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lpjlru\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"UNg70pwRt\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ygam5o\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:30,intrinsicWidth:109,layoutDependency:layoutDependency,layoutId:\"XfISJqzHF\",svg:'<svg width=\"109\" height=\"30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m5.53 22.128.282-1.033c.648-2.387.634-6.085-.037-9.652l-.402-2.138a5.605 5.605 0 0 0-.031-.162l-.015-.075-.519 2.36c-.763 3.467-.509 7.436.05 9.657l.26 1.04a.213.213 0 0 0 .207.165.213.213 0 0 0 .206-.162ZM18.27 6.45c0 1.597-.612 3.06-1.62 4.188 2.764 1.208 4.68 3.81 4.68 6.818 0 4.156-3.656 7.537-8.15 7.537-1.31 0-2.716-.29-3.87-.844l.986-2.752c.784.378 1.983.659 2.884.659 2.935 0 5.324-2.064 5.324-4.6 0-2.528-2.373-4.586-5.296-4.6l-2.504.109-.216-2.97 1.05-.033c2.152 0 3.904-1.575 3.904-3.512s-1.752-3.512-3.905-3.512c-1.161 0-2.256.463-3.002 1.27-.698.712-1.253 1.648-1.253 1.648.148.404.277.835.385 1.294l-.002-.002a42.21 42.21 0 0 1 .962 4.178c.445 2.546.586 4.897.42 6.987a18.642 18.642 0 0 1-.198 1.61c-.09.532-.204 1.047-.337 1.53-.095.343-.209.692-.347 1.064-.944 2.358-2.282 2.612-2.813 2.612-1.803 0-2.752-2.309-2.926-2.778a8.981 8.981 0 0 1-.116-.36C1.025 17.739.995 10.766 3.929 5.639 2.903 3.9.78 3.031.552 2.955L.536 2.95a.831.831 0 0 0-.01-.003l.82-2.894s.395.097.993.37c.962.421 1.803.986 2.464 1.65.316.295.632.629.934 1.008l.758-.907C7.772.792 9.61 0 11.537 0c3.712 0 6.732 2.893 6.732 6.45Zm66.094 13.272c.793 1.176 2.104 1.918 3.652 1.918 2.524 0 4.43-1.994 4.43-4.638s-1.906-4.637-4.43-4.637a4.45 4.45 0 0 0-2.105.516 26.09 26.09 0 0 1-.23 1.959c-.15.918-.348 1.834-.591 2.722-.13.474-.275.938-.43 1.382l-.004.01a17.78 17.78 0 0 1-.292.768ZM82.518 3.284a25.09 25.09 0 0 0-.165.888c-.294 1.832-.782 6.374.294 12.286 1.492-8.918 0-13.47 0-13.47a.683.683 0 0 0-.129.296ZM64.595 17.066c0 2.63 1.895 4.615 4.408 4.615 2.528 0 4.434-1.984 4.434-4.615 0-2.631-1.907-4.615-4.434-4.615-2.513 0-4.408 1.984-4.408 4.615ZM88.307 9.53c1.86 0 3.605.768 4.914 2.163 1.317 1.403 2.042 3.288 2.042 5.308s-.725 3.906-2.042 5.309c-1.073 1.144-2.435 1.906-3.918 2.13-.407.045-.798.067-1.17.067-2.413 0-4.085-.904-5.166-1.83l-.053.052c-.967 1.149-2.364 1.902-3.948 1.902-2.033 0-3.791-1.403-4.673-3.164-1.443 2.055-3.075 2.55-3.075 2.55l.02-.024a6.34 6.34 0 0 1-2.526.507c-3.817 0-6.922-3.335-6.922-7.435s3.105-7.435 6.922-7.435c1.949 0 3.567.744 4.724 2.164V9.626h2.804v8.25l.017.784c0 1.546 1.215 3.021 2.709 3.021.97 0 1.793-.549 2.27-1.344l-.01-.019a6.338 6.338 0 0 1-.362-.757c-.082-.208-.156-.41-.226-.607l-.004-.01c-.156-.444-.3-.908-.43-1.38a26.277 26.277 0 0 1-.591-2.727c-.225-1.365-.354-3.383-.4-5.111l-.001-.003V9.72a52.64 52.64 0 0 1-.021-1.406 26.46 26.46 0 0 1 .042-1.498l-.002.013s.117-2.846.71-4.62c.053-.172.117-.335.193-.491l.02-.045c.018-.04.036-.082.055-.12v.003C80.725.606 81.633 0 82.647 0c1.338 0 2.492 1.053 2.808 2.56.082.393.157.796.222 1.197.282 1.713.422 2.649.426 4.554 0 .482-.009 1.024-.026 1.594a6.526 6.526 0 0 1 2.23-.374Zm9.177-.035 4.358 10.462 3.743-10.462h3.363l-5.615 14.871c-1.403 3.718-3.772 5.504-7.135 5.302v-2.91c1.989.115 3.1-.836 3.889-2.824l.146-.289-6.199-14.15h3.45Zm-35.694-.02h-.257c-1.701 0-3.022.61-3.873 1.775V9.714h-2.818v14.287h2.818v-7.786c0-1.242.346-2.206 1.03-2.865.678-.654 1.683-.987 2.832-.941l.268.01V9.476Zm-21.06 7.263c0 2.57 1.987 4.508 4.623 4.508 2.652 0 4.651-1.938 4.651-4.508 0-2.57-1.999-4.509-4.65-4.509-2.637 0-4.624 1.939-4.624 4.509Zm4.32-7.263c2.044 0 3.741.727 4.954 2.114V9.546h2.942V24h-2.942v-2.114C48.792 23.273 47.095 24 45.05 24c-4.003 0-7.26-3.259-7.26-7.263 0-4.005 3.257-7.263 7.26-7.263ZM25.024 15.52c.47-2.07 2.136-3.344 4.416-3.344 1.665 0 3.577.886 4.092 3.344h-8.508Zm4.416-6.045c-4.31 0-7.44 3.054-7.44 7.263C22 21.014 25.128 24 29.605 24c2.688 0 4.907-1.111 6.249-3.128l.153-.23-2.496-1.378-.135.214c-.714 1.14-2.103 1.82-3.716 1.82-2.39 0-4.097-1.203-4.625-3.237h11.372l.034-.22c.057-.359.085-.721.085-1.078 0-4.156-3.045-7.29-7.085-7.29Z\" fill=\"#003057\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p1vkub\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"JXcNw2A79\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yh58cd\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:335,layoutDependency:layoutDependency,layoutId:\"gMRUNrfaB\",svg:'<svg width=\"335\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 3.478v-.525L23.253.328v41.077c4.58-6.649 11.054-9.974 19.42-9.974 7.4 0 13.565 2.887 18.497 8.662 4.933 5.774 7.399 13.911 7.399 24.41 0 11.199-2.819 19.86-8.455 25.985-5.55 6.037-12.111 9.055-19.686 9.055-6.782 0-12.551-2.406-17.307-7.218L3.83 99.15V23.295c0-5.6-1.277-12.205-3.831-19.817Zm31.708 86.485c5.55 0 9.6-2.45 12.155-7.35 2.554-4.899 3.832-10.936 3.832-18.11 0-6.387-1.145-11.68-3.436-15.88-2.29-4.2-5.769-6.3-10.437-6.3-3.523 0-7.046 1.532-10.57 4.594v40.946c2.555 1.4 5.373 2.1 8.456 2.1Zm42.568-11.159c0-6.824 2.73-12.03 8.191-15.617 5.461-3.675 11.538-5.512 18.233-5.512 1.145 0 2.333.044 3.566.131 4.052.175 7.62.832 10.702 1.97v-7.744c0-9.887-2.29-14.83-6.87-14.83-3.347 0-8.544 2.406-15.59 7.218-7.046 4.812-11.23 8.137-12.551 9.974h-.66v-18.11c11.45-3.238 21.446-4.856 29.99-4.856 8.368 0 14.621 1.968 18.761 5.905 4.139 3.938 6.209 9.23 6.209 15.88v27.166c0 5.95 1.585 8.924 4.756 8.924 1.058 0 2.246-.306 3.568-.919l.264.394c-.441 3.062-1.85 5.6-4.228 7.612-2.378 1.925-5.417 2.887-9.116 2.887-7.31 0-11.935-3.412-13.872-10.236-4.492 7-11.186 10.499-20.082 10.499-6.606 0-11.803-2.056-15.59-6.168-3.787-4.2-5.681-9.056-5.681-14.568Zm20.082-2.624c0 3.762 1.057 6.867 3.17 9.318 2.203 2.361 5.065 3.543 8.588 3.543 3.347 0 6.298-1.356 8.852-4.069v-21.26c-1.145 0-2.07-.044-2.774-.131a25.387 25.387 0 0 0-3.567-.263c-3.964 0-7.355 1.094-10.173 3.281-2.73 2.188-4.096 5.38-4.096 9.58Zm46.532-43.44v5.249h9.645v40.814c0 6.562 1.585 11.68 4.756 15.355 3.171 3.674 7.531 5.512 13.08 5.512 9.688 0 16.558-5.162 20.61-15.486-3.435 1.838-6.782 2.756-10.041 2.756-6.078 0-9.116-3.325-9.116-9.974V37.99h17.968v-5.775h-17.968v-22.18h-.661c-3.699 4.987-7.751 9.362-12.155 13.124-4.404 3.675-9.776 6.868-16.118 9.58Zm50.592 32.416c0-10.85 3.258-19.161 9.776-24.935 6.607-5.862 14.842-8.793 24.707-8.793 9.864 0 18.1 2.93 24.705 8.793 6.694 5.862 10.041 14.173 10.041 24.935 0 10.849-3.347 19.291-10.041 25.328-6.693 6.125-14.929 9.187-24.705 9.187-9.777 0-17.968-3.019-24.575-9.055-6.605-6.125-9.908-14.611-9.908-25.46Zm22.592 13.91c.792 4.2 2.202 7.788 4.228 10.762 2.026 2.975 4.58 4.462 7.663 4.462 4.404 0 7.706-2.843 9.908-8.53 2.202-5.687 3.303-12.555 3.303-20.604 0-7.875-1.101-14.568-3.303-20.08-2.202-5.6-5.504-8.399-9.908-8.399s-7.708 2.8-9.909 8.4c-2.114 5.512-3.171 12.205-3.171 20.079 0 5.074.396 9.711 1.189 13.91Zm51.469-46.85v.524c0 .175.176 1.05.529 2.625.44 1.487.836 3.062 1.188 4.724.441 1.663.837 3.719 1.19 6.168.352 2.45.528 4.681.528 6.693v24.673c0 2.012-.176 4.243-.528 6.693-.353 2.45-.749 4.506-1.19 6.168a78.438 78.438 0 0 1-1.188 4.856c-.353 1.488-.529 2.319-.529 2.493v.526h26.159v-.525l-.528-1.838a49.125 49.125 0 0 1-.925-3.412c-.264-1.225-.573-2.668-.925-4.33a81.584 81.584 0 0 1-.925-5.25 59.327 59.327 0 0 1-.264-5.38V47.831c4.052-2.974 8.015-4.462 11.891-4.462h.396c3.347.088 6.077 1.181 8.191 3.281 2.202 2.013 3.303 5.162 3.303 9.45v21.522c0 4.375-1.145 11.112-3.435 20.21v.526h26.159v-.525c0-.175-.22-1.006-.66-2.494a128.725 128.725 0 0 0-1.189-4.856c-.352-1.662-.705-3.718-1.057-6.168s-.528-4.68-.528-6.693V53.476c0-7.087-2.071-12.512-6.21-16.274-4.14-3.85-9.292-5.774-15.458-5.774-8.984 0-16.118 4.068-21.403 12.205V32.215h-22.592Z\" fill=\"#1F625C\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2i9pbu\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"DTsMMseI2\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:249,intrinsicWidth:1779,pixelHeight:498,pixelWidth:3558,sizes:\"127px\",src:\"https://framerusercontent.com/images/4zgf0zZqGd05vJDhs2wiOmQtlo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4zgf0zZqGd05vJDhs2wiOmQtlo.png?scale-down-to=512 512w,https://framerusercontent.com/images/4zgf0zZqGd05vJDhs2wiOmQtlo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4zgf0zZqGd05vJDhs2wiOmQtlo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4zgf0zZqGd05vJDhs2wiOmQtlo.png 3558w\"},className:\"framer-1hvdni5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TjTuGGjgY\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fipfbz\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"UQ9N4Vr4m\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:110,intrinsicWidth:200,pixelHeight:220,pixelWidth:400,src:\"https://framerusercontent.com/images/2O5SrZZT1LXsC1SVEVWvUtRrUD0.png\"},className:\"framer-wayp7a\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FG8ND6jyn\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ql4rsp\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"wHgmiQtMg\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jhyraj\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:138,layoutDependency:layoutDependency,layoutId:\"gC5pi7KPT\",svg:'<svg width=\"138\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M16.596 10.896c0 3.66-2.887 6.611-6.463 6.611v3.787c5.615 0 10.164-4.653 10.164-10.398h-3.701ZM0 10.898h3.702c0-3.659 2.886-6.611 6.463-6.611V.5C4.549.5 0 5.153 0 10.898Z\" fill=\"#0E1116\"/><path d=\"m7.435 20.91.847-3.723c.282.097.565.161.878.193l-.847 3.723c-.313-.064-.596-.129-.878-.193Z\" fill=\"#E30073\"/><path d=\"m.157 12.759 3.639-.866c.031.32.125.61.188.898l-3.639.866c-.063-.289-.126-.577-.188-.898Z\" fill=\"#83D596\"/><path d=\"m1.035 15.518 3.263-1.829c.125.29.282.546.44.802l-3.264 1.861c-.156-.289-.282-.545-.439-.834Z\" fill=\"#02B792\"/><path d=\"m2.667 17.895 2.635-2.696c.188.225.408.45.627.642l-2.635 2.696a5.99 5.99 0 0 1-.627-.642Z\" fill=\"#0099C0\"/><path d=\"m4.831 19.756 1.82-3.338c.25.16.502.32.784.45l-1.82 3.337c-.25-.16-.533-.289-.784-.45Z\" fill=\"#78326B\"/><path d=\"M62.107 21.326h-4.733l-3.212-5.02c-.338 0-.845.172-1.183.172h-1.352V21.5H47.57V1.242h5.41c5.577 0 8.789 2.77 8.789 7.618 0 3.117-1.353 5.194-3.719 6.234l4.057 6.232ZM52.81 12.67c3.38 0 4.733-1.038 4.733-3.982 0-2.77-1.521-3.982-4.733-3.982h-1.352v7.964h1.352Zm49.018-11.602v20.259h13.015V17.69h-8.958V1.068h-4.057Zm22.649 0v20.259H138V17.69h-9.466v-4.675h7.099V9.553h-7.099V4.704h8.959V1.068h-13.016ZM77.319 15.78a6.697 6.697 0 0 1 0-9.35c2.535-2.598 6.592-2.598 9.127 0l2.536-2.598c-3.888-3.982-10.31-3.982-14.199 0-3.887 3.984-3.887 10.562 0 14.544 3.888 3.982 10.311 3.982 14.199 0l-2.536-2.596c-2.535 2.596-6.591 2.596-9.127 0ZM30.836 1.068h4.057v20.259h-4.057V1.068Z\" fill=\"#0E1116\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h138v22H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k14nmq\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"AshCggS4y\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:259,pixelHeight:100,pixelWidth:518,sizes:\"115px\",src:\"https://framerusercontent.com/images/C4ADpC0nLbSMBd025MQQPFmH6w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/C4ADpC0nLbSMBd025MQQPFmH6w.png?scale-down-to=512 512w,https://framerusercontent.com/images/C4ADpC0nLbSMBd025MQQPFmH6w.png 518w\"},className:\"framer-1svos8s\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"c9Y2xBP1t\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xqyb45\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"eigJ4SLPG\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qbt1b3\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:75,intrinsicWidth:351,layoutDependency:layoutDependency,layoutId:\"Qk4qwMBDE\",svg:'<svg width=\"351\" height=\"75\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M193.407 22.178c0 2.113.143 3.777.447 4.976v.913h-13.597c-.304-1.02-.448-2.38-.448-4.08v-8.95c0-1.326-.268-2.346-.823-3.08-.538-.716-1.362-1.092-2.455-1.092-1.092 0-1.953.412-2.579 1.218-.627.823-.951 1.95-.951 3.4v42.818c0 1.45.324 2.578.951 3.401.626.806 1.487 1.217 2.579 1.217 1.093 0 1.898-.376 2.455-1.127.537-.753.823-1.773.823-3.026v-8.968c0-1.682.144-3.043.448-4.081h13.597v.913c-.304 1.092-.447 2.9-.447 5.424 0 6.873-1.433 12.297-4.3 16.253-2.866 3.956-6.987 5.925-12.361 5.925-6.108 0-10.73-2.72-13.901-8.144-3.171-5.424-4.766-14.177-4.766-26.26v-5.424c0-12.065 1.595-20.818 4.766-26.26C165.997 2.722 170.638 0 176.746 0c5.374 0 9.495 1.969 12.361 5.925 2.867 3.956 4.3 9.38 4.3 16.253Zm34.665 11.546c-1.236 2.864-3.189 5.603-5.84 8.198l6.789 30.502v.913H215.89l-5.16-27.155h-1.361l.626 27.155h-13.597V.913h13.401c3.869 0 7.309.877 10.336 2.631 3.028 1.754 5.41 4.278 7.166 7.554 1.756 3.294 2.633 7.232 2.633 11.814-.017 4.332-.627 7.948-1.862 10.812ZM216.337 19.01c0-2.291-.555-4.081-1.683-5.334-1.111-1.271-2.527-1.898-4.21-1.898h-.449V36.23h.449c1.683 0 3.099-.627 4.21-1.897 1.11-1.271 1.683-3.043 1.683-5.335V19.01ZM252.4 58.749c0 3.078-1.057 4.617-3.171 4.617s-3.171-1.539-3.171-4.617V.913H232.46V55.24c0 5.907 1.488 10.561 4.479 13.944 2.992 3.383 7.077 5.066 12.272 5.066 5.194 0 9.279-1.683 12.272-5.066 2.992-3.383 4.479-8.019 4.479-13.944V.913h-13.597v57.836h.035Zm38.948-18.921h-.916L284.555.913h-14.94v72.424h11.77l-.912-33.491h.912l4.98 33.491h9.065l4.98-33.491h.915l-.915 33.491h11.77V.913h-14.94l-5.892 38.915Zm58.902 14.213c0 4.17-.895 7.697-2.67 10.597-1.79 2.9-4.192 5.065-7.255 6.515-3.045 1.45-6.45 2.166-10.195 2.166h-14.312V.913h12.952c3.797 0 7.308.716 10.515 2.13 3.208 1.414 5.752 3.508 7.65 6.283 1.9 2.774 2.848 6.158 2.848 10.131 0 8.02-3.618 13.605-10.873 16.755v.913c3.26 1.145 5.965 3.079 8.115 5.8 2.15 2.703 3.225 6.408 3.225 11.116Zm-20.835-22.358h.913c1.63 0 2.939-.608 3.942-1.808 1.002-1.199 1.488-3.025 1.488-5.423v-5.424c0-2.417-.503-4.225-1.488-5.424-1.003-1.2-2.312-1.808-3.942-1.808h-.913v19.887Zm6.79 18.563c0-2.596-.555-4.529-1.685-5.8-1.11-1.27-2.525-1.897-4.21-1.897h-.913v19.923h.913c1.685 0 3.1-.627 4.21-1.898 1.11-1.27 1.685-3.204 1.685-5.8v-4.528Zm-188.23-13.694c.198.161.394.304.537.43v.734c-.519.071-.967.143-1.541.215-.124-.036-.375-.144-.626-.144a17.957 17.957 0 0 0-1.702 0c-.592 0-1.164-.053-1.737.215-.377.161-.95.358-1.201.197-.592-.358-1.039-.107-1.487.054-.161-.108-.287-.197-.269-.197-.537.071-.914.143-1.289.161-1.057.018-2.114-.054-3.171.018a7.92 7.92 0 0 1-1.129-.036v35.138h-13.598V38.181c-.107.018-.196.054-.304.072-.501.107-.985.358-1.433.053-.555-.357-.967.144-1.451.126-.036 0-.108.018-.125 0-.395-.394-.914-.18-1.362-.215-.323-.036-.645-.018-.968 0-.322.018-.644.125-.967.125-.304 0-.608-.107-.914-.125-.483-.018-.984-.036-1.468 0-.466.036-.914-.054-1.397.125-.359.143-.879-.125-1.327-.125-.375 0-.752.107-1.146.161-.125-.054-.304-.179-.466-.161-.412.036-.949.322-1.218.161-.447-.25-.86-.143-1.273-.179h-.053c1.505 2.273 2.706 4.404 3.601 6.408 1.541 3.437 2.311 7.268 2.311 11.492 0 5.55-1.451 9.953-4.353 13.21-2.902 3.258-6.825 4.887-11.77 4.887-5.5 0-9.656-1.7-12.45-5.12-2.813-3.4-4.21-8.305-4.21-14.713 0-2.291-.18-3.992-.538-5.066v-.913h12.415c.358.716.537 2.077.537 4.081v6.695c0 1.396.305 2.506.914 3.348.609.84 1.415 1.27 2.454 1.27 1.093 0 1.935-.411 2.544-1.217.609-.823.914-1.88.914-3.222v-1.36c0-2.238-.663-4.565-1.989-6.963-1.325-2.417-3.26-5.281-5.804-8.593l-2.705-3.4c-.18-.216-.34-.448-.502-.663-.072.018-.143.054-.215.072-.179.071-.483.09-.591 0a.872.872 0 0 0-.878-.197c-.305.107-.52.143-.788-.018-.538.376-1.147.179-1.738.233-.322.035-.609-.144-.878-.197-.286-.036-.609.232-.985.197-.735-.09-1.505.143-2.222-.215-.16-.09-.465.018-.68.053-.233.036-.448.144-.663.144-.95 0-1.899.018-2.849 0l3.225 33.992v.913H64.314l-1.541-17.202h-5.07l-1.54 17.202H43.479v-.913l3.207-33.67a1.044 1.044 0 0 0-.323-.072c-.412.018-.896.304-1.218.18-.645-.251-1.147-.144-1.774 0-.555.124-1.2-.305-1.845-.18-.179.036-.322.18-.537.287-.18-.448-.555-.322-.86-.287-.896.072-1.845-.232-2.688.197-.232-.072-.447-.215-.644-.197-.251.018-.484.143-.681.215-.143-.107-.233-.179-.358-.268-.61.447-1.236.322-1.828 0-.34.411-.734.214-1.093.268-.053-.179-.089-.286-.125-.43-.573-.143-1.164.269-1.738.233v22.86h11.323v11.76H17.359V38.467h-.358c-.412-.017-.824.108-1.236.18-.108-.072-.233-.162-.233-.162-.43.072-.735.162-1.039.18-.448.017-1.04.178-1.308-.036-.484-.358-.788.035-1.164.053-1.881.054-3.762.143-5.643.215-.968.036-1.953 0-2.938 0-.502 0-1.022.09-1.505-.215-.054-.035-.251.126-.323.161-.537-.25-1.057-.5-1.612-.77.269-.124.537-.196.752-.322.61-.375 1.272-.447 2.007-.465.95-.036 1.917.25 2.83-.197.054-.018.162.018.215.054.717.358 1.434.179 2.114-.054.09.072.18.126.197.143.61-.053 1.04-.143 1.451-.143h7.775V.913H30.94v36.176h4.514c.412 0 .824.09 1.344.143.322-.393.752-.053 1.11.09.699-.394 1.308-.322 1.9-.036.286-.072.537-.179.788-.197a10.09 10.09 0 0 1 1.469 0c.501.036 1.003-.072 1.522.126.359.143.878-.108 1.326-.126.233-.018.555.215.717.143.394-.215.788-.197 1.182-.16l3.44-36.16H70.19l3.386 35.712c.233 0 .465 0 .698.018.43.035.842-.072 1.29.107.358.143.878-.09 1.308-.107.412-.018.824.035 1.218-.018.358-.054.627.25 1.039.035.322-.16.788-.035 1.2-.035h4.64c-2.275-3.187-3.941-6.015-4.98-8.52-1.308-3.115-1.953-6.588-1.953-10.454 0-5.245 1.487-9.505 4.443-12.763C85.471 1.629 89.484 0 94.554 0c5.141 0 9.101 1.683 11.913 5.03 2.812 3.347 4.21 7.93 4.21 13.711 0 2.345.179 4.1.537 5.245v.913H98.978c-.358-1.02-.537-2.38-.537-4.081V14.75c0-1.396-.305-2.453-.914-3.222-.609-.752-1.397-1.128-2.347-1.128-1.02 0-1.88.394-2.543 1.181-.663.788-1.004 1.898-1.004 3.348v1.36c0 2.059.52 4.046 1.577 5.979 1.057 1.933 2.795 4.403 5.213 7.428l2.723 3.437a70.286 70.286 0 0 1 2.454 3.276h1.469c.251 0 .448.054.609.215.412-.108.663-.197.897-.197.339.018.662.197 1.002.197.377 0 .753-.161 1.129-.197.161-.018.341.143.484.197.287-.072.538-.215.789-.197.537.036 1.074-.108 1.629.179.484.25 1.058-.143 1.595-.197.108-.018.304-.018.341.036.286.465.698-.054 1.092.143.377.197 1.003.161 1.434.018a3.337 3.337 0 0 1 1.379-.18c.34.019.662.198 1.003.198.34 0 .663-.161 1.003-.197.18-.018.376.054.555.107.269.072.52.126.77.144V12.69h-9.064V.913h31.709v11.76h-9.065v23.95h1.755c.269 0 .52-.017.806-.124.538-.198 1.147-.215 1.595.089.394-.072.681-.161.968-.179.984-.018 1.953 0 2.937-.018.108 0 .216-.143.322-.215h4.641c.018.43.448.108.591.376ZM59.763 19.457l-1.397 17.4c.43 0 .842 0 1.272-.018.25 0 .502-.143.752-.215.52.447 1.057.143 1.523-.018.054.036.108.072.144.09l-1.38-17.256h-.914v.017Zm2.903 24.9-.484-6.087-.215-.053c-.233-.054-.591-.108-.717 0-.358.34-.752.179-1.146.197-.61.018-1.218-.018-1.828.018h-.036l-.465 5.907h4.89v.018Zm43.066-7.715c.019 0 .019 0 0 0Z\" fill=\"#000\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h350.25v74.25H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fgncoa\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"ifmJo2P0c\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1854,pixelHeight:606,pixelWidth:3708,sizes:\"106px\",src:\"https://framerusercontent.com/images/3AfBowJtSWWBpOgMDc91rZWTVQs.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3AfBowJtSWWBpOgMDc91rZWTVQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/3AfBowJtSWWBpOgMDc91rZWTVQs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3AfBowJtSWWBpOgMDc91rZWTVQs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3AfBowJtSWWBpOgMDc91rZWTVQs.png 3708w\"},className:\"framer-bloci0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sMJdwCoL6\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jom4mf\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"VTEYqpdtL\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sy60fy\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:257,intrinsicWidth:929,layoutDependency:layoutDependency,layoutId:\"Ro7oPAzdG\",svg:'<svg width=\"929\" height=\"257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#20170D\"><path d=\"M3.31 198.71v-1.53c6.37-2.55 8.92-12 8.92-20.38V40.51C12.23 29 7.9 22.93 0 16.56V15C10.7 11.72 34.9 4.33 48.4 0h1.28v176.8c0 8.41 2.8 17.83 9.17 20.38v1.53H3.31Zm78.21-68.019c0-38 29.05-70.31 69-70.31 41.53 0 69 30.31 69 69.8 0 38.47-28.78 70.31-69 70.31-41.74 0-69-29.8-69-69.8Zm98.09-.25c-.26-46.12-11-66.75-29.05-66.75-17.83 0-28.78 20.63-29 66.75 0 46.62 11 66.74 29 66.74s29.05-20.12 29.05-66.74Zm391.39-13v3.31h-87.42c0 33.38 16.05 60.89 45.35 60.89 13 0 26.49-3.06 38.47-17.58l.76 1.28c-10.19 19.1-23.44 35.15-55.54 35.15-40.76 0-69-27-69-69.8 0-39 26.75-70.31 67.25-70.31 42.01 0 59.84 25.47 60.13 57.06Zm-33.89.51v-.25c0-36.69-7.64-54-25.22-54-18.85 0-27.77 20.12-28.28 54l53.5.25ZM701.15 67l-9.68 25.48H691C681 82 672.62 78.72 662.69 78.72c-10.45 0-16.05 7.13-18.6 10.7v87.381c0 8.41 2.55 17.83 8.92 20.38v1.53h-55.54v-1.53c6.37-2.55 8.92-11.21 8.92-20.38v-74.13c0-10.7-4.08-17.33-12-23.7V77.7l46.88-15h1.53v24.43c9.17-15.29 23.94-26.75 38.72-26.75 9.48.25 15.31 3.05 19.63 6.62Zm18.1 131.71v-1.53c6.37-2.55 8.92-12 8.92-20.38V40.51c0-11.47-4.33-17.58-12.23-23.95V15c10.7-3.31 34.9-10.7 48.4-15h1.28v176.8c0 8.41 2.8 17.83 9.17 20.38v1.53h-55.54ZM891 65.22h37.45v1.27c-9.94 3.82-16.56 14-19.62 21.4l-47.42 119.741-4.08 11c-9.68 25-24.45 37.45-40 37.45a29.874 29.874 0 0 1-21.15-9.17l7.13-19.11h1.28c5.86 6.63 15 11.47 23.44 11.47 9.68-.26 19.1-5.86 25-18.6l4.33-9.68-51-120.76c-4.33-10.44-8.4-18.34-17.07-23.43v-1.58H853v1.53c-8.92 3.82-14 10.19-7.9 23.94L876.18 161l27.26-70c3.82-9.43-2-19.87-12.48-24.46l.04-1.32Zm-545.75 6.65-13.61 13.61L318 71.87c-15.76-15.77-41.56-15.77-57.68 0-15.76 15.76-15.76 41.56 0 57.68l70.94 70.94 70.94-70.94c15.8-15.76 15.8-41.55.02-57.68-15.41-15.77-41.2-15.77-57 0m39.06 39.05-52.67 53-52.67-53a14.691 14.691 0 0 1 0-20.78 14.694 14.694 0 0 1 20.78 0L331.64 122l31.89-31.89a14.694 14.694 0 0 1 20.78 20.78\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h928.41v256.03H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-113gmjl\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"ZGPgOpRd3\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12kmd18\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:109,layoutDependency:layoutDependency,layoutId:\"C2yWPPzz5\",svg:'<svg class=\"color-dark\" width=\"109\" height=\"42\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><defs><path id=\"a\" d=\"M0 .82h20.064v26.563H0z\"/></defs><g fill=\"none\" fill-rule=\"evenodd\"><g transform=\"translate(0 .4)\"><mask id=\"b\" fill=\"#fff\"><use xlink:href=\"#a\"/></mask><path d=\"M17.468 25.125a12.672 12.672 0 0 1-2.48-4.314c-.076-.225-.136-.464-.202-.699H8.475V5.096c0-.27-.023-.542-.071-.823a3.543 3.543 0 0 0-.257-.823 2.944 2.944 0 0 0-.402-.747 5.62 5.62 0 0 0-.547-.64 2.522 2.522 0 0 0-.586-.494 6.071 6.071 0 0 0-.658-.349 5.288 5.288 0 0 0-.328-.144 2.62 2.62 0 0 0-.328-.11 8.442 8.442 0 0 1-.35-.072L4.604.819H4.24c-.269 0-.537.026-.806.075a3.475 3.475 0 0 0-.803.255 4.175 4.175 0 0 0-.73.384 4.026 4.026 0 0 0-.66.53 3.695 3.695 0 0 0-.51.64c-.147.23-.281.48-.403.747a5.292 5.292 0 0 0-.237.786c-.06.281-.09.542-.09.785v17.832c0 .683.104 1.295.31 1.846a4.07 4.07 0 0 0 .93 1.443c.417.438.89.754 1.427.95a5.09 5.09 0 0 0 1.753.29h15.644a12.512 12.512 0 0 1-2.596-2.257\" fill=\"currentColor\" mask=\"url(#b)\"/></g><path d=\"M39.53 23.033v-.256c0-.348.034-.692.101-1.024.048-.244.107-.487.173-.721.09-.31.204-.605.341-.879.113-.226.25-.46.404-.69l.05-.075c.243-.336.476-.627.71-.89a4.623 4.623 0 0 1 1.123-.93c.025-.265.042-.538.056-.814-.141-.134-.298-.257-.428-.399a9.283 9.283 0 0 1-2.115-4.004 9.477 9.477 0 0 1-.268-2.255v-.343c0-.199.014-.391.044-.58.013-.188.038-.375.075-.558.018-.101.06-.31.06-.31.073-.47.193-.943.358-1.407a11.7 11.7 0 0 1 .551-1.282c.218-.44.473-.868.754-1.277.169-.24.363-.478.552-.716-.082-.179-.159-.361-.267-.521a4.614 4.614 0 0 0-.532-.641 5.404 5.404 0 0 0-.638-.547 3.038 3.038 0 0 0-.75-.403 2.79 2.79 0 0 0-.785-.254 4.861 4.861 0 0 0-.824-.075c-.266 0-.53.026-.784.075-.256.048-.517.12-.786.218-.244.098-.48.226-.712.384a4.513 4.513 0 0 0-1.17 1.168 5.287 5.287 0 0 0-.42.75 6.757 6.757 0 0 0-.237.822c-.06.281-.092.543-.092.786v10.887c0 .61-.078 1.17-.236 1.682a4.072 4.072 0 0 1-.75 1.39c-.317.39-.7.71-1.15.967a4.65 4.65 0 0 1-1.518.528 1.648 1.648 0 0 1-.218.058 1.438 1.438 0 0 1-.22.017h-1.134a.33.33 0 0 1-.09-.017 1.525 1.525 0 0 1-.127-.058 4.479 4.479 0 0 1-1.535-.528 4.736 4.736 0 0 1-1.17-.967 4.477 4.477 0 0 1-.712-1.39 5.8 5.8 0 0 1-.236-1.717V5.42c0-.266-.025-.54-.073-.82a3.49 3.49 0 0 0-.257-.823 3.017 3.017 0 0 0-.402-.75 5.704 5.704 0 0 0-.548-.638 4.043 4.043 0 0 0-.547-.457 4.237 4.237 0 0 0-.623-.349 2.49 2.49 0 0 0-.657-.254 7.071 7.071 0 0 0-.656-.11h-.056c-.013 0-.031-.01-.055-.037h-.292c-.293 0-.572.026-.84.075a3.37 3.37 0 0 0-.805.254 3.851 3.851 0 0 0-.768.385 3.143 3.143 0 0 0-.655.565 3.71 3.71 0 0 0-.515.64c-.144.232-.28.48-.4.749-.098.268-.17.542-.219.823-.05.28-.072.543-.072.786v10.558c0 1.632.224 3.114.674 4.44a10.302 10.302 0 0 0 2.03 3.528c.9 1.045 2.013 1.898 3.341 2.557 1.328.655 2.87 1.107 4.621 1.35v-.037c.099 0 .195.007.294.02.096.01.195.028.292.054.072 0 .158.007.257.019.095.011.193.017.292.017.097 0 .195.008.292.018.096.013.195.02.292.02a.842.842 0 0 0 .256.036h.875c.098-.025.196-.036.293-.036h.293c.196-.027.39-.044.586-.055a3.23 3.23 0 0 0 .584-.093c1.752-.242 3.293-.688 4.622-1.332a10.333 10.333 0 0 0 3.196-2.383 6.88 6.88 0 0 1-.098-1.107\" fill=\"currentColor\"/><path d=\"M59.896 24.424a6.943 6.943 0 0 1-.138-1.39v-.256c0-.349.032-.694.097-1.026.05-.243.107-.486.176-.72a5.2 5.2 0 0 1 .34-.879 6.22 6.22 0 0 1 .405-.692l.023-.036.027-.038c.242-.335.476-.626.71-.89a4.625 4.625 0 0 1 1.166-.959c.175-.105.359-.199.551-.28a8.426 8.426 0 0 1-.967-.902 8.949 8.949 0 0 1-1.313-1.882 9.348 9.348 0 0 1-.562-1.345 8.323 8.323 0 0 0-.847-.509 4.646 4.646 0 0 0-.33-.148 2.504 2.504 0 0 1-.364-.18l-.384-.149a9.478 9.478 0 0 1-.384-.144 4.841 4.841 0 0 0-.803-.312c-.292-.084-.6-.186-.915-.31l-2.117-.585-.294-.073-1.096-.256-1.79-.438c-.072-.022-.134-.042-.182-.054a.677.677 0 0 1-.148-.058.735.735 0 0 1-.125-.07 1.36 1.36 0 0 0-.13-.074c-.024-.024-.05-.048-.072-.072a2.248 2.248 0 0 1-.073-.075.848.848 0 0 1-.056-.126.48.48 0 0 1-.017-.127.634.634 0 0 1 .073-.293.892.892 0 0 0 .127-.165.698.698 0 0 1 .312-.291c.072-.038.157-.068.255-.094.072-.023.163-.04.273-.054.11-.012.237-.018.383-.018h.549c0 .025.011.037.036.037h.129c.011 0 .028-.012.055-.037l.364.072.512.11 1.025.256.435.11 1.06.33.294.145c.218.073.432.127.64.164.206.038.394.08.566.128a7.636 7.636 0 0 0 1.057.074c.317 0 .61-.032.88-.091.224-.052.42-.137.612-.23.007-.116.01-.235.027-.349a4.48 4.48 0 0 1 .072-.558l.064-.31c.07-.471.192-.944.357-1.405.149-.424.335-.856.549-1.285.158-.316.354-.621.548-.924a3.4 3.4 0 0 0-.33-.62 3.409 3.409 0 0 0-.84-.842c-.317-.268-.736-.517-1.262-.748a17.328 17.328 0 0 0-2.775-.933 5.783 5.783 0 0 0-.97-.144 13.087 13.087 0 0 0-1.972-.148h-.732a.12.12 0 0 1-.09.038h-.384a.295.295 0 0 1-.129.035h-.347a.272.272 0 0 1-.129.037h-.127c-.802.098-1.558.25-2.264.456-.707.207-1.376.457-2.01.75a10.34 10.34 0 0 0-1.662.987c-.5.364-.946.754-1.334 1.168a12.26 12.26 0 0 0-.73.95 8.418 8.418 0 0 0-1.024 2.01 5.307 5.307 0 0 0-.256 1.023l-.073.366c-.024.12-.035.242-.035.365-.026.097-.037.2-.037.31v.346a7.015 7.015 0 0 0 .803 3.29c.267.512.592.975.97 1.387.377.415.821.78 1.332 1.098.196.122.413.243.657.365.244.122.5.245.768.366.268.12.559.235.878.346.316.11.67.201 1.06.274l2.41.695.365.072 1.937.476.475.146.696.256a.243.243 0 0 0 .07.054c.027.013.05.018.075.018h.074a.091.091 0 0 0 .072.037c.024.025.048.051.073.074a.097.097 0 0 0 .071.036.25.25 0 0 1 .056.074c.013.022.03.048.054.072a.531.531 0 0 1 .055.164.64.64 0 0 0 .056.165c0 .074-.008.14-.02.202a.646.646 0 0 1-.053.163.623.623 0 0 1-.109.146c-.05.048-.098.099-.148.147a.322.322 0 0 1-.07.055.25.25 0 0 0-.075.055.107.107 0 0 0-.074.034c-.022.026-.043.037-.055.037h-.052a.374.374 0 0 1-.11.073c-.027.026-.05.037-.075.037h-.072a.24.24 0 0 1-.128.055 1.046 1.046 0 0 0-.166.055c-.07.026-.145.044-.217.055-.073.014-.148.02-.22.02a2.73 2.73 0 0 1-.274.053c-.085.012-.178.02-.275.02h-.273c-.087 0-.19-.013-.311-.038a4.72 4.72 0 0 1-.346-.017 3.257 3.257 0 0 1-.384-.055h-.075a.095.095 0 0 1-.072-.038h-.146a1.01 1.01 0 0 1-.165-.017.295.295 0 0 1-.163-.093l-.404-.11-1.057-.253-1.464-.366-1.605-.404a8.958 8.958 0 0 0-.35-.055 2.23 2.23 0 0 1-.31-.053h-.146a.33.33 0 0 1-.145-.037h-.293c-.293 0-.562.024-.804.075a1.916 1.916 0 0 0-.658.254c-.219.12-.42.287-.601.493a9.666 9.666 0 0 0-.568.714 3.835 3.835 0 0 0-.255.438 2.716 2.716 0 0 0-.182.474 6.53 6.53 0 0 0-.129.53 2.874 2.874 0 0 0-.055.567v.255c0 .318.029.621.092.915.06.29.151.547.274.765.122.244.285.476.494.695.207.217.468.438.785.66a2.412 2.412 0 0 0 .365.29c.047.025.11.055.182.092.074.037.146.067.22.09v.038c.293.17.639.335 1.041.493.402.157.87.3 1.408.42.534.147 1.132.258 1.788.329.659.072 1.39.134 2.193.183h.202c.06 0 .128.012.2.037h.604c.06 0 .126.011.2.036h.366c1.07 0 2.06-.073 2.96-.22.901-.145 1.73-.375 2.485-.693a11.754 11.754 0 0 0 2.117-1.188c.157-.113.3-.243.449-.363a5.16 5.16 0 0 1-.408-1.188\" fill=\"currentColor\"/><path d=\"m81.391 23.495-.394-.591v-.005a13.76 13.76 0 0 1-1.592-3.238 14.02 14.02 0 0 1-.544-2.041c-.107-.58-.19-1.167-.246-1.754a2.68 2.68 0 0 1-.068-.597v-1.188c0-.182.02-.365.06-.545a29.9 29.9 0 0 1 .087-.805c.024-.188.055-.375.082-.562l-.064-.026A9.41 9.41 0 0 1 78.33 12a4.908 4.908 0 0 0-.805-.312c-.29-.085-.596-.187-.912-.31l-2.12-.584-.294-.074-1.095-.256-1.789-.439-.185-.053a.653.653 0 0 1-.144-.058.828.828 0 0 1-.128-.07.946.946 0 0 0-.13-.074c-.024-.024-.05-.048-.072-.072l-.073-.074a.815.815 0 0 1-.054-.127.58.58 0 0 1 0-.275.625.625 0 0 1 .054-.145.86.86 0 0 0 .128-.165.78.78 0 0 1 .128-.164.628.628 0 0 1 .183-.127 1.27 1.27 0 0 1 .255-.094c.072-.023.163-.04.273-.054.11-.012.238-.017.385-.017h.548c0 .024.011.036.034.036h.13c.012 0 .03-.012.055-.036l.365.07.511.112 1.024.255.437.11 1.062.33.29.145a4.6 4.6 0 0 0 .64.164c.207.037.394.08.566.128a7.622 7.622 0 0 0 1.06.074c.258 0 .49-.035.716-.075.01-.03.017-.058.028-.087l.009-.028c.234-.67.526-1.34.875-1.994.327-.612.702-1.234 1.118-1.842.16-.235.35-.443.522-.667-.009-.02-.008-.042-.016-.059a3.267 3.267 0 0 0-.475-1.02 3.423 3.423 0 0 0-.84-.842c-.318-.268-.736-.517-1.26-.748a17.571 17.571 0 0 0-2.777-.933 5.823 5.823 0 0 0-.969-.144 13.17 13.17 0 0 0-1.974-.148h-.729a.133.133 0 0 1-.093.038h-.383a.303.303 0 0 1-.129.035h-.346a.286.286 0 0 1-.127.037h-.129c-.803.098-1.557.25-2.264.456-.71.207-1.379.457-2.011.75a10.34 10.34 0 0 0-1.662.987c-.5.363-.944.754-1.334 1.168-.269.317-.512.634-.73.95a9.035 9.035 0 0 0-1.024 2.01 5.32 5.32 0 0 0-.256 1.023c-.024.122-.05.244-.073.366a1.78 1.78 0 0 0-.037.365c-.025.096-.036.2-.036.31v.346c0 .586.066 1.151.201 1.7.133.55.336 1.079.604 1.59.265.512.59.975.968 1.387.375.415.821.78 1.332 1.098.196.122.415.243.66.366.241.121.499.244.767.365.266.12.56.235.877.346.316.11.669.2 1.058.274l2.411.695.367.072 1.936.475.475.147.695.256a.232.232 0 0 0 .072.053c.025.014.05.019.073.019h.074c.024.026.048.036.073.036.025.026.048.052.072.075a.1.1 0 0 0 .073.035.29.29 0 0 1 .055.075.363.363 0 0 0 .055.072.744.744 0 0 1 .057.164.62.62 0 0 0 .051.165.93.93 0 0 1-.018.202.644.644 0 0 1-.052.162.551.551 0 0 1-.111.147 8.85 8.85 0 0 1-.147.147.39.39 0 0 1-.072.055.321.321 0 0 0-.073.055.102.102 0 0 0-.071.034c-.025.027-.045.037-.059.037h-.052a.359.359 0 0 1-.11.073c-.026.025-.049.037-.074.037h-.073a.235.235 0 0 1-.128.055.966.966 0 0 0-.163.055 1.292 1.292 0 0 1-.44.074 2.537 2.537 0 0 1-.273.054c-.086.012-.178.02-.274.02h-.275c-.083 0-.188-.013-.31-.038a4.182 4.182 0 0 1-.731-.072h-.073c-.026 0-.049-.012-.074-.038h-.145a.998.998 0 0 1-.165-.017.294.294 0 0 1-.165-.093l-.402-.11-1.059-.253-1.46-.366-1.607-.404a9.313 9.313 0 0 0-.35-.055 2.321 2.321 0 0 1-.31-.053h-.146a.314.314 0 0 1-.144-.037h-.295c-.29 0-.559.024-.803.075a1.916 1.916 0 0 0-.658.254c-.219.12-.42.287-.603.493a9.098 9.098 0 0 0-.567.714 3.822 3.822 0 0 0-.254.437 2.719 2.719 0 0 0-.184.475c-.048.17-.091.347-.128.53a2.964 2.964 0 0 0-.053.567v.255c0 .317.03.621.09.915.06.29.151.547.275.765.122.244.285.476.494.694.205.218.467.44.784.66.048.049.103.096.165.145.063.05.128.097.199.147.052.025.111.053.184.091.073.037.146.067.22.09v.037c.292.171.64.336 1.041.494.402.157.87.3 1.407.42.536.146 1.133.258 1.79.329a46.06 46.06 0 0 0 2.191.183h.203c.06 0 .127.011.2.037h.603a.61.61 0 0 1 .2.036h.365c1.072 0 2.06-.073 2.96-.22.902-.145 1.73-.376 2.483-.693.78-.341 1.487-.736 2.12-1.188a9.192 9.192 0 0 0 1.718-1.59c.052-.056.085-.122.135-.18-.18-.24-.377-.46-.543-.71\" fill=\"currentColor\"/><path d=\"M89.684 17.15a5.7 5.7 0 0 0 1.223 1.974c.562.584 1.17 1.016 1.829 1.298a5.34 5.34 0 0 0 2.119.417h.272c.086 0 .178-.011.275-.034a2.046 2.046 0 0 0 .548-.074 4.939 4.939 0 0 0 1.808-.714 6.356 6.356 0 0 0 1.48-1.331c.44-.56.768-1.177.989-1.847.217-.67.327-1.382.327-2.138v-.292a.306.306 0 0 1-.036-.146v-.146a2.516 2.516 0 0 0-.074-.583 6.424 6.424 0 0 0-.675-2.047 6.057 6.057 0 0 0-1.26-1.609 5.91 5.91 0 0 0-1.7-1.04 5.236 5.236 0 0 0-1.918-.347c-.78 0-1.497.146-2.155.437-.66.294-1.267.731-1.83 1.317a6.198 6.198 0 0 0-1.222 1.971c-.28.732-.422 1.55-.422 2.45v-.038c0 .927.143 1.768.422 2.522m-7.325 3.454a10.787 10.787 0 0 1-.73-1.7 11.765 11.765 0 0 1-.458-1.717 17.616 17.616 0 0 1-.238-1.754.363.363 0 0 1-.038-.164V14.08a.38.38 0 0 1 .018-.09.268.268 0 0 0 .02-.09c.025-.294.055-.586.09-.878.038-.293.082-.585.13-.878.047-.268.114-.55.201-.84.083-.292.175-.586.274-.877.194-.56.438-1.115.731-1.661.291-.55.62-1.091.987-1.627a13.013 13.013 0 0 1 2.21-2.485 14.46 14.46 0 0 1 2.794-1.9 14.143 14.143 0 0 1 3.16-1.206 14.035 14.035 0 0 1 3.381-.402c1.144 0 2.265.134 3.36.402 1.096.269 2.156.672 3.179 1.206a13.991 13.991 0 0 1 2.778 1.9c.828.731 1.57 1.56 2.23 2.485.364.536.687 1.078.967 1.627.28.546.517 1.102.711 1.661.194.562.36 1.128.494 1.7.134.571.212 1.137.238 1.698v.093c0 .034.014.079.036.128v.655c0 .66-.055 1.306-.164 1.937a15.61 15.61 0 0 1-.456 1.901 17.726 17.726 0 0 1-.768 1.862 12.46 12.46 0 0 1-1.058 1.791 13.853 13.853 0 0 1-2.23 2.521 12.863 12.863 0 0 1-2.778 1.865 13.029 13.029 0 0 1-3.179 1.171c-1.095.24-2.216.363-3.36.363-1.17 0-2.297-.123-3.381-.363a13.049 13.049 0 0 1-3.16-1.171 13.265 13.265 0 0 1-2.795-1.865 12.469 12.469 0 0 1-2.209-2.52v-.036a11.604 11.604 0 0 1-.987-1.553M34.96 37.129v-.02c0-1.867 1.407-3.395 3.425-3.395.985 0 1.65.263 2.195.667.15.11.28.316.28.57a.703.703 0 0 1-.712.703.762.762 0 0 1-.432-.14c-.403-.3-.826-.469-1.34-.469-1.108 0-1.906.92-1.906 2.046v.018c0 1.127.778 2.065 1.905 2.065.61 0 1.012-.187 1.426-.516a.678.678 0 0 1 .432-.161c.365 0 .675.302.675.669a.678.678 0 0 1-.244.515c-.592.516-1.285.826-2.337.826-1.933 0-3.368-1.492-3.368-3.378m8.599-2.637c0-.404.319-.723.723-.723.403 0 .721.319.721.723v4.588h2.675c.366 0 .656.291.656.658 0 .365-.29.657-.656.657H44.28a.718.718 0 0 1-.723-.725v-5.178Zm11.829 2.637v-.02c0-1.126-.826-2.064-1.99-2.064-1.164 0-1.97.92-1.97 2.046v.018c0 1.127.826 2.065 1.989 2.065 1.163 0 1.97-.92 1.97-2.045m-5.471 0v-.02c0-1.867 1.474-3.395 3.5-3.395 2.027 0 3.481 1.508 3.481 3.377v.018c0 1.868-1.474 3.398-3.5 3.398-2.027 0-3.481-1.512-3.481-3.378m9.38.449v-3.086c0-.404.318-.724.722-.724.404 0 .723.32.723.724v3.05c0 1.07.535 1.625 1.416 1.625.884 0 1.418-.538 1.418-1.578v-3.097c0-.404.32-.724.721-.724.404 0 .724.32.724.724v3.04c0 1.989-1.118 2.965-2.881 2.965-1.764 0-2.843-.984-2.843-2.919m11.142 1.512c1.181 0 1.98-.797 1.98-1.962v-.019c0-1.163-.799-1.979-1.98-1.979h-1.118v3.96h1.118Zm-2.562-4.543c0-.401.32-.72.721-.72h1.84c2.066 0 3.491 1.416 3.491 3.264v.018c0 1.85-1.425 3.285-3.49 3.285h-1.84a.717.717 0 0 1-.722-.724v-5.123Z\" fill=\"currentColor\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e92rxl\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"sA1uhJ_1v\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:45.5,intrinsicWidth:170,pixelHeight:91,pixelWidth:340,src:\"https://framerusercontent.com/images/onxYwv8RNMeIYcbm0hwnEvnAWbg.png\"},className:\"framer-pb7dgp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tyt1rHPp5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dt58ss\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"FcwoSXTAE\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12rta4u\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:176,layoutDependency:layoutDependency,layoutId:\"SZR6CXrf8\",svg:'<svg width=\"176\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#121212\"><path d=\"M122.821 0h-9.349v30.576h9.349V0ZM48.062 22.593c-2.021 0-3.133-1.464-3.133-4.124 0-2.662 1.112-4.127 3.133-4.127 1.454 0 3.187.716 3.187 4.127 0 3.409-1.733 4.124-3.187 4.124Zm0-16.777c-7.418 0-12.404 5.084-12.404 12.653 0 7.565 4.986 12.647 12.405 12.647 7.42 0 12.405-5.082 12.405-12.647 0-7.569-4.985-12.653-12.405-12.653Zm49.83 14.841V6.369h-9.133v16.682c0 4.976 2.994 8.064 7.813 8.064 2.388 0 4.654-.876 5.912-2.286l.314-.352v2.139h9.101V6.369h-9.151l-.005 14.931c-.266 1.287-1.341 1.98-2.521 1.98-1.459 0-2.33-.98-2.33-2.623Zm-20.026-5.361c.337.7.473 1.036.473 2.348 0 1.306-.08 1.722-.476 2.477-.423.809-1.59 1.665-2.92 1.665-2.084 0-3.43-1.6-3.43-4.077 0-2.48 1.346-4.083 3.43-4.083 1.38 0 2.585.97 2.923 1.67Zm-5.902-9.48c-6.18 0-10.68 4.682-10.68 11.648 0 6.964 4.377 11.642 10.893 11.642 2.238 0 4.204-.826 5.395-2.266l.312-.377v2.658c0 2.44-1.64 3.9-4.131 4.079-.31.021-.617.033-.912.033-.7 0-1.193-.06-1.454-.101v7.666c1.904.247 3.638.27 5.47.051 6.174-.743 9.905-5.263 9.905-14.442V6.359h-8.878V8.46l-.17-.204c-1.193-1.442-3.514-2.44-5.75-2.44ZM33.668 0 17.296 13.536.827 0H0v30.576h9.738V19.008l7.32 6.05h.421l7.321-6.05v11.568h9.695V0h-.827Zm131.458 30.571h-10.124l-1.047-3.535h-10.256l-1.047 3.535h-9.819L144.092.023h9.513l11.521 30.548Zm-13.048-10.124-3.229-11.26-3.23 11.26h6.459Zm14.393 10.125V.027h9.164v30.545h-9.164Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h176v41H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ehtosp\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"o72gtxCZP\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1soovb8\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jDqwcjEiM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 85 28\"><g transform=\"translate(0.044 0.044)\" id=\"ss10224250497_1\"><path d=\"M 0 0 L 84.913 0 L 84.913 28 L 0 28 Z\" fill=\"transparent\"></path><path d=\"M 18.607 21.225 C 18.49 20.96 18.218 20.799 17.931 20.825 C 16.969 20.906 15.916 20.581 15.005 19.933 C 16.111 18.65 16.718 17.035 16.718 15.349 C 16.718 12.649 15.17 10.295 12.894 9.087 L 12.894 16.926 C 12.894 16.934 12.895 16.943 12.895 16.952 L 12.895 17.679 C 12.895 18.321 12.377 18.841 11.738 18.841 L 10.79 18.841 L 10.158 18.053 C 10.009 17.857 9.79 17.726 9.547 17.689 C 9.226 17.646 8.905 17.774 8.702 18.028 L 8.06 18.841 L 7.111 18.841 C 6.472 18.841 5.954 18.321 5.954 17.679 L 5.954 16.953 C 5.954 16.311 6.472 15.79 7.111 15.79 L 11.738 15.79 C 11.842 15.79 11.945 15.804 12.044 15.832 L 12.044 8.705 C 11.204 8.387 10.313 8.225 9.414 8.225 C 5.387 8.225 2.111 11.421 2.111 15.349 C 2.111 17.034 2.716 18.649 3.824 19.933 C 2.913 20.582 1.862 20.907 0.898 20.824 C 0.611 20.8 0.34 20.961 0.222 21.225 C 0.113 21.476 0.172 21.758 0.383 21.951 C 1.582 23.049 3.531 23.071 5.218 22.1 C 4.633 23.103 3.759 23.846 2.774 24.145 C 2.495 24.23 2.31 24.469 2.303 24.753 C 2.294 25.032 2.461 25.275 2.739 25.379 C 4.344 25.971 6.237 25.183 7.407 23.523 C 7.384 24.167 7.137 25.151 6.101 26.192 C 5.921 26.374 5.847 26.621 5.894 26.886 C 5.954 27.215 6.194 27.521 6.509 27.665 C 6.896 27.845 7.266 27.934 7.605 27.934 C 7.936 27.934 8.237 27.849 8.5 27.679 C 8.91 27.416 9.214 26.951 9.413 26.293 C 9.612 26.95 9.917 27.415 10.325 27.679 C 10.589 27.849 10.891 27.934 11.221 27.934 C 11.56 27.934 11.93 27.845 12.32 27.665 C 12.633 27.522 12.874 27.215 12.934 26.886 C 12.982 26.62 12.908 26.374 12.727 26.192 C 11.564 25.024 11.349 24.043 11.364 23.44 C 12.53 25.156 14.46 25.98 16.102 25.375 C 16.368 25.276 16.534 25.032 16.526 24.753 C 16.517 24.468 16.332 24.23 16.055 24.145 C 15.163 23.873 14.281 23.107 13.666 22.126 C 14.458 22.571 15.303 22.802 16.102 22.802 C 16.993 22.801 17.824 22.519 18.455 21.944 C 18.656 21.762 18.717 21.472 18.607 21.225 L 18.607 21.225 Z M 12.896 9.087 L 12.896 6.221 C 12.896 5.985 12.705 5.794 12.471 5.794 C 12.236 5.794 12.045 5.985 12.045 6.221 L 12.045 8.705 C 12.338 8.816 12.623 8.942 12.896 9.087 Z M 12.014 4.21 C 12.02 4.427 11.908 4.629 11.722 4.739 C 11.537 4.849 11.306 4.849 11.12 4.739 C 10.935 4.629 10.823 4.427 10.828 4.21 C 10.837 3.887 11.1 3.629 11.421 3.629 C 11.743 3.629 12.006 3.887 12.014 4.21 Z M 13.013 0.769 C 13.018 0.972 12.921 1.163 12.754 1.278 C 12.588 1.392 12.375 1.413 12.189 1.334 C 11.917 1.219 11.771 0.92 11.846 0.633 C 11.921 0.347 12.194 0.159 12.488 0.193 C 12.781 0.227 13.005 0.473 13.012 0.769 Z M 14.169 2.78 C 14.173 2.996 14.061 3.197 13.876 3.306 C 13.691 3.415 13.461 3.415 13.276 3.306 C 13.091 3.197 12.979 2.996 12.983 2.78 C 12.989 2.456 13.253 2.195 13.576 2.195 C 13.899 2.195 14.163 2.456 14.169 2.78 Z\" fill=\"rgb(39, 39, 39)\"></path><path d=\"M 34.273 20.679 C 35.065 19.866 35.461 18.797 35.461 17.471 C 35.461 16.146 35.065 15.077 34.273 14.264 C 33.482 13.452 32.479 13.045 31.265 13.045 C 30.052 13.045 29.053 13.452 28.271 14.264 C 27.488 15.077 27.097 16.146 27.097 17.471 C 27.097 18.797 27.488 19.866 28.271 20.679 C 29.053 21.492 30.052 21.898 31.265 21.898 C 32.479 21.898 33.482 21.492 34.273 20.679 Z M 27.413 23.807 C 26.27 23.189 25.378 22.327 24.735 21.222 C 24.093 20.118 23.773 18.868 23.773 17.471 C 23.773 16.076 24.093 14.83 24.736 13.734 C 25.378 12.638 26.27 11.782 27.413 11.163 C 28.556 10.544 29.841 10.235 31.265 10.235 C 32.707 10.235 34 10.544 35.144 11.163 C 36.287 11.782 37.18 12.638 37.822 13.734 C 38.464 14.83 38.784 16.076 38.784 17.471 C 38.784 18.868 38.464 20.118 37.822 21.222 C 37.18 22.327 36.287 23.189 35.144 23.807 C 34 24.426 32.707 24.735 31.265 24.735 C 29.841 24.735 28.557 24.426 27.413 23.807 Z M 50.103 10.235 L 50.103 13.389 C 49.851 13.339 49.595 13.313 49.338 13.31 C 48.054 13.31 47.051 13.686 46.33 14.436 C 45.609 15.188 45.248 16.27 45.248 17.683 L 45.248 24.549 L 41.95 24.549 L 41.95 10.394 L 45.09 10.394 L 45.09 12.461 C 46.04 10.977 47.71 10.235 50.103 10.235 L 50.103 10.235 Z M 52.9 10.394 L 56.198 10.394 L 56.198 24.549 L 52.9 24.549 Z M 53.058 7.491 C 52.654 7.112 52.451 6.639 52.451 6.073 C 52.451 5.508 52.654 5.035 53.058 4.655 C 53.462 4.275 53.964 4.085 54.562 4.085 C 55.16 4.085 55.661 4.267 56.066 4.628 C 56.47 4.991 56.673 5.447 56.673 5.993 C 56.673 6.577 56.475 7.067 56.079 7.465 C 55.683 7.862 55.178 8.062 54.562 8.062 C 53.964 8.062 53.462 7.872 53.058 7.492 Z M 60.973 7.266 L 64.271 7.266 L 64.271 10.5 L 68.044 10.5 L 68.044 13.151 L 64.271 13.151 L 64.271 19.884 C 64.271 20.573 64.438 21.099 64.772 21.461 C 65.106 21.824 65.59 22.004 66.223 22.004 C 66.962 22.004 67.578 21.81 68.07 21.421 L 68.994 23.78 C 68.607 24.099 68.136 24.337 67.582 24.496 C 67.011 24.658 66.42 24.738 65.827 24.735 C 64.279 24.735 63.084 24.328 62.239 23.515 C 61.395 22.703 60.973 21.518 60.973 19.963 Z M 80.271 20.623 C 79.48 21.435 78.477 21.842 77.263 21.842 C 76.05 21.842 75.051 21.435 74.269 20.623 C 73.486 19.81 73.095 18.74 73.095 17.415 C 73.095 16.089 73.486 15.02 74.269 14.208 C 75.051 13.395 76.05 12.988 77.263 12.988 C 78.477 12.988 79.48 13.395 80.271 14.208 C 81.063 15.02 81.458 16.089 81.458 17.414 C 81.458 18.74 81.063 19.81 80.271 20.623 Z M 84.775 17.143 C 84.735 15.858 84.42 14.701 83.82 13.677 C 83.178 12.582 82.285 11.725 81.141 11.106 C 79.998 10.488 78.705 10.179 77.263 10.179 C 75.839 10.179 74.554 10.488 73.411 11.106 C 72.268 11.725 71.376 12.582 70.733 13.677 C 70.091 14.773 69.77 16.019 69.77 17.415 C 69.77 18.811 70.091 20.062 70.733 21.166 C 71.376 22.27 72.268 23.132 73.411 23.75 C 74.554 24.369 75.839 24.678 77.263 24.678 C 78.705 24.678 79.998 24.369 81.141 23.75 C 81.332 23.646 81.517 23.534 81.698 23.413 L 81.698 24.546 L 84.783 24.546 L 84.783 17.144 Z\" fill=\"rgb(33,40,48)\"></path></g></svg>',svgContentId:10224250497,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15jwnsr\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"VaeURMRd3\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dvvmr0\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:248,layoutDependency:layoutDependency,layoutId:\"copky6zEE\",svg:'<svg width=\"248\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M61.447 8.146c4.22 0 7.164 2.635 7.164 7.292 0 4.658-2.943 7.292-7.164 7.292h-5.026v8.05h-4.606V8.146h9.632Zm-5.056 10.437h4.46c1.783 0 3.094-1.09 3.094-3.15 0-2.058-1.307-3.178-3.094-3.178h-4.46v6.328Zm26.78 2.542v9.651h-4.19v-1.269c-.862.907-2.173 1.605-3.926 1.605-3.093 0-5.112-1.605-5.112-4.632 0-3.48 2.884-4.6 6.154-4.749l2.733-.152v-.602c0-1.575-.655-2.42-1.992-2.42-1.487 0-2.138 1.029-2.138 2.058l-4.341-.183c0-2.752 2.468-5.6 6.423-5.6 4.13 0 6.389 2.18 6.389 6.293Zm-6.659 3.51c-1.307.062-2.228.515-2.228 1.636 0 1.03.741 1.422 1.782 1.422 1.577 0 2.764-.877 2.764-2.543v-.663l-2.318.149Zm9.83 13.86 3.925-9.11-6.003-14.252h4.786l3.535 9.324 3.51-9.324h4.816l-9.839 23.362h-4.73Zm40.025-17.309v9.595h-4.34v-8.718c0-1.998-.892-3.118-2.558-3.118-1.547 0-2.499 1.029-2.674 2.603v9.228h-4.341v-8.713c0-1.998-.921-3.118-2.498-3.118-1.727 0-2.764 1.269-2.764 3.148v8.683h-4.34V15.133h4.1v1.605c.686-1.09 1.933-1.906 4.045-1.906 2.113 0 3.805.877 4.817 2.481.891-1.421 2.408-2.481 4.726-2.481 3.505 0 5.827 2.39 5.827 6.354Zm7.439 3.178c.09 1.937 1.247 3.18 3.209 3.18 1.517 0 2.498-.637 2.824-1.727l4.371.213c-.536 2.966-3.48 5.085-7.075 5.085-4.696 0-7.94-3.118-7.94-8.137 0-5.055 3.24-8.138 7.82-8.138 4.431 0 7.345 2.904 7.345 7.776v1.753h-10.554v-.005Zm0-2.935h6.183c-.09-1.905-1.041-3.148-3.004-3.148-1.842 0-3.063 1.151-3.179 3.148Zm27.849-.212v9.564h-4.341v-8.718c0-1.998-1.041-3.118-2.704-3.118-1.722 0-2.853 1.269-2.853 3.148v8.683h-4.341V15.133h4.105v1.605c.686-1.09 2.052-1.906 4.131-1.906 3.535 0 6.003 2.329 6.003 6.385Zm8.934 3.542c0 1.727 1.101 2.359 2.318 2.359.626 0 1.012-.092 1.337-.153V30.9c-.625.092-1.217.183-2.408.183-3.329 0-5.617-1.635-5.592-5.264l.03-6.868h-2.794v-3.816h2.824l.03-5.177h4.341l-.03 5.177h3.599v3.811h-3.629l-.026 5.814Zm27.235 1.874v4.148h-14.299V8.145h4.607v18.487h9.692Zm15.232-5.508v9.651h-4.191v-1.269c-.861.907-2.168 1.605-3.925 1.605-3.093 0-5.116-1.605-5.116-4.632 0-3.48 2.884-4.6 6.153-4.749l2.734-.152v-.602c0-1.575-.655-2.42-1.992-2.42-1.487 0-2.138 1.029-2.138 2.058l-4.341-.183c0-2.752 2.468-5.6 6.423-5.6 4.135 0 6.393 2.18 6.393 6.293Zm-6.659 3.51c-1.307.062-2.228.515-2.228 1.636 0 1.03.741 1.422 1.783 1.422 1.577 0 2.763-.877 2.763-2.543v-.663l-2.318.149Zm14.659-8.137c.801-.938 2.348-1.666 4.311-1.666 4.37 0 7.434 3.206 7.434 8.138 0 4.902-3.064 8.142-7.434 8.142-2.143 0-3.746-.877-4.551-1.936v1.605h-4.105V7.266h4.341v9.232h.004Zm0 6.11v.698c0 2.542 1.487 3.994 3.625 3.994 2.168 0 3.715-1.543 3.715-4.326 0-2.782-1.547-4.357-3.715-4.357-2.138-.004-3.625 1.479-3.625 3.99Zm26.307-2.721-4.311.244c-.06-1.121-.626-1.906-1.963-1.906-1.161 0-1.752.484-1.752 1.33 0 1.09 1.161 1.239 3.004 1.723 3.063.815 5.231 1.783 5.231 4.631 0 3.18-2.288 5.203-6.303 5.203-3.925 0-6.213-1.814-6.539-5.085l4.341-.244c.06 1.151.741 1.936 2.228 1.936 1.192 0 1.933-.515 1.933-1.422 0-.937-.566-1.238-2.794-1.783-3.269-.846-5.442-1.544-5.442-4.75 0-2.996 2.288-4.932 6.153-4.932 3.895 0 5.948 2.15 6.214 5.055Z\" fill=\"#222C49\"/><path d=\"M21.185 36.837c-.009 0-.013.005-.022.005v-10.68l5.142 3.022 1.517-2.67-8.171-4.805-8.172 4.801 1.513 2.67 5.142-3.023v10.676C9.68 36.057 3.029 28.81 3.029 20c0-1.421.185-2.8.515-4.117L.836 14.238A20.297 20.297 0 0 0 0 20c0 11.03 8.814 20 19.65 20 .52 0 1.03-.026 1.535-.065v-3.096Z\" fill=\"#226CFF\"/><path d=\"m6.08 13.833 7.375 4.335-5.31 3.145 1.526 2.664 8.159-4.832-.035-9.603-3.03.013.022 5.83-8.711-5.115c3.012-4.339 7.97-7.187 13.575-7.187 4.499 0 8.578 1.836 11.569 4.806l2.725-1.592C30.363 2.425 25.281 0 19.651 0 11.869 0 5.125 4.627 1.945 11.326l4.135 2.507Z\" fill=\"#226CFF\"/><path d=\"m35.874 8.73-4.182 2.438-7.177 4.218.026-5.831-3.03-.013-.038 9.603 8.15 4.836 1.525-2.664-5.309-3.15 8.891-5.224a17.015 17.015 0 0 1 1.534 7.06c0 7.716-5.103 14.236-12.058 16.259v3.192c8.643-2.102 15.088-10.021 15.088-19.45a20.027 20.027 0 0 0-3.42-11.274Z\" fill=\"#226CFF\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h248v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rm0yq\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"hIC72cwFF\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ifoa3d\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:30,intrinsicWidth:171,layoutDependency:layoutDependency,layoutId:\"VwIMcQn4_\",svg:'<svg width=\"171\" height=\"30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"171\" height=\"30\"><path d=\"M171 0H0v30h171V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path d=\"M6.5 18.666 7.87 5.588H2.85c-.19 0-.38.158-.38.357L0 29.565c0 .237.152.435.38.435h4.562c.19 0 .38-.159.38-.357l.533-4.993s.114-.198.19-.198h12.203c.19 0 .38-.159.38-.357l.532-5.191H6.691s-.228-.12-.19-.238Z\" fill=\"#3C6\"/><path d=\"M26.116 0H8.82c-.19 0-.38.159-.38.357l-.533 5.23h8.402s.266.239.114.358l-6.083 5.191s-.19.396-.038.595l3.004 3.566s.38.198.57 0l5.969-5.469s.342 0 .342.198l-.913 8.838h4.98c.19 0 .38-.159.38-.357L26.498.436c0-.238-.153-.436-.38-.436Z\" fill=\"#3C6\"/><path d=\"M33.493 5.945c0-.199.19-.357.38-.357h7.337c3.878 0 6.577 2.933 6.12 6.856-.38 3.329-3.078 5.746-6.538 5.746h-4.98l-.608 5.905c0 .198-.19.357-.38.357H32.01c-.228 0-.418-.198-.38-.476l1.9-18.031h-.037Zm3.307 3.17-.57 5.469h4.524c1.559 0 2.7-1.11 2.851-2.576.19-1.664-.874-2.893-2.433-2.893H36.8Zm12.433 1.745c0-.199.19-.357.38-.357h2.623c.228 0 .418.198.38.475l-.19 1.625c1.179-1.466 2.7-2.298 4.486-2.298h.532l-.38 3.646h-.532c-2.509 0-4.144 1.307-4.562 3.408l-.722 6.737c0 .198-.19.357-.38.357h-2.624c-.228 0-.418-.198-.38-.476l1.407-13.117h-.038Zm8.247 6.063c.419-4.122 3.65-6.737 7.452-6.737 4.448 0 7.413 3.13 6.92 7.37-.039.397-.115.833-.19 1.19H61.053c.305 1.823 1.635 2.972 3.536 2.972 1.407 0 2.51-.674 3.117-1.546h3.688c-1.064 2.774-3.498 4.637-6.92 4.637-4.485 0-7.488-3.408-6.994-7.847v-.04Zm3.765-.833h7.147c-.266-1.704-1.597-2.853-3.46-2.853-1.71 0-3.155 1.15-3.688 2.853Zm11.823 4.162v-.12h3.46v.12c-.153.95.722 1.585 2.128 1.585 1.027 0 1.787-.476 1.863-1.19.228-2.377-7.185-.99-6.653-6.459.228-2.734 2.547-4.003 5.246-4.003 3.346 0 5.475 1.823 5.247 4.28h-3.422c.114-.832-.684-1.386-1.938-1.386-.95 0-1.635.475-1.711 1.11-.266 2.298 7.261.99 6.69 6.42-.303 2.694-2.47 4.16-5.474 4.16-3.497 0-5.702-1.902-5.474-4.517h.038Zm12.166-3.329c.418-4.003 3.65-6.737 7.451-6.737 3.802 0 6.387 2.377 6.691 5.706h-3.612c-.342-1.347-1.52-2.259-3.231-2.259-1.977 0-3.612 1.546-3.802 3.527-.228 2.418 1.293 4.201 3.574 4.201 1.482 0 2.737-.911 3.193-2.259h3.612c-.494 3.33-3.308 5.707-6.92 5.707-4.447 0-7.412-3.408-6.956-7.847v-.04Zm15.244 7.529h2.623c.19 0 .38-.159.38-.357l1.407-13.117c0-.238-.152-.476-.38-.476h-2.624c-.19 0-.38.159-.38.357l-1.406 13.117c0 .238.152.476.38.476Zm1.673-18.745 2.813 3.29s.114 0 .114-.04l.343-3.092s-.114-.277-.267-.277h-2.965s-.114.08-.038.119Zm3.574 11.216c.418-4.122 3.65-6.737 7.451-6.737 4.448 0 7.414 3.13 6.919 7.37-.038.397-.114.833-.19 1.19h-10.606c.304 1.823 1.634 2.972 3.535 2.972 1.407 0 2.509-.674 3.118-1.546h3.687c-1.064 2.774-3.497 4.637-6.919 4.637-4.486 0-7.489-3.408-6.995-7.847v-.04Zm3.764-.833h7.147c-.266-1.704-1.597-2.853-3.46-2.853-1.71 0-3.155 1.15-3.687 2.853Zm12.546-5.23c0-.199.19-.357.38-.357h2.623c.228 0 .418.198.38.475l-.114 1.07c1.179-1.228 2.661-1.863 4.372-1.863 3.193 0 5.056 2.14 4.676 5.787l-.836 8.124c0 .198-.19.356-.381.356h-2.623c-.228 0-.418-.198-.38-.475l.76-7.253c.191-1.902-.836-3.13-2.699-3.13-1.672 0-3.003 1.07-3.345 2.774l-.837 7.688c0 .198-.19.357-.38.357h-2.623c-.228 0-.418-.198-.38-.476l1.407-13.117v.04Zm14.672 9.193.685-6.183s-.038-.118-.114-.118h-1.559c-.228 0-.418-.199-.38-.476l.266-2.417c0-.198.19-.357.38-.357h.837c.722 0 1.102-.396 1.216-1.11l.228-2.219c0-.198.19-.357.38-.357h2.433a.38.38 0 0 1 .381.436l-.343 3.131s.038.119.114.119h2.548c.228 0 .418.198.38.475l-.266 2.418c0 .198-.19.357-.381.357h-2.661s-.114.04-.114.118l-.608 5.628c-.114 1.11.456 1.704 1.559 1.704h.912a.38.38 0 0 1 .38.436l-.228 2.417c0 .199-.19.357-.38.357h-1.483c-3.079 0-4.524-1.545-4.22-4.399l.038.04Z\" fill=\"#262626\"/><path d=\"M157.961 5.588h1.939l5.626 18.864h-1.748l-1.521-5.152h-9.504l-2.623 5.152h-1.825l9.618-18.864h.038Zm3.84 12.127L158.759 7.41l-5.246 10.304h8.288Zm7.602-12.127h1.596l-1.977 18.864h-1.596l1.977-18.864Z\" fill=\"#3C6\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h171v30H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j78dio\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"naUmIinfG\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sygk1f\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:23,intrinsicWidth:108,layoutDependency:layoutDependency,layoutId:\"YGlkUWvR1\",svg:'<svg width=\"108\" height=\"23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#1F15E1\"><path d=\"m22.143 10.385-.29-.29-3.825-3.837-7.812 7.836-4.402-4.416h3.45l.764.767 6.087-6.106L12.47.68 12.19.4a1.356 1.356 0 0 0-1.922 0L9.9.767.713 9.981l-.315.316a1.366 1.366 0 0 0 0 1.928l.071.072 5.352 5.367-.007-5.376.002.003-.002-1.852 4.392 4.412v7.21l.066.067.08.08c.53.532 1.39.532 1.921 0l3.29-3.3 6.06-6.08.519-.519c.53-.532.53-1.395 0-1.927l.001.003ZM96.33 9.377a3.923 3.923 0 0 0-1.417-.893 4.96 4.96 0 0 0-1.7-.289c-.93 0-1.738.214-2.426.639a4.326 4.326 0 0 0-1.605 1.778c-.382.76-.574 1.642-.574 2.646 0 1.005.19 1.906.571 2.659.38.751.923 1.332 1.63 1.74.708.41 1.549.613 2.525.613.756 0 1.426-.116 2.014-.347a3.74 3.74 0 0 0 1.447-.978 3.35 3.35 0 0 0 .769-1.483v-.103a.137.137 0 0 0-.137-.137h-1.842a.233.233 0 0 0-.216.134c-.098.218-.23.404-.395.558a1.955 1.955 0 0 1-.703.422c-.27.096-.572.143-.906.143-.498 0-.933-.107-1.304-.32a2.19 2.19 0 0 1-.868-.927c-.2-.391-.3-.859-.308-1.401h6.636a.137.137 0 0 0 .137-.138v-.566c0-.856-.119-1.593-.356-2.214-.236-.62-.56-1.132-.971-1.534v-.002Zm-5.439 2.902c.023-.382.117-.737.291-1.064.197-.367.472-.663.826-.889.355-.226.766-.34 1.234-.34a2.2 2.2 0 0 1 1.156.3c.33.199.59.47.776.816.185.345.28.738.285 1.177h-4.57.002Zm16.33-1.368c-.237-.62-.561-1.132-.972-1.534a3.916 3.916 0 0 0-1.418-.893 4.961 4.961 0 0 0-1.701-.289c-.928 0-1.737.214-2.425.639a4.324 4.324 0 0 0-1.605 1.778c-.382.76-.574 1.642-.574 2.646 0 1.005.19 1.906.571 2.659a4.09 4.09 0 0 0 1.631 1.74c.708.41 1.548.613 2.524.613.756 0 1.426-.116 2.014-.347a3.744 3.744 0 0 0 1.447-.978 3.35 3.35 0 0 0 .769-1.483v-.103a.138.138 0 0 0-.137-.137h-1.842a.235.235 0 0 0-.216.134 1.712 1.712 0 0 1-.395.558 1.952 1.952 0 0 1-.703.422c-.27.096-.572.143-.906.143-.498 0-.933-.107-1.304-.32a2.188 2.188 0 0 1-.867-.927c-.2-.391-.301-.859-.308-1.401h6.635a.138.138 0 0 0 .137-.138v-.566c0-.856-.119-1.593-.355-2.214v-.002Zm-6.412 1.37a2.57 2.57 0 0 1 .291-1.065 2.37 2.37 0 0 1 .826-.888c.356-.227.766-.34 1.234-.34.44 0 .825.1 1.156.3.331.198.591.47.776.815.185.345.281.739.285 1.178h-4.568ZM44.312 9.272a3.923 3.923 0 0 0-1.418-.893 4.96 4.96 0 0 0-1.7-.29c-.93 0-1.738.214-2.426.64a4.326 4.326 0 0 0-1.605 1.778c-.382.76-.573 1.641-.573 2.646 0 1.004.19 1.906.57 2.659.38.75.924 1.332 1.631 1.74.708.409 1.548.612 2.524.612.756 0 1.427-.116 2.014-.346a3.74 3.74 0 0 0 1.447-.979c.378-.42.633-.916.769-1.482v-.104a.137.137 0 0 0-.137-.137h-1.842a.233.233 0 0 0-.215.135 1.73 1.73 0 0 1-.395.558 1.955 1.955 0 0 1-.704.422c-.27.096-.572.143-.906.143-.498 0-.933-.107-1.304-.32a2.189 2.189 0 0 1-.867-.928c-.2-.39-.301-.858-.308-1.4h6.635a.137.137 0 0 0 .137-.138v-.567c0-.856-.118-1.593-.355-2.214-.237-.62-.56-1.132-.972-1.534v-.001Zm-5.44 2.903c.023-.382.117-.737.291-1.064a2.37 2.37 0 0 1 .827-.889c.355-.226.766-.34 1.233-.34a2.2 2.2 0 0 1 1.156.3c.331.199.59.47.776.816.186.345.281.738.285 1.177h-4.569.001Zm-5.229.645a3.72 3.72 0 0 0 .248-.11c.684-.332 1.203-.804 1.556-1.416.352-.613.529-1.335.529-2.17 0-.834-.174-1.557-.522-2.182-.349-.624-.862-1.11-1.54-1.458-.677-.348-1.515-.521-2.51-.521H26.78a.241.241 0 0 0-.241.242v12.527c0 .133.107.242.241.242h1.867a.241.241 0 0 0 .242-.242V13.21h2.39l2.482 4.636a.239.239 0 0 0 .212.128h2.072a.241.241 0 0 0 .21-.357l-2.611-4.795-.002-.002Zm-4.755-5.887h2.153c.586 0 1.066.086 1.438.258.371.172.648.42.829.75.181.327.273.722.273 1.185 0 .462-.09.85-.27 1.165-.18.314-.455.555-.826.718-.371.163-.85.245-1.431.245h-2.166v-4.32Zm24.507 1.614c-.5-.287-1.086-.432-1.758-.432-.726 0-1.335.162-1.826.482A2.77 2.77 0 0 0 48.74 9.9h-.115V8.483a.242.242 0 0 0-.24-.242h-1.711a.241.241 0 0 0-.241.242v9.274c0 .133.107.242.24.242h1.813a.241.241 0 0 0 .24-.242v-5.475c0-.469.088-.87.263-1.2.176-.33.418-.584.728-.759.31-.176.666-.263 1.067-.263.59 0 1.054.185 1.39.552.335.368.503.879.503 1.531v5.616c0 .133.107.242.241.242h1.812a.241.241 0 0 0 .241-.242v-5.97c.004-.779-.133-1.443-.408-1.988a2.925 2.925 0 0 0-1.165-1.25l-.002-.004Zm17.137 3.3a5.066 5.066 0 0 0-1.222-.737 8.492 8.492 0 0 0-1.416-.464l-1.215-.305a7.697 7.697 0 0 1-.792-.234 3.499 3.499 0 0 1-.716-.346 1.608 1.608 0 0 1-.51-.506 1.304 1.304 0 0 1-.186-.705 1.46 1.46 0 0 1 .285-.87c.187-.253.454-.455.804-.604.352-.149.77-.222 1.26-.222.696 0 1.263.155 1.7.464.386.272.623.64.716 1.102.022.113.12.193.235.193h1.802a.243.243 0 0 0 .24-.262 3.358 3.358 0 0 0-.6-1.684c-.396-.566-.943-1.008-1.636-1.328-.695-.32-1.502-.48-2.422-.48-.92 0-1.721.16-2.439.48-.717.319-1.284.767-1.7 1.343-.415.576-.624 1.248-.624 2.014 0 .931.31 1.678.928 2.24.617.56 1.462.978 2.53 1.254l1.474.381c.464.119.87.253 1.219.404.348.15.619.336.813.56.194.22.294.501.298.84a1.551 1.551 0 0 1-.335.975c-.22.278-.522.494-.91.648-.386.155-.834.232-1.344.232-.511 0-.932-.074-1.327-.222a2.209 2.209 0 0 1-.96-.674 1.895 1.895 0 0 1-.395-.927.24.24 0 0 0-.237-.203h-1.84a.241.241 0 0 0-.24.264c.065.75.285 1.394.657 1.932.416.601.995 1.06 1.735 1.373.74.313 1.616.469 2.625.469s1.925-.162 2.657-.486c.731-.324 1.292-.775 1.682-1.353.388-.578.582-1.248.582-2.01 0-.563-.106-1.055-.317-1.474a3.28 3.28 0 0 0-.858-1.074v.002Zm9.246-3.067a3.727 3.727 0 0 0-2.036-.575c-.57 0-1.039.096-1.405.29-.367.192-.66.423-.875.692a4.37 4.37 0 0 0-.5.758h-.133V8.573a.241.241 0 0 0-.241-.242h-1.774a.241.241 0 0 0-.24.242v12.932a.24.24 0 0 0 .24.242h1.812a.241.241 0 0 0 .241-.242V16.55h.096c.123.237.294.488.516.752.221.265.517.491.883.677.367.186.83.28 1.387.28.763 0 1.448-.198 2.052-.592.603-.393 1.08-.966 1.43-1.715.352-.75.526-1.66.526-2.732 0-1.072-.179-2-.535-2.748-.357-.747-.838-1.312-1.444-1.696v.003Zm-.62 6.06c-.176.477-.434.852-.777 1.125-.342.274-.766.41-1.272.41-.507 0-.9-.132-1.239-.397-.34-.264-.599-.634-.779-1.107-.18-.474-.27-1.028-.27-1.657 0-.63.088-1.18.263-1.646.176-.465.434-.827.776-1.086.343-.26.758-.388 1.247-.388.49 0 .937.133 1.28.4.342.267.599.636.772 1.105.172.47.26 1.008.26 1.615 0 .606-.09 1.153-.263 1.628l.001-.001Zm8.802-6.594a6.882 6.882 0 0 0-.61-.031c-.558 0-1.053.153-1.485.46-.432.308-.738.743-.914 1.306h-.102V8.595a.241.241 0 0 0-.24-.241h-1.743a.242.242 0 0 0-.241.241v9.275c0 .133.107.242.241.242h1.812a.241.241 0 0 0 .241-.242v-5.495c0-.415.096-.782.285-1.1.19-.317.451-.566.782-.746.331-.18.706-.27 1.124-.27a4.705 4.705 0 0 1 .787.068.24.24 0 0 0 .278-.238V8.485a.24.24 0 0 0-.214-.24l-.002.001Zm-27.032 7.858c-.269.058-.535.116-.812.116-.19 0-.364-.03-.52-.09a.73.73 0 0 1-.376-.333c-.096-.163-.143-.399-.143-.708v-5.043h1.678a.241.241 0 0 0 .241-.242V8.508a.242.242 0 0 0-.241-.242h-1.678V6.17a.241.241 0 0 0-.24-.242h-1.813a.241.241 0 0 0-.24.242v2.096h-1.14a.241.241 0 0 0-.242.242v1.296c0 .133.107.242.241.242h1.14v5.425c-.004.61.129 1.118.395 1.524.269.406.632.706 1.093.899.46.193.977.28 1.551.263a4.407 4.407 0 0 0 1.201-.183.204.204 0 0 0 .147-.196V16.3c0-.13-.12-.226-.245-.199l.003.002Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h108v23H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t8lnqk\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"Zv9t0ekmk\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:76,intrinsicWidth:90,pixelHeight:152,pixelWidth:180,src:\"https://framerusercontent.com/images/6nvJL8lWR43WDwuu72IwXDsBkKY.png\"},className:\"framer-b2h3c8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RNj4dyCc4\"})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3qJel.framer-150u5xx, .framer-3qJel .framer-150u5xx { display: block; }\",\".framer-3qJel.framer-w6smbf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1440px; }\",\".framer-3qJel .framer-1f7ezr9-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-3qJel .framer-1tz7utt, .framer-3qJel .framer-1yja6g, .framer-3qJel .framer-lpjlru, .framer-3qJel .framer-1p1vkub, .framer-3qJel .framer-2i9pbu, .framer-3qJel .framer-fipfbz, .framer-3qJel .framer-ql4rsp, .framer-3qJel .framer-1k14nmq, .framer-3qJel .framer-xqyb45, .framer-3qJel .framer-fgncoa, .framer-3qJel .framer-jom4mf, .framer-3qJel .framer-113gmjl, .framer-3qJel .framer-1e92rxl, .framer-3qJel .framer-dt58ss, .framer-3qJel .framer-ehtosp, .framer-3qJel .framer-15jwnsr, .framer-3qJel .framer-1rm0yq, .framer-3qJel .framer-j78dio, .framer-3qJel .framer-t8lnqk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 128px; }\",\".framer-3qJel .framer-udqa2m { aspect-ratio: 6.222222222222222 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 111px; }\",\".framer-3qJel .framer-1xw8kot { aspect-ratio: 7.936507936507937 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); overflow: visible; position: relative; width: 103px; }\",\".framer-3qJel .framer-1ygam5o { aspect-ratio: 3.6333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 80px; }\",\".framer-3qJel .framer-yh58cd { aspect-ratio: 3.35 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 79px; }\",\".framer-3qJel .framer-1hvdni5 { aspect-ratio: 7.144578313253012 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 127px; }\",\".framer-3qJel .framer-wayp7a { aspect-ratio: 1.8181818181818181 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 73px; }\",\".framer-3qJel .framer-1jhyraj { aspect-ratio: 6.2727272727272725 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 98px; }\",\".framer-3qJel .framer-1svos8s { aspect-ratio: 5.18 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 115px; }\",\".framer-3qJel .framer-1qbt1b3 { aspect-ratio: 4.68 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 98px; }\",\".framer-3qJel .framer-bloci0 { aspect-ratio: 6.118811881188119 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); overflow: visible; position: relative; width: 106px; }\",\".framer-3qJel .framer-1sy60fy { aspect-ratio: 3.614785992217899 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 85px; }\",\".framer-3qJel .framer-12kmd18 { aspect-ratio: 2.5952380952380953 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 78px; }\",\".framer-3qJel .framer-pb7dgp { aspect-ratio: 3.7362637362637363 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 97px; }\",\".framer-3qJel .framer-12rta4u { aspect-ratio: 4.2926829268292686 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 90px; }\",\".framer-3qJel .framer-1soovb8 { flex: none; height: 28px; position: relative; width: 85px; }\",\".framer-3qJel .framer-1dvvmr0 { aspect-ratio: 6.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 106px; }\",\".framer-3qJel .framer-1ifoa3d { aspect-ratio: 5.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 103px; }\",\".framer-3qJel .framer-1sygk1f { aspect-ratio: 4.695652173913044 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 102px; }\",\".framer-3qJel .framer-b2h3c8 { aspect-ratio: 1.1842105263157894 / 1; flex: none; height: 48px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 57px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3qJel.framer-w6smbf, .framer-3qJel .framer-1tz7utt, .framer-3qJel .framer-1yja6g, .framer-3qJel .framer-lpjlru, .framer-3qJel .framer-1p1vkub, .framer-3qJel .framer-2i9pbu, .framer-3qJel .framer-fipfbz, .framer-3qJel .framer-ql4rsp, .framer-3qJel .framer-1k14nmq, .framer-3qJel .framer-xqyb45, .framer-3qJel .framer-fgncoa, .framer-3qJel .framer-jom4mf, .framer-3qJel .framer-113gmjl, .framer-3qJel .framer-1e92rxl, .framer-3qJel .framer-dt58ss, .framer-3qJel .framer-ehtosp, .framer-3qJel .framer-15jwnsr, .framer-3qJel .framer-1rm0yq, .framer-3qJel .framer-j78dio, .framer-3qJel .framer-t8lnqk { gap: 0px; } .framer-3qJel.framer-w6smbf > *, .framer-3qJel .framer-1tz7utt > *, .framer-3qJel .framer-1yja6g > *, .framer-3qJel .framer-lpjlru > *, .framer-3qJel .framer-1p1vkub > *, .framer-3qJel .framer-2i9pbu > *, .framer-3qJel .framer-fipfbz > *, .framer-3qJel .framer-ql4rsp > *, .framer-3qJel .framer-1k14nmq > *, .framer-3qJel .framer-xqyb45 > *, .framer-3qJel .framer-fgncoa > *, .framer-3qJel .framer-jom4mf > *, .framer-3qJel .framer-113gmjl > *, .framer-3qJel .framer-1e92rxl > *, .framer-3qJel .framer-dt58ss > *, .framer-3qJel .framer-ehtosp > *, .framer-3qJel .framer-15jwnsr > *, .framer-3qJel .framer-1rm0yq > *, .framer-3qJel .framer-j78dio > *, .framer-3qJel .framer-t8lnqk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3qJel.framer-w6smbf > :first-child, .framer-3qJel .framer-1tz7utt > :first-child, .framer-3qJel .framer-1yja6g > :first-child, .framer-3qJel .framer-lpjlru > :first-child, .framer-3qJel .framer-1p1vkub > :first-child, .framer-3qJel .framer-2i9pbu > :first-child, .framer-3qJel .framer-fipfbz > :first-child, .framer-3qJel .framer-ql4rsp > :first-child, .framer-3qJel .framer-1k14nmq > :first-child, .framer-3qJel .framer-xqyb45 > :first-child, .framer-3qJel .framer-fgncoa > :first-child, .framer-3qJel .framer-jom4mf > :first-child, .framer-3qJel .framer-113gmjl > :first-child, .framer-3qJel .framer-1e92rxl > :first-child, .framer-3qJel .framer-dt58ss > :first-child, .framer-3qJel .framer-ehtosp > :first-child, .framer-3qJel .framer-15jwnsr > :first-child, .framer-3qJel .framer-1rm0yq > :first-child, .framer-3qJel .framer-j78dio > :first-child, .framer-3qJel .framer-t8lnqk > :first-child { margin-top: 0px; } .framer-3qJel.framer-w6smbf > :last-child, .framer-3qJel .framer-1tz7utt > :last-child, .framer-3qJel .framer-1yja6g > :last-child, .framer-3qJel .framer-lpjlru > :last-child, .framer-3qJel .framer-1p1vkub > :last-child, .framer-3qJel .framer-2i9pbu > :last-child, .framer-3qJel .framer-fipfbz > :last-child, .framer-3qJel .framer-ql4rsp > :last-child, .framer-3qJel .framer-1k14nmq > :last-child, .framer-3qJel .framer-xqyb45 > :last-child, .framer-3qJel .framer-fgncoa > :last-child, .framer-3qJel .framer-jom4mf > :last-child, .framer-3qJel .framer-113gmjl > :last-child, .framer-3qJel .framer-1e92rxl > :last-child, .framer-3qJel .framer-dt58ss > :last-child, .framer-3qJel .framer-ehtosp > :last-child, .framer-3qJel .framer-15jwnsr > :last-child, .framer-3qJel .framer-1rm0yq > :last-child, .framer-3qJel .framer-j78dio > :last-child, .framer-3qJel .framer-t8lnqk > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 120\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOvDfRJbFL=withCSS(Component,css,\"framer-3qJel\");export default FramerOvDfRJbFL;FramerOvDfRJbFL.displayName=\"Clients\";FramerOvDfRJbFL.defaultProps={height:120,width:1440};addFonts(FramerOvDfRJbFL,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOvDfRJbFL\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"120\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OvDfRJbFL.map"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "isNumber", "t", "isEasingList", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "t", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "f", "r", "clamp", "getEasingForSegment", "isString", "t", "e", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "e", "u", "d", "l", "g", "glide", "r", "a", "h", "f", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Z", "createAxisInfo", "createScrollInfo", "X", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Y", "J", "resolveEdge", "isString", "isNumber", "Q", "resolveOffset", "ee", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "te", "ne", "oe", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "SVG", "css", "FramerOvDfRJbFL", "withCSS", "OvDfRJbFL_default", "addFonts", "TickerFonts"]
}
