{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/iK6ln3GMv5dp6CkCXtoX/vwml5muyneBOPNlmm1wr/fXp7eYb4Y.js", "ssg:https://framerusercontent.com/modules/tQgEQCioSaUrRFA7SdpK/Kl0QjneUmekNcSaw98pn/OaXlUNFGB.js", "ssg:https://framerusercontent.com/modules/n48bV7U2QudKKqvc91Q1/LNWqnlo8edHbJ8VS3ArD/i8duHiuqV.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (d275c2b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={ZW8zEZKWn:{hover:true}};const cycleOrder=[\"ZW8zEZKWn\",\"tn0n4FPPP\"];const serializationHash=\"framer-bTUDM\";const variantClassNames={tn0n4FPPP:\"framer-v-196qmac\",ZW8zEZKWn:\"framer-v-xaia0j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"ZW8zEZKWn\",Enabled:\"tn0n4FPPP\"};const getProps=({click,height,id,label,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,FzopeykYQ:(_ref=label!==null&&label!==void 0?label:props.FzopeykYQ)!==null&&_ref!==void 0?_ref:\"health Systems\",MCTlfhiEb:click!==null&&click!==void 0?click:props.MCTlfhiEb,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ZW8zEZKWn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,FzopeykYQ,MCTlfhiEb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZW8zEZKWn\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap190lslt=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(MCTlfhiEb){const res=await MCTlfhiEb(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xaia0j\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZW8zEZKWn\",onTap:onTap190lslt,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(222, 35, 35, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{\"ZW8zEZKWn-hover\":{\"--border-color\":\"rgb(222, 35, 35)\"},tn0n4FPPP:{\"--border-color\":\"rgb(222, 35, 35)\"}},...addPropertyOverrides({\"ZW8zEZKWn-hover\":{\"data-framer-name\":undefined},tn0n4FPPP:{\"data-framer-name\":\"Enabled\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"health Systems\"})}),className:\"framer-nygpas\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"kQdpKs37U\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"16px\"},text:FzopeykYQ,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bTUDM.framer-1t6wrpd, .framer-bTUDM .framer-1t6wrpd { display: block; }\",\".framer-bTUDM.framer-xaia0j { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 4px 12px 4px; position: relative; width: min-content; }\",\".framer-bTUDM .framer-nygpas { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bTUDM.framer-xaia0j { gap: 0px; } .framer-bTUDM.framer-xaia0j > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-bTUDM.framer-xaia0j > :first-child { margin-left: 0px; } .framer-bTUDM.framer-xaia0j > :last-child { margin-right: 0px; } }\",'.framer-bTUDM[data-border=\"true\"]::after, .framer-bTUDM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 145.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"tn0n4FPPP\":{\"layout\":[\"auto\",\"auto\"]},\"VIRgGqkq4\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"FzopeykYQ\":\"label\",\"MCTlfhiEb\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfXp7eYb4Y=withCSS(Component,css,\"framer-bTUDM\");export default FramerfXp7eYb4Y;FramerfXp7eYb4Y.displayName=\"tab_button\";FramerfXp7eYb4Y.defaultProps={height:36,width:145.5};addPropertyControls(FramerfXp7eYb4Y,{variant:{options:[\"ZW8zEZKWn\",\"tn0n4FPPP\"],optionTitles:[\"Default\",\"Enabled\"],title:\"Variant\",type:ControlType.Enum},FzopeykYQ:{defaultValue:\"health Systems\",displayTextArea:false,title:\"Label\",type:ControlType.String},MCTlfhiEb:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerfXp7eYb4Y,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfXp7eYb4Y\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tn0n4FPPP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VIRgGqkq4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"145.5\",\"framerVariables\":\"{\\\"FzopeykYQ\\\":\\\"label\\\",\\\"MCTlfhiEb\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"36\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fXp7eYb4Y.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Tab_button from\"https://framerusercontent.com/modules/iK6ln3GMv5dp6CkCXtoX/vwml5muyneBOPNlmm1wr/fXp7eYb4Y.js\";import Button from\"https://framerusercontent.com/modules/R45nxbPdShXHXMnqKnsv/RkgrkLWQbCVfC2vxkyw9/ivjsgY1gt.js\";const Tab_buttonFonts=getFonts(Tab_button);const ButtonFonts=getFonts(Button);const cycleOrder=[\"i4kjc0G8T\",\"oYCEATO3S\",\"aTdJyaP9M\",\"XOZgBmq6L\",\"Zyg3ggLog\",\"S0AzR40QK\",\"Xl8wBs8Ga\",\"LOhf1Uqek\",\"jOJ_OsbrQ\",\"AVgnhoEpX\",\"YJrxGpEqU\",\"vv1k2RpDH\",\"NdvrCelKe\",\"cfxpVTlIF\",\"cgBVYN6WY\",\"Es6WrZ1US\",\"QdKeXCTjO\",\"Rwlzpc5bS\",\"IW1qpkBS4\",\"CueoBo803\"];const serializationHash=\"framer-Uj7xN\";const variantClassNames={aTdJyaP9M:\"framer-v-wsnrrn\",AVgnhoEpX:\"framer-v-10msngz\",cfxpVTlIF:\"framer-v-3q196i\",cgBVYN6WY:\"framer-v-ekudxy\",CueoBo803:\"framer-v-1c0u7y5\",Es6WrZ1US:\"framer-v-1ojcn6w\",i4kjc0G8T:\"framer-v-m4sehy\",IW1qpkBS4:\"framer-v-1tw3c7\",jOJ_OsbrQ:\"framer-v-65yp1h\",LOhf1Uqek:\"framer-v-n8q1cb\",NdvrCelKe:\"framer-v-6wlefg\",oYCEATO3S:\"framer-v-18xd7pm\",QdKeXCTjO:\"framer-v-dsui6v\",Rwlzpc5bS:\"framer-v-u0vdl8\",S0AzR40QK:\"framer-v-zrx2bq\",vv1k2RpDH:\"framer-v-fk0zw2\",Xl8wBs8Ga:\"framer-v-9d63lo\",XOZgBmq6L:\"framer-v-op56g4\",YJrxGpEqU:\"framer-v-ulkqqr\",Zyg3ggLog:\"framer-v-kq23qo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"slide_Desktop_S=DME\":\"LOhf1Uqek\",\"slide_Desktop_S=HS\":\"S0AzR40QK\",\"slide_Desktop_S=LAB\":\"Xl8wBs8Ga\",\"slide_Desktop_S=PAY\":\"jOJ_OsbrQ\",\"slide_Desktop_S=SH\":\"AVgnhoEpX\",\"slide_Desktop=DME\":\"aTdJyaP9M\",\"slide_Desktop=HS\":\"i4kjc0G8T\",\"slide_Desktop=LAB\":\"oYCEATO3S\",\"slide_Desktop=PAY\":\"XOZgBmq6L\",\"slide_Desktop=SH\":\"Zyg3ggLog\",\"slide_Phone=DME\":\"Rwlzpc5bS\",\"slide_Phone=HS\":\"Es6WrZ1US\",\"slide_Phone=LAB\":\"QdKeXCTjO\",\"slide_Phone=PAY\":\"IW1qpkBS4\",\"slide_Phone=SH\":\"CueoBo803\",\"slide_Tablet=DME\":\"NdvrCelKe\",\"slide_Tablet=HS\":\"YJrxGpEqU\",\"slide_Tablet=LAB\":\"vv1k2RpDH\",\"slide_Tablet=PAY\":\"cfxpVTlIF\",\"slide_Tablet=SH\":\"cgBVYN6WY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"i4kjc0G8T\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"i4kjc0G8T\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const MCTlfhiEbg72yps=activeVariantCallback(async(...args)=>{setVariant(\"i4kjc0G8T\");});const MCTlfhiEbvarq0g=activeVariantCallback(async(...args)=>{setVariant(\"S0AzR40QK\");});const MCTlfhiEbmw6t9f=activeVariantCallback(async(...args)=>{setVariant(\"YJrxGpEqU\");});const MCTlfhiEb12zpu7q=activeVariantCallback(async(...args)=>{setVariant(\"Es6WrZ1US\");});const MCTlfhiEbe8bjf4=activeVariantCallback(async(...args)=>{setVariant(\"oYCEATO3S\");});const MCTlfhiEboimnr3=activeVariantCallback(async(...args)=>{setVariant(\"Xl8wBs8Ga\");});const MCTlfhiEbrekkdl=activeVariantCallback(async(...args)=>{setVariant(\"vv1k2RpDH\");});const MCTlfhiEbxhzrcl=activeVariantCallback(async(...args)=>{setVariant(\"QdKeXCTjO\");});const MCTlfhiEb1cx6joo=activeVariantCallback(async(...args)=>{setVariant(\"aTdJyaP9M\");});const MCTlfhiEb14k4jf6=activeVariantCallback(async(...args)=>{setVariant(\"NdvrCelKe\");});const MCTlfhiEb1ulick7=activeVariantCallback(async(...args)=>{setVariant(\"LOhf1Uqek\");});const MCTlfhiEboree69=activeVariantCallback(async(...args)=>{setVariant(\"Rwlzpc5bS\");});const MCTlfhiEb1ys9jbw=activeVariantCallback(async(...args)=>{setVariant(\"XOZgBmq6L\");});const MCTlfhiEb1f9bbyg=activeVariantCallback(async(...args)=>{setVariant(\"jOJ_OsbrQ\");});const MCTlfhiEb1hjytug=activeVariantCallback(async(...args)=>{setVariant(\"cfxpVTlIF\");});const MCTlfhiEb1f2v44x=activeVariantCallback(async(...args)=>{setVariant(\"IW1qpkBS4\");});const MCTlfhiEbet6dkf=activeVariantCallback(async(...args)=>{setVariant(\"Zyg3ggLog\");});const MCTlfhiEb10bmyr7=activeVariantCallback(async(...args)=>{setVariant(\"AVgnhoEpX\");});const MCTlfhiEbzhnm2v=activeVariantCallback(async(...args)=>{setVariant(\"cgBVYN6WY\");});const MCTlfhiEb1edt875=activeVariantCallback(async(...args)=>{setVariant(\"CueoBo803\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"YJrxGpEqU\",\"vv1k2RpDH\",\"NdvrCelKe\",\"cfxpVTlIF\",\"cgBVYN6WY\",\"Es6WrZ1US\",\"QdKeXCTjO\",\"Rwlzpc5bS\",\"IW1qpkBS4\",\"CueoBo803\"].includes(baseVariant))return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-m4sehy\",className,classNames),\"data-framer-name\":\"slide_Desktop=HS\",layoutDependency:layoutDependency,layoutId:\"i4kjc0G8T\",ref:refBinding,style:{...style},...addPropertyOverrides({aTdJyaP9M:{\"data-framer-name\":\"slide_Desktop=DME\"},AVgnhoEpX:{\"data-framer-name\":\"slide_Desktop_S=SH\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png\",srcSet:\"https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=512 512w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png 2880w\"}},cfxpVTlIF:{\"data-framer-name\":\"slide_Tablet=PAY\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png\",srcSet:\"https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=512 512w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png 2880w\"}},cgBVYN6WY:{\"data-framer-name\":\"slide_Tablet=SH\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png\",srcSet:\"https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=512 512w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png 2880w\"}},CueoBo803:{\"data-framer-name\":\"slide_Phone=SH\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png\",srcSet:\"https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=512 512w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png 2880w\"}},Es6WrZ1US:{\"data-framer-name\":\"slide_Phone=HS\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png\",srcSet:\"https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=512 512w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png 2880w\"}},IW1qpkBS4:{\"data-framer-name\":\"slide_Phone=PAY\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png\",srcSet:\"https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=512 512w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png 2880w\"}},jOJ_OsbrQ:{\"data-framer-name\":\"slide_Desktop_S=PAY\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png\",srcSet:\"https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=512 512w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png 2880w\"}},LOhf1Uqek:{\"data-framer-name\":\"slide_Desktop_S=DME\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg\",srcSet:\"https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg 4096w\"}},NdvrCelKe:{\"data-framer-name\":\"slide_Tablet=DME\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg\",srcSet:\"https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg 4096w\"}},oYCEATO3S:{\"data-framer-name\":\"slide_Desktop=LAB\"},QdKeXCTjO:{\"data-framer-name\":\"slide_Phone=LAB\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg\",srcSet:\"https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg 2731w\"}},Rwlzpc5bS:{\"data-framer-name\":\"slide_Phone=DME\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg\",srcSet:\"https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg 4096w\"}},S0AzR40QK:{\"data-framer-name\":\"slide_Desktop_S=HS\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png\",srcSet:\"https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=512 512w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png 2880w\"}},vv1k2RpDH:{\"data-framer-name\":\"slide_Tablet=LAB\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg\",srcSet:\"https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg 2731w\"}},Xl8wBs8Ga:{\"data-framer-name\":\"slide_Desktop_S=LAB\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg\",srcSet:\"https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg 2731w\"}},XOZgBmq6L:{\"data-framer-name\":\"slide_Desktop=PAY\"},YJrxGpEqU:{\"data-framer-name\":\"slide_Tablet=HS\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png\",srcSet:\"https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=512 512w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png 2880w\"}},Zyg3ggLog:{\"data-framer-name\":\"slide_Desktop=SH\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png\",srcSet:\"https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=512 512w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VMJjM8UWbtZR0rRZbWNFLIWQu34.png 2880w\"},className:\"framer-145i8es\",\"data-framer-name\":\"BG_SH\",layoutDependency:layoutDependency,layoutId:\"ljDIBfU3_\",style:{opacity:0},variants:{AVgnhoEpX:{opacity:1},cgBVYN6WY:{opacity:1},CueoBo803:{opacity:1},Zyg3ggLog:{opacity:1}}})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png\",srcSet:\"https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=512 512w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/F3kDPzP9E5zlQmOizGyXK5pc.png 2880w\"},className:\"framer-1xeutvd\",\"data-framer-name\":\"BG_PAY\",layoutDependency:layoutDependency,layoutId:\"HrYMQdzz_\",style:{opacity:0},variants:{cfxpVTlIF:{opacity:1},IW1qpkBS4:{opacity:1},jOJ_OsbrQ:{opacity:1},XOZgBmq6L:{opacity:1}}})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg\",srcSet:\"https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PsyeQDmJMgaOsBkpdovJWOKc3I.jpg 4096w\"},className:\"framer-l0dxnq\",\"data-framer-name\":\"BG_DME\",layoutDependency:layoutDependency,layoutId:\"i0xU07Nni\",style:{opacity:0},variants:{aTdJyaP9M:{opacity:1},LOhf1Uqek:{opacity:1},NdvrCelKe:{opacity:1},Rwlzpc5bS:{opacity:1}}})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg\",srcSet:\"https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/xZikBgNL996ddVtYNcmAaGjkxA.jpg 2731w\"},className:\"framer-1l6n5jg\",\"data-framer-name\":\"BG_LAB\",layoutDependency:layoutDependency,layoutId:\"xF2R1NyMB\",style:{opacity:0},variants:{oYCEATO3S:{opacity:1},QdKeXCTjO:{opacity:1},vv1k2RpDH:{opacity:1},Xl8wBs8Ga:{opacity:1}}})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png\",srcSet:\"https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=512 512w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qMePRrQe0n6vOVQNwujJXqpso.png 2880w\"},className:\"framer-28lgw5\",\"data-framer-name\":\"BG_HS\",layoutDependency:layoutDependency,layoutId:\"QiP7y3WQX\",style:{opacity:1},variants:{aTdJyaP9M:{opacity:0},AVgnhoEpX:{opacity:0},cfxpVTlIF:{opacity:0},cgBVYN6WY:{opacity:0},CueoBo803:{opacity:1},Es6WrZ1US:{opacity:1},IW1qpkBS4:{opacity:0},jOJ_OsbrQ:{opacity:0},LOhf1Uqek:{opacity:0},NdvrCelKe:{opacity:0},oYCEATO3S:{opacity:0},QdKeXCTjO:{opacity:0},Rwlzpc5bS:{opacity:0},S0AzR40QK:{opacity:1},vv1k2RpDH:{opacity:0},Xl8wBs8Ga:{opacity:0},XOZgBmq6L:{opacity:0},YJrxGpEqU:{opacity:1},Zyg3ggLog:{opacity:0}}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||200)*.4993531694695992-(componentViewport?.height||200)*1/2)),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png\",srcSet:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=512 512w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png 2880w\"},className:\"framer-17w5os6\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"wYwgivcSV\",style:{opacity:1},variants:{aTdJyaP9M:{opacity:0},AVgnhoEpX:{opacity:1},cfxpVTlIF:{opacity:1},cgBVYN6WY:{opacity:1},CueoBo803:{opacity:1},Es6WrZ1US:{opacity:1},IW1qpkBS4:{opacity:1},jOJ_OsbrQ:{opacity:1},LOhf1Uqek:{opacity:0},NdvrCelKe:{opacity:0},QdKeXCTjO:{opacity:1},Rwlzpc5bS:{opacity:0},S0AzR40QK:{opacity:1},vv1k2RpDH:{opacity:1},Xl8wBs8Ga:{opacity:1},XOZgBmq6L:{opacity:1},YJrxGpEqU:{opacity:1},Zyg3ggLog:{opacity:1}},...addPropertyOverrides({CueoBo803:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||200)*.4999474624356417-(componentViewport?.height||200)*1/2)),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png\",srcSet:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=512 512w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png 2880w\"}},Es6WrZ1US:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||200)*.4999474624356417-(componentViewport?.height||200)*1/2)),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png\",srcSet:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=512 512w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png 2880w\"}},IW1qpkBS4:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||200)*.4999474624356417-(componentViewport?.height||200)*1/2)),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png\",srcSet:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=512 512w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png 2880w\"}},QdKeXCTjO:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||200)*.4999474624356417-(componentViewport?.height||200)*1/2)),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png\",srcSet:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=512 512w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png 2880w\"}},Rwlzpc5bS:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||200)*.4999474624356417-(componentViewport?.height||200)*1/2)),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png\",srcSet:\"https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=512 512w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IXmLRvpvUbp4HHT7z2BnVDX6To.png 2880w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IdtPK9PlFc6o6RUfRcG9TKR64.png\",srcSet:\"https://framerusercontent.com/images/IdtPK9PlFc6o6RUfRcG9TKR64.png?scale-down-to=512 512w,https://framerusercontent.com/images/IdtPK9PlFc6o6RUfRcG9TKR64.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IdtPK9PlFc6o6RUfRcG9TKR64.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IdtPK9PlFc6o6RUfRcG9TKR64.png 2880w\"},className:\"framer-lzzlwo\",\"data-framer-name\":\"Gradient_DME\",layoutDependency:layoutDependency,layoutId:\"nvSRtE9ty\",style:{opacity:0},variants:{aTdJyaP9M:{opacity:1},LOhf1Uqek:{opacity:1},NdvrCelKe:{opacity:1},Rwlzpc5bS:{opacity:1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kd6dy\",\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"UZlodQvwm\",style:{backdropFilter:\"blur(60px)\",backgroundColor:\"rgba(0, 0, 0, 0.2)\",WebkitBackdropFilter:\"blur(60px)\"},variants:{Es6WrZ1US:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-luhizq\",layoutDependency:layoutDependency,layoutId:\"mq45Z0Lz_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fkxbtw\",\"data-framer-name\":\"content\",layoutDependency:layoutDependency,layoutId:\"pRcHIvvy0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:[\"OUR \",/*#__PURE__*/_jsx(motion.br,{}),\"PARTNERS\"]})}),className:\"framer-qrtmm4\",\"data-framer-name\":\"[P]--Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"W9X3Ed3uK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CueoBo803:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"OUR \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"PARTNERS\"})]})})},Es6WrZ1US:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"OUR \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"PARTNERS\"})]})})},IW1qpkBS4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"OUR \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"PARTNERS\"})]})})},QdKeXCTjO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"OUR \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"PARTNERS\"})]})})},Rwlzpc5bS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"OUR \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"PARTNERS\"})]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"We partner with a range of medical stakeholders to optimize their operations.\"})}),className:\"framer-1bi1j24\",\"data-framer-name\":\"text\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"stpCjroCO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ui3rn\",\"data-framer-name\":\"Tabs\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"whK7bVT2S\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+((componentViewport?.height||200)-0-773)+80+-143.5+0+624+0+0,...addPropertyOverrides({cfxpVTlIF:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},cgBVYN6WY:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},CueoBo803:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Es6WrZ1US:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},IW1qpkBS4:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},NdvrCelKe:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},QdKeXCTjO:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Rwlzpc5bS:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},vv1k2RpDH:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},YJrxGpEqU:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ngkw42-container\",layoutDependency:layoutDependency,layoutId:\"EmbwDg7u6-container\",nodeId:\"EmbwDg7u6\",rendersWithMotion:true,scopeId:\"OaXlUNFGB\",children:/*#__PURE__*/_jsx(Tab_button,{FzopeykYQ:\"health Systems\",height:\"100%\",id:\"EmbwDg7u6\",layoutId:\"EmbwDg7u6\",MCTlfhiEb:MCTlfhiEbg72yps,variant:\"tn0n4FPPP\",width:\"100%\",...addPropertyOverrides({aTdJyaP9M:{variant:\"ZW8zEZKWn\"},AVgnhoEpX:{MCTlfhiEb:MCTlfhiEbvarq0g,variant:\"ZW8zEZKWn\"},cfxpVTlIF:{MCTlfhiEb:MCTlfhiEbmw6t9f,variant:\"ZW8zEZKWn\"},cgBVYN6WY:{MCTlfhiEb:MCTlfhiEbmw6t9f,variant:\"ZW8zEZKWn\"},CueoBo803:{MCTlfhiEb:MCTlfhiEb12zpu7q,variant:\"ZW8zEZKWn\"},Es6WrZ1US:{MCTlfhiEb:undefined},IW1qpkBS4:{MCTlfhiEb:MCTlfhiEb12zpu7q,variant:\"ZW8zEZKWn\"},jOJ_OsbrQ:{MCTlfhiEb:MCTlfhiEbvarq0g,variant:\"ZW8zEZKWn\"},LOhf1Uqek:{MCTlfhiEb:MCTlfhiEbvarq0g,variant:\"ZW8zEZKWn\"},NdvrCelKe:{MCTlfhiEb:MCTlfhiEbmw6t9f,variant:\"ZW8zEZKWn\"},oYCEATO3S:{variant:\"ZW8zEZKWn\"},QdKeXCTjO:{MCTlfhiEb:MCTlfhiEb12zpu7q,variant:\"ZW8zEZKWn\"},Rwlzpc5bS:{MCTlfhiEb:MCTlfhiEb12zpu7q,variant:\"ZW8zEZKWn\"},vv1k2RpDH:{MCTlfhiEb:MCTlfhiEbmw6t9f,variant:\"ZW8zEZKWn\"},Xl8wBs8Ga:{MCTlfhiEb:MCTlfhiEbvarq0g,variant:\"ZW8zEZKWn\"},XOZgBmq6L:{variant:\"ZW8zEZKWn\"},YJrxGpEqU:{MCTlfhiEb:undefined},Zyg3ggLog:{variant:\"ZW8zEZKWn\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+((componentViewport?.height||200)-0-773)+80+-143.5+0+624+0+60,...addPropertyOverrides({cfxpVTlIF:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},cgBVYN6WY:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},CueoBo803:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Es6WrZ1US:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},IW1qpkBS4:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},NdvrCelKe:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},QdKeXCTjO:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Rwlzpc5bS:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},vv1k2RpDH:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},YJrxGpEqU:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-87hchs-container\",layoutDependency:layoutDependency,layoutId:\"hDH40FCv3-container\",nodeId:\"hDH40FCv3\",rendersWithMotion:true,scopeId:\"OaXlUNFGB\",children:/*#__PURE__*/_jsx(Tab_button,{FzopeykYQ:\"Laboratory\",height:\"100%\",id:\"hDH40FCv3\",layoutId:\"hDH40FCv3\",MCTlfhiEb:MCTlfhiEbe8bjf4,variant:\"ZW8zEZKWn\",width:\"100%\",...addPropertyOverrides({AVgnhoEpX:{MCTlfhiEb:MCTlfhiEboimnr3},cfxpVTlIF:{MCTlfhiEb:MCTlfhiEbrekkdl},cgBVYN6WY:{MCTlfhiEb:MCTlfhiEbrekkdl},CueoBo803:{MCTlfhiEb:MCTlfhiEbxhzrcl},Es6WrZ1US:{MCTlfhiEb:MCTlfhiEbxhzrcl},IW1qpkBS4:{MCTlfhiEb:MCTlfhiEbxhzrcl},jOJ_OsbrQ:{MCTlfhiEb:MCTlfhiEboimnr3},LOhf1Uqek:{MCTlfhiEb:MCTlfhiEboimnr3},NdvrCelKe:{MCTlfhiEb:MCTlfhiEbrekkdl},oYCEATO3S:{variant:\"tn0n4FPPP\"},QdKeXCTjO:{MCTlfhiEb:undefined,variant:\"tn0n4FPPP\"},Rwlzpc5bS:{MCTlfhiEb:MCTlfhiEbxhzrcl},S0AzR40QK:{MCTlfhiEb:MCTlfhiEboimnr3},vv1k2RpDH:{MCTlfhiEb:undefined,variant:\"tn0n4FPPP\"},Xl8wBs8Ga:{MCTlfhiEb:undefined,variant:\"tn0n4FPPP\"},YJrxGpEqU:{MCTlfhiEb:MCTlfhiEbrekkdl}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+((componentViewport?.height||200)-0-773)+80+-143.5+0+624+0+120,...addPropertyOverrides({cfxpVTlIF:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},cgBVYN6WY:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},CueoBo803:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Es6WrZ1US:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},IW1qpkBS4:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},NdvrCelKe:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},QdKeXCTjO:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Rwlzpc5bS:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},vv1k2RpDH:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},YJrxGpEqU:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14ozs0m-container\",layoutDependency:layoutDependency,layoutId:\"XuWgCm0Cl-container\",nodeId:\"XuWgCm0Cl\",rendersWithMotion:true,scopeId:\"OaXlUNFGB\",children:/*#__PURE__*/_jsx(Tab_button,{FzopeykYQ:\"Durable Medical Equipment\",height:\"100%\",id:\"XuWgCm0Cl\",layoutId:\"XuWgCm0Cl\",MCTlfhiEb:MCTlfhiEb1cx6joo,variant:\"ZW8zEZKWn\",width:\"100%\",...addPropertyOverrides({aTdJyaP9M:{variant:\"tn0n4FPPP\"},AVgnhoEpX:{MCTlfhiEb:MCTlfhiEb1ulick7},cfxpVTlIF:{MCTlfhiEb:MCTlfhiEb14k4jf6},cgBVYN6WY:{MCTlfhiEb:MCTlfhiEb14k4jf6},CueoBo803:{MCTlfhiEb:MCTlfhiEboree69},Es6WrZ1US:{MCTlfhiEb:MCTlfhiEboree69},IW1qpkBS4:{MCTlfhiEb:MCTlfhiEboree69},jOJ_OsbrQ:{MCTlfhiEb:MCTlfhiEb1ulick7},LOhf1Uqek:{MCTlfhiEb:undefined,variant:\"tn0n4FPPP\"},NdvrCelKe:{MCTlfhiEb:MCTlfhiEb14k4jf6,variant:\"tn0n4FPPP\"},QdKeXCTjO:{MCTlfhiEb:MCTlfhiEboree69},Rwlzpc5bS:{MCTlfhiEb:undefined},S0AzR40QK:{MCTlfhiEb:MCTlfhiEb14k4jf6},vv1k2RpDH:{MCTlfhiEb:MCTlfhiEb14k4jf6},Xl8wBs8Ga:{MCTlfhiEb:MCTlfhiEb1ulick7},YJrxGpEqU:{MCTlfhiEb:MCTlfhiEb14k4jf6}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+((componentViewport?.height||200)-0-773)+80+-143.5+0+624+0+180,...addPropertyOverrides({cfxpVTlIF:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},cgBVYN6WY:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},CueoBo803:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Es6WrZ1US:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},IW1qpkBS4:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},NdvrCelKe:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},QdKeXCTjO:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Rwlzpc5bS:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},vv1k2RpDH:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},YJrxGpEqU:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b5x94-container\",layoutDependency:layoutDependency,layoutId:\"Z8JgsQUHi-container\",nodeId:\"Z8JgsQUHi\",rendersWithMotion:true,scopeId:\"OaXlUNFGB\",children:/*#__PURE__*/_jsx(Tab_button,{FzopeykYQ:\"Payers\",height:\"100%\",id:\"Z8JgsQUHi\",layoutId:\"Z8JgsQUHi\",MCTlfhiEb:MCTlfhiEb1ys9jbw,variant:\"ZW8zEZKWn\",width:\"100%\",...addPropertyOverrides({AVgnhoEpX:{MCTlfhiEb:MCTlfhiEb1f9bbyg},cfxpVTlIF:{MCTlfhiEb:MCTlfhiEb1hjytug},cgBVYN6WY:{MCTlfhiEb:MCTlfhiEb1hjytug},CueoBo803:{MCTlfhiEb:MCTlfhiEb1f2v44x},Es6WrZ1US:{MCTlfhiEb:MCTlfhiEb1f2v44x},IW1qpkBS4:{MCTlfhiEb:MCTlfhiEb1f2v44x},jOJ_OsbrQ:{MCTlfhiEb:undefined,variant:\"tn0n4FPPP\"},LOhf1Uqek:{MCTlfhiEb:MCTlfhiEb1f9bbyg},NdvrCelKe:{MCTlfhiEb:MCTlfhiEb1hjytug},QdKeXCTjO:{MCTlfhiEb:MCTlfhiEb1f2v44x},Rwlzpc5bS:{MCTlfhiEb:MCTlfhiEb1f2v44x},S0AzR40QK:{MCTlfhiEb:MCTlfhiEb1f9bbyg},vv1k2RpDH:{MCTlfhiEb:MCTlfhiEb1hjytug},Xl8wBs8Ga:{MCTlfhiEb:MCTlfhiEb1f9bbyg},XOZgBmq6L:{variant:\"tn0n4FPPP\"},YJrxGpEqU:{MCTlfhiEb:MCTlfhiEb1hjytug}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+((componentViewport?.height||200)-0-773)+80+-143.5+0+624+0+240,...addPropertyOverrides({cfxpVTlIF:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},cgBVYN6WY:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},CueoBo803:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Es6WrZ1US:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},IW1qpkBS4:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},NdvrCelKe:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},QdKeXCTjO:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},Rwlzpc5bS:{y:(componentViewport?.y||0)+0+0+60+0+0+268+0},vv1k2RpDH:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0},YJrxGpEqU:{y:(componentViewport?.y||0)+0+0+80+0+0+624+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-a7wfgh-container\",layoutDependency:layoutDependency,layoutId:\"TFnxhSiVE-container\",nodeId:\"TFnxhSiVE\",rendersWithMotion:true,scopeId:\"OaXlUNFGB\",children:/*#__PURE__*/_jsx(Tab_button,{FzopeykYQ:\"State Hospital Associations\",height:\"100%\",id:\"TFnxhSiVE\",layoutId:\"TFnxhSiVE\",MCTlfhiEb:MCTlfhiEbet6dkf,variant:\"ZW8zEZKWn\",width:\"100%\",...addPropertyOverrides({AVgnhoEpX:{MCTlfhiEb:undefined,variant:\"tn0n4FPPP\"},cfxpVTlIF:{MCTlfhiEb:MCTlfhiEbzhnm2v},cgBVYN6WY:{MCTlfhiEb:undefined},CueoBo803:{MCTlfhiEb:MCTlfhiEb1edt875},Es6WrZ1US:{MCTlfhiEb:MCTlfhiEb1edt875},IW1qpkBS4:{MCTlfhiEb:MCTlfhiEb1edt875},jOJ_OsbrQ:{MCTlfhiEb:MCTlfhiEb10bmyr7},LOhf1Uqek:{MCTlfhiEb:MCTlfhiEb10bmyr7},NdvrCelKe:{MCTlfhiEb:MCTlfhiEbzhnm2v},QdKeXCTjO:{MCTlfhiEb:MCTlfhiEb1edt875},Rwlzpc5bS:{MCTlfhiEb:MCTlfhiEb1edt875},S0AzR40QK:{MCTlfhiEb:MCTlfhiEb10bmyr7},vv1k2RpDH:{MCTlfhiEb:MCTlfhiEbzhnm2v},Xl8wBs8Ga:{MCTlfhiEb:MCTlfhiEb10bmyr7},YJrxGpEqU:{MCTlfhiEb:MCTlfhiEbzhnm2v},Zyg3ggLog:{variant:\"tn0n4FPPP\"}},baseVariant,gestureVariant)})})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-se4mqp\",\"data-framer-name\":\"container\",layoutDependency:layoutDependency,layoutId:\"AeUmy8S6L\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w7orsp\",layoutDependency:layoutDependency,layoutId:\"eueFKOPH_\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"HEALTH SYSTEMS\"})}),className:\"framer-11sx8te\",\"data-framer-name\":\"[P]--Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"ciLmm2GZY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTdJyaP9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"DURABLE MEDICAL EQUIPMENT (DME)\"})})},AVgnhoEpX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"STATE HOSPITAL ASSOCIATIONS\"})})},jOJ_OsbrQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"PAYERS\"})})},LOhf1Uqek:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"DURABLE MEDICAL EQUIPMENT (DME)\"})})},oYCEATO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"LABORATORY\"})})},Xl8wBs8Ga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"LABORATORY\"})})},XOZgBmq6L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"PAYERS\"})})},Zyg3ggLog:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"STATE HOSPITAL ASSOCIATIONS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"We collaborate with Integrated Delivery Networks and Academic Medical Centers to support their Supply Chain teams in seamlessly moving specimens, specialty pharmacy, medical supplies, and equipment throughout their facilities.\"})}),className:\"framer-aqr8dq\",\"data-framer-name\":\"[P]--Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"eKKGVw1a3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aTdJyaP9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Companies license our Transportation Management System software to optimize their logistics operations, including route planning, real-time tracking, and operational data & analytics for operations executives.\"})})},AVgnhoEpX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"State Hospital Associations tasked with bringing their members innovative solutions to ensure patient health and safety utilize our Transportation Management System (TMS) software for a number of unique use cases:\"})})},cgBVYN6WY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"State Hospital Associations tasked with bringing their members innovative solutions to ensure patient health and safety utilize our Transportation Management System (TMS) software for a number of unique use cases:\"})})},CueoBo803:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"State Hospital Associations tasked with bringing their members innovative solutions to ensure patient health and safety utilize our Transportation Management System (TMS) software for a number of unique use cases:\"})})},LOhf1Uqek:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Companies license our Transportation Management System software to optimize their logistics operations, including route planning, real-time tracking, and operational data & analytics for operations executives.\"})})},NdvrCelKe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Companies license our Transportation Management System software to optimize their logistics operations, including route planning, real-time tracking, and operational data & analytics for operations executives.\"})})},oYCEATO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Laboratories license our logistics software to enhance operational efficiency and service levels by streamlining workflows and reducing manual processes, and allowing integration with LIMS and other supply chain systems.\"})})},QdKeXCTjO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Laboratories license our logistics software to enhance operational efficiency and service levels by streamlining workflows and reducing manual processes, and allowing integration with LIMS and other supply chain systems.\"})})},Rwlzpc5bS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Companies license our Transportation Management System software to optimize their logistics operations, including route planning, real-time tracking, and operational data & analytics for operations executives.\"})})},vv1k2RpDH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Laboratories license our logistics software to enhance operational efficiency and service levels by streamlining workflows and reducing manual processes, and allowing integration with LIMS and other supply chain systems.\"})})},Xl8wBs8Ga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Laboratories license our logistics software to enhance operational efficiency and service levels by streamlining workflows and reducing manual processes, and allowing integration with LIMS and other supply chain systems.\"})})},Zyg3ggLog:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"State Hospital Associations tasked with bringing their members innovative solutions to ensure patient health and safety utilize our Transportation Management System (TMS) software for a number of unique use cases:\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined},{href:{webPageId:\"kojs3I2a3\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+((componentViewport?.height||200)-0-773)+80+373.5+0+197.5,...addPropertyOverrides({cfxpVTlIF:{y:(componentViewport?.y||0)+0+836+80+0+0+129.5},cgBVYN6WY:{y:(componentViewport?.y||0)+0+836+80+0+0+129.5},CueoBo803:{y:(componentViewport?.y||0)+0+380+40+0+0+129.5},Es6WrZ1US:{y:(componentViewport?.y||0)+0+380+40+0+0+129.5},IW1qpkBS4:{y:(componentViewport?.y||0)+0+380+40+0+0+129.5},NdvrCelKe:{y:(componentViewport?.y||0)+0+836+80+0+0+129.5},QdKeXCTjO:{y:(componentViewport?.y||0)+0+380+40+0+0+129.5},Rwlzpc5bS:{y:(componentViewport?.y||0)+0+380+40+0+0+129.5},vv1k2RpDH:{y:(componentViewport?.y||0)+0+836+80+0+0+129.5},YJrxGpEqU:{y:(componentViewport?.y||0)+0+836+80+0+0+129.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13dw9lz-container\",layoutDependency:layoutDependency,layoutId:\"tbPuKrtTh-container\",nodeId:\"tbPuKrtTh\",rendersWithMotion:true,scopeId:\"OaXlUNFGB\",children:/*#__PURE__*/_jsx(Button,{FDjwNEGrq:\"LEARN MORE\",height:\"100%\",id:\"tbPuKrtTh\",iWguFTYzL:false,KPqt9K77a:\"20px 20px 20px 20px\",layoutId:\"tbPuKrtTh\",mefjRhawH:16,s7XBjC9iS:resolvedLinks[0],variant:\"rRQxcM5hi\",width:\"100%\",...addPropertyOverrides({aTdJyaP9M:{s7XBjC9iS:resolvedLinks[2]},AVgnhoEpX:{s7XBjC9iS:resolvedLinks[9]},cfxpVTlIF:{s7XBjC9iS:resolvedLinks[13]},cgBVYN6WY:{s7XBjC9iS:resolvedLinks[14]},CueoBo803:{s7XBjC9iS:resolvedLinks[19]},Es6WrZ1US:{s7XBjC9iS:resolvedLinks[15]},IW1qpkBS4:{s7XBjC9iS:resolvedLinks[18]},jOJ_OsbrQ:{s7XBjC9iS:resolvedLinks[8]},LOhf1Uqek:{s7XBjC9iS:resolvedLinks[7]},NdvrCelKe:{s7XBjC9iS:resolvedLinks[12]},oYCEATO3S:{s7XBjC9iS:resolvedLinks[1]},QdKeXCTjO:{s7XBjC9iS:resolvedLinks[16]},Rwlzpc5bS:{s7XBjC9iS:resolvedLinks[17]},S0AzR40QK:{s7XBjC9iS:resolvedLinks[5]},vv1k2RpDH:{s7XBjC9iS:resolvedLinks[11]},Xl8wBs8Ga:{s7XBjC9iS:resolvedLinks[6]},XOZgBmq6L:{s7XBjC9iS:resolvedLinks[3]},YJrxGpEqU:{s7XBjC9iS:resolvedLinks[10]},Zyg3ggLog:{s7XBjC9iS:resolvedLinks[4]}},baseVariant,gestureVariant)})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Uj7xN.framer-22kvcf, .framer-Uj7xN .framer-22kvcf { display: block; }\",\".framer-Uj7xN.framer-m4sehy { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-Uj7xN .framer-145i8es, .framer-Uj7xN .framer-l0dxnq, .framer-Uj7xN .framer-1l6n5jg, .framer-Uj7xN .framer-28lgw5 { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-Uj7xN .framer-1xeutvd { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Uj7xN .framer-17w5os6 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(49.935316946959915% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-Uj7xN .framer-lzzlwo { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-Uj7xN .framer-kd6dy { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 773px; justify-content: center; overflow: visible; padding: 80px 120px 80px 120px; position: relative; width: 1px; }\",\".framer-Uj7xN .framer-luhizq { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Uj7xN .framer-1fkxbtw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; max-width: 520px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Uj7xN .framer-qrtmm4, .framer-Uj7xN .framer-1bi1j24 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-Uj7xN .framer-ui3rn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 520px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Uj7xN .framer-ngkw42-container, .framer-Uj7xN .framer-87hchs-container, .framer-Uj7xN .framer-14ozs0m-container, .framer-Uj7xN .framer-1b5x94-container, .framer-Uj7xN .framer-a7wfgh-container, .framer-Uj7xN .framer-13dw9lz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Uj7xN .framer-se4mqp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 773px; justify-content: flex-end; overflow: visible; padding: 80px 80px 80px 48px; position: relative; width: 1px; }\",\".framer-Uj7xN .framer-w7orsp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 664px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Uj7xN .framer-11sx8te { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Uj7xN .framer-aqr8dq { flex: none; height: 90px; max-width: 520px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-m4sehy, .framer-Uj7xN .framer-145i8es, .framer-Uj7xN .framer-1xeutvd, .framer-Uj7xN .framer-l0dxnq, .framer-Uj7xN .framer-1l6n5jg, .framer-Uj7xN .framer-28lgw5, .framer-Uj7xN .framer-kd6dy, .framer-Uj7xN .framer-luhizq, .framer-Uj7xN .framer-1fkxbtw, .framer-Uj7xN .framer-ui3rn, .framer-Uj7xN .framer-se4mqp, .framer-Uj7xN .framer-w7orsp { gap: 0px; } .framer-Uj7xN.framer-m4sehy > *, .framer-Uj7xN .framer-145i8es > *, .framer-Uj7xN .framer-1xeutvd > *, .framer-Uj7xN .framer-l0dxnq > *, .framer-Uj7xN .framer-1l6n5jg > *, .framer-Uj7xN .framer-28lgw5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Uj7xN.framer-m4sehy > :first-child, .framer-Uj7xN .framer-145i8es > :first-child, .framer-Uj7xN .framer-1xeutvd > :first-child, .framer-Uj7xN .framer-l0dxnq > :first-child, .framer-Uj7xN .framer-1l6n5jg > :first-child, .framer-Uj7xN .framer-28lgw5 > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-m4sehy > :last-child, .framer-Uj7xN .framer-145i8es > :last-child, .framer-Uj7xN .framer-1xeutvd > :last-child, .framer-Uj7xN .framer-l0dxnq > :last-child, .framer-Uj7xN .framer-1l6n5jg > :last-child, .framer-Uj7xN .framer-28lgw5 > :last-child { margin-right: 0px; } .framer-Uj7xN .framer-kd6dy > *, .framer-Uj7xN .framer-luhizq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Uj7xN .framer-kd6dy > :first-child, .framer-Uj7xN .framer-luhizq > :first-child, .framer-Uj7xN .framer-1fkxbtw > :first-child, .framer-Uj7xN .framer-ui3rn > :first-child, .framer-Uj7xN .framer-se4mqp > :first-child, .framer-Uj7xN .framer-w7orsp > :first-child { margin-top: 0px; } .framer-Uj7xN .framer-kd6dy > :last-child, .framer-Uj7xN .framer-luhizq > :last-child, .framer-Uj7xN .framer-1fkxbtw > :last-child, .framer-Uj7xN .framer-ui3rn > :last-child, .framer-Uj7xN .framer-se4mqp > :last-child, .framer-Uj7xN .framer-w7orsp > :last-child { margin-bottom: 0px; } .framer-Uj7xN .framer-1fkxbtw > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Uj7xN .framer-ui3rn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Uj7xN .framer-se4mqp > *, .framer-Uj7xN .framer-w7orsp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-Uj7xN.framer-v-wsnrrn .framer-145i8es, .framer-Uj7xN.framer-v-n8q1cb .framer-1l6n5jg, .framer-Uj7xN.framer-v-ulkqqr .framer-145i8es, .framer-Uj7xN.framer-v-fk0zw2 .framer-145i8es, .framer-Uj7xN.framer-v-6wlefg .framer-145i8es, .framer-Uj7xN.framer-v-3q196i .framer-145i8es, .framer-Uj7xN.framer-v-ekudxy .framer-145i8es, .framer-Uj7xN.framer-v-u0vdl8 .framer-145i8es, .framer-Uj7xN.framer-v-1tw3c7 .framer-145i8es { order: 0; }\",\".framer-Uj7xN.framer-v-wsnrrn .framer-1xeutvd, .framer-Uj7xN.framer-v-ulkqqr .framer-1xeutvd, .framer-Uj7xN.framer-v-fk0zw2 .framer-1xeutvd, .framer-Uj7xN.framer-v-6wlefg .framer-1xeutvd, .framer-Uj7xN.framer-v-3q196i .framer-1xeutvd, .framer-Uj7xN.framer-v-ekudxy .framer-1xeutvd, .framer-Uj7xN.framer-v-u0vdl8 .framer-1xeutvd, .framer-Uj7xN.framer-v-1tw3c7 .framer-1xeutvd { order: 1; }\",\".framer-Uj7xN.framer-v-wsnrrn .framer-l0dxnq, .framer-Uj7xN.framer-v-n8q1cb .framer-l0dxnq, .framer-Uj7xN.framer-v-ulkqqr .framer-l0dxnq, .framer-Uj7xN.framer-v-fk0zw2 .framer-l0dxnq, .framer-Uj7xN.framer-v-6wlefg .framer-l0dxnq, .framer-Uj7xN.framer-v-3q196i .framer-l0dxnq, .framer-Uj7xN.framer-v-ekudxy .framer-l0dxnq, .framer-Uj7xN.framer-v-u0vdl8 .framer-l0dxnq, .framer-Uj7xN.framer-v-1tw3c7 .framer-l0dxnq { order: 2; }\",\".framer-Uj7xN.framer-v-wsnrrn .framer-1l6n5jg, .framer-Uj7xN.framer-v-n8q1cb .framer-145i8es, .framer-Uj7xN.framer-v-ulkqqr .framer-1l6n5jg, .framer-Uj7xN.framer-v-fk0zw2 .framer-1l6n5jg, .framer-Uj7xN.framer-v-6wlefg .framer-1l6n5jg, .framer-Uj7xN.framer-v-3q196i .framer-1l6n5jg, .framer-Uj7xN.framer-v-ekudxy .framer-1l6n5jg, .framer-Uj7xN.framer-v-u0vdl8 .framer-1l6n5jg, .framer-Uj7xN.framer-v-1tw3c7 .framer-1l6n5jg { order: 3; }\",\".framer-Uj7xN.framer-v-wsnrrn .framer-28lgw5, .framer-Uj7xN.framer-v-n8q1cb .framer-28lgw5, .framer-Uj7xN.framer-v-ulkqqr .framer-28lgw5, .framer-Uj7xN.framer-v-fk0zw2 .framer-28lgw5, .framer-Uj7xN.framer-v-6wlefg .framer-28lgw5, .framer-Uj7xN.framer-v-3q196i .framer-28lgw5, .framer-Uj7xN.framer-v-ekudxy .framer-28lgw5, .framer-Uj7xN.framer-v-u0vdl8 .framer-28lgw5, .framer-Uj7xN.framer-v-1tw3c7 .framer-28lgw5 { order: 4; }\",\".framer-Uj7xN.framer-v-wsnrrn .framer-17w5os6, .framer-Uj7xN.framer-v-n8q1cb .framer-17w5os6, .framer-Uj7xN.framer-v-ulkqqr .framer-17w5os6, .framer-Uj7xN.framer-v-fk0zw2 .framer-17w5os6, .framer-Uj7xN.framer-v-6wlefg .framer-17w5os6, .framer-Uj7xN.framer-v-3q196i .framer-17w5os6, .framer-Uj7xN.framer-v-ekudxy .framer-17w5os6 { order: 5; }\",\".framer-Uj7xN.framer-v-wsnrrn .framer-lzzlwo, .framer-Uj7xN.framer-v-n8q1cb .framer-lzzlwo, .framer-Uj7xN.framer-v-ulkqqr .framer-lzzlwo, .framer-Uj7xN.framer-v-6wlefg .framer-lzzlwo, .framer-Uj7xN.framer-v-3q196i .framer-lzzlwo, .framer-Uj7xN.framer-v-ekudxy .framer-lzzlwo, .framer-Uj7xN.framer-v-u0vdl8 .framer-lzzlwo, .framer-Uj7xN.framer-v-1tw3c7 .framer-lzzlwo { order: 6; }\",\".framer-Uj7xN.framer-v-wsnrrn .framer-kd6dy, .framer-Uj7xN.framer-v-n8q1cb .framer-kd6dy { order: 7; }\",\".framer-Uj7xN.framer-v-wsnrrn .framer-se4mqp, .framer-Uj7xN.framer-v-n8q1cb .framer-se4mqp, .framer-Uj7xN.framer-v-fk0zw2 .framer-lzzlwo { order: 8; }\",\".framer-Uj7xN.framer-v-zrx2bq.framer-m4sehy, .framer-Uj7xN.framer-v-9d63lo.framer-m4sehy, .framer-Uj7xN.framer-v-n8q1cb.framer-m4sehy, .framer-Uj7xN.framer-v-65yp1h.framer-m4sehy, .framer-Uj7xN.framer-v-10msngz.framer-m4sehy { width: 1100px; }\",\".framer-Uj7xN.framer-v-n8q1cb .framer-1xeutvd { order: 1; z-index: 0; }\",\".framer-Uj7xN.framer-v-ulkqqr.framer-m4sehy, .framer-Uj7xN.framer-v-fk0zw2.framer-m4sehy, .framer-Uj7xN.framer-v-6wlefg.framer-m4sehy, .framer-Uj7xN.framer-v-3q196i.framer-m4sehy, .framer-Uj7xN.framer-v-ekudxy.framer-m4sehy { flex-direction: column; width: 810px; }\",\".framer-Uj7xN.framer-v-ulkqqr .framer-kd6dy, .framer-Uj7xN.framer-v-6wlefg .framer-kd6dy, .framer-Uj7xN.framer-v-3q196i .framer-kd6dy, .framer-Uj7xN.framer-v-ekudxy .framer-kd6dy { flex: none; height: min-content; order: 7; padding: 80px 0px 80px 120px; width: 100%; }\",\".framer-Uj7xN.framer-v-ulkqqr .framer-luhizq, .framer-Uj7xN.framer-v-fk0zw2 .framer-luhizq, .framer-Uj7xN.framer-v-6wlefg .framer-luhizq, .framer-Uj7xN.framer-v-3q196i .framer-luhizq, .framer-Uj7xN.framer-v-ekudxy .framer-luhizq { align-content: flex-start; align-items: flex-start; width: 690px; }\",\".framer-Uj7xN.framer-v-ulkqqr .framer-ui3rn { flex-direction: row; justify-content: flex-start; max-width: unset; overflow: auto; padding: 0px 0px 16px 0px; }\",\".framer-Uj7xN.framer-v-ulkqqr .framer-se4mqp, .framer-Uj7xN.framer-v-6wlefg .framer-se4mqp, .framer-Uj7xN.framer-v-3q196i .framer-se4mqp, .framer-Uj7xN.framer-v-ekudxy .framer-se4mqp { flex: none; height: min-content; order: 8; padding: 80px 120px 80px 120px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-ulkqqr.framer-m4sehy, .framer-Uj7xN.framer-v-ulkqqr .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-ulkqqr.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-ulkqqr.framer-m4sehy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-ulkqqr.framer-m4sehy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-ulkqqr .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-ulkqqr .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-ulkqqr .framer-ui3rn > :last-child { margin-right: 0px; } }\",\".framer-Uj7xN.framer-v-fk0zw2 .framer-kd6dy { flex: none; height: min-content; order: 6; padding: 80px 0px 80px 120px; width: 100%; }\",\".framer-Uj7xN.framer-v-fk0zw2 .framer-ui3rn, .framer-Uj7xN.framer-v-6wlefg .framer-ui3rn, .framer-Uj7xN.framer-v-3q196i .framer-ui3rn, .framer-Uj7xN.framer-v-ekudxy .framer-ui3rn { flex-direction: row; justify-content: flex-start; max-width: unset; overflow: auto; padding: 0px 32px 16px 0px; }\",\".framer-Uj7xN.framer-v-fk0zw2 .framer-se4mqp { flex: none; height: min-content; order: 7; padding: 80px 120px 80px 120px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-fk0zw2.framer-m4sehy, .framer-Uj7xN.framer-v-fk0zw2 .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-fk0zw2.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-fk0zw2.framer-m4sehy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-fk0zw2.framer-m4sehy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-fk0zw2 .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-fk0zw2 .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-fk0zw2 .framer-ui3rn > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-6wlefg.framer-m4sehy, .framer-Uj7xN.framer-v-6wlefg .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-6wlefg.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-6wlefg.framer-m4sehy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-6wlefg.framer-m4sehy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-6wlefg .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-6wlefg .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-6wlefg .framer-ui3rn > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-3q196i.framer-m4sehy, .framer-Uj7xN.framer-v-3q196i .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-3q196i.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-3q196i.framer-m4sehy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-3q196i.framer-m4sehy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-3q196i .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-3q196i .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-3q196i .framer-ui3rn > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-ekudxy.framer-m4sehy, .framer-Uj7xN.framer-v-ekudxy .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-ekudxy.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-ekudxy.framer-m4sehy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-ekudxy.framer-m4sehy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-ekudxy .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-ekudxy .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-ekudxy .framer-ui3rn > :last-child { margin-right: 0px; } }\",\".framer-Uj7xN.framer-v-1ojcn6w.framer-m4sehy, .framer-Uj7xN.framer-v-dsui6v.framer-m4sehy, .framer-Uj7xN.framer-v-u0vdl8.framer-m4sehy, .framer-Uj7xN.framer-v-1tw3c7.framer-m4sehy, .framer-Uj7xN.framer-v-1c0u7y5.framer-m4sehy { flex-direction: column; width: 390px; }\",\".framer-Uj7xN.framer-v-1ojcn6w .framer-17w5os6, .framer-Uj7xN.framer-v-dsui6v .framer-17w5os6, .framer-Uj7xN.framer-v-1c0u7y5 .framer-17w5os6 { top: calc(49.99474624356417% - 100% / 2); }\",\".framer-Uj7xN.framer-v-1ojcn6w .framer-kd6dy { align-content: flex-start; align-items: flex-start; flex: none; gap: 36px; height: min-content; justify-content: flex-start; padding: 60px 0px 0px 20px; width: 100%; }\",\".framer-Uj7xN.framer-v-1ojcn6w .framer-1fkxbtw { max-width: unset; padding: 0px 32px 0px 0px; }\",\".framer-Uj7xN.framer-v-1ojcn6w .framer-qrtmm4, .framer-Uj7xN.framer-v-dsui6v .framer-qrtmm4, .framer-Uj7xN.framer-v-u0vdl8 .framer-qrtmm4, .framer-Uj7xN.framer-v-1tw3c7 .framer-qrtmm4, .framer-Uj7xN.framer-v-1c0u7y5 .framer-qrtmm4 { white-space: pre; width: auto; }\",\".framer-Uj7xN.framer-v-1ojcn6w .framer-1bi1j24, .framer-Uj7xN.framer-v-dsui6v .framer-1bi1j24, .framer-Uj7xN.framer-v-u0vdl8 .framer-1bi1j24, .framer-Uj7xN.framer-v-1tw3c7 .framer-1bi1j24, .framer-Uj7xN.framer-v-1c0u7y5 .framer-1bi1j24 { width: 100%; }\",\".framer-Uj7xN.framer-v-1ojcn6w .framer-ui3rn, .framer-Uj7xN.framer-v-dsui6v .framer-ui3rn, .framer-Uj7xN.framer-v-u0vdl8 .framer-ui3rn, .framer-Uj7xN.framer-v-1tw3c7 .framer-ui3rn, .framer-Uj7xN.framer-v-1c0u7y5 .framer-ui3rn { flex-direction: row; justify-content: flex-start; overflow: auto; padding: 0px 32px 16px 0px; }\",\".framer-Uj7xN.framer-v-1ojcn6w .framer-se4mqp, .framer-Uj7xN.framer-v-dsui6v .framer-se4mqp, .framer-Uj7xN.framer-v-1c0u7y5 .framer-se4mqp { flex: none; height: min-content; padding: 40px 20px 40px 20px; width: 100%; }\",\".framer-Uj7xN.framer-v-1ojcn6w .framer-w7orsp, .framer-Uj7xN.framer-v-dsui6v .framer-w7orsp, .framer-Uj7xN.framer-v-u0vdl8 .framer-w7orsp, .framer-Uj7xN.framer-v-1tw3c7 .framer-w7orsp, .framer-Uj7xN.framer-v-1c0u7y5 .framer-w7orsp { height: 254px; justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-1ojcn6w.framer-m4sehy, .framer-Uj7xN.framer-v-1ojcn6w .framer-kd6dy, .framer-Uj7xN.framer-v-1ojcn6w .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-1ojcn6w.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-1ojcn6w.framer-m4sehy > :first-child, .framer-Uj7xN.framer-v-1ojcn6w .framer-kd6dy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-1ojcn6w.framer-m4sehy > :last-child, .framer-Uj7xN.framer-v-1ojcn6w .framer-kd6dy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-1ojcn6w .framer-kd6dy > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Uj7xN.framer-v-1ojcn6w .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-1ojcn6w .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-1ojcn6w .framer-ui3rn > :last-child { margin-right: 0px; } }\",\".framer-Uj7xN.framer-v-dsui6v .framer-kd6dy, .framer-Uj7xN.framer-v-1c0u7y5 .framer-kd6dy { align-content: flex-start; align-items: flex-start; flex: none; height: min-content; padding: 60px 0px 0px 20px; width: 100%; }\",\".framer-Uj7xN.framer-v-dsui6v .framer-1fkxbtw, .framer-Uj7xN.framer-v-u0vdl8 .framer-1fkxbtw, .framer-Uj7xN.framer-v-1tw3c7 .framer-1fkxbtw, .framer-Uj7xN.framer-v-1c0u7y5 .framer-1fkxbtw { padding: 0px 32px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-dsui6v.framer-m4sehy, .framer-Uj7xN.framer-v-dsui6v .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-dsui6v.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-dsui6v.framer-m4sehy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-dsui6v.framer-m4sehy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-dsui6v .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-dsui6v .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-dsui6v .framer-ui3rn > :last-child { margin-right: 0px; } }\",\".framer-Uj7xN.framer-v-u0vdl8 .framer-17w5os6, .framer-Uj7xN.framer-v-1tw3c7 .framer-17w5os6 { order: 5; top: calc(49.99474624356417% - 100% / 2); }\",\".framer-Uj7xN.framer-v-u0vdl8 .framer-kd6dy, .framer-Uj7xN.framer-v-1tw3c7 .framer-kd6dy { align-content: flex-start; align-items: flex-start; flex: none; height: min-content; order: 7; padding: 60px 0px 0px 20px; width: 100%; }\",\".framer-Uj7xN.framer-v-u0vdl8 .framer-se4mqp, .framer-Uj7xN.framer-v-1tw3c7 .framer-se4mqp { flex: none; height: min-content; order: 8; padding: 40px 20px 40px 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-u0vdl8.framer-m4sehy, .framer-Uj7xN.framer-v-u0vdl8 .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-u0vdl8.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-u0vdl8.framer-m4sehy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-u0vdl8.framer-m4sehy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-u0vdl8 .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-u0vdl8 .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-u0vdl8 .framer-ui3rn > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-1tw3c7.framer-m4sehy, .framer-Uj7xN.framer-v-1tw3c7 .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-1tw3c7.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-1tw3c7.framer-m4sehy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-1tw3c7.framer-m4sehy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-1tw3c7 .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-1tw3c7 .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-1tw3c7 .framer-ui3rn > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uj7xN.framer-v-1c0u7y5.framer-m4sehy, .framer-Uj7xN.framer-v-1c0u7y5 .framer-ui3rn { gap: 0px; } .framer-Uj7xN.framer-v-1c0u7y5.framer-m4sehy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Uj7xN.framer-v-1c0u7y5.framer-m4sehy > :first-child { margin-top: 0px; } .framer-Uj7xN.framer-v-1c0u7y5.framer-m4sehy > :last-child { margin-bottom: 0px; } .framer-Uj7xN.framer-v-1c0u7y5 .framer-ui3rn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Uj7xN.framer-v-1c0u7y5 .framer-ui3rn > :first-child { margin-left: 0px; } .framer-Uj7xN.framer-v-1c0u7y5 .framer-ui3rn > :last-child { margin-right: 0px; } }\",'.framer-Uj7xN[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-Uj7xN [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-Uj7xN[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-Uj7xN [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-Uj7xN[data-hide-scrollbars=\"true\"], .framer-Uj7xN [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 773\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oYCEATO3S\":{\"layout\":[\"fixed\",\"auto\"]},\"aTdJyaP9M\":{\"layout\":[\"fixed\",\"auto\"]},\"XOZgBmq6L\":{\"layout\":[\"fixed\",\"auto\"]},\"Zyg3ggLog\":{\"layout\":[\"fixed\",\"auto\"]},\"S0AzR40QK\":{\"layout\":[\"fixed\",\"auto\"]},\"Xl8wBs8Ga\":{\"layout\":[\"fixed\",\"auto\"]},\"LOhf1Uqek\":{\"layout\":[\"fixed\",\"auto\"]},\"jOJ_OsbrQ\":{\"layout\":[\"fixed\",\"auto\"]},\"AVgnhoEpX\":{\"layout\":[\"fixed\",\"auto\"]},\"YJrxGpEqU\":{\"layout\":[\"fixed\",\"auto\"]},\"vv1k2RpDH\":{\"layout\":[\"fixed\",\"auto\"]},\"NdvrCelKe\":{\"layout\":[\"fixed\",\"auto\"]},\"cfxpVTlIF\":{\"layout\":[\"fixed\",\"auto\"]},\"cgBVYN6WY\":{\"layout\":[\"fixed\",\"auto\"]},\"Es6WrZ1US\":{\"layout\":[\"fixed\",\"auto\"]},\"QdKeXCTjO\":{\"layout\":[\"fixed\",\"auto\"]},\"Rwlzpc5bS\":{\"layout\":[\"fixed\",\"auto\"]},\"IW1qpkBS4\":{\"layout\":[\"fixed\",\"auto\"]},\"CueoBo803\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOaXlUNFGB=withCSS(Component,css,\"framer-Uj7xN\");export default FramerOaXlUNFGB;FramerOaXlUNFGB.displayName=\"slides-our-partners 2\";FramerOaXlUNFGB.defaultProps={height:773,width:1440};addPropertyControls(FramerOaXlUNFGB,{variant:{options:[\"i4kjc0G8T\",\"oYCEATO3S\",\"aTdJyaP9M\",\"XOZgBmq6L\",\"Zyg3ggLog\",\"S0AzR40QK\",\"Xl8wBs8Ga\",\"LOhf1Uqek\",\"jOJ_OsbrQ\",\"AVgnhoEpX\",\"YJrxGpEqU\",\"vv1k2RpDH\",\"NdvrCelKe\",\"cfxpVTlIF\",\"cgBVYN6WY\",\"Es6WrZ1US\",\"QdKeXCTjO\",\"Rwlzpc5bS\",\"IW1qpkBS4\",\"CueoBo803\"],optionTitles:[\"slide_Desktop=HS\",\"slide_Desktop=LAB\",\"slide_Desktop=DME\",\"slide_Desktop=PAY\",\"slide_Desktop=SH\",\"slide_Desktop_S=HS\",\"slide_Desktop_S=LAB\",\"slide_Desktop_S=DME\",\"slide_Desktop_S=PAY\",\"slide_Desktop_S=SH\",\"slide_Tablet=HS\",\"slide_Tablet=LAB\",\"slide_Tablet=DME\",\"slide_Tablet=PAY\",\"slide_Tablet=SH\",\"slide_Phone=HS\",\"slide_Phone=LAB\",\"slide_Phone=DME\",\"slide_Phone=PAY\",\"slide_Phone=SH\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOaXlUNFGB,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...Tab_buttonFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOaXlUNFGB\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"773\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oYCEATO3S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aTdJyaP9M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XOZgBmq6L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zyg3ggLog\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S0AzR40QK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xl8wBs8Ga\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LOhf1Uqek\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jOJ_OsbrQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AVgnhoEpX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YJrxGpEqU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vv1k2RpDH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NdvrCelKe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cfxpVTlIF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cgBVYN6WY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Es6WrZ1US\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QdKeXCTjO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rwlzpc5bS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IW1qpkBS4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CueoBo803\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import AnimatedCounter from\"https://framerusercontent.com/modules/sIxZFVxIOBdfeANYhkj2/3AOGbWpoDN62n25j2j7O/AnimatedCounter.js\";import Button1 from\"#framer/local/canvasComponent/ivjsgY1gt/ivjsgY1gt.js\";import Footer from\"#framer/local/canvasComponent/jTGkU2HP3/jTGkU2HP3.js\";import Button from\"#framer/local/canvasComponent/k061zrOfw/k061zrOfw.js\";import Navbar from\"#framer/local/canvasComponent/mFpSCBv1D/mFpSCBv1D.js\";import SlidesOurPartners2 from\"#framer/local/canvasComponent/OaXlUNFGB/OaXlUNFGB.js\";import Footer_form from\"#framer/local/canvasComponent/yrcLei0NJ/yrcLei0NJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/i8duHiuqV/i8duHiuqV.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const ButtonFonts=getFonts(Button);const VideoFonts=getFonts(Video);const FormContainerWithFX=withFX(FormContainer);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const AnimatedCounterFonts=getFonts(AnimatedCounter);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const Button1Fonts=getFonts(Button1);const ContainerWithFX=withFX(Container);const SlidesOurPartners2Fonts=getFonts(SlidesOurPartners2);const TickerFonts=getFonts(Ticker);const Footer_formFonts=getFonts(Footer_form);const FooterFonts=getFonts(Footer);const breakpoints={H9p1FwUE0:\"(max-width: 809px)\",IfSbnjFHM:\"(min-width: 810px) and (max-width: 1199px)\",o6W3P1_fE:\"(min-width: 1440px)\",zucwW3iTy:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PPCnx\";const variantClassNames={H9p1FwUE0:\"framer-v-rsqwvx\",IfSbnjFHM:\"framer-v-13ch8uq\",o6W3P1_fE:\"framer-v-14p5v8k\",zucwW3iTy:\"framer-v-m9yega\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={damping:40,delay:.075,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation,repeat:false,startDelay:.2,tokenization:\"line\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect2={effect:animation,repeat:false,startDelay:.4,tokenization:\"line\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition3={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={delay:.1,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.2,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={delay:.3,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={delay:.4,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const textEffect3={effect:animation,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const textEffect4={effect:animation,repeat:false,startDelay:0,threshold:.5,tokenization:\"line\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const textEffect5={effect:animation,repeat:false,startDelay:0,threshold:0,tokenization:\"line\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const textEffect6={effect:animation,tokenization:\"line\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop_S:\"zucwW3iTy\",Desktop:\"o6W3P1_fE\",Phone:\"H9p1FwUE0\",Tablet:\"IfSbnjFHM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"o6W3P1_fE\"};};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,cnwoHbvmxyrcLei0NJ,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const hHedf9p0P3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const yNMrGq_Xp3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"H9p1FwUE0\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"H9p1FwUE0\")return true;return false;};const elementId=useRouteElementId(\"uIFGCE7L2\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"IKYfyqPvv\");const elementId2=useRouteElementId(\"mUTCLanoh\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"aedhp8tWM\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"QVVviBwZ2\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"t_zHUpHWV\");const ref6=React.useRef(null);const router=useRouter();const elementId6=useRouteElementId(\"fpv0oShu6\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"TfV_0_CEN\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"o6W3P1_fE\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-14p5v8k\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-idtr50-container\",id:\"idtr50\",layoutScroll:true,nodeId:\"K_eMNxodY\",rendersWithMotion:true,scopeId:\"i8duHiuqV\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{__framer__variantAppearEffectEnabled:undefined,variant:overlay.visible?\"rjiSX_DiC\":\"rjiSX_DiC\"},IfSbnjFHM:{__framer__variantAppearEffectEnabled:undefined,variant:overlay.visible?\"igIJie7oc\":\"igIJie7oc\",XUVYYmQMc:\"24px 120px 24px 120px\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"b0FizW3_y\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",hHedf9p0P:hHedf9p0P3bnx0g({overlay}),id:\"K_eMNxodY\",layoutId:\"K_eMNxodY\",style:{width:\"100%\"},variant:overlay.visible?\"cX_DW_OjU\":\"cX_DW_OjU\",width:\"100%\",XUVYYmQMc:\"24px 20px 24px 20px\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-fbv4e2\"),\"data-framer-portal-id\":\"idtr50\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"SSzt16HV6\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-evjj9l\"),\"data-framer-portal-id\":\"idtr50\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{transformTemplate:undefined},IfSbnjFHM:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-1shsqt4\"),\"data-framer-name\":\"modal-desktop\",\"data-framer-portal-id\":\"idtr50\",transformTemplate:transformTemplate2,children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CONTACT US\"})}),className:\"framer-j3dpby hidden-rsqwvx\",\"data-framer-name\":\"CONTACT US\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ss14jy hidden-rsqwvx\",\"data-framer-name\":\"Icon/X\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mfu5nw\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.0291 27.9698C29.1698 28.1105 29.2489 28.3014 29.2489 28.5004C29.2489 28.6994 29.1698 28.8903 29.0291 29.031C28.8884 29.1718 28.6975 29.2508 28.4985 29.2508C28.2994 29.2508 28.1086 29.1718 27.9678 29.031L14.9985 16.0617L2.02909 29.031C1.88836 29.1718 1.69749 29.2508 1.49846 29.2508C1.29944 29.2508 1.10857 29.1718 0.967839 29.031C0.827109 28.8903 0.748047 28.6994 0.748047 28.5004C0.748047 28.3014 0.827108 28.1105 0.967839 27.9698L13.9372 15.0004L0.967839 2.03104C0.827108 1.89031 0.748047 1.69944 0.748047 1.50042C0.748047 1.30139 0.827108 1.11052 0.967839 0.969792C1.10857 0.829061 1.29944 0.75 1.49846 0.75C1.69749 0.75 1.88836 0.829061 2.02909 0.969792L14.9985 13.9392L27.9678 0.969792C28.0375 0.900109 28.1202 0.844834 28.2113 0.807122C28.3023 0.76941 28.3999 0.75 28.4985 0.75C28.597 0.75 28.6946 0.76941 28.7856 0.807122C28.8767 0.844834 28.9594 0.900109 29.0291 0.969792C29.0988 1.03947 29.154 1.1222 29.1918 1.21324C29.2295 1.30429 29.2489 1.40187 29.2489 1.50042C29.2489 1.59896 29.2295 1.69654 29.1918 1.78759C29.154 1.87863 29.0988 1.96136 29.0291 2.03104L16.0597 15.0004L29.0291 27.9698Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/1a5f5116-6006-4e01-b2d1-a787509eea2b/submit\",className:\"framer-tqqt2q\",nodeId:\"cq_PjClE9\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-orsom2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Your name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-1kjsfd5\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-x54b9z\",inputName:\"Name\",placeholder:\"First name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1eyojwq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Company name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-ukg3nd\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1sbhl9w\",inputName:\"Company Name\",placeholder:\"Enter your company name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-12pzqmd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Email\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-9z375a\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-dxlj77\",inputName:\"Email\",placeholder:\"you@company.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1oabsy9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"Phone number (optional)\"})}),className:\"framer-1b69x8n\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-yozmfz\",inputName:\"Phone Number\",placeholder:\"+1 (555) 000-0000\",required:false,type:\"tel\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11zeubu\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{width:\"calc(100vw - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fg2szs-container\",inComponentSlot:true,nodeId:\"xbZ87DaPl\",rendersWithMotion:true,scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{cIp3XkLPz:\"Submit\",height:\"100%\",id:\"xbZ87DaPl\",layoutId:\"xbZ87DaPl\",type:\"submit\",variant:formVariants(formState,{pending:\"wBbJXYPMP\",success:\"u_KZxgY5s\"},\"fZOMUra6V\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ene2z9\",\"data-framer-name\":\"widget\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXZlbmlyIE5leHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Avenir Next\", \"Avenir Next Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"A member of our team will reach out. We look forward to working with you!\"})}),className:\"framer-15uzt9g\",\"data-framer-name\":\"Choose how many laundry bags\",fonts:[\"GF;Avenir Next-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1epplo6 hidden-14p5v8k hidden-m9yega hidden-13ch8uq\",\"data-framer-name\":\"headline\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zoy9ky\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o9xbap\",\"data-framer-name\":\"logotype\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mg22sk\",\"data-framer-name\":\"logotype\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"23\" viewBox=\"0 0 130 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.66542 5.96564V8.02088H5.66769C4.60067 8.02088 3.76922 8.32742 3.15949 8.94051C2.54977 9.5536 2.2449 10.4245 2.2449 11.5601V17.7536H0V6.08408H2.09247L2.27955 8.43193H2.06476C2.22412 7.66557 2.6052 7.03854 3.20799 6.55086C3.81079 6.06318 4.56602 5.81934 5.46676 5.81934C5.67462 5.81934 5.86862 5.83327 6.04877 5.85417C6.22891 5.87507 6.42985 5.91687 6.65849 5.95867L6.66542 5.96564Z\" fill=\"white\"/>\\n<path d=\"M11.3286 18.0465C10.0884 18.0465 9.11839 17.7191 8.41166 17.0642C7.70493 16.4093 7.35156 15.5593 7.35156 14.5073C7.35156 13.4553 7.73264 12.5844 8.4948 11.9365C9.25696 11.2886 10.3171 10.9124 11.682 10.8009L15.3473 10.5153V10.1809C15.3473 9.52597 15.2295 9.00345 14.987 8.6133C14.7514 8.22316 14.4258 7.94448 14.0101 7.77728C13.5943 7.61007 13.1301 7.52647 12.6035 7.52647C11.6682 7.52647 10.9406 7.72154 10.4279 8.11169C9.91519 8.50183 9.6519 9.05919 9.6519 9.77678H7.698C7.698 8.96165 7.90586 8.25102 8.31465 7.6449C8.72345 7.03878 9.31239 6.56503 10.0607 6.23062C10.8159 5.89621 11.6889 5.729 12.6867 5.729C13.6844 5.729 14.502 5.90318 15.2226 6.24455C15.9432 6.58593 16.5044 7.10845 16.9132 7.79818C17.3151 8.49487 17.5229 9.36573 17.5229 10.4177V17.7609H15.6175L15.3819 15.8728C15.0771 16.5416 14.5574 17.0711 13.823 17.4613C13.0885 17.8514 12.2502 18.0465 11.3148 18.0465H11.3286ZM11.9661 16.2978C13.0262 16.2978 13.8646 15.9773 14.4674 15.3294C15.0702 14.6815 15.3681 13.8106 15.3681 12.7098V12.0898L12.3957 12.3267C11.4118 12.4242 10.6981 12.6541 10.2686 13.0234C9.83897 13.3926 9.61725 13.8594 9.61725 14.4376C9.61725 15.0577 9.82511 15.5245 10.2478 15.838C10.6704 16.1515 11.2455 16.3048 11.973 16.3048L11.9661 16.2978Z\" fill=\"white\"/>\\n<path d=\"M20.2715 23.0001V6.06355H22.2947L22.461 8.16755C22.842 7.35242 23.4102 6.7463 24.1654 6.33526C24.9207 5.92421 25.7521 5.72217 26.6736 5.72217C27.7822 5.72217 28.7453 5.97994 29.549 6.50246C30.3597 7.01801 30.9833 7.7356 31.4198 8.65524C31.8563 9.57487 32.078 10.6269 32.078 11.8252C32.078 13.0235 31.8702 14.0894 31.4475 15.03C31.0248 15.9705 30.4151 16.7159 29.6183 17.2524C28.8146 17.7958 27.8376 18.0675 26.6805 18.0675C25.7452 18.0675 24.9137 17.8794 24.1793 17.4962C23.4518 17.1131 22.8905 16.5627 22.5164 15.8451V23.0001H20.2784H20.2715ZM22.5302 11.9227C22.5302 12.703 22.6757 13.4067 22.9668 14.0407C23.2578 14.6746 23.6804 15.1623 24.2278 15.5107C24.7751 15.859 25.4264 16.0332 26.1886 16.0332C26.9508 16.0332 27.6021 15.8521 28.1425 15.4967C28.6829 15.1414 29.0987 14.6468 29.3897 14.0267C29.6807 13.4067 29.8262 12.703 29.8262 11.9227C29.8262 11.1424 29.6807 10.39 29.3897 9.76994C29.0987 9.14989 28.676 8.6622 28.1425 8.31386C27.6021 7.96551 26.9508 7.79134 26.1886 7.79134C25.4264 7.79134 24.7751 7.96551 24.2278 8.31386C23.6804 8.6622 23.2578 9.14989 22.9668 9.76994C22.6757 10.39 22.5302 11.1076 22.5302 11.9227Z\" fill=\"white\"/>\\n<path d=\"M35.2892 3.28382C34.8943 3.28382 34.5478 3.13752 34.2568 2.83794C33.9658 2.54533 33.8203 2.19698 33.8203 1.79987C33.8203 1.40276 33.9658 1.03351 34.2568 0.747866C34.5478 0.462223 34.8943 0.315918 35.2892 0.315918C35.6841 0.315918 36.0514 0.462223 36.3354 0.747866C36.6195 1.03351 36.765 1.38882 36.765 1.79987C36.765 2.21092 36.6195 2.54533 36.3354 2.83794C36.0514 3.13055 35.698 3.28382 35.2892 3.28382ZM34.1945 17.7611V6.06362H36.4324V17.7611H34.1945Z\" fill=\"white\"/>\\n<path d=\"M43.9721 18.0464C42.8496 18.0464 41.8796 17.7886 41.0689 17.2661C40.2583 16.7506 39.6347 16.026 39.1982 15.0994C38.7617 14.1728 38.5469 13.1208 38.5469 11.9434C38.5469 10.766 38.7686 9.67917 39.212 8.75257C39.6555 7.819 40.2929 7.08051 41.1174 6.53709C41.9419 5.99367 42.9258 5.72196 44.0691 5.72196C44.9698 5.72196 45.7805 5.91007 46.4803 6.28628C47.187 6.6625 47.7344 7.21288 48.1362 7.95137V0.148438H50.3465V17.7538H48.351L48.1639 15.6219C47.7829 16.4022 47.2216 17.0014 46.4872 17.4194C45.7527 17.8304 44.9144 18.0395 43.979 18.0395L43.9721 18.0464ZM44.4224 16.0121C45.1846 16.0121 45.8359 15.8379 46.3833 15.4826C46.9306 15.1343 47.3533 14.6466 47.6581 14.0265C47.9561 13.4065 48.1085 12.6889 48.1085 11.8737C48.1085 11.0586 47.9561 10.348 47.6581 9.7349C47.3533 9.12181 46.9306 8.6411 46.3833 8.28578C45.8359 7.93744 45.1846 7.76327 44.4224 7.76327C43.6603 7.76327 43.009 7.94441 42.4755 8.29972C41.935 8.65503 41.5193 9.14271 41.2352 9.7558C40.9511 10.3689 40.8056 11.0725 40.8056 11.8737C40.8056 12.6749 40.9511 13.4065 41.2352 14.0265C41.5193 14.6466 41.935 15.1343 42.4755 15.4826C43.0159 15.8309 43.6672 16.0121 44.4224 16.0121Z\" fill=\"white\"/>\\n<path d=\"M54.9605 17.761H53.3184V6.18203H54.7457L54.9813 8.35571L54.7457 8.28604C54.9813 7.55451 55.4316 6.96929 56.0898 6.53038C56.7481 6.09146 57.5241 5.87549 58.411 5.87549C59.4433 5.87549 60.3025 6.16113 60.9884 6.72545C61.6744 7.28977 62.1178 8.0631 62.3118 9.0315H61.9515C62.1109 8.05613 62.5405 7.28977 63.2472 6.72545C63.9539 6.16113 64.8339 5.87549 65.9009 5.87549C67.1411 5.87549 68.1389 6.25867 68.901 7.02503C69.6632 7.79139 70.0443 8.84339 70.0443 10.181V17.768H68.4507V10.5154C68.4507 9.52615 68.1943 8.75282 67.6885 8.19547C67.1827 7.63812 66.4829 7.35944 65.596 7.35944C64.9586 7.35944 64.4112 7.50575 63.9539 7.79836C63.4966 8.09097 63.1433 8.48808 62.8938 8.98273C62.6444 9.47738 62.5266 10.0208 62.5266 10.606V17.761H60.9122V10.4876C60.9122 9.49828 60.6559 8.73192 60.1362 8.1885C59.6235 7.64508 58.9237 7.37337 58.0576 7.37337C57.4202 7.37337 56.8728 7.51968 56.4016 7.80532C55.9305 8.09096 55.5771 8.48111 55.3346 8.9688C55.0852 9.45648 54.9674 9.99293 54.9674 10.5851V17.761H54.9605Z\" fill=\"white\"/>\\n<path d=\"M77.8236 18.0465C76.715 18.0465 75.7311 17.7887 74.8858 17.2801C74.0405 16.7715 73.3753 16.0609 72.8973 15.1482C72.4192 14.2425 72.1836 13.1766 72.1836 11.9643C72.1836 10.7521 72.4192 9.71403 72.8834 8.7944C73.3476 7.87476 73.9989 7.15717 74.8234 6.64162C75.6479 6.12607 76.611 5.86133 77.6989 5.86133C78.7867 5.86133 79.6597 6.09124 80.4496 6.55802C81.2325 7.0248 81.8422 7.66576 82.2787 8.48089C82.7152 9.30298 82.93 10.2644 82.93 11.3652V12.1803H73.0774L73.1259 10.982H81.2879C81.2879 9.8673 80.9623 8.96857 80.304 8.29278C79.6458 7.61699 78.7728 7.27561 77.6989 7.27561C76.909 7.27561 76.2092 7.45675 75.6202 7.826C75.0244 8.19524 74.5671 8.71776 74.2553 9.39355C73.9366 10.0693 73.7772 10.8705 73.7772 11.7971C73.7772 13.3299 74.1306 14.5142 74.8373 15.3642C75.544 16.2072 76.5487 16.6322 77.8444 16.6322C78.7797 16.6322 79.5488 16.4301 80.1516 16.033C80.7544 15.6359 81.1632 15.0507 81.3641 14.2843H82.937C82.639 15.4966 82.0501 16.4232 81.1771 17.0711C80.3041 17.719 79.1885 18.0395 77.8236 18.0395V18.0465Z\" fill=\"white\"/>\\n<path d=\"M89.7169 18.0467C88.6083 18.0467 87.6521 17.782 86.8622 17.2594C86.0723 16.73 85.4557 16.0124 85.033 15.0927C84.6035 14.1731 84.3887 13.142 84.3887 11.9925C84.3887 10.8429 84.6035 9.78395 85.033 8.85735C85.4626 7.93075 86.0723 7.19922 86.8761 6.66974C87.6798 6.13329 88.6498 5.86854 89.7931 5.86854C90.7423 5.86854 91.5876 6.07755 92.329 6.4886C93.0634 6.90661 93.6316 7.53364 94.0334 8.37663V0.315918H95.6755V17.7541H94.2482L94.0819 15.3853C93.6662 16.2771 93.0842 16.9459 92.322 17.3848C91.5599 17.8238 90.6938 18.0397 89.7307 18.0397L89.7169 18.0467ZM90.0079 16.5418C90.867 16.5418 91.5876 16.3468 92.1696 15.9566C92.7586 15.5665 93.2089 15.0231 93.5276 14.3333C93.8464 13.6366 94.0057 12.8494 94.0057 11.9507C94.0057 11.0519 93.8464 10.2647 93.5276 9.58191C93.2089 8.89915 92.7586 8.35573 92.1696 7.95862C91.5807 7.5615 90.8601 7.35946 90.0079 7.35946C89.1556 7.35946 88.4766 7.5615 87.8807 7.95862C87.2849 8.35573 86.8345 8.89915 86.5227 9.58191C86.2109 10.2647 86.0585 11.0589 86.0585 11.9507C86.0585 12.8424 86.2109 13.6366 86.5227 14.3333C86.8345 15.03 87.2849 15.5665 87.8807 15.9566C88.4766 16.3468 89.1833 16.5418 90.0079 16.5418Z\" fill=\"white\"/>\\n<path d=\"M99.5524 2.99802C99.2198 2.99802 98.9357 2.87959 98.6932 2.63574C98.4576 2.39887 98.3398 2.11323 98.3398 1.77185C98.3398 1.43047 98.4576 1.14483 98.6932 0.900985C98.9288 0.657143 99.2198 0.531738 99.5524 0.531738C99.8849 0.531738 100.176 0.657143 100.418 0.900985C100.668 1.15179 100.786 1.43744 100.786 1.77185C100.786 2.10626 100.661 2.3919 100.418 2.63574C100.169 2.87262 99.8849 2.99802 99.5524 2.99802ZM98.7417 17.7609V6.1819H100.384V17.7609H98.7417Z\" fill=\"white\"/>\\n<path d=\"M102.643 11.9926C102.643 10.7803 102.878 9.71439 103.342 8.80172C103.807 7.88906 104.458 7.1645 105.296 6.64895C106.128 6.13339 107.098 5.86865 108.213 5.86865C109.544 5.86865 110.666 6.22396 111.581 6.94156C112.495 7.65915 113.056 8.61361 113.285 9.81192H111.643C111.421 9.01769 110.999 8.39764 110.382 7.97266C109.765 7.54071 109.052 7.32474 108.241 7.32474C107.479 7.32474 106.8 7.51284 106.197 7.89602C105.594 8.2792 105.123 8.81565 104.784 9.51235C104.444 10.209 104.271 11.0242 104.271 11.9647C104.271 12.9052 104.43 13.6925 104.749 14.3822C105.068 15.065 105.511 15.6014 106.093 15.9846C106.675 16.3678 107.347 16.5559 108.13 16.5559C109.003 16.5559 109.758 16.3399 110.389 15.901C111.026 15.4621 111.456 14.8699 111.678 14.1175H113.341C113.167 14.8978 112.835 15.5875 112.343 16.1727C111.851 16.7649 111.241 17.2247 110.521 17.5452C109.8 17.8657 109.003 18.0329 108.13 18.0329C107.035 18.0329 106.079 17.7821 105.262 17.2804C104.444 16.7788 103.807 16.0752 103.342 15.1625C102.885 14.2568 102.65 13.1909 102.65 11.9786L102.643 11.9926Z\" fill=\"white\"/>\\n<path d=\"M118.772 18.0467C117.553 18.0467 116.596 17.7262 115.903 17.0922C115.211 16.4513 114.871 15.6361 114.871 14.6259C114.871 13.56 115.252 12.7031 116.014 12.0691C116.776 11.4281 117.83 11.0589 119.181 10.9474L122.992 10.6339V10.2507C122.992 9.48435 122.853 8.88519 122.59 8.44628C122.319 8.00736 121.952 7.70082 121.495 7.52665C121.038 7.35247 120.518 7.2619 119.95 7.2619C118.938 7.2619 118.148 7.47788 117.594 7.90983C117.04 8.34177 116.763 8.94789 116.763 9.72819H115.266C115.266 8.94789 115.467 8.2721 115.862 7.69385C116.257 7.1156 116.811 6.67668 117.525 6.3562C118.238 6.03573 119.063 5.87549 119.998 5.87549C120.934 5.87549 121.696 6.02876 122.375 6.34227C123.054 6.65578 123.601 7.12953 124.003 7.77745C124.405 8.42538 124.613 9.25444 124.613 10.2786V17.768H123.234L123.019 15.7337C122.673 16.4652 122.119 17.0365 121.363 17.4475C120.608 17.8516 119.749 18.0606 118.786 18.0606L118.772 18.0467ZM119.153 16.709C120.372 16.709 121.315 16.3189 121.987 15.5386C122.659 14.7583 122.985 13.7411 122.985 12.501V11.881L119.583 12.1457C118.502 12.2432 117.726 12.515 117.248 12.9608C116.77 13.4067 116.534 13.9501 116.534 14.5841C116.534 15.2878 116.77 15.8173 117.248 16.1726C117.726 16.5279 118.356 16.709 119.153 16.709Z\" fill=\"white\"/>\\n<path d=\"M129.238 17.7611H127.596V0.315918H129.238V17.7541V17.7611Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-e5cow\",\"data-framer-name\":\"logotype\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"12\" viewBox=\"0 0 26 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.5\">\\n<path d=\"M0.332031 2.48048L12.582 4.8144C12.8591 4.88407 13.1502 4.84923 13.3996 4.71686L20.841 0.843262L0.332031 2.48048Z\" fill=\"#DD2424\"/>\\n</g>\\n<path d=\"M25.9999 0L4.34766 11.2516H18.8633C19.4592 11.2516 20.0135 10.9241 20.2976 10.4016L25.9999 0Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-125okts\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nj2g5h\",\"data-framer-name\":\"Icon/List\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19gf42z\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 18\"><path d=\"M 22.5 0 L 0.5 0 C 0.367 0 0.24 0.053 0.146 0.146 C 0.053 0.24 0 0.367 0 0.5 C 0 0.633 0.053 0.76 0.146 0.854 C 0.24 0.947 0.367 1 0.5 1 L 22.5 1 C 22.633 1 22.76 0.947 22.854 0.854 C 22.947 0.76 23 0.633 23 0.5 C 23 0.367 22.947 0.24 22.854 0.146 C 22.76 0.053 22.633 0 22.5 0 Z\" transform=\"translate(0.5 8.5) rotate(-45 11.5 0.5)\" fill=\"rgb(221, 36, 36)\"></path><path d=\"M 0.5 1 L 22.5 1 C 22.633 1 22.76 0.947 22.854 0.854 C 22.947 0.76 23 0.633 23 0.5 C 23 0.367 22.947 0.24 22.854 0.146 C 22.76 0.053 22.633 0 22.5 0 L 0.5 0 C 0.367 0 0.24 0.053 0.146 0.146 C 0.053 0.24 0 0.367 0 0.5 C 0 0.633 0.053 0.76 0.146 0.854 C 0.24 0.947 0.367 1 0.5 1 Z\" transform=\"translate(0.5 8.5) rotate(45 11.5 0.5)\" fill=\"rgb(221, 36, 36)\"></path><path d=\"M 12.5 9 C 12.5 9.133 12.498 9.26 12.494 9.354 C 12.49 9.447 12.484 9.5 12.478 9.5 L 11.522 9.5 C 11.516 9.5 11.51 9.447 11.506 9.354 C 11.502 9.26 11.5 9.133 11.5 9 C 11.5 8.867 11.502 8.74 11.506 8.646 C 11.51 8.553 11.516 8.5 11.522 8.5 L 12.478 8.5 C 12.484 8.5 12.49 8.553 12.494 8.646 C 12.498 8.74 12.5 8.867 12.5 9 Z\" fill=\"rgb(221, 36, 36)\"></path></svg>',svgContentId:11927882507,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"CONTACT US\"})}),className:\"framer-7p1ogd\",\"data-framer-name\":\"CONTACT US\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t3eg18\",\"data-framer-name\":\"hero\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IfSbnjFHM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:831.168800285805,intrinsicWidth:1496.103840514449,pixelHeight:1600,pixelWidth:2880,sizes:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png?scale-down-to=512 512w,https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:831.168800285805,intrinsicWidth:1496.103840514449,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1600,pixelWidth:2880,sizes:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png?scale-down-to=512 512w,https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2nKkN0k3IacHqJOowKjmu76XMU.png 2880w\"},className:\"framer-c95x55\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ysjoz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gVYouILfl\",scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"gVYouILfl\",isMixedBorderRadius:false,layoutId:\"gVYouILfl\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/o11FrZcqo1h8AyR54r4UDBRrUvY.mp4\",srcType:\"Upload\",srcUrl:\"https://drive.google.com/file/d/1ytv0OqfByQ1_UophACx2hCanmekwm5Wy/view?usp=drive_link\",startTime:2.5,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IfSbnjFHM:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png\",srcSet:\"https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+96),positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png\",srcSet:\"https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png?scale-down-to=512 512w,https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vxpDXSR0oVjJqvf2JakVOEsZnc.png 2880w\"},className:\"framer-unnmbv\",\"data-framer-name\":\"Gradient\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ytzl3u\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Logistics Software & Services\"})}),className:\"framer-aoaiel\",\"data-framer-name\":\"overline\",effect:textEffect,fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"STREAMLINING last-mile\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"medical logistics \"})]})},IfSbnjFHM:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"STREAMLINING last-mile\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"medical logistics \"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"STREAMLINING last-mile\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"medical logistics \"})]}),className:\"framer-1ar7ysk\",\"data-framer-name\":\"title\",effect:textEffect1,fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We drive better patient outcomes and lower supply chain costs for healthcare stakeholders with our SaaS solution and our Logistics Services.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We drive better patient outcomes and lower supply chain costs for healthcare stakeholders with our SaaS solution and our Logistics Services.\"})}),className:\"framer-mk6mio\",\"data-framer-name\":\"text\",effect:textEffect2,fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vyi416 hidden-14p5v8k hidden-m9yega hidden-13ch8uq\",\"data-framer-name\":\"button\",id:\"1vyi416\",onTap:onTap3bnx0g({overlay:overlay1}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BOOK A DEMO\"})}),className:\"framer-vr0efd\",\"data-framer-name\":\"BUTTON\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-lfp0vu\"),\"data-framer-portal-id\":\"1vyi416\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"Btbt3SuP4\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-jzty43\"),\"data-framer-name\":\"modal-mobile\",\"data-framer-portal-id\":\"1vyi416\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-105p2h\",\"data-framer-name\":\"headline\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ady5p6\",\"data-framer-name\":\"logotype\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jl0t0z\",\"data-framer-name\":\"logotype\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"23\" viewBox=\"0 0 130 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.66542 5.96564V8.02088H5.66769C4.60067 8.02088 3.76922 8.32742 3.15949 8.94051C2.54977 9.5536 2.2449 10.4245 2.2449 11.5601V17.7536H0V6.08408H2.09247L2.27955 8.43193H2.06476C2.22412 7.66557 2.6052 7.03854 3.20799 6.55086C3.81079 6.06318 4.56602 5.81934 5.46676 5.81934C5.67462 5.81934 5.86862 5.83327 6.04877 5.85417C6.22891 5.87507 6.42985 5.91687 6.65849 5.95867L6.66542 5.96564Z\" fill=\"white\"/>\\n<path d=\"M11.3286 18.0465C10.0884 18.0465 9.11839 17.7191 8.41166 17.0642C7.70493 16.4093 7.35156 15.5593 7.35156 14.5073C7.35156 13.4553 7.73264 12.5844 8.4948 11.9365C9.25696 11.2886 10.3171 10.9124 11.682 10.8009L15.3473 10.5153V10.1809C15.3473 9.52597 15.2295 9.00345 14.987 8.6133C14.7514 8.22316 14.4258 7.94448 14.0101 7.77728C13.5943 7.61007 13.1301 7.52647 12.6035 7.52647C11.6682 7.52647 10.9406 7.72154 10.4279 8.11169C9.91519 8.50183 9.6519 9.05919 9.6519 9.77678H7.698C7.698 8.96165 7.90586 8.25102 8.31465 7.6449C8.72345 7.03878 9.31239 6.56503 10.0607 6.23062C10.8159 5.89621 11.6889 5.729 12.6867 5.729C13.6844 5.729 14.502 5.90318 15.2226 6.24455C15.9432 6.58593 16.5044 7.10845 16.9132 7.79818C17.3151 8.49487 17.5229 9.36573 17.5229 10.4177V17.7609H15.6175L15.3819 15.8728C15.0771 16.5416 14.5574 17.0711 13.823 17.4613C13.0885 17.8514 12.2502 18.0465 11.3148 18.0465H11.3286ZM11.9661 16.2978C13.0262 16.2978 13.8646 15.9773 14.4674 15.3294C15.0702 14.6815 15.3681 13.8106 15.3681 12.7098V12.0898L12.3957 12.3267C11.4118 12.4242 10.6981 12.6541 10.2686 13.0234C9.83897 13.3926 9.61725 13.8594 9.61725 14.4376C9.61725 15.0577 9.82511 15.5245 10.2478 15.838C10.6704 16.1515 11.2455 16.3048 11.973 16.3048L11.9661 16.2978Z\" fill=\"white\"/>\\n<path d=\"M20.2715 23.0001V6.06355H22.2947L22.461 8.16755C22.842 7.35242 23.4102 6.7463 24.1654 6.33526C24.9207 5.92421 25.7521 5.72217 26.6736 5.72217C27.7822 5.72217 28.7453 5.97994 29.549 6.50246C30.3597 7.01801 30.9833 7.7356 31.4198 8.65524C31.8563 9.57487 32.078 10.6269 32.078 11.8252C32.078 13.0235 31.8702 14.0894 31.4475 15.03C31.0248 15.9705 30.4151 16.7159 29.6183 17.2524C28.8146 17.7958 27.8376 18.0675 26.6805 18.0675C25.7452 18.0675 24.9137 17.8794 24.1793 17.4962C23.4518 17.1131 22.8905 16.5627 22.5164 15.8451V23.0001H20.2784H20.2715ZM22.5302 11.9227C22.5302 12.703 22.6757 13.4067 22.9668 14.0407C23.2578 14.6746 23.6804 15.1623 24.2278 15.5107C24.7751 15.859 25.4264 16.0332 26.1886 16.0332C26.9508 16.0332 27.6021 15.8521 28.1425 15.4967C28.6829 15.1414 29.0987 14.6468 29.3897 14.0267C29.6807 13.4067 29.8262 12.703 29.8262 11.9227C29.8262 11.1424 29.6807 10.39 29.3897 9.76994C29.0987 9.14989 28.676 8.6622 28.1425 8.31386C27.6021 7.96551 26.9508 7.79134 26.1886 7.79134C25.4264 7.79134 24.7751 7.96551 24.2278 8.31386C23.6804 8.6622 23.2578 9.14989 22.9668 9.76994C22.6757 10.39 22.5302 11.1076 22.5302 11.9227Z\" fill=\"white\"/>\\n<path d=\"M35.2892 3.28382C34.8943 3.28382 34.5478 3.13752 34.2568 2.83794C33.9658 2.54533 33.8203 2.19698 33.8203 1.79987C33.8203 1.40276 33.9658 1.03351 34.2568 0.747866C34.5478 0.462223 34.8943 0.315918 35.2892 0.315918C35.6841 0.315918 36.0514 0.462223 36.3354 0.747866C36.6195 1.03351 36.765 1.38882 36.765 1.79987C36.765 2.21092 36.6195 2.54533 36.3354 2.83794C36.0514 3.13055 35.698 3.28382 35.2892 3.28382ZM34.1945 17.7611V6.06362H36.4324V17.7611H34.1945Z\" fill=\"white\"/>\\n<path d=\"M43.9721 18.0464C42.8496 18.0464 41.8796 17.7886 41.0689 17.2661C40.2583 16.7506 39.6347 16.026 39.1982 15.0994C38.7617 14.1728 38.5469 13.1208 38.5469 11.9434C38.5469 10.766 38.7686 9.67917 39.212 8.75257C39.6555 7.819 40.2929 7.08051 41.1174 6.53709C41.9419 5.99367 42.9258 5.72196 44.0691 5.72196C44.9698 5.72196 45.7805 5.91007 46.4803 6.28628C47.187 6.6625 47.7344 7.21288 48.1362 7.95137V0.148438H50.3465V17.7538H48.351L48.1639 15.6219C47.7829 16.4022 47.2216 17.0014 46.4872 17.4194C45.7527 17.8304 44.9144 18.0395 43.979 18.0395L43.9721 18.0464ZM44.4224 16.0121C45.1846 16.0121 45.8359 15.8379 46.3833 15.4826C46.9306 15.1343 47.3533 14.6466 47.6581 14.0265C47.9561 13.4065 48.1085 12.6889 48.1085 11.8737C48.1085 11.0586 47.9561 10.348 47.6581 9.7349C47.3533 9.12181 46.9306 8.6411 46.3833 8.28578C45.8359 7.93744 45.1846 7.76327 44.4224 7.76327C43.6603 7.76327 43.009 7.94441 42.4755 8.29972C41.935 8.65503 41.5193 9.14271 41.2352 9.7558C40.9511 10.3689 40.8056 11.0725 40.8056 11.8737C40.8056 12.6749 40.9511 13.4065 41.2352 14.0265C41.5193 14.6466 41.935 15.1343 42.4755 15.4826C43.0159 15.8309 43.6672 16.0121 44.4224 16.0121Z\" fill=\"white\"/>\\n<path d=\"M54.9605 17.761H53.3184V6.18203H54.7457L54.9813 8.35571L54.7457 8.28604C54.9813 7.55451 55.4316 6.96929 56.0898 6.53038C56.7481 6.09146 57.5241 5.87549 58.411 5.87549C59.4433 5.87549 60.3025 6.16113 60.9884 6.72545C61.6744 7.28977 62.1178 8.0631 62.3118 9.0315H61.9515C62.1109 8.05613 62.5405 7.28977 63.2472 6.72545C63.9539 6.16113 64.8339 5.87549 65.9009 5.87549C67.1411 5.87549 68.1389 6.25867 68.901 7.02503C69.6632 7.79139 70.0443 8.84339 70.0443 10.181V17.768H68.4507V10.5154C68.4507 9.52615 68.1943 8.75282 67.6885 8.19547C67.1827 7.63812 66.4829 7.35944 65.596 7.35944C64.9586 7.35944 64.4112 7.50575 63.9539 7.79836C63.4966 8.09097 63.1433 8.48808 62.8938 8.98273C62.6444 9.47738 62.5266 10.0208 62.5266 10.606V17.761H60.9122V10.4876C60.9122 9.49828 60.6559 8.73192 60.1362 8.1885C59.6235 7.64508 58.9237 7.37337 58.0576 7.37337C57.4202 7.37337 56.8728 7.51968 56.4016 7.80532C55.9305 8.09096 55.5771 8.48111 55.3346 8.9688C55.0852 9.45648 54.9674 9.99293 54.9674 10.5851V17.761H54.9605Z\" fill=\"white\"/>\\n<path d=\"M77.8236 18.0465C76.715 18.0465 75.7311 17.7887 74.8858 17.2801C74.0405 16.7715 73.3753 16.0609 72.8973 15.1482C72.4192 14.2425 72.1836 13.1766 72.1836 11.9643C72.1836 10.7521 72.4192 9.71403 72.8834 8.7944C73.3476 7.87476 73.9989 7.15717 74.8234 6.64162C75.6479 6.12607 76.611 5.86133 77.6989 5.86133C78.7867 5.86133 79.6597 6.09124 80.4496 6.55802C81.2325 7.0248 81.8422 7.66576 82.2787 8.48089C82.7152 9.30298 82.93 10.2644 82.93 11.3652V12.1803H73.0774L73.1259 10.982H81.2879C81.2879 9.8673 80.9623 8.96857 80.304 8.29278C79.6458 7.61699 78.7728 7.27561 77.6989 7.27561C76.909 7.27561 76.2092 7.45675 75.6202 7.826C75.0244 8.19524 74.5671 8.71776 74.2553 9.39355C73.9366 10.0693 73.7772 10.8705 73.7772 11.7971C73.7772 13.3299 74.1306 14.5142 74.8373 15.3642C75.544 16.2072 76.5487 16.6322 77.8444 16.6322C78.7797 16.6322 79.5488 16.4301 80.1516 16.033C80.7544 15.6359 81.1632 15.0507 81.3641 14.2843H82.937C82.639 15.4966 82.0501 16.4232 81.1771 17.0711C80.3041 17.719 79.1885 18.0395 77.8236 18.0395V18.0465Z\" fill=\"white\"/>\\n<path d=\"M89.7169 18.0467C88.6083 18.0467 87.6521 17.782 86.8622 17.2594C86.0723 16.73 85.4557 16.0124 85.033 15.0927C84.6035 14.1731 84.3887 13.142 84.3887 11.9925C84.3887 10.8429 84.6035 9.78395 85.033 8.85735C85.4626 7.93075 86.0723 7.19922 86.8761 6.66974C87.6798 6.13329 88.6498 5.86854 89.7931 5.86854C90.7423 5.86854 91.5876 6.07755 92.329 6.4886C93.0634 6.90661 93.6316 7.53364 94.0334 8.37663V0.315918H95.6755V17.7541H94.2482L94.0819 15.3853C93.6662 16.2771 93.0842 16.9459 92.322 17.3848C91.5599 17.8238 90.6938 18.0397 89.7307 18.0397L89.7169 18.0467ZM90.0079 16.5418C90.867 16.5418 91.5876 16.3468 92.1696 15.9566C92.7586 15.5665 93.2089 15.0231 93.5276 14.3333C93.8464 13.6366 94.0057 12.8494 94.0057 11.9507C94.0057 11.0519 93.8464 10.2647 93.5276 9.58191C93.2089 8.89915 92.7586 8.35573 92.1696 7.95862C91.5807 7.5615 90.8601 7.35946 90.0079 7.35946C89.1556 7.35946 88.4766 7.5615 87.8807 7.95862C87.2849 8.35573 86.8345 8.89915 86.5227 9.58191C86.2109 10.2647 86.0585 11.0589 86.0585 11.9507C86.0585 12.8424 86.2109 13.6366 86.5227 14.3333C86.8345 15.03 87.2849 15.5665 87.8807 15.9566C88.4766 16.3468 89.1833 16.5418 90.0079 16.5418Z\" fill=\"white\"/>\\n<path d=\"M99.5524 2.99802C99.2198 2.99802 98.9357 2.87959 98.6932 2.63574C98.4576 2.39887 98.3398 2.11323 98.3398 1.77185C98.3398 1.43047 98.4576 1.14483 98.6932 0.900985C98.9288 0.657143 99.2198 0.531738 99.5524 0.531738C99.8849 0.531738 100.176 0.657143 100.418 0.900985C100.668 1.15179 100.786 1.43744 100.786 1.77185C100.786 2.10626 100.661 2.3919 100.418 2.63574C100.169 2.87262 99.8849 2.99802 99.5524 2.99802ZM98.7417 17.7609V6.1819H100.384V17.7609H98.7417Z\" fill=\"white\"/>\\n<path d=\"M102.643 11.9926C102.643 10.7803 102.878 9.71439 103.342 8.80172C103.807 7.88906 104.458 7.1645 105.296 6.64895C106.128 6.13339 107.098 5.86865 108.213 5.86865C109.544 5.86865 110.666 6.22396 111.581 6.94156C112.495 7.65915 113.056 8.61361 113.285 9.81192H111.643C111.421 9.01769 110.999 8.39764 110.382 7.97266C109.765 7.54071 109.052 7.32474 108.241 7.32474C107.479 7.32474 106.8 7.51284 106.197 7.89602C105.594 8.2792 105.123 8.81565 104.784 9.51235C104.444 10.209 104.271 11.0242 104.271 11.9647C104.271 12.9052 104.43 13.6925 104.749 14.3822C105.068 15.065 105.511 15.6014 106.093 15.9846C106.675 16.3678 107.347 16.5559 108.13 16.5559C109.003 16.5559 109.758 16.3399 110.389 15.901C111.026 15.4621 111.456 14.8699 111.678 14.1175H113.341C113.167 14.8978 112.835 15.5875 112.343 16.1727C111.851 16.7649 111.241 17.2247 110.521 17.5452C109.8 17.8657 109.003 18.0329 108.13 18.0329C107.035 18.0329 106.079 17.7821 105.262 17.2804C104.444 16.7788 103.807 16.0752 103.342 15.1625C102.885 14.2568 102.65 13.1909 102.65 11.9786L102.643 11.9926Z\" fill=\"white\"/>\\n<path d=\"M118.772 18.0467C117.553 18.0467 116.596 17.7262 115.903 17.0922C115.211 16.4513 114.871 15.6361 114.871 14.6259C114.871 13.56 115.252 12.7031 116.014 12.0691C116.776 11.4281 117.83 11.0589 119.181 10.9474L122.992 10.6339V10.2507C122.992 9.48435 122.853 8.88519 122.59 8.44628C122.319 8.00736 121.952 7.70082 121.495 7.52665C121.038 7.35247 120.518 7.2619 119.95 7.2619C118.938 7.2619 118.148 7.47788 117.594 7.90983C117.04 8.34177 116.763 8.94789 116.763 9.72819H115.266C115.266 8.94789 115.467 8.2721 115.862 7.69385C116.257 7.1156 116.811 6.67668 117.525 6.3562C118.238 6.03573 119.063 5.87549 119.998 5.87549C120.934 5.87549 121.696 6.02876 122.375 6.34227C123.054 6.65578 123.601 7.12953 124.003 7.77745C124.405 8.42538 124.613 9.25444 124.613 10.2786V17.768H123.234L123.019 15.7337C122.673 16.4652 122.119 17.0365 121.363 17.4475C120.608 17.8516 119.749 18.0606 118.786 18.0606L118.772 18.0467ZM119.153 16.709C120.372 16.709 121.315 16.3189 121.987 15.5386C122.659 14.7583 122.985 13.7411 122.985 12.501V11.881L119.583 12.1457C118.502 12.2432 117.726 12.515 117.248 12.9608C116.77 13.4067 116.534 13.9501 116.534 14.5841C116.534 15.2878 116.77 15.8173 117.248 16.1726C117.726 16.5279 118.356 16.709 119.153 16.709Z\" fill=\"white\"/>\\n<path d=\"M129.238 17.7611H127.596V0.315918H129.238V17.7541V17.7611Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l9ulq4\",\"data-framer-name\":\"logotype\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"12\" viewBox=\"0 0 26 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.5\">\\n<path d=\"M0.332031 2.48048L12.582 4.8144C12.8591 4.88407 13.1502 4.84923 13.3996 4.71686L20.841 0.843262L0.332031 2.48048Z\" fill=\"#DD2424\"/>\\n</g>\\n<path d=\"M25.9999 0L4.34766 11.2516H18.8633C19.4592 11.2516 20.0135 10.9241 20.2976 10.4016L25.9999 0Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"CONTACT US\"})}),className:\"framer-1qho9z4\",\"data-framer-name\":\"CONTACT US\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tzexv3 hidden-rsqwvx\",\"data-framer-name\":\"form\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ev5x\",\"data-framer-name\":\"input field\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12bj9sw\",\"data-framer-name\":\"label\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"Your name\"})}),className:\"framer-cwsip3\",\"data-framer-name\":\"Label\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})}),className:\"framer-16nd1vw\",\"data-framer-name\":\"Label\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-179eiyf\",\"data-border\":true,\"data-framer-name\":\"Input\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"First name\"})}),className:\"framer-1k0zruj\",\"data-framer-name\":\"Text\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ck3tml\",\"data-framer-name\":\"input field\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9w20pb\",\"data-framer-name\":\"label\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"Company\"})}),className:\"framer-1hrx2uz\",\"data-framer-name\":\"Label\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})}),className:\"framer-n1dpgh\",\"data-framer-name\":\"Label\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1md6iq8\",\"data-border\":true,\"data-framer-name\":\"Input\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"Enter your company name\"})}),className:\"framer-1mr95hx\",\"data-framer-name\":\"Text\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfruzc\",\"data-framer-name\":\"input field\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q8zit2\",\"data-framer-name\":\"label\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"Email\"})}),className:\"framer-1sg4twf\",\"data-framer-name\":\"Label\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})}),className:\"framer-c2asep\",\"data-framer-name\":\"Label\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-199nrf1\",\"data-border\":true,\"data-framer-name\":\"Input\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"you@company.com\"})}),className:\"framer-g0cpbd\",\"data-framer-name\":\"Text\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10i46gv\",\"data-framer-name\":\"input field\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wttjq3\",\"data-framer-name\":\"label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"Phone number (optional)\"})}),className:\"framer-t3u212\",\"data-framer-name\":\"Label\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-84hj43\",\"data-border\":true,\"data-framer-name\":\"Input\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"+1 (555) 000-0000\"})}),className:\"framer-ts9p6w\",\"data-framer-name\":\"Text\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jxv1i3 hidden-rsqwvx\",\"data-framer-name\":\"bottom\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-190h9vb\",\"data-framer-name\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"SUBMIT\"})}),className:\"framer-bvontd\",\"data-framer-name\":\"BUTTON\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXZlbmlyIE5leHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Avenir Next\", \"Avenir Next Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"A member of our team will reach out. We look forward to working with you!\"})}),className:\"framer-1n34ufd\",\"data-framer-name\":\"Choose how many laundry bags\",fonts:[\"GF;Avenir Next-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{onTap:onTap1wnntms({overlay:overlay1})}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n71pqx\",\"data-framer-name\":\"Icon/X\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mlg3qb\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.6925 22.8077C23.8098 22.9249 23.8757 23.084 23.8757 23.2499C23.8757 23.4157 23.8098 23.5748 23.6925 23.692C23.5753 23.8093 23.4162 23.8752 23.2503 23.8752C23.0845 23.8752 22.9254 23.8093 22.8082 23.692L12.0003 12.8842L1.19254 23.692C1.07526 23.8093 0.9162 23.8752 0.750347 23.8752C0.584495 23.8752 0.425436 23.8093 0.30816 23.692C0.190885 23.5748 0.125 23.4157 0.125 23.2499C0.125 23.084 0.190884 22.9249 0.30816 22.8077L11.116 11.9999L0.30816 1.19205C0.190884 1.07477 0.125 0.915712 0.125 0.749859C0.125 0.584007 0.190884 0.424947 0.30816 0.307671C0.425435 0.190396 0.584495 0.124512 0.750347 0.124512C0.9162 0.124512 1.07526 0.190396 1.19254 0.307671L12.0003 11.1155L22.8082 0.307671C22.8662 0.249603 22.9352 0.20354 23.011 0.172113C23.0869 0.140687 23.1682 0.124512 23.2503 0.124512C23.3325 0.124512 23.4138 0.140687 23.4897 0.172113C23.5655 0.20354 23.6345 0.249603 23.6925 0.307671C23.7506 0.36574 23.7967 0.434678 23.8281 0.510549C23.8595 0.58642 23.8757 0.667737 23.8757 0.749859C23.8757 0.831981 23.8595 0.913299 23.8281 0.989169C23.7967 1.06504 23.7506 1.13398 23.6925 1.19205L12.8847 11.9999L23.6925 22.8077Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(FormContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:cnwoHbvmxyrcLei0NJ,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,action:\"https://api.framer.com/forms/v1/forms/4ccb5042-65a5-4705-a5f3-4d528795b19e/submit\",className:\"framer-1dxymix\",nodeId:\"dOIeM0tsY\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-l7hge6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Your name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-12jm40x\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-199nhat\",inputName:\"Name\",placeholder:\"First name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1wfon2f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Company name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-4xm9k1\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-16ztsue\",inputName:\"Company Name\",placeholder:\"Enter your company name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1ubz962\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Email\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-1x9likj\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-13gv6x0\",inputName:\"Email\",placeholder:\"you@company.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-wi87lw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"Phone number (optional)\"})}),className:\"framer-1pymx97\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-ukyzzy\",inputName:\"Phone Number\",placeholder:\"+1 (555) 000-0000\",required:false,type:\"tel\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-banc6s\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"353px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-go67i7-container\",nodeId:\"quLOVmBo7\",scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(Button,{cIp3XkLPz:\"Submit\",height:\"100%\",id:\"quLOVmBo7\",layoutId:\"quLOVmBo7\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"wBbJXYPMP\",success:\"u_KZxgY5s\"},\"fZOMUra6V\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hcq83t\",\"data-framer-name\":\"widget\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXZlbmlyIE5leHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Avenir Next\", \"Avenir Next Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"A member of our team will reach out. We look forward to working with you!\"})}),className:\"framer-9l17nq\",\"data-framer-name\":\"Choose how many laundry bags\",fonts:[\"GF;Avenir Next-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})]})]}),getContainer())})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ol7k60\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-20+0+800+6.829),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/S5Kqyg13xBheUUdeREWqAa612Q.png\"}},IfSbnjFHM:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/S5Kqyg13xBheUUdeREWqAa612Q.png\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-46+0+1154+.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/S5Kqyg13xBheUUdeREWqAa612Q.png\"},className:\"framer-1g5801h\",\"data-framer-appear-id\":\"1g5801h\",\"data-framer-name\":\"Logo 01\",initial:animation3,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:37.402596012861224,intrinsicWidth:41.038959514111625,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-20+0+800+6.5),pixelHeight:72,pixelWidth:79,src:\"https://framerusercontent.com/images/dqRQmtiXImPTFOqcTWT2MnKhNs.png\"}},IfSbnjFHM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:37.402596012861224,intrinsicWidth:41.038959514111625,pixelHeight:72,pixelWidth:79,src:\"https://framerusercontent.com/images/dqRQmtiXImPTFOqcTWT2MnKhNs.png\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation4,background:{alt:\"\",fit:\"fill\",intrinsicHeight:37.402596012861224,intrinsicWidth:41.038959514111625,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-46+0+1154+.5),pixelHeight:72,pixelWidth:79,src:\"https://framerusercontent.com/images/dqRQmtiXImPTFOqcTWT2MnKhNs.png\"},className:\"framer-17jxy9g\",\"data-framer-appear-id\":\"17jxy9g\",\"data-framer-name\":\"Logo 02\",initial:animation3,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-20+0+800+6.829),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yMdBTsFAcHtheRZibhrJXz1O0.png\"}},IfSbnjFHM:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yMdBTsFAcHtheRZibhrJXz1O0.png\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation5,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-46+0+1154+.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yMdBTsFAcHtheRZibhrJXz1O0.png\"},className:\"framer-1dufehw\",\"data-framer-appear-id\":\"1dufehw\",\"data-framer-name\":\"Logo 03\",initial:animation3,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-20+0+800+6.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eMSIQjEH3fr7ARWs7R2LW5E.png\"}},IfSbnjFHM:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eMSIQjEH3fr7ARWs7R2LW5E.png\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-46+0+1154+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eMSIQjEH3fr7ARWs7R2LW5E.png\"},className:\"framer-10zswyi\",\"data-framer-appear-id\":\"10zswyi\",\"data-framer-name\":\"Logo 04\",initial:animation3,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-20+0+800+6.829),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MrqwtF0jPqa632Jh8DmP5b3HRU.png\"}},IfSbnjFHM:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MrqwtF0jPqa632Jh8DmP5b3HRU.png\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation7,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-46+0+1154+.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MrqwtF0jPqa632Jh8DmP5b3HRU.png\"},className:\"framer-1wccvcl\",\"data-framer-appear-id\":\"1wccvcl\",\"data-framer-name\":\"Logo 05\",initial:animation3,optimized:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14yxxls\",\"data-framer-name\":\"about\",id:elementId1,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:547,intrinsicWidth:773,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+64+283),pixelHeight:2188,pixelWidth:3092,positionX:\"center\",positionY:\"center\",sizes:\"360px\",src:\"https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png 3092w\"}},IfSbnjFHM:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:547,intrinsicWidth:773,pixelHeight:2188,pixelWidth:3092,positionX:\"center\",positionY:\"center\",sizes:\"577px\",src:\"https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png 3092w\"}},zucwW3iTy:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:547,intrinsicWidth:773,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+1157.8-486),pixelHeight:2188,pixelWidth:3092,positionX:\"center\",positionY:\"center\",sizes:\"487px\",src:\"https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png 3092w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:547,intrinsicWidth:773,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+1157.8-587),pixelHeight:2188,pixelWidth:3092,positionX:\"center\",positionY:\"center\",sizes:\"773px\",src:\"https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mpV051QwtDE7MEWe3h2kdPLw.png 3092w\"},className:\"framer-ayw7c0\",\"data-framer-name\":\"map\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1klm3jh\",\"data-framer-name\":\"content-top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16uxpo1\",\"data-framer-name\":\"overline\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m4t31d\",\"data-framer-name\":\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xuid91\",\"data-framer-name\":\"Ellipse 1086\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"ABOUT US\"})}),className:\"framer-qdz102\",\"data-framer-name\":\"word\",effect:textEffect3,fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Rapid Medical leads the market in last mile healthcare logistics software and services. \",/*#__PURE__*/_jsx(\"br\",{}),\"Our transformative approach enhances service levels, reduces costs, and provides delivery assurance for patients, care providers, service providers and payers.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Rapid Medical leads the market in last mile healthcare logistics software and services. Our transformative approach enhances service levels, reduces costs, and provides delivery assurance for patients, care providers, service providers and payers.\"})}),className:\"framer-1xu0cry\",\"data-framer-name\":\"text\",effect:textEffect4,fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ly4qn8\",\"data-framer-name\":\"stats\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nmd7cs\",\"data-framer-name\":\"overline\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e0tgze\",\"data-framer-name\":\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rpd4ta\",\"data-framer-name\":\"Ellipse 1086\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"our footprint\"})}),className:\"framer-1bx2029\",\"data-framer-name\":\"word\",effect:textEffect3,fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nholz8\",\"data-framer-name\":\"metrics\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11pybz\",\"data-framer-name\":\"metric\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hzxv7h\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1exers5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"c9sZndyMA\",scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(AnimatedCounter,{animationType:\"smooth\",color:\"rgb(255, 255, 255)\",decimalPlaces:0,decimalSeparator:\".\",duration:1,font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"48px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.08em\",lineHeight:\"1.5em\"},from:0,height:\"100%\",id:\"c9sZndyMA\",layoutId:\"c9sZndyMA\",once:true,playOnLoad:false,to:23,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"States\"})}),className:\"framer-1y3r3uw\",\"data-framer-name\":\"[P]--Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We currently operate medical logistics services across 23 states. \"})}),className:\"framer-lbhgey\",\"data-framer-name\":\"[P]--Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",effect:textEffect5,fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oj2xo4\",\"data-framer-name\":\"metric\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dlgpwc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pqd8dq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wiPvB2mly\",scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(AnimatedCounter,{animationType:\"smooth\",color:\"rgb(255, 255, 255)\",decimalPlaces:0,decimalSeparator:\".\",duration:1,font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"48px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.08em\",lineHeight:\"1.5em\"},from:0,height:\"100%\",id:\"wiPvB2mly\",layoutId:\"wiPvB2mly\",once:true,playOnLoad:false,to:20,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"-\"})}),className:\"framer-4ljjez\",\"data-framer-name\":\"[P]--Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eiz3de-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iDS2n2bcp\",scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(AnimatedCounter,{animationType:\"smooth\",color:\"rgb(255, 255, 255)\",decimalPlaces:0,decimalSeparator:\".\",duration:1,font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"48px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.08em\",lineHeight:\"1.5em\"},from:0,height:\"100%\",id:\"iDS2n2bcp\",layoutId:\"iDS2n2bcp\",once:true,playOnLoad:false,to:30,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"%\"})}),className:\"framer-8wc6wa\",\"data-framer-name\":\"[P]--Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Average reduction in logistics services expense.\"})}),className:\"framer-zyiil8\",\"data-framer-name\":\"[P]--Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",effect:textEffect5,fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o1e1m0\",\"data-framer-name\":\"our services-title\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-transform\":\"uppercase\"},children:\"who we are\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"who we are\"})}),className:\"framer-1b33zop\",\"data-framer-name\":\"title\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\"},children:\"We license our SaaS solution and provide logistics services to entities across the healthcare value chain.\"})}),className:\"framer-pgmc0k\",\"data-framer-name\":\"text\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mb6q7o\",\"data-framer-name\":\"features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-109ej88\",\"data-framer-name\":\"section-feature\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:612,intrinsicWidth:690,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2743.8+0+0+0+0),pixelHeight:496,pixelWidth:706,positionX:\"left\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/eT379l31xd3pM3BVmuWHhku1rA4.png\",srcSet:\"https://framerusercontent.com/images/eT379l31xd3pM3BVmuWHhku1rA4.png?scale-down-to=512 512w,https://framerusercontent.com/images/eT379l31xd3pM3BVmuWHhku1rA4.png 706w\"}},IfSbnjFHM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:612,intrinsicWidth:690,pixelHeight:1224,pixelWidth:1380,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 240px)`,src:\"https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png 1380w\"}},zucwW3iTy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:612,intrinsicWidth:690,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2633.8+0+0+0),pixelHeight:1224,pixelWidth:1380,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 240px) * 0.57)`,src:\"https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png 1380w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:612,intrinsicWidth:690,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2633.8+0+0+3.5),pixelHeight:1224,pixelWidth:1380,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 240px) * 0.57)`,src:\"https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hch0H2sWoC6B4rEn72EjsosNatw.png 1380w\"},className:\"framer-k4b8lk\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-egosl8\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5cd0a2\",\"data-framer-name\":\"overline\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w392l6\",\"data-framer-name\":\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8mtja5\",\"data-framer-name\":\"Ellipse 1086\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(79, 72, 72)\",\"--framer-text-transform\":\"uppercase\"},children:\"STREAMLINING LOGISTICS\"})}),className:\"framer-5dwzdf\",\"data-framer-name\":\"word\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-transform\":\"uppercase\"},children:\"End-to-end Software Solutions \"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-transform\":\"uppercase\"},children:\"End-to-end Software Solutions \"})}),className:\"framer-12ylx6k\",\"data-framer-name\":\"End-to-end Software Solutions\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(79, 72, 72)\"},children:\"Achieve up to 30% cost reduction on your last mile logistics costs. Gain full control and transparency on your routes and stops. Optimize your network and reduce costs with our software.\"})}),className:\"framer-l6rmy5\",\"data-framer-name\":\"Achieve up to 30% cost reduction on your last mile logistics costs.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{y:(componentViewport?.y||0)+0+2743.8+0+0+0+672+0+474},IfSbnjFHM:{y:undefined},zucwW3iTy:{y:(componentViewport?.y||0)+0+2633.8+0+0+18.6+0+532.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+2633.8+0+0+0+0+553.5,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m5xddd-container\",id:\"m5xddd\",nodeId:\"O0bm9gAU2\",rendersWithMotion:true,scopeId:\"i8duHiuqV\",children:[/*#__PURE__*/_jsx(Button1,{FDjwNEGrq:\"SCHEDULE A DEMO\",height:\"100%\",id:\"O0bm9gAU2\",iWguFTYzL:false,KPqt9K77a:\"20px 20px 20px 20px\",layoutId:\"O0bm9gAU2\",mefjRhawH:16,variant:\"DwytxQTGo\",width:\"100%\",wKctfNJMV:\"rgb(221, 36, 36)\",yNMrGq_Xp:yNMrGq_Xp3bnx0g({overlay:overlay2})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1rosjcz\"),\"data-framer-portal-id\":\"m5xddd\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"EwBHKV2jk\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-5vqgy2\"),\"data-framer-portal-id\":\"m5xddd\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{transformTemplate:undefined},IfSbnjFHM:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-1fyh9tq\"),\"data-framer-name\":\"modal-desktop\",\"data-framer-portal-id\":\"m5xddd\",transformTemplate:transformTemplate2,children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CONTACT US\"})}),className:\"framer-5agnic hidden-rsqwvx\",\"data-framer-name\":\"CONTACT US\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sy9t2 hidden-rsqwvx\",\"data-framer-name\":\"Icon/X\",onTap:onTap1wnntms({overlay:overlay2}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lswab3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.0291 27.9698C29.1698 28.1105 29.2489 28.3014 29.2489 28.5004C29.2489 28.6994 29.1698 28.8903 29.0291 29.031C28.8884 29.1718 28.6975 29.2508 28.4985 29.2508C28.2994 29.2508 28.1086 29.1718 27.9678 29.031L14.9985 16.0617L2.02909 29.031C1.88836 29.1718 1.69749 29.2508 1.49846 29.2508C1.29944 29.2508 1.10857 29.1718 0.967839 29.031C0.827109 28.8903 0.748047 28.6994 0.748047 28.5004C0.748047 28.3014 0.827108 28.1105 0.967839 27.9698L13.9372 15.0004L0.967839 2.03104C0.827108 1.89031 0.748047 1.69944 0.748047 1.50042C0.748047 1.30139 0.827108 1.11052 0.967839 0.969792C1.10857 0.829061 1.29944 0.75 1.49846 0.75C1.69749 0.75 1.88836 0.829061 2.02909 0.969792L14.9985 13.9392L27.9678 0.969792C28.0375 0.900109 28.1202 0.844834 28.2113 0.807122C28.3023 0.76941 28.3999 0.75 28.4985 0.75C28.597 0.75 28.6946 0.76941 28.7856 0.807122C28.8767 0.844834 28.9594 0.900109 29.0291 0.969792C29.0988 1.03947 29.154 1.1222 29.1918 1.21324C29.2295 1.30429 29.2489 1.40187 29.2489 1.50042C29.2489 1.59896 29.2295 1.69654 29.1918 1.78759C29.154 1.87863 29.0988 1.96136 29.0291 2.03104L16.0597 15.0004L29.0291 27.9698Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/5bb78e90-727b-490c-9dae-3070c3c8ec1a/submit\",className:\"framer-r0p2cn\",nodeId:\"iu22usm0n\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-zih3ex\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Your name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-1u1tpv9\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1b73x4g\",inputName:\"Name\",placeholder:\"First name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1clqtb8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Company name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-1a12weq\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-romwhd\",inputName:\"Company Name\",placeholder:\"Enter your company name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1ummtry\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Email\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-12oqj0w\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-cfukmu\",inputName:\"Email\",placeholder:\"you@company.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-r8fzym\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"Phone number (optional)\"})}),className:\"framer-1vqje8q\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1r897p9\",inputName:\"Phone Number\",placeholder:\"+1 (555) 000-0000\",required:false,type:\"tel\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i7mgz\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{width:\"calc(100vw - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1twpawm-container\",inComponentSlot:true,nodeId:\"dKPLWrxdG\",rendersWithMotion:true,scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{cIp3XkLPz:\"Submit\",height:\"100%\",id:\"dKPLWrxdG\",layoutId:\"dKPLWrxdG\",type:\"submit\",variant:formVariants(formState,{pending:\"wBbJXYPMP\",success:\"u_KZxgY5s\"},\"fZOMUra6V\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xxwop4\",\"data-framer-name\":\"widget\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXZlbmlyIE5leHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Avenir Next\", \"Avenir Next Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"A member of our team will reach out. We look forward to working with you!\"})}),className:\"framer-f68f9h\",\"data-framer-name\":\"Choose how many laundry bags\",fonts:[\"GF;Avenir Next-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g3o2ur hidden-14p5v8k hidden-m9yega hidden-13ch8uq\",\"data-framer-name\":\"headline\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15p9qob\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q7dpcu\",\"data-framer-name\":\"logotype\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16rfm4u\",\"data-framer-name\":\"logotype\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"23\" viewBox=\"0 0 130 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.66542 5.96564V8.02088H5.66769C4.60067 8.02088 3.76922 8.32742 3.15949 8.94051C2.54977 9.5536 2.2449 10.4245 2.2449 11.5601V17.7536H0V6.08408H2.09247L2.27955 8.43193H2.06476C2.22412 7.66557 2.6052 7.03854 3.20799 6.55086C3.81079 6.06318 4.56602 5.81934 5.46676 5.81934C5.67462 5.81934 5.86862 5.83327 6.04877 5.85417C6.22891 5.87507 6.42985 5.91687 6.65849 5.95867L6.66542 5.96564Z\" fill=\"white\"/>\\n<path d=\"M11.3286 18.0465C10.0884 18.0465 9.11839 17.7191 8.41166 17.0642C7.70493 16.4093 7.35156 15.5593 7.35156 14.5073C7.35156 13.4553 7.73264 12.5844 8.4948 11.9365C9.25696 11.2886 10.3171 10.9124 11.682 10.8009L15.3473 10.5153V10.1809C15.3473 9.52597 15.2295 9.00345 14.987 8.6133C14.7514 8.22316 14.4258 7.94448 14.0101 7.77728C13.5943 7.61007 13.1301 7.52647 12.6035 7.52647C11.6682 7.52647 10.9406 7.72154 10.4279 8.11169C9.91519 8.50183 9.6519 9.05919 9.6519 9.77678H7.698C7.698 8.96165 7.90586 8.25102 8.31465 7.6449C8.72345 7.03878 9.31239 6.56503 10.0607 6.23062C10.8159 5.89621 11.6889 5.729 12.6867 5.729C13.6844 5.729 14.502 5.90318 15.2226 6.24455C15.9432 6.58593 16.5044 7.10845 16.9132 7.79818C17.3151 8.49487 17.5229 9.36573 17.5229 10.4177V17.7609H15.6175L15.3819 15.8728C15.0771 16.5416 14.5574 17.0711 13.823 17.4613C13.0885 17.8514 12.2502 18.0465 11.3148 18.0465H11.3286ZM11.9661 16.2978C13.0262 16.2978 13.8646 15.9773 14.4674 15.3294C15.0702 14.6815 15.3681 13.8106 15.3681 12.7098V12.0898L12.3957 12.3267C11.4118 12.4242 10.6981 12.6541 10.2686 13.0234C9.83897 13.3926 9.61725 13.8594 9.61725 14.4376C9.61725 15.0577 9.82511 15.5245 10.2478 15.838C10.6704 16.1515 11.2455 16.3048 11.973 16.3048L11.9661 16.2978Z\" fill=\"white\"/>\\n<path d=\"M20.2715 23.0001V6.06355H22.2947L22.461 8.16755C22.842 7.35242 23.4102 6.7463 24.1654 6.33526C24.9207 5.92421 25.7521 5.72217 26.6736 5.72217C27.7822 5.72217 28.7453 5.97994 29.549 6.50246C30.3597 7.01801 30.9833 7.7356 31.4198 8.65524C31.8563 9.57487 32.078 10.6269 32.078 11.8252C32.078 13.0235 31.8702 14.0894 31.4475 15.03C31.0248 15.9705 30.4151 16.7159 29.6183 17.2524C28.8146 17.7958 27.8376 18.0675 26.6805 18.0675C25.7452 18.0675 24.9137 17.8794 24.1793 17.4962C23.4518 17.1131 22.8905 16.5627 22.5164 15.8451V23.0001H20.2784H20.2715ZM22.5302 11.9227C22.5302 12.703 22.6757 13.4067 22.9668 14.0407C23.2578 14.6746 23.6804 15.1623 24.2278 15.5107C24.7751 15.859 25.4264 16.0332 26.1886 16.0332C26.9508 16.0332 27.6021 15.8521 28.1425 15.4967C28.6829 15.1414 29.0987 14.6468 29.3897 14.0267C29.6807 13.4067 29.8262 12.703 29.8262 11.9227C29.8262 11.1424 29.6807 10.39 29.3897 9.76994C29.0987 9.14989 28.676 8.6622 28.1425 8.31386C27.6021 7.96551 26.9508 7.79134 26.1886 7.79134C25.4264 7.79134 24.7751 7.96551 24.2278 8.31386C23.6804 8.6622 23.2578 9.14989 22.9668 9.76994C22.6757 10.39 22.5302 11.1076 22.5302 11.9227Z\" fill=\"white\"/>\\n<path d=\"M35.2892 3.28382C34.8943 3.28382 34.5478 3.13752 34.2568 2.83794C33.9658 2.54533 33.8203 2.19698 33.8203 1.79987C33.8203 1.40276 33.9658 1.03351 34.2568 0.747866C34.5478 0.462223 34.8943 0.315918 35.2892 0.315918C35.6841 0.315918 36.0514 0.462223 36.3354 0.747866C36.6195 1.03351 36.765 1.38882 36.765 1.79987C36.765 2.21092 36.6195 2.54533 36.3354 2.83794C36.0514 3.13055 35.698 3.28382 35.2892 3.28382ZM34.1945 17.7611V6.06362H36.4324V17.7611H34.1945Z\" fill=\"white\"/>\\n<path d=\"M43.9721 18.0464C42.8496 18.0464 41.8796 17.7886 41.0689 17.2661C40.2583 16.7506 39.6347 16.026 39.1982 15.0994C38.7617 14.1728 38.5469 13.1208 38.5469 11.9434C38.5469 10.766 38.7686 9.67917 39.212 8.75257C39.6555 7.819 40.2929 7.08051 41.1174 6.53709C41.9419 5.99367 42.9258 5.72196 44.0691 5.72196C44.9698 5.72196 45.7805 5.91007 46.4803 6.28628C47.187 6.6625 47.7344 7.21288 48.1362 7.95137V0.148438H50.3465V17.7538H48.351L48.1639 15.6219C47.7829 16.4022 47.2216 17.0014 46.4872 17.4194C45.7527 17.8304 44.9144 18.0395 43.979 18.0395L43.9721 18.0464ZM44.4224 16.0121C45.1846 16.0121 45.8359 15.8379 46.3833 15.4826C46.9306 15.1343 47.3533 14.6466 47.6581 14.0265C47.9561 13.4065 48.1085 12.6889 48.1085 11.8737C48.1085 11.0586 47.9561 10.348 47.6581 9.7349C47.3533 9.12181 46.9306 8.6411 46.3833 8.28578C45.8359 7.93744 45.1846 7.76327 44.4224 7.76327C43.6603 7.76327 43.009 7.94441 42.4755 8.29972C41.935 8.65503 41.5193 9.14271 41.2352 9.7558C40.9511 10.3689 40.8056 11.0725 40.8056 11.8737C40.8056 12.6749 40.9511 13.4065 41.2352 14.0265C41.5193 14.6466 41.935 15.1343 42.4755 15.4826C43.0159 15.8309 43.6672 16.0121 44.4224 16.0121Z\" fill=\"white\"/>\\n<path d=\"M54.9605 17.761H53.3184V6.18203H54.7457L54.9813 8.35571L54.7457 8.28604C54.9813 7.55451 55.4316 6.96929 56.0898 6.53038C56.7481 6.09146 57.5241 5.87549 58.411 5.87549C59.4433 5.87549 60.3025 6.16113 60.9884 6.72545C61.6744 7.28977 62.1178 8.0631 62.3118 9.0315H61.9515C62.1109 8.05613 62.5405 7.28977 63.2472 6.72545C63.9539 6.16113 64.8339 5.87549 65.9009 5.87549C67.1411 5.87549 68.1389 6.25867 68.901 7.02503C69.6632 7.79139 70.0443 8.84339 70.0443 10.181V17.768H68.4507V10.5154C68.4507 9.52615 68.1943 8.75282 67.6885 8.19547C67.1827 7.63812 66.4829 7.35944 65.596 7.35944C64.9586 7.35944 64.4112 7.50575 63.9539 7.79836C63.4966 8.09097 63.1433 8.48808 62.8938 8.98273C62.6444 9.47738 62.5266 10.0208 62.5266 10.606V17.761H60.9122V10.4876C60.9122 9.49828 60.6559 8.73192 60.1362 8.1885C59.6235 7.64508 58.9237 7.37337 58.0576 7.37337C57.4202 7.37337 56.8728 7.51968 56.4016 7.80532C55.9305 8.09096 55.5771 8.48111 55.3346 8.9688C55.0852 9.45648 54.9674 9.99293 54.9674 10.5851V17.761H54.9605Z\" fill=\"white\"/>\\n<path d=\"M77.8236 18.0465C76.715 18.0465 75.7311 17.7887 74.8858 17.2801C74.0405 16.7715 73.3753 16.0609 72.8973 15.1482C72.4192 14.2425 72.1836 13.1766 72.1836 11.9643C72.1836 10.7521 72.4192 9.71403 72.8834 8.7944C73.3476 7.87476 73.9989 7.15717 74.8234 6.64162C75.6479 6.12607 76.611 5.86133 77.6989 5.86133C78.7867 5.86133 79.6597 6.09124 80.4496 6.55802C81.2325 7.0248 81.8422 7.66576 82.2787 8.48089C82.7152 9.30298 82.93 10.2644 82.93 11.3652V12.1803H73.0774L73.1259 10.982H81.2879C81.2879 9.8673 80.9623 8.96857 80.304 8.29278C79.6458 7.61699 78.7728 7.27561 77.6989 7.27561C76.909 7.27561 76.2092 7.45675 75.6202 7.826C75.0244 8.19524 74.5671 8.71776 74.2553 9.39355C73.9366 10.0693 73.7772 10.8705 73.7772 11.7971C73.7772 13.3299 74.1306 14.5142 74.8373 15.3642C75.544 16.2072 76.5487 16.6322 77.8444 16.6322C78.7797 16.6322 79.5488 16.4301 80.1516 16.033C80.7544 15.6359 81.1632 15.0507 81.3641 14.2843H82.937C82.639 15.4966 82.0501 16.4232 81.1771 17.0711C80.3041 17.719 79.1885 18.0395 77.8236 18.0395V18.0465Z\" fill=\"white\"/>\\n<path d=\"M89.7169 18.0467C88.6083 18.0467 87.6521 17.782 86.8622 17.2594C86.0723 16.73 85.4557 16.0124 85.033 15.0927C84.6035 14.1731 84.3887 13.142 84.3887 11.9925C84.3887 10.8429 84.6035 9.78395 85.033 8.85735C85.4626 7.93075 86.0723 7.19922 86.8761 6.66974C87.6798 6.13329 88.6498 5.86854 89.7931 5.86854C90.7423 5.86854 91.5876 6.07755 92.329 6.4886C93.0634 6.90661 93.6316 7.53364 94.0334 8.37663V0.315918H95.6755V17.7541H94.2482L94.0819 15.3853C93.6662 16.2771 93.0842 16.9459 92.322 17.3848C91.5599 17.8238 90.6938 18.0397 89.7307 18.0397L89.7169 18.0467ZM90.0079 16.5418C90.867 16.5418 91.5876 16.3468 92.1696 15.9566C92.7586 15.5665 93.2089 15.0231 93.5276 14.3333C93.8464 13.6366 94.0057 12.8494 94.0057 11.9507C94.0057 11.0519 93.8464 10.2647 93.5276 9.58191C93.2089 8.89915 92.7586 8.35573 92.1696 7.95862C91.5807 7.5615 90.8601 7.35946 90.0079 7.35946C89.1556 7.35946 88.4766 7.5615 87.8807 7.95862C87.2849 8.35573 86.8345 8.89915 86.5227 9.58191C86.2109 10.2647 86.0585 11.0589 86.0585 11.9507C86.0585 12.8424 86.2109 13.6366 86.5227 14.3333C86.8345 15.03 87.2849 15.5665 87.8807 15.9566C88.4766 16.3468 89.1833 16.5418 90.0079 16.5418Z\" fill=\"white\"/>\\n<path d=\"M99.5524 2.99802C99.2198 2.99802 98.9357 2.87959 98.6932 2.63574C98.4576 2.39887 98.3398 2.11323 98.3398 1.77185C98.3398 1.43047 98.4576 1.14483 98.6932 0.900985C98.9288 0.657143 99.2198 0.531738 99.5524 0.531738C99.8849 0.531738 100.176 0.657143 100.418 0.900985C100.668 1.15179 100.786 1.43744 100.786 1.77185C100.786 2.10626 100.661 2.3919 100.418 2.63574C100.169 2.87262 99.8849 2.99802 99.5524 2.99802ZM98.7417 17.7609V6.1819H100.384V17.7609H98.7417Z\" fill=\"white\"/>\\n<path d=\"M102.643 11.9926C102.643 10.7803 102.878 9.71439 103.342 8.80172C103.807 7.88906 104.458 7.1645 105.296 6.64895C106.128 6.13339 107.098 5.86865 108.213 5.86865C109.544 5.86865 110.666 6.22396 111.581 6.94156C112.495 7.65915 113.056 8.61361 113.285 9.81192H111.643C111.421 9.01769 110.999 8.39764 110.382 7.97266C109.765 7.54071 109.052 7.32474 108.241 7.32474C107.479 7.32474 106.8 7.51284 106.197 7.89602C105.594 8.2792 105.123 8.81565 104.784 9.51235C104.444 10.209 104.271 11.0242 104.271 11.9647C104.271 12.9052 104.43 13.6925 104.749 14.3822C105.068 15.065 105.511 15.6014 106.093 15.9846C106.675 16.3678 107.347 16.5559 108.13 16.5559C109.003 16.5559 109.758 16.3399 110.389 15.901C111.026 15.4621 111.456 14.8699 111.678 14.1175H113.341C113.167 14.8978 112.835 15.5875 112.343 16.1727C111.851 16.7649 111.241 17.2247 110.521 17.5452C109.8 17.8657 109.003 18.0329 108.13 18.0329C107.035 18.0329 106.079 17.7821 105.262 17.2804C104.444 16.7788 103.807 16.0752 103.342 15.1625C102.885 14.2568 102.65 13.1909 102.65 11.9786L102.643 11.9926Z\" fill=\"white\"/>\\n<path d=\"M118.772 18.0467C117.553 18.0467 116.596 17.7262 115.903 17.0922C115.211 16.4513 114.871 15.6361 114.871 14.6259C114.871 13.56 115.252 12.7031 116.014 12.0691C116.776 11.4281 117.83 11.0589 119.181 10.9474L122.992 10.6339V10.2507C122.992 9.48435 122.853 8.88519 122.59 8.44628C122.319 8.00736 121.952 7.70082 121.495 7.52665C121.038 7.35247 120.518 7.2619 119.95 7.2619C118.938 7.2619 118.148 7.47788 117.594 7.90983C117.04 8.34177 116.763 8.94789 116.763 9.72819H115.266C115.266 8.94789 115.467 8.2721 115.862 7.69385C116.257 7.1156 116.811 6.67668 117.525 6.3562C118.238 6.03573 119.063 5.87549 119.998 5.87549C120.934 5.87549 121.696 6.02876 122.375 6.34227C123.054 6.65578 123.601 7.12953 124.003 7.77745C124.405 8.42538 124.613 9.25444 124.613 10.2786V17.768H123.234L123.019 15.7337C122.673 16.4652 122.119 17.0365 121.363 17.4475C120.608 17.8516 119.749 18.0606 118.786 18.0606L118.772 18.0467ZM119.153 16.709C120.372 16.709 121.315 16.3189 121.987 15.5386C122.659 14.7583 122.985 13.7411 122.985 12.501V11.881L119.583 12.1457C118.502 12.2432 117.726 12.515 117.248 12.9608C116.77 13.4067 116.534 13.9501 116.534 14.5841C116.534 15.2878 116.77 15.8173 117.248 16.1726C117.726 16.5279 118.356 16.709 119.153 16.709Z\" fill=\"white\"/>\\n<path d=\"M129.238 17.7611H127.596V0.315918H129.238V17.7541V17.7611Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fnvday\",\"data-framer-name\":\"logotype\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"12\" viewBox=\"0 0 26 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.5\">\\n<path d=\"M0.332031 2.48048L12.582 4.8144C12.8591 4.88407 13.1502 4.84923 13.3996 4.71686L20.841 0.843262L0.332031 2.48048Z\" fill=\"#DD2424\"/>\\n</g>\\n<path d=\"M25.9999 0L4.34766 11.2516H18.8633C19.4592 11.2516 20.0135 10.9241 20.2976 10.4016L25.9999 0Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-103o0id\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cy2sih\",\"data-framer-name\":\"Icon/List\",onTap:onTap1wnntms({overlay:overlay2}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-w1kojn\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 18\"><path d=\"M 22.5 0 L 0.5 0 C 0.367 0 0.24 0.053 0.146 0.146 C 0.053 0.24 0 0.367 0 0.5 C 0 0.633 0.053 0.76 0.146 0.854 C 0.24 0.947 0.367 1 0.5 1 L 22.5 1 C 22.633 1 22.76 0.947 22.854 0.854 C 22.947 0.76 23 0.633 23 0.5 C 23 0.367 22.947 0.24 22.854 0.146 C 22.76 0.053 22.633 0 22.5 0 Z\" transform=\"translate(0.5 8.5) rotate(-45 11.5 0.5)\" fill=\"rgb(221, 36, 36)\"></path><path d=\"M 0.5 1 L 22.5 1 C 22.633 1 22.76 0.947 22.854 0.854 C 22.947 0.76 23 0.633 23 0.5 C 23 0.367 22.947 0.24 22.854 0.146 C 22.76 0.053 22.633 0 22.5 0 L 0.5 0 C 0.367 0 0.24 0.053 0.146 0.146 C 0.053 0.24 0 0.367 0 0.5 C 0 0.633 0.053 0.76 0.146 0.854 C 0.24 0.947 0.367 1 0.5 1 Z\" transform=\"translate(0.5 8.5) rotate(45 11.5 0.5)\" fill=\"rgb(221, 36, 36)\"></path><path d=\"M 12.5 9 C 12.5 9.133 12.498 9.26 12.494 9.354 C 12.49 9.447 12.484 9.5 12.478 9.5 L 11.522 9.5 C 11.516 9.5 11.51 9.447 11.506 9.354 C 11.502 9.26 11.5 9.133 11.5 9 C 11.5 8.867 11.502 8.74 11.506 8.646 C 11.51 8.553 11.516 8.5 11.522 8.5 L 12.478 8.5 C 12.484 8.5 12.49 8.553 12.494 8.646 C 12.498 8.74 12.5 8.867 12.5 9 Z\" fill=\"rgb(221, 36, 36)\"></path></svg>',svgContentId:11927882507,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"CONTACT US\"})}),className:\"framer-pkrj5h\",\"data-framer-name\":\"CONTACT US\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})]}),getContainer())})})]})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vick5n\",\"data-framer-name\":\"section-feature\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kbibjb\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10ieoa1\",\"data-framer-name\":\"overline\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l629y2\",\"data-framer-name\":\"dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-120y9gc\",\"data-framer-name\":\"Ellipse 1086\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(79, 72, 72)\",\"--framer-text-transform\":\"uppercase\"},children:\"ENSURING TIMELY MEDICAL DELIVERIES\"})}),className:\"framer-ipndnt\",\"data-framer-name\":\"word\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-transform\":\"uppercase\"},children:\"a new approach to Last-mile \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-transform\":\"uppercase\"},children:\"Logistics \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-transform\":\"uppercase\"},children:\"Services \"})]}),verticalAlignment:\"top\"}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-transform\":\"uppercase\"},children:\"a new approach to Last-mile \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-transform\":\"uppercase\"},children:\"Logistics \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-transform\":\"uppercase\"},children:\"Services \"})]}),className:\"framer-1q2kwl7\",\"data-framer-name\":\"Last-mile Logistics Services\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(79, 72, 72)\"},children:\"We provide fully-tech enabled services that eliminate wasteful movement, optimize your last mile operations, and drive down costs while enhancing service levels. Old guard logistics providers use a black box to obscure how they operate your network and what they charge you for. We take a different approach: we empower you to monitor your routes & stops, track your operational efficiency and understand how you\u2019re billed.  \"})}),className:\"framer-1udml65\",\"data-framer-name\":\"Fully-tech enabled services that eliminate wasteful movement, optimize your last mile operations, and drive down costs while enhancing service levels.\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{y:(componentViewport?.y||0)+0+2743.8+0+1218+30+308+0+914},IfSbnjFHM:{y:undefined},zucwW3iTy:{y:(componentViewport?.y||0)+0+2633.8+0+812+0+0+1058}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+2633.8+0+819+0+0+817.5,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-184bi9y-container\",id:\"184bi9y\",nodeId:\"HieOTwNp7\",rendersWithMotion:true,scopeId:\"i8duHiuqV\",children:[/*#__PURE__*/_jsx(Button1,{FDjwNEGrq:\"GET A NETWORK EVALUATION\",height:\"100%\",id:\"HieOTwNp7\",iWguFTYzL:false,KPqt9K77a:\"20px 20px 20px 20px\",layoutId:\"HieOTwNp7\",mefjRhawH:16,variant:\"DwytxQTGo\",width:\"100%\",wKctfNJMV:\"rgb(221, 36, 36)\",yNMrGq_Xp:yNMrGq_Xp3bnx0g({overlay:overlay3})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-vq1idw\"),\"data-framer-portal-id\":\"184bi9y\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"HGQfZMZYO\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-mzt8uf\"),\"data-framer-portal-id\":\"184bi9y\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{transformTemplate:undefined},IfSbnjFHM:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-bmui3o\"),\"data-framer-name\":\"modal-desktop\",\"data-framer-portal-id\":\"184bi9y\",transformTemplate:transformTemplate2,children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CONTACT US\"})}),className:\"framer-1lxnaqm hidden-rsqwvx\",\"data-framer-name\":\"CONTACT US\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rh5h0e hidden-rsqwvx\",\"data-framer-name\":\"Icon/X\",onTap:onTap1wnntms({overlay:overlay3}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4dw6lh\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.0291 27.9698C29.1698 28.1105 29.2489 28.3014 29.2489 28.5004C29.2489 28.6994 29.1698 28.8903 29.0291 29.031C28.8884 29.1718 28.6975 29.2508 28.4985 29.2508C28.2994 29.2508 28.1086 29.1718 27.9678 29.031L14.9985 16.0617L2.02909 29.031C1.88836 29.1718 1.69749 29.2508 1.49846 29.2508C1.29944 29.2508 1.10857 29.1718 0.967839 29.031C0.827109 28.8903 0.748047 28.6994 0.748047 28.5004C0.748047 28.3014 0.827108 28.1105 0.967839 27.9698L13.9372 15.0004L0.967839 2.03104C0.827108 1.89031 0.748047 1.69944 0.748047 1.50042C0.748047 1.30139 0.827108 1.11052 0.967839 0.969792C1.10857 0.829061 1.29944 0.75 1.49846 0.75C1.69749 0.75 1.88836 0.829061 2.02909 0.969792L14.9985 13.9392L27.9678 0.969792C28.0375 0.900109 28.1202 0.844834 28.2113 0.807122C28.3023 0.76941 28.3999 0.75 28.4985 0.75C28.597 0.75 28.6946 0.76941 28.7856 0.807122C28.8767 0.844834 28.9594 0.900109 29.0291 0.969792C29.0988 1.03947 29.154 1.1222 29.1918 1.21324C29.2295 1.30429 29.2489 1.40187 29.2489 1.50042C29.2489 1.59896 29.2295 1.69654 29.1918 1.78759C29.154 1.87863 29.0988 1.96136 29.0291 2.03104L16.0597 15.0004L29.0291 27.9698Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/cc618f50-e12c-4cf1-ae21-14e6d37f4bc3/submit\",className:\"framer-dycin3\",nodeId:\"AtqX0vxLG\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1qib0u1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Your name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-1rpxme5\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1l7e6i4\",inputName:\"Name\",placeholder:\"First name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1j2qx2t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Company name\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-1cxxbym\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-19cp6nf\",inputName:\"Company Name\",placeholder:\"Enter your company name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-10a5uwp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:[\"Email\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(221, 36, 36)\"},children:\"*\"})]})}),className:\"framer-105m3d3\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1p5r2to\",inputName:\"Email\",placeholder:\"you@company.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1xhbwwa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"Phone number (optional)\"})}),className:\"framer-f7z7q6\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-cdoxnf\",inputName:\"Phone Number\",placeholder:\"+1 (555) 000-0000\",required:false,type:\"tel\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xoonxx\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{width:\"calc(100vw - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e4dksk-container\",inComponentSlot:true,nodeId:\"FxirR55SW\",rendersWithMotion:true,scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{cIp3XkLPz:\"Submit\",height:\"100%\",id:\"FxirR55SW\",layoutId:\"FxirR55SW\",type:\"submit\",variant:formVariants(formState,{pending:\"wBbJXYPMP\",success:\"u_KZxgY5s\"},\"fZOMUra6V\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18kauub\",\"data-framer-name\":\"widget\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXZlbmlyIE5leHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Avenir Next\", \"Avenir Next Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(196, 188, 188)\"},children:\"A member of our team will reach out. We look forward to working with you!\"})}),className:\"framer-1qz3t7s\",\"data-framer-name\":\"Choose how many laundry bags\",fonts:[\"GF;Avenir Next-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10mus89 hidden-14p5v8k hidden-m9yega hidden-13ch8uq\",\"data-framer-name\":\"headline\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rwvpp5\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6h65lr\",\"data-framer-name\":\"logotype\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17sr3cr\",\"data-framer-name\":\"logotype\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"23\" viewBox=\"0 0 130 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.66542 5.96564V8.02088H5.66769C4.60067 8.02088 3.76922 8.32742 3.15949 8.94051C2.54977 9.5536 2.2449 10.4245 2.2449 11.5601V17.7536H0V6.08408H2.09247L2.27955 8.43193H2.06476C2.22412 7.66557 2.6052 7.03854 3.20799 6.55086C3.81079 6.06318 4.56602 5.81934 5.46676 5.81934C5.67462 5.81934 5.86862 5.83327 6.04877 5.85417C6.22891 5.87507 6.42985 5.91687 6.65849 5.95867L6.66542 5.96564Z\" fill=\"white\"/>\\n<path d=\"M11.3286 18.0465C10.0884 18.0465 9.11839 17.7191 8.41166 17.0642C7.70493 16.4093 7.35156 15.5593 7.35156 14.5073C7.35156 13.4553 7.73264 12.5844 8.4948 11.9365C9.25696 11.2886 10.3171 10.9124 11.682 10.8009L15.3473 10.5153V10.1809C15.3473 9.52597 15.2295 9.00345 14.987 8.6133C14.7514 8.22316 14.4258 7.94448 14.0101 7.77728C13.5943 7.61007 13.1301 7.52647 12.6035 7.52647C11.6682 7.52647 10.9406 7.72154 10.4279 8.11169C9.91519 8.50183 9.6519 9.05919 9.6519 9.77678H7.698C7.698 8.96165 7.90586 8.25102 8.31465 7.6449C8.72345 7.03878 9.31239 6.56503 10.0607 6.23062C10.8159 5.89621 11.6889 5.729 12.6867 5.729C13.6844 5.729 14.502 5.90318 15.2226 6.24455C15.9432 6.58593 16.5044 7.10845 16.9132 7.79818C17.3151 8.49487 17.5229 9.36573 17.5229 10.4177V17.7609H15.6175L15.3819 15.8728C15.0771 16.5416 14.5574 17.0711 13.823 17.4613C13.0885 17.8514 12.2502 18.0465 11.3148 18.0465H11.3286ZM11.9661 16.2978C13.0262 16.2978 13.8646 15.9773 14.4674 15.3294C15.0702 14.6815 15.3681 13.8106 15.3681 12.7098V12.0898L12.3957 12.3267C11.4118 12.4242 10.6981 12.6541 10.2686 13.0234C9.83897 13.3926 9.61725 13.8594 9.61725 14.4376C9.61725 15.0577 9.82511 15.5245 10.2478 15.838C10.6704 16.1515 11.2455 16.3048 11.973 16.3048L11.9661 16.2978Z\" fill=\"white\"/>\\n<path d=\"M20.2715 23.0001V6.06355H22.2947L22.461 8.16755C22.842 7.35242 23.4102 6.7463 24.1654 6.33526C24.9207 5.92421 25.7521 5.72217 26.6736 5.72217C27.7822 5.72217 28.7453 5.97994 29.549 6.50246C30.3597 7.01801 30.9833 7.7356 31.4198 8.65524C31.8563 9.57487 32.078 10.6269 32.078 11.8252C32.078 13.0235 31.8702 14.0894 31.4475 15.03C31.0248 15.9705 30.4151 16.7159 29.6183 17.2524C28.8146 17.7958 27.8376 18.0675 26.6805 18.0675C25.7452 18.0675 24.9137 17.8794 24.1793 17.4962C23.4518 17.1131 22.8905 16.5627 22.5164 15.8451V23.0001H20.2784H20.2715ZM22.5302 11.9227C22.5302 12.703 22.6757 13.4067 22.9668 14.0407C23.2578 14.6746 23.6804 15.1623 24.2278 15.5107C24.7751 15.859 25.4264 16.0332 26.1886 16.0332C26.9508 16.0332 27.6021 15.8521 28.1425 15.4967C28.6829 15.1414 29.0987 14.6468 29.3897 14.0267C29.6807 13.4067 29.8262 12.703 29.8262 11.9227C29.8262 11.1424 29.6807 10.39 29.3897 9.76994C29.0987 9.14989 28.676 8.6622 28.1425 8.31386C27.6021 7.96551 26.9508 7.79134 26.1886 7.79134C25.4264 7.79134 24.7751 7.96551 24.2278 8.31386C23.6804 8.6622 23.2578 9.14989 22.9668 9.76994C22.6757 10.39 22.5302 11.1076 22.5302 11.9227Z\" fill=\"white\"/>\\n<path d=\"M35.2892 3.28382C34.8943 3.28382 34.5478 3.13752 34.2568 2.83794C33.9658 2.54533 33.8203 2.19698 33.8203 1.79987C33.8203 1.40276 33.9658 1.03351 34.2568 0.747866C34.5478 0.462223 34.8943 0.315918 35.2892 0.315918C35.6841 0.315918 36.0514 0.462223 36.3354 0.747866C36.6195 1.03351 36.765 1.38882 36.765 1.79987C36.765 2.21092 36.6195 2.54533 36.3354 2.83794C36.0514 3.13055 35.698 3.28382 35.2892 3.28382ZM34.1945 17.7611V6.06362H36.4324V17.7611H34.1945Z\" fill=\"white\"/>\\n<path d=\"M43.9721 18.0464C42.8496 18.0464 41.8796 17.7886 41.0689 17.2661C40.2583 16.7506 39.6347 16.026 39.1982 15.0994C38.7617 14.1728 38.5469 13.1208 38.5469 11.9434C38.5469 10.766 38.7686 9.67917 39.212 8.75257C39.6555 7.819 40.2929 7.08051 41.1174 6.53709C41.9419 5.99367 42.9258 5.72196 44.0691 5.72196C44.9698 5.72196 45.7805 5.91007 46.4803 6.28628C47.187 6.6625 47.7344 7.21288 48.1362 7.95137V0.148438H50.3465V17.7538H48.351L48.1639 15.6219C47.7829 16.4022 47.2216 17.0014 46.4872 17.4194C45.7527 17.8304 44.9144 18.0395 43.979 18.0395L43.9721 18.0464ZM44.4224 16.0121C45.1846 16.0121 45.8359 15.8379 46.3833 15.4826C46.9306 15.1343 47.3533 14.6466 47.6581 14.0265C47.9561 13.4065 48.1085 12.6889 48.1085 11.8737C48.1085 11.0586 47.9561 10.348 47.6581 9.7349C47.3533 9.12181 46.9306 8.6411 46.3833 8.28578C45.8359 7.93744 45.1846 7.76327 44.4224 7.76327C43.6603 7.76327 43.009 7.94441 42.4755 8.29972C41.935 8.65503 41.5193 9.14271 41.2352 9.7558C40.9511 10.3689 40.8056 11.0725 40.8056 11.8737C40.8056 12.6749 40.9511 13.4065 41.2352 14.0265C41.5193 14.6466 41.935 15.1343 42.4755 15.4826C43.0159 15.8309 43.6672 16.0121 44.4224 16.0121Z\" fill=\"white\"/>\\n<path d=\"M54.9605 17.761H53.3184V6.18203H54.7457L54.9813 8.35571L54.7457 8.28604C54.9813 7.55451 55.4316 6.96929 56.0898 6.53038C56.7481 6.09146 57.5241 5.87549 58.411 5.87549C59.4433 5.87549 60.3025 6.16113 60.9884 6.72545C61.6744 7.28977 62.1178 8.0631 62.3118 9.0315H61.9515C62.1109 8.05613 62.5405 7.28977 63.2472 6.72545C63.9539 6.16113 64.8339 5.87549 65.9009 5.87549C67.1411 5.87549 68.1389 6.25867 68.901 7.02503C69.6632 7.79139 70.0443 8.84339 70.0443 10.181V17.768H68.4507V10.5154C68.4507 9.52615 68.1943 8.75282 67.6885 8.19547C67.1827 7.63812 66.4829 7.35944 65.596 7.35944C64.9586 7.35944 64.4112 7.50575 63.9539 7.79836C63.4966 8.09097 63.1433 8.48808 62.8938 8.98273C62.6444 9.47738 62.5266 10.0208 62.5266 10.606V17.761H60.9122V10.4876C60.9122 9.49828 60.6559 8.73192 60.1362 8.1885C59.6235 7.64508 58.9237 7.37337 58.0576 7.37337C57.4202 7.37337 56.8728 7.51968 56.4016 7.80532C55.9305 8.09096 55.5771 8.48111 55.3346 8.9688C55.0852 9.45648 54.9674 9.99293 54.9674 10.5851V17.761H54.9605Z\" fill=\"white\"/>\\n<path d=\"M77.8236 18.0465C76.715 18.0465 75.7311 17.7887 74.8858 17.2801C74.0405 16.7715 73.3753 16.0609 72.8973 15.1482C72.4192 14.2425 72.1836 13.1766 72.1836 11.9643C72.1836 10.7521 72.4192 9.71403 72.8834 8.7944C73.3476 7.87476 73.9989 7.15717 74.8234 6.64162C75.6479 6.12607 76.611 5.86133 77.6989 5.86133C78.7867 5.86133 79.6597 6.09124 80.4496 6.55802C81.2325 7.0248 81.8422 7.66576 82.2787 8.48089C82.7152 9.30298 82.93 10.2644 82.93 11.3652V12.1803H73.0774L73.1259 10.982H81.2879C81.2879 9.8673 80.9623 8.96857 80.304 8.29278C79.6458 7.61699 78.7728 7.27561 77.6989 7.27561C76.909 7.27561 76.2092 7.45675 75.6202 7.826C75.0244 8.19524 74.5671 8.71776 74.2553 9.39355C73.9366 10.0693 73.7772 10.8705 73.7772 11.7971C73.7772 13.3299 74.1306 14.5142 74.8373 15.3642C75.544 16.2072 76.5487 16.6322 77.8444 16.6322C78.7797 16.6322 79.5488 16.4301 80.1516 16.033C80.7544 15.6359 81.1632 15.0507 81.3641 14.2843H82.937C82.639 15.4966 82.0501 16.4232 81.1771 17.0711C80.3041 17.719 79.1885 18.0395 77.8236 18.0395V18.0465Z\" fill=\"white\"/>\\n<path d=\"M89.7169 18.0467C88.6083 18.0467 87.6521 17.782 86.8622 17.2594C86.0723 16.73 85.4557 16.0124 85.033 15.0927C84.6035 14.1731 84.3887 13.142 84.3887 11.9925C84.3887 10.8429 84.6035 9.78395 85.033 8.85735C85.4626 7.93075 86.0723 7.19922 86.8761 6.66974C87.6798 6.13329 88.6498 5.86854 89.7931 5.86854C90.7423 5.86854 91.5876 6.07755 92.329 6.4886C93.0634 6.90661 93.6316 7.53364 94.0334 8.37663V0.315918H95.6755V17.7541H94.2482L94.0819 15.3853C93.6662 16.2771 93.0842 16.9459 92.322 17.3848C91.5599 17.8238 90.6938 18.0397 89.7307 18.0397L89.7169 18.0467ZM90.0079 16.5418C90.867 16.5418 91.5876 16.3468 92.1696 15.9566C92.7586 15.5665 93.2089 15.0231 93.5276 14.3333C93.8464 13.6366 94.0057 12.8494 94.0057 11.9507C94.0057 11.0519 93.8464 10.2647 93.5276 9.58191C93.2089 8.89915 92.7586 8.35573 92.1696 7.95862C91.5807 7.5615 90.8601 7.35946 90.0079 7.35946C89.1556 7.35946 88.4766 7.5615 87.8807 7.95862C87.2849 8.35573 86.8345 8.89915 86.5227 9.58191C86.2109 10.2647 86.0585 11.0589 86.0585 11.9507C86.0585 12.8424 86.2109 13.6366 86.5227 14.3333C86.8345 15.03 87.2849 15.5665 87.8807 15.9566C88.4766 16.3468 89.1833 16.5418 90.0079 16.5418Z\" fill=\"white\"/>\\n<path d=\"M99.5524 2.99802C99.2198 2.99802 98.9357 2.87959 98.6932 2.63574C98.4576 2.39887 98.3398 2.11323 98.3398 1.77185C98.3398 1.43047 98.4576 1.14483 98.6932 0.900985C98.9288 0.657143 99.2198 0.531738 99.5524 0.531738C99.8849 0.531738 100.176 0.657143 100.418 0.900985C100.668 1.15179 100.786 1.43744 100.786 1.77185C100.786 2.10626 100.661 2.3919 100.418 2.63574C100.169 2.87262 99.8849 2.99802 99.5524 2.99802ZM98.7417 17.7609V6.1819H100.384V17.7609H98.7417Z\" fill=\"white\"/>\\n<path d=\"M102.643 11.9926C102.643 10.7803 102.878 9.71439 103.342 8.80172C103.807 7.88906 104.458 7.1645 105.296 6.64895C106.128 6.13339 107.098 5.86865 108.213 5.86865C109.544 5.86865 110.666 6.22396 111.581 6.94156C112.495 7.65915 113.056 8.61361 113.285 9.81192H111.643C111.421 9.01769 110.999 8.39764 110.382 7.97266C109.765 7.54071 109.052 7.32474 108.241 7.32474C107.479 7.32474 106.8 7.51284 106.197 7.89602C105.594 8.2792 105.123 8.81565 104.784 9.51235C104.444 10.209 104.271 11.0242 104.271 11.9647C104.271 12.9052 104.43 13.6925 104.749 14.3822C105.068 15.065 105.511 15.6014 106.093 15.9846C106.675 16.3678 107.347 16.5559 108.13 16.5559C109.003 16.5559 109.758 16.3399 110.389 15.901C111.026 15.4621 111.456 14.8699 111.678 14.1175H113.341C113.167 14.8978 112.835 15.5875 112.343 16.1727C111.851 16.7649 111.241 17.2247 110.521 17.5452C109.8 17.8657 109.003 18.0329 108.13 18.0329C107.035 18.0329 106.079 17.7821 105.262 17.2804C104.444 16.7788 103.807 16.0752 103.342 15.1625C102.885 14.2568 102.65 13.1909 102.65 11.9786L102.643 11.9926Z\" fill=\"white\"/>\\n<path d=\"M118.772 18.0467C117.553 18.0467 116.596 17.7262 115.903 17.0922C115.211 16.4513 114.871 15.6361 114.871 14.6259C114.871 13.56 115.252 12.7031 116.014 12.0691C116.776 11.4281 117.83 11.0589 119.181 10.9474L122.992 10.6339V10.2507C122.992 9.48435 122.853 8.88519 122.59 8.44628C122.319 8.00736 121.952 7.70082 121.495 7.52665C121.038 7.35247 120.518 7.2619 119.95 7.2619C118.938 7.2619 118.148 7.47788 117.594 7.90983C117.04 8.34177 116.763 8.94789 116.763 9.72819H115.266C115.266 8.94789 115.467 8.2721 115.862 7.69385C116.257 7.1156 116.811 6.67668 117.525 6.3562C118.238 6.03573 119.063 5.87549 119.998 5.87549C120.934 5.87549 121.696 6.02876 122.375 6.34227C123.054 6.65578 123.601 7.12953 124.003 7.77745C124.405 8.42538 124.613 9.25444 124.613 10.2786V17.768H123.234L123.019 15.7337C122.673 16.4652 122.119 17.0365 121.363 17.4475C120.608 17.8516 119.749 18.0606 118.786 18.0606L118.772 18.0467ZM119.153 16.709C120.372 16.709 121.315 16.3189 121.987 15.5386C122.659 14.7583 122.985 13.7411 122.985 12.501V11.881L119.583 12.1457C118.502 12.2432 117.726 12.515 117.248 12.9608C116.77 13.4067 116.534 13.9501 116.534 14.5841C116.534 15.2878 116.77 15.8173 117.248 16.1726C117.726 16.5279 118.356 16.709 119.153 16.709Z\" fill=\"white\"/>\\n<path d=\"M129.238 17.7611H127.596V0.315918H129.238V17.7541V17.7611Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ltu4g5\",\"data-framer-name\":\"logotype\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"12\" viewBox=\"0 0 26 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.5\">\\n<path d=\"M0.332031 2.48048L12.582 4.8144C12.8591 4.88407 13.1502 4.84923 13.3996 4.71686L20.841 0.843262L0.332031 2.48048Z\" fill=\"#DD2424\"/>\\n</g>\\n<path d=\"M25.9999 0L4.34766 11.2516H18.8633C19.4592 11.2516 20.0135 10.9241 20.2976 10.4016L25.9999 0Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qtit3h\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g4k0c4\",\"data-framer-name\":\"Icon/List\",onTap:onTap1wnntms({overlay:overlay3}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ychdl\",\"data-framer-name\":\"Vector\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 18\"><path d=\"M 22.5 0 L 0.5 0 C 0.367 0 0.24 0.053 0.146 0.146 C 0.053 0.24 0 0.367 0 0.5 C 0 0.633 0.053 0.76 0.146 0.854 C 0.24 0.947 0.367 1 0.5 1 L 22.5 1 C 22.633 1 22.76 0.947 22.854 0.854 C 22.947 0.76 23 0.633 23 0.5 C 23 0.367 22.947 0.24 22.854 0.146 C 22.76 0.053 22.633 0 22.5 0 Z\" transform=\"translate(0.5 8.5) rotate(-45 11.5 0.5)\" fill=\"rgb(221, 36, 36)\"></path><path d=\"M 0.5 1 L 22.5 1 C 22.633 1 22.76 0.947 22.854 0.854 C 22.947 0.76 23 0.633 23 0.5 C 23 0.367 22.947 0.24 22.854 0.146 C 22.76 0.053 22.633 0 22.5 0 L 0.5 0 C 0.367 0 0.24 0.053 0.146 0.146 C 0.053 0.24 0 0.367 0 0.5 C 0 0.633 0.053 0.76 0.146 0.854 C 0.24 0.947 0.367 1 0.5 1 Z\" transform=\"translate(0.5 8.5) rotate(45 11.5 0.5)\" fill=\"rgb(221, 36, 36)\"></path><path d=\"M 12.5 9 C 12.5 9.133 12.498 9.26 12.494 9.354 C 12.49 9.447 12.484 9.5 12.478 9.5 L 11.522 9.5 C 11.516 9.5 11.51 9.447 11.506 9.354 C 11.502 9.26 11.5 9.133 11.5 9 C 11.5 8.867 11.502 8.74 11.506 8.646 C 11.51 8.553 11.516 8.5 11.522 8.5 L 12.478 8.5 C 12.484 8.5 12.49 8.553 12.494 8.646 C 12.498 8.74 12.5 8.867 12.5 9 Z\" fill=\"rgb(221, 36, 36)\"></path></svg>',svgContentId:11927882507,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"CONTACT US\"})}),className:\"framer-a3k97q\",\"data-framer-name\":\"CONTACT US\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2743.8+0+1218+30+0),pixelHeight:3530,pixelWidth:2731,sizes:\"353px\",src:\"https://framerusercontent.com/images/9UGWWVnYJognebIPKcfmObFars.jpg\",srcSet:\"https://framerusercontent.com/images/9UGWWVnYJognebIPKcfmObFars.jpg?scale-down-to=1024 792w,https://framerusercontent.com/images/9UGWWVnYJognebIPKcfmObFars.jpg?scale-down-to=2048 1584w,https://framerusercontent.com/images/9UGWWVnYJognebIPKcfmObFars.jpg 2731w\"}},IfSbnjFHM:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 240px)`,src:\"https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg\",srcSet:\"https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg 2731w\"}},zucwW3iTy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2633.8+0+812+243),sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 240px) * 0.48)`,src:\"https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg\",srcSet:\"https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg 2731w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2633.8+0+819+2.5),sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 240px) * 0.5742)`,src:\"https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg\",srcSet:\"https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/zJJeQElcB38Ff9wYUNRtRvOVusw.jpg 2731w\"},className:\"framer-1fwdkhg\",\"data-framer-name\":\"image-container\"})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{y:(componentViewport?.y||0)+0+5335.8},IfSbnjFHM:{y:undefined},zucwW3iTy:{y:(componentViewport?.y||0)+0+4725.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:773,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4251.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xwona6-container\",\"data-framer-name\":\"our-partners-slides\",name:\"our-partners-slides\",nodeId:\"h88HOXDBM\",rendersWithMotion:true,scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{variant:\"Es6WrZ1US\"},IfSbnjFHM:{variant:\"YJrxGpEqU\"},zucwW3iTy:{variant:\"S0AzR40QK\"}},children:/*#__PURE__*/_jsx(SlidesOurPartners2,{height:\"100%\",id:\"h88HOXDBM\",layoutId:\"h88HOXDBM\",name:\"our-partners-slides\",style:{width:\"100%\"},variant:\"i4kjc0G8T\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12vndev\",\"data-framer-name\":\"social proof\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qv45oh\",\"data-framer-name\":\"user\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6108.8+60+422+0+0),pixelHeight:640,pixelWidth:720,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png?scale-down-to=512 512w,https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png 720w\"}},IfSbnjFHM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:360,pixelHeight:640,pixelWidth:720,sizes:\"360px\",src:\"https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png?scale-down-to=512 512w,https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png 720w\"}},zucwW3iTy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5498.8+180+0+0),pixelHeight:640,pixelWidth:720,sizes:\"360px\",src:\"https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png?scale-down-to=512 512w,https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png 720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5024.8+180+0+0),pixelHeight:640,pixelWidth:720,sizes:\"360px\",src:\"https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png?scale-down-to=512 512w,https://framerusercontent.com/images/WLWZhl4gCqbRKpd4BpBlDXQTbU.png 720w\"},className:\"framer-y3avpy\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wlnd28\",\"data-framer-name\":\"name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\"},children:\"Philip Hampton\"})}),className:\"framer-19ieq86\",\"data-framer-name\":\"name\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(118, 108, 108)\"},children:\"Chief Supply Chain Officer, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(118, 108, 108)\"},children:\"Presbyterian Healthcare Services\"})]}),className:\"framer-1qg091w\",\"data-framer-name\":\"name\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11fug1\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yvueg6\",\"data-framer-name\":\"logotype\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wp5l0d\",\"data-framer-name\":\"logotype\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:53,svg:'<svg width=\"53\" height=\"24\" viewBox=\"0 0 53 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.5\">\\n<path d=\"M0.399902 5.76053L25.1354 10.4284C25.695 10.5677 26.2826 10.498 26.7863 10.2333L41.8123 2.48608L0.399902 5.76053Z\" fill=\"#DD2424\"/>\\n</g>\\n<path d=\"M52.2311 0.800049L8.51025 23.3032H37.8207C39.0239 23.3032 40.1432 22.6483 40.7168 21.6032L52.2311 0.800049Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(39, 36, 36)\"},children:'\"The Rapid Medical team have been phenomenal strategic partners for us. Their collaborative approach, coupled with their industry leading innovative technology and deep logistics expertise, has allowed us to increase operational efficiency at the last mile through data-driven decision making.\"'})}),className:\"framer-tma64g\",\"data-framer-name\":'\"The Rapid Medical team have been phenomenal strategic partners for us. Their collaborative approach, coupled with their industry leading innovative technology and deep logistics expertise, has allowed us to increase operational efficiency at the last mile through data-driven decision making.\"',effect:textEffect6,fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"W8rUfSWH7\"},implicitPathVariables:undefined},{href:{webPageId:\"W8rUfSWH7\"},implicitPathVariables:undefined},{href:{webPageId:\"W8rUfSWH7\"},implicitPathVariables:undefined},{href:{webPageId:\"W8rUfSWH7\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{y:(componentViewport?.y||0)+0+6108.8+60+0+0+320},IfSbnjFHM:{y:undefined},zucwW3iTy:{y:(componentViewport?.y||0)+0+5498.8+281.8+0+376}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+5024.8+281.8+0+376,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qsb9k7-container\",nodeId:\"PNvlgxo2M\",rendersWithMotion:true,scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{s7XBjC9iS:resolvedLinks[2]},IfSbnjFHM:{s7XBjC9iS:resolvedLinks[3]},zucwW3iTy:{s7XBjC9iS:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button1,{FDjwNEGrq:\"LEARN ABOUT US\",height:\"100%\",id:\"PNvlgxo2M\",iWguFTYzL:false,KPqt9K77a:\"20px 20px 20px 20px\",layoutId:\"PNvlgxo2M\",mefjRhawH:16,s7XBjC9iS:resolvedLinks[0],variant:\"DwytxQTGo\",width:\"100%\",wKctfNJMV:\"rgb(221, 36, 36)\"})})})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h4v251-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yoLCpQZV8\",rendersWithMotion:true,scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"yoLCpQZV8\",layoutId:\"yoLCpQZV8\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14qptrx\",\"data-framer-name\":\"stripe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aounoh\",\"data-framer-name\":\"marquee\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-imnlw7\",\"data-framer-name\":\"logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"42\" viewBox=\"0 0 98 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.5\">\\n<path d=\"M0 6.08598L46.7589 14.7616C47.8168 15.0206 48.9276 14.8911 49.8797 14.399L78.2842 9.15527e-05L0 6.08598Z\" fill=\"#DD2424\"/>\\n</g>\\n<path d=\"M97.9996 0.175629L15.3516 41.9999H70.7588C73.0333 41.9999 75.1491 40.7827 76.2334 38.8404L97.9996 0.175629Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"RAPID MEDICAL OPERATES NATIONWIDE\"})}),className:\"framer-hb34ub\",\"data-framer-name\":\"RAPID MEDICAL OPERATES NATIONWIDE\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18fty9n\",\"data-framer-name\":\"marquee\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xpurg1\",\"data-framer-name\":\"logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"42\" viewBox=\"0 0 98 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.5\">\\n<path d=\"M0 6.08598L46.7589 14.7616C47.8168 15.0206 48.9276 14.8911 49.8797 14.399L78.2842 9.15527e-05L0 6.08598Z\" fill=\"#DD2424\"/>\\n</g>\\n<path d=\"M97.9996 0.175629L15.3516 41.9999H70.7588C73.0333 41.9999 75.1491 40.7827 76.2334 38.8404L97.9996 0.175629Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"RAPID MEDICAL OPERATES NATIONWIDE\"})}),className:\"framer-7hl0np\",\"data-framer-name\":\"RAPID MEDICAL OPERATES NATIONWIDE\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mwv01y\",\"data-framer-name\":\"marquee\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-269l8e\",\"data-framer-name\":\"logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:98,svg:'<svg width=\"98\" height=\"42\" viewBox=\"0 0 98 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.5\">\\n<path d=\"M0 6.08598L46.7589 14.7616C47.8168 15.0206 48.9276 14.8911 49.8797 14.399L78.2842 9.15527e-05L0 6.08598Z\" fill=\"#DD2424\"/>\\n</g>\\n<path d=\"M97.9996 0.175629L15.3516 41.9999H70.7588C73.0333 41.9999 75.1491 40.7827 76.2334 38.8404L97.9996 0.175629Z\" fill=\"#DD2424\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:\"RAPID MEDICAL OPERATES NATIONWIDE\"})}),className:\"framer-q20bx1\",\"data-framer-name\":\"RAPID MEDICAL OPERATES NATIONWIDE\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{y:(componentViewport?.y||0)+0+7392.4},IfSbnjFHM:{y:undefined},zucwW3iTy:{y:(componentViewport?.y||0)+0+6680.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:693,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6206.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i0tqol-container\",id:elementId6,nodeId:\"fpv0oShu6\",ref:ref7,scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{variant:\"FlIwMC0i5\"},IfSbnjFHM:{variant:\"K7VC4Z7gW\"},zucwW3iTy:{variant:\"I0vSH6_v1\"}},children:/*#__PURE__*/_jsx(Footer_form,{cnwoHbvmx:ref7,height:\"100%\",id:\"fpv0oShu6\",layoutId:\"fpv0oShu6\",style:{width:\"100%\"},variant:\"lzEJb7LYO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{y:(componentViewport?.y||0)+0+8085.4},IfSbnjFHM:{y:undefined},zucwW3iTy:{y:(componentViewport?.y||0)+0+7373.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6899.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-303vja-container\",id:elementId7,nodeId:\"TfV_0_CEN\",ref:ref8,scopeId:\"i8duHiuqV\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9p1FwUE0:{variant:\"nNvbnFfIZ\"},IfSbnjFHM:{variant:\"kqH_vhCsU\"},zucwW3iTy:{variant:\"qfU9HtuWK\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"TfV_0_CEN\",layoutId:\"TfV_0_CEN\",style:{width:\"100%\"},variant:\"obhUaZudI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PPCnx.framer-vr6ymd, .framer-PPCnx .framer-vr6ymd { display: block; }\",\".framer-PPCnx.framer-14p5v8k { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-PPCnx .framer-idtr50-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-PPCnx.framer-fbv4e2 { background-color: rgba(0, 0, 0, 0.4); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-PPCnx.framer-evjj9l { -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); background-color: rgba(255, 255, 255, 0.1); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: fixed; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-PPCnx.framer-1shsqt4 { align-content: flex-start; align-items: flex-start; background-color: #000000; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 48px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 596px; z-index: 2; }\",\".framer-PPCnx .framer-j3dpby, .framer-PPCnx .framer-5agnic, .framer-PPCnx .framer-1lxnaqm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 500px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-1ss14jy, .framer-PPCnx .framer-1sy9t2, .framer-PPCnx .framer-rh5h0e { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 524px; overflow: visible; position: absolute; top: 24px; width: 48px; z-index: 1; }\",\".framer-PPCnx .framer-1mfu5nw, .framer-PPCnx .framer-lswab3, .framer-PPCnx .framer-4dw6lh { bottom: 10px; flex: none; left: 9px; position: absolute; right: 11px; top: 9px; }\",\".framer-PPCnx .framer-tqqt2q, .framer-PPCnx .framer-r0p2cn, .framer-PPCnx .framer-dycin3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 492px; z-index: 2; }\",\".framer-PPCnx .framer-orsom2, .framer-PPCnx .framer-1eyojwq, .framer-PPCnx .framer-12pzqmd, .framer-PPCnx .framer-1oabsy9, .framer-PPCnx .framer-l7hge6, .framer-PPCnx .framer-1wfon2f, .framer-PPCnx .framer-1ubz962, .framer-PPCnx .framer-wi87lw, .framer-PPCnx .framer-zih3ex, .framer-PPCnx .framer-1clqtb8, .framer-PPCnx .framer-1ummtry, .framer-PPCnx .framer-r8fzym, .framer-PPCnx .framer-1qib0u1, .framer-PPCnx .framer-1j2qx2t, .framer-PPCnx .framer-10a5uwp, .framer-PPCnx .framer-1xhbwwa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-1kjsfd5, .framer-PPCnx .framer-ukg3nd, .framer-PPCnx .framer-9z375a, .framer-PPCnx .framer-1b69x8n, .framer-PPCnx .framer-aoaiel, .framer-PPCnx .framer-vr0efd, .framer-PPCnx .framer-cwsip3, .framer-PPCnx .framer-16nd1vw, .framer-PPCnx .framer-1hrx2uz, .framer-PPCnx .framer-n1dpgh, .framer-PPCnx .framer-1sg4twf, .framer-PPCnx .framer-c2asep, .framer-PPCnx .framer-t3u212, .framer-PPCnx .framer-bvontd, .framer-PPCnx .framer-12jm40x, .framer-PPCnx .framer-4xm9k1, .framer-PPCnx .framer-1x9likj, .framer-PPCnx .framer-1pymx97, .framer-PPCnx .framer-qdz102, .framer-PPCnx .framer-1bx2029, .framer-PPCnx .framer-1b33zop, .framer-PPCnx .framer-5dwzdf, .framer-PPCnx .framer-1u1tpv9, .framer-PPCnx .framer-1a12weq, .framer-PPCnx .framer-12oqj0w, .framer-PPCnx .framer-1vqje8q, .framer-PPCnx .framer-ipndnt, .framer-PPCnx .framer-1rpxme5, .framer-PPCnx .framer-1cxxbym, .framer-PPCnx .framer-105m3d3, .framer-PPCnx .framer-f7z7q6, .framer-PPCnx .framer-19ieq86, .framer-PPCnx .framer-hb34ub, .framer-PPCnx .framer-7hl0np, .framer-PPCnx .framer-q20bx1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-PPCnx .framer-x54b9z, .framer-PPCnx .framer-1sbhl9w, .framer-PPCnx .framer-199nhat, .framer-PPCnx .framer-16ztsue, .framer-PPCnx .framer-1b73x4g, .framer-PPCnx .framer-romwhd, .framer-PPCnx .framer-1l7e6i4, .framer-PPCnx .framer-19cp6nf { --framer-input-background: rgba(255, 255, 255, 0.3); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 8px; --framer-input-border-radius-bottom-right: 8px; --framer-input-border-radius-top-left: 8px; --framer-input-border-radius-top-right: 8px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #dd2424; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #ffffff; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 140%; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px 14px 12px 14px; --framer-input-placeholder-color: rgba(255, 255, 255, 0.5); --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }','.framer-PPCnx .framer-dxlj77, .framer-PPCnx .framer-yozmfz, .framer-PPCnx .framer-13gv6x0, .framer-PPCnx .framer-ukyzzy, .framer-PPCnx .framer-cfukmu, .framer-PPCnx .framer-1r897p9, .framer-PPCnx .framer-1p5r2to, .framer-PPCnx .framer-cdoxnf { --framer-input-background: rgba(255, 255, 255, 0.3); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 8px; --framer-input-border-radius-bottom-right: 8px; --framer-input-border-radius-top-left: 8px; --framer-input-border-radius-top-right: 8px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #dd2424; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #ffffff; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px 14px 12px 14px; --framer-input-placeholder-color: rgba(255, 255, 255, 0.5); --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-PPCnx .framer-11zeubu, .framer-PPCnx .framer-i7mgz, .framer-PPCnx .framer-1xoonxx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-1fg2szs-container, .framer-PPCnx .framer-1exers5-container, .framer-PPCnx .framer-1pqd8dq-container, .framer-PPCnx .framer-1eiz3de-container, .framer-PPCnx .framer-m5xddd-container, .framer-PPCnx .framer-1twpawm-container, .framer-PPCnx .framer-184bi9y-container, .framer-PPCnx .framer-e4dksk-container, .framer-PPCnx .framer-1qsb9k7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PPCnx .framer-ene2z9, .framer-PPCnx .framer-1xxwop4, .framer-PPCnx .framer-18kauub { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-PPCnx .framer-15uzt9g, .framer-PPCnx .framer-9l17nq, .framer-PPCnx .framer-f68f9h, .framer-PPCnx .framer-1qz3t7s { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-1epplo6, .framer-PPCnx .framer-105p2h, .framer-PPCnx .framer-1g3o2ur, .framer-PPCnx .framer-10mus89 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-zoy9ky, .framer-PPCnx .framer-15p9qob, .framer-PPCnx .framer-rwvpp5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-1o9xbap, .framer-PPCnx .framer-ady5p6, .framer-PPCnx .framer-1q7dpcu, .framer-PPCnx .framer-6h65lr { flex: none; height: 28px; overflow: hidden; position: relative; width: 156px; }\",\".framer-PPCnx .framer-mg22sk, .framer-PPCnx .framer-jl0t0z, .framer-PPCnx .framer-16rfm4u, .framer-PPCnx .framer-17sr3cr { flex: none; height: 23px; left: 0px; position: absolute; top: 5px; width: 130px; }\",\".framer-PPCnx .framer-e5cow, .framer-PPCnx .framer-1l9ulq4, .framer-PPCnx .framer-1fnvday, .framer-PPCnx .framer-1ltu4g5 { flex: none; height: 12px; left: 130px; position: absolute; top: 0px; width: 26px; }\",\".framer-PPCnx .framer-125okts, .framer-PPCnx .framer-103o0id, .framer-PPCnx .framer-1qtit3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PPCnx .framer-1nj2g5h, .framer-PPCnx .framer-1cy2sih, .framer-PPCnx .framer-g4k0c4 { cursor: pointer; flex: none; height: 32px; overflow: visible; position: relative; width: 32px; }\",\".framer-PPCnx .framer-19gf42z, .framer-PPCnx .framer-w1kojn, .framer-PPCnx .framer-ychdl { background-color: rgba(0, 0, 0, 0); flex: none; height: 18px; left: 4px; position: absolute; top: 7px; width: 24px; }\",\".framer-PPCnx .framer-7p1ogd, .framer-PPCnx .framer-1qho9z4, .framer-PPCnx .framer-pkrj5h, .framer-PPCnx .framer-a3k97q { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 353px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-1t3eg18 { background-color: rgba(12, 12, 12, 0.25); flex: none; height: 100vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-PPCnx .framer-c95x55 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-PPCnx .framer-3ysjoz-container, .framer-PPCnx .framer-unnmbv { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-PPCnx .framer-1ytzl3u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; left: 50%; max-width: 1280px; overflow: visible; padding: 0px; position: absolute; top: 55%; transform: translate(-50%, -50%); width: 1280px; }\",\".framer-PPCnx .framer-1ar7ysk { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1280px; position: relative; white-space: pre-wrap; width: 1280px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-mk6mio { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 724px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-1vyi416 { align-content: center; align-items: center; background-color: #dd2424; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-PPCnx.framer-lfp0vu { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-PPCnx.framer-jzty43 { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 40px 20px 40px 20px; position: fixed; top: 0px; width: 393px; }\",\".framer-PPCnx .framer-1tzexv3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-6ev5x, .framer-PPCnx .framer-1ck3tml, .framer-PPCnx .framer-vfruzc, .framer-PPCnx .framer-10i46gv, .framer-PPCnx .framer-1wlnd28 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-12bj9sw, .framer-PPCnx .framer-9w20pb, .framer-PPCnx .framer-1q8zit2, .framer-PPCnx .framer-wttjq3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-179eiyf, .framer-PPCnx .framer-1md6iq8, .framer-PPCnx .framer-199nrf1, .framer-PPCnx .framer-84hj43 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.3); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 14px 10px 14px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-1k0zruj, .framer-PPCnx .framer-1mr95hx, .framer-PPCnx .framer-g0cpbd, .framer-PPCnx .framer-ts9p6w { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 325px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-1jxv1i3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-190h9vb { align-content: center; align-items: center; background-color: #dd2424; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 20px 48px 20px 48px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-1n34ufd { --framer-paragraph-spacing: 0px; flex: none; height: 32px; position: relative; white-space: pre-wrap; width: 353px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-n71pqx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 329px; overflow: visible; position: absolute; top: 25px; width: 40px; z-index: 1; }\",\".framer-PPCnx .framer-mlg3qb { bottom: 8px; flex: none; left: 8px; position: absolute; right: 8px; top: 8px; }\",\".framer-PPCnx .framer-1dxymix { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-banc6s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-go67i7-container, .framer-PPCnx .framer-xwona6-container, .framer-PPCnx .framer-i0tqol-container, .framer-PPCnx .framer-303vja-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-PPCnx .framer-hcq83t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-1ol7k60 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 38px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 539px; }\",\".framer-PPCnx .framer-1g5801h { flex: none; height: 37px; position: relative; width: 64px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PPCnx .framer-17jxy9g { aspect-ratio: 1.0972222222222223 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 41px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PPCnx .framer-1dufehw { flex: none; height: 37px; position: relative; width: 38px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PPCnx .framer-10zswyi { flex: none; height: 38px; position: relative; width: 53px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PPCnx .framer-1wccvcl { flex: none; height: 37px; position: relative; width: 26px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PPCnx .framer-14yxxls { align-content: center; align-items: center; background-color: #dd2424; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 160px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-ayw7c0 { bottom: 40px; flex: none; height: 547px; left: 644px; mix-blend-mode: multiply; opacity: 0.5; position: absolute; width: 773px; }\",\".framer-PPCnx .framer-1klm3jh, .framer-PPCnx .framer-1ly4qn8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-16uxpo1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 19px; justify-content: flex-start; overflow: visible; padding: 1px 0px 1px 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-1m4t31d, .framer-PPCnx .framer-e0tgze, .framer-PPCnx .framer-1w392l6, .framer-PPCnx .framer-l629y2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 2px; position: relative; width: min-content; }\",\".framer-PPCnx .framer-xuid91, .framer-PPCnx .framer-1rpd4ta { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-PPCnx .framer-1xu0cry, .framer-PPCnx .framer-1udml65, .framer-PPCnx .framer-1qg091w, .framer-PPCnx .framer-tma64g { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-nmd7cs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 1px 0px 1px 0px; position: relative; width: min-content; }\",\".framer-PPCnx .framer-nholz8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 651px; }\",\".framer-PPCnx .framer-11pybz, .framer-PPCnx .framer-1oj2xo4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PPCnx .framer-hzxv7h, .framer-PPCnx .framer-1dlgpwc { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-PPCnx .framer-1y3r3uw, .framer-PPCnx .framer-4ljjez, .framer-PPCnx .framer-8wc6wa { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PPCnx .framer-lbhgey, .framer-PPCnx .framer-zyiil8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 316px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-1o1e1m0 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 100px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-pgmc0k { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 698px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx .framer-mb6q7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-109ej88 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 0px 120px 120px 120px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-k4b8lk { aspect-ratio: 1.1274509803921569 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 607px); overflow: visible; position: relative; width: 57%; }\",\".framer-PPCnx .framer-egosl8, .framer-PPCnx .framer-1kbibjb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 619px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 411px; }\",\".framer-PPCnx .framer-5cd0a2, .framer-PPCnx .framer-10ieoa1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 16px; justify-content: flex-start; overflow: visible; padding: 1px 0px 1px 0px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-8mtja5, .framer-PPCnx .framer-120y9gc { aspect-ratio: 1 / 1; background-color: #dd2424; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-PPCnx .framer-12ylx6k, .framer-PPCnx .framer-l6rmy5, .framer-PPCnx .framer-1q2kwl7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 411px; word-break: break-word; word-wrap: break-word; }\",\".framer-PPCnx.framer-1rosjcz, .framer-PPCnx.framer-vq1idw { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-PPCnx.framer-5vqgy2, .framer-PPCnx.framer-mzt8uf { -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); background-color: rgba(255, 255, 255, 0.1); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: fixed; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-PPCnx.framer-1fyh9tq, .framer-PPCnx.framer-bmui3o { align-content: flex-start; align-items: flex-start; background-color: #000000; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 48px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 596px; z-index: 1; }\",\".framer-PPCnx .framer-vick5n { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 0px 120px 180px 120px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-1fwdkhg { aspect-ratio: 1.1221498371335505 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 614px); overflow: visible; position: relative; width: 57%; }\",\".framer-PPCnx .framer-12vndev { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 180px 120px 180px 120px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-1qv45oh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 360px; }\",\".framer-PPCnx .framer-y3avpy { aspect-ratio: 1.125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 320px); overflow: visible; position: relative; width: 100%; }\",\".framer-PPCnx .framer-11fug1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-PPCnx .framer-yvueg6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: hidden; position: relative; width: 56px; }\",\".framer-PPCnx .framer-1wp5l0d { flex: none; height: 24px; left: 1px; position: absolute; top: 16px; width: 53px; }\",\".framer-PPCnx .framer-h4v251-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-PPCnx .framer-14qptrx { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: min-content; }\",\".framer-PPCnx .framer-aounoh, .framer-PPCnx .framer-18fty9n, .framer-PPCnx .framer-mwv01y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PPCnx .framer-imnlw7, .framer-PPCnx .framer-1xpurg1, .framer-PPCnx .framer-269l8e { flex: none; height: 42px; position: relative; width: 98px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PPCnx.framer-14p5v8k, .framer-PPCnx.framer-1shsqt4, .framer-PPCnx .framer-tqqt2q, .framer-PPCnx .framer-orsom2, .framer-PPCnx .framer-1eyojwq, .framer-PPCnx .framer-12pzqmd, .framer-PPCnx .framer-1oabsy9, .framer-PPCnx .framer-11zeubu, .framer-PPCnx .framer-ene2z9, .framer-PPCnx .framer-1epplo6, .framer-PPCnx .framer-125okts, .framer-PPCnx .framer-1ytzl3u, .framer-PPCnx .framer-1vyi416, .framer-PPCnx.framer-jzty43, .framer-PPCnx .framer-105p2h, .framer-PPCnx .framer-1tzexv3, .framer-PPCnx .framer-6ev5x, .framer-PPCnx .framer-12bj9sw, .framer-PPCnx .framer-179eiyf, .framer-PPCnx .framer-1ck3tml, .framer-PPCnx .framer-9w20pb, .framer-PPCnx .framer-1md6iq8, .framer-PPCnx .framer-vfruzc, .framer-PPCnx .framer-1q8zit2, .framer-PPCnx .framer-199nrf1, .framer-PPCnx .framer-10i46gv, .framer-PPCnx .framer-wttjq3, .framer-PPCnx .framer-84hj43, .framer-PPCnx .framer-1jxv1i3, .framer-PPCnx .framer-190h9vb, .framer-PPCnx .framer-1dxymix, .framer-PPCnx .framer-l7hge6, .framer-PPCnx .framer-1wfon2f, .framer-PPCnx .framer-1ubz962, .framer-PPCnx .framer-wi87lw, .framer-PPCnx .framer-banc6s, .framer-PPCnx .framer-hcq83t, .framer-PPCnx .framer-14yxxls, .framer-PPCnx .framer-1klm3jh, .framer-PPCnx .framer-16uxpo1, .framer-PPCnx .framer-1m4t31d, .framer-PPCnx .framer-1ly4qn8, .framer-PPCnx .framer-nmd7cs, .framer-PPCnx .framer-e0tgze, .framer-PPCnx .framer-nholz8, .framer-PPCnx .framer-11pybz, .framer-PPCnx .framer-hzxv7h, .framer-PPCnx .framer-1oj2xo4, .framer-PPCnx .framer-1dlgpwc, .framer-PPCnx .framer-1o1e1m0, .framer-PPCnx .framer-mb6q7o, .framer-PPCnx .framer-egosl8, .framer-PPCnx .framer-5cd0a2, .framer-PPCnx .framer-1w392l6, .framer-PPCnx.framer-1fyh9tq, .framer-PPCnx .framer-r0p2cn, .framer-PPCnx .framer-zih3ex, .framer-PPCnx .framer-1clqtb8, .framer-PPCnx .framer-1ummtry, .framer-PPCnx .framer-r8fzym, .framer-PPCnx .framer-i7mgz, .framer-PPCnx .framer-1xxwop4, .framer-PPCnx .framer-1g3o2ur, .framer-PPCnx .framer-103o0id, .framer-PPCnx .framer-1kbibjb, .framer-PPCnx .framer-10ieoa1, .framer-PPCnx .framer-l629y2, .framer-PPCnx.framer-bmui3o, .framer-PPCnx .framer-dycin3, .framer-PPCnx .framer-1qib0u1, .framer-PPCnx .framer-1j2qx2t, .framer-PPCnx .framer-10a5uwp, .framer-PPCnx .framer-1xhbwwa, .framer-PPCnx .framer-1xoonxx, .framer-PPCnx .framer-18kauub, .framer-PPCnx .framer-10mus89, .framer-PPCnx .framer-1qtit3h, .framer-PPCnx .framer-12vndev, .framer-PPCnx .framer-1qv45oh, .framer-PPCnx .framer-1wlnd28, .framer-PPCnx .framer-11fug1, .framer-PPCnx .framer-14qptrx, .framer-PPCnx .framer-aounoh, .framer-PPCnx .framer-18fty9n, .framer-PPCnx .framer-mwv01y { gap: 0px; } .framer-PPCnx.framer-14p5v8k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PPCnx.framer-14p5v8k > :first-child, .framer-PPCnx.framer-1shsqt4 > :first-child, .framer-PPCnx .framer-tqqt2q > :first-child, .framer-PPCnx .framer-orsom2 > :first-child, .framer-PPCnx .framer-1eyojwq > :first-child, .framer-PPCnx .framer-12pzqmd > :first-child, .framer-PPCnx .framer-1oabsy9 > :first-child, .framer-PPCnx .framer-1epplo6 > :first-child, .framer-PPCnx .framer-1ytzl3u > :first-child, .framer-PPCnx.framer-jzty43 > :first-child, .framer-PPCnx .framer-105p2h > :first-child, .framer-PPCnx .framer-1tzexv3 > :first-child, .framer-PPCnx .framer-6ev5x > :first-child, .framer-PPCnx .framer-1ck3tml > :first-child, .framer-PPCnx .framer-vfruzc > :first-child, .framer-PPCnx .framer-10i46gv > :first-child, .framer-PPCnx .framer-1jxv1i3 > :first-child, .framer-PPCnx .framer-1dxymix > :first-child, .framer-PPCnx .framer-l7hge6 > :first-child, .framer-PPCnx .framer-1wfon2f > :first-child, .framer-PPCnx .framer-1ubz962 > :first-child, .framer-PPCnx .framer-wi87lw > :first-child, .framer-PPCnx .framer-banc6s > :first-child, .framer-PPCnx .framer-14yxxls > :first-child, .framer-PPCnx .framer-1klm3jh > :first-child, .framer-PPCnx .framer-1ly4qn8 > :first-child, .framer-PPCnx .framer-11pybz > :first-child, .framer-PPCnx .framer-1oj2xo4 > :first-child, .framer-PPCnx .framer-1o1e1m0 > :first-child, .framer-PPCnx .framer-mb6q7o > :first-child, .framer-PPCnx .framer-egosl8 > :first-child, .framer-PPCnx.framer-1fyh9tq > :first-child, .framer-PPCnx .framer-r0p2cn > :first-child, .framer-PPCnx .framer-zih3ex > :first-child, .framer-PPCnx .framer-1clqtb8 > :first-child, .framer-PPCnx .framer-1ummtry > :first-child, .framer-PPCnx .framer-r8fzym > :first-child, .framer-PPCnx .framer-1g3o2ur > :first-child, .framer-PPCnx .framer-1kbibjb > :first-child, .framer-PPCnx.framer-bmui3o > :first-child, .framer-PPCnx .framer-dycin3 > :first-child, .framer-PPCnx .framer-1qib0u1 > :first-child, .framer-PPCnx .framer-1j2qx2t > :first-child, .framer-PPCnx .framer-10a5uwp > :first-child, .framer-PPCnx .framer-1xhbwwa > :first-child, .framer-PPCnx .framer-10mus89 > :first-child, .framer-PPCnx .framer-1qv45oh > :first-child, .framer-PPCnx .framer-1wlnd28 > :first-child, .framer-PPCnx .framer-11fug1 > :first-child { margin-top: 0px; } .framer-PPCnx.framer-14p5v8k > :last-child, .framer-PPCnx.framer-1shsqt4 > :last-child, .framer-PPCnx .framer-tqqt2q > :last-child, .framer-PPCnx .framer-orsom2 > :last-child, .framer-PPCnx .framer-1eyojwq > :last-child, .framer-PPCnx .framer-12pzqmd > :last-child, .framer-PPCnx .framer-1oabsy9 > :last-child, .framer-PPCnx .framer-1epplo6 > :last-child, .framer-PPCnx .framer-1ytzl3u > :last-child, .framer-PPCnx.framer-jzty43 > :last-child, .framer-PPCnx .framer-105p2h > :last-child, .framer-PPCnx .framer-1tzexv3 > :last-child, .framer-PPCnx .framer-6ev5x > :last-child, .framer-PPCnx .framer-1ck3tml > :last-child, .framer-PPCnx .framer-vfruzc > :last-child, .framer-PPCnx .framer-10i46gv > :last-child, .framer-PPCnx .framer-1jxv1i3 > :last-child, .framer-PPCnx .framer-1dxymix > :last-child, .framer-PPCnx .framer-l7hge6 > :last-child, .framer-PPCnx .framer-1wfon2f > :last-child, .framer-PPCnx .framer-1ubz962 > :last-child, .framer-PPCnx .framer-wi87lw > :last-child, .framer-PPCnx .framer-banc6s > :last-child, .framer-PPCnx .framer-14yxxls > :last-child, .framer-PPCnx .framer-1klm3jh > :last-child, .framer-PPCnx .framer-1ly4qn8 > :last-child, .framer-PPCnx .framer-11pybz > :last-child, .framer-PPCnx .framer-1oj2xo4 > :last-child, .framer-PPCnx .framer-1o1e1m0 > :last-child, .framer-PPCnx .framer-mb6q7o > :last-child, .framer-PPCnx .framer-egosl8 > :last-child, .framer-PPCnx.framer-1fyh9tq > :last-child, .framer-PPCnx .framer-r0p2cn > :last-child, .framer-PPCnx .framer-zih3ex > :last-child, .framer-PPCnx .framer-1clqtb8 > :last-child, .framer-PPCnx .framer-1ummtry > :last-child, .framer-PPCnx .framer-r8fzym > :last-child, .framer-PPCnx .framer-1g3o2ur > :last-child, .framer-PPCnx .framer-1kbibjb > :last-child, .framer-PPCnx.framer-bmui3o > :last-child, .framer-PPCnx .framer-dycin3 > :last-child, .framer-PPCnx .framer-1qib0u1 > :last-child, .framer-PPCnx .framer-1j2qx2t > :last-child, .framer-PPCnx .framer-10a5uwp > :last-child, .framer-PPCnx .framer-1xhbwwa > :last-child, .framer-PPCnx .framer-10mus89 > :last-child, .framer-PPCnx .framer-1qv45oh > :last-child, .framer-PPCnx .framer-1wlnd28 > :last-child, .framer-PPCnx .framer-11fug1 > :last-child { margin-bottom: 0px; } .framer-PPCnx.framer-1shsqt4 > *, .framer-PPCnx .framer-1ytzl3u > *, .framer-PPCnx.framer-jzty43 > *, .framer-PPCnx .framer-egosl8 > *, .framer-PPCnx.framer-1fyh9tq > *, .framer-PPCnx .framer-1kbibjb > *, .framer-PPCnx.framer-bmui3o > *, .framer-PPCnx .framer-1qv45oh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PPCnx .framer-tqqt2q > *, .framer-PPCnx .framer-1jxv1i3 > *, .framer-PPCnx .framer-r0p2cn > *, .framer-PPCnx .framer-dycin3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PPCnx .framer-orsom2 > *, .framer-PPCnx .framer-1eyojwq > *, .framer-PPCnx .framer-12pzqmd > *, .framer-PPCnx .framer-1oabsy9 > *, .framer-PPCnx .framer-6ev5x > *, .framer-PPCnx .framer-1ck3tml > *, .framer-PPCnx .framer-vfruzc > *, .framer-PPCnx .framer-10i46gv > *, .framer-PPCnx .framer-l7hge6 > *, .framer-PPCnx .framer-1wfon2f > *, .framer-PPCnx .framer-1ubz962 > *, .framer-PPCnx .framer-wi87lw > *, .framer-PPCnx .framer-zih3ex > *, .framer-PPCnx .framer-1clqtb8 > *, .framer-PPCnx .framer-1ummtry > *, .framer-PPCnx .framer-r8fzym > *, .framer-PPCnx .framer-1qib0u1 > *, .framer-PPCnx .framer-1j2qx2t > *, .framer-PPCnx .framer-10a5uwp > *, .framer-PPCnx .framer-1xhbwwa > *, .framer-PPCnx .framer-1wlnd28 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-PPCnx .framer-11zeubu > *, .framer-PPCnx .framer-ene2z9 > *, .framer-PPCnx .framer-hcq83t > *, .framer-PPCnx .framer-hzxv7h > *, .framer-PPCnx .framer-1dlgpwc > *, .framer-PPCnx .framer-i7mgz > *, .framer-PPCnx .framer-1xxwop4 > *, .framer-PPCnx .framer-1xoonxx > *, .framer-PPCnx .framer-18kauub > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PPCnx .framer-11zeubu > :first-child, .framer-PPCnx .framer-ene2z9 > :first-child, .framer-PPCnx .framer-125okts > :first-child, .framer-PPCnx .framer-1vyi416 > :first-child, .framer-PPCnx .framer-12bj9sw > :first-child, .framer-PPCnx .framer-179eiyf > :first-child, .framer-PPCnx .framer-9w20pb > :first-child, .framer-PPCnx .framer-1md6iq8 > :first-child, .framer-PPCnx .framer-1q8zit2 > :first-child, .framer-PPCnx .framer-199nrf1 > :first-child, .framer-PPCnx .framer-wttjq3 > :first-child, .framer-PPCnx .framer-84hj43 > :first-child, .framer-PPCnx .framer-190h9vb > :first-child, .framer-PPCnx .framer-hcq83t > :first-child, .framer-PPCnx .framer-16uxpo1 > :first-child, .framer-PPCnx .framer-1m4t31d > :first-child, .framer-PPCnx .framer-nmd7cs > :first-child, .framer-PPCnx .framer-e0tgze > :first-child, .framer-PPCnx .framer-nholz8 > :first-child, .framer-PPCnx .framer-hzxv7h > :first-child, .framer-PPCnx .framer-1dlgpwc > :first-child, .framer-PPCnx .framer-5cd0a2 > :first-child, .framer-PPCnx .framer-1w392l6 > :first-child, .framer-PPCnx .framer-i7mgz > :first-child, .framer-PPCnx .framer-1xxwop4 > :first-child, .framer-PPCnx .framer-103o0id > :first-child, .framer-PPCnx .framer-10ieoa1 > :first-child, .framer-PPCnx .framer-l629y2 > :first-child, .framer-PPCnx .framer-1xoonxx > :first-child, .framer-PPCnx .framer-18kauub > :first-child, .framer-PPCnx .framer-1qtit3h > :first-child, .framer-PPCnx .framer-12vndev > :first-child, .framer-PPCnx .framer-14qptrx > :first-child, .framer-PPCnx .framer-aounoh > :first-child, .framer-PPCnx .framer-18fty9n > :first-child, .framer-PPCnx .framer-mwv01y > :first-child { margin-left: 0px; } .framer-PPCnx .framer-11zeubu > :last-child, .framer-PPCnx .framer-ene2z9 > :last-child, .framer-PPCnx .framer-125okts > :last-child, .framer-PPCnx .framer-1vyi416 > :last-child, .framer-PPCnx .framer-12bj9sw > :last-child, .framer-PPCnx .framer-179eiyf > :last-child, .framer-PPCnx .framer-9w20pb > :last-child, .framer-PPCnx .framer-1md6iq8 > :last-child, .framer-PPCnx .framer-1q8zit2 > :last-child, .framer-PPCnx .framer-199nrf1 > :last-child, .framer-PPCnx .framer-wttjq3 > :last-child, .framer-PPCnx .framer-84hj43 > :last-child, .framer-PPCnx .framer-190h9vb > :last-child, .framer-PPCnx .framer-hcq83t > :last-child, .framer-PPCnx .framer-16uxpo1 > :last-child, .framer-PPCnx .framer-1m4t31d > :last-child, .framer-PPCnx .framer-nmd7cs > :last-child, .framer-PPCnx .framer-e0tgze > :last-child, .framer-PPCnx .framer-nholz8 > :last-child, .framer-PPCnx .framer-hzxv7h > :last-child, .framer-PPCnx .framer-1dlgpwc > :last-child, .framer-PPCnx .framer-5cd0a2 > :last-child, .framer-PPCnx .framer-1w392l6 > :last-child, .framer-PPCnx .framer-i7mgz > :last-child, .framer-PPCnx .framer-1xxwop4 > :last-child, .framer-PPCnx .framer-103o0id > :last-child, .framer-PPCnx .framer-10ieoa1 > :last-child, .framer-PPCnx .framer-l629y2 > :last-child, .framer-PPCnx .framer-1xoonxx > :last-child, .framer-PPCnx .framer-18kauub > :last-child, .framer-PPCnx .framer-1qtit3h > :last-child, .framer-PPCnx .framer-12vndev > :last-child, .framer-PPCnx .framer-14qptrx > :last-child, .framer-PPCnx .framer-aounoh > :last-child, .framer-PPCnx .framer-18fty9n > :last-child, .framer-PPCnx .framer-mwv01y > :last-child { margin-right: 0px; } .framer-PPCnx .framer-1epplo6 > *, .framer-PPCnx .framer-105p2h > *, .framer-PPCnx .framer-1g3o2ur > *, .framer-PPCnx .framer-10mus89 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-PPCnx .framer-125okts > *, .framer-PPCnx .framer-103o0id > *, .framer-PPCnx .framer-1qtit3h > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-PPCnx .framer-1vyi416 > *, .framer-PPCnx .framer-179eiyf > *, .framer-PPCnx .framer-1md6iq8 > *, .framer-PPCnx .framer-199nrf1 > *, .framer-PPCnx .framer-84hj43 > *, .framer-PPCnx .framer-190h9vb > *, .framer-PPCnx .framer-16uxpo1 > *, .framer-PPCnx .framer-1m4t31d > *, .framer-PPCnx .framer-nmd7cs > *, .framer-PPCnx .framer-e0tgze > *, .framer-PPCnx .framer-5cd0a2 > *, .framer-PPCnx .framer-1w392l6 > *, .framer-PPCnx .framer-10ieoa1 > *, .framer-PPCnx .framer-l629y2 > *, .framer-PPCnx .framer-14qptrx > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-PPCnx .framer-1tzexv3 > *, .framer-PPCnx .framer-1dxymix > *, .framer-PPCnx .framer-11pybz > *, .framer-PPCnx .framer-1oj2xo4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PPCnx .framer-12bj9sw > *, .framer-PPCnx .framer-9w20pb > *, .framer-PPCnx .framer-1q8zit2 > *, .framer-PPCnx .framer-wttjq3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-PPCnx .framer-banc6s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PPCnx .framer-14yxxls > *, .framer-PPCnx .framer-mb6q7o > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-PPCnx .framer-1klm3jh > *, .framer-PPCnx .framer-1ly4qn8 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-PPCnx .framer-nholz8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-PPCnx .framer-1o1e1m0 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-PPCnx .framer-12vndev > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-PPCnx .framer-11fug1 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-PPCnx .framer-aounoh > *, .framer-PPCnx .framer-18fty9n > *, .framer-PPCnx .framer-mwv01y > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",'.framer-PPCnx[data-border=\"true\"]::after, .framer-PPCnx [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-PPCnx.framer-14p5v8k { width: 1200px; } .framer-PPCnx .framer-1ytzl3u { width: 100%; } .framer-PPCnx .framer-ayw7c0 { bottom: 141px; height: 345px; left: 594px; width: 487px; } .framer-PPCnx .framer-k4b8lk { height: var(--framer-aspect-ratio-supported, 486px); } .framer-PPCnx .framer-egosl8, .framer-PPCnx .framer-5cd0a2, .framer-PPCnx .framer-1kbibjb { height: min-content; width: min-content; } .framer-PPCnx .framer-12ylx6k { width: 290px; } .framer-PPCnx .framer-l6rmy5 { width: 305px; } .framer-PPCnx .framer-10ieoa1 { width: 411px; } .framer-PPCnx .framer-1q2kwl7 { width: 360px; } .framer-PPCnx .framer-1udml65 { align-self: stretch; width: auto; } .framer-PPCnx .framer-1fwdkhg { height: var(--framer-aspect-ratio-supported, 411px); width: 48%; }}\",\"@media (max-width: 809px) { .framer-PPCnx.framer-14p5v8k { width: 390px; } .framer-PPCnx.framer-1shsqt4, .framer-PPCnx.framer-1fyh9tq, .framer-PPCnx.framer-bmui3o { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: 100%; left: calc(50.00000000000002% - 100% / 2); padding: 24px 20px 24px 20px; top: calc(50.00000000000002% - 100% / 2); transform: unset; width: 100%; } .framer-PPCnx .framer-tqqt2q, .framer-PPCnx .framer-r0p2cn, .framer-PPCnx .framer-dycin3 { order: 3; width: 100%; } .framer-PPCnx .framer-11zeubu, .framer-PPCnx .framer-i7mgz, .framer-PPCnx .framer-1xoonxx { flex-direction: column; } .framer-PPCnx .framer-1fg2szs-container, .framer-PPCnx .framer-1twpawm-container, .framer-PPCnx .framer-e4dksk-container { order: 0; width: 100%; } .framer-PPCnx .framer-ene2z9, .framer-PPCnx .framer-1xxwop4, .framer-PPCnx .framer-18kauub { flex: none; order: 1; width: 100%; } .framer-PPCnx .framer-1epplo6, .framer-PPCnx .framer-1g3o2ur, .framer-PPCnx .framer-10mus89 { gap: 24px; order: 0; } .framer-PPCnx .framer-1t3eg18 { height: 800px; } .framer-PPCnx .framer-1ytzl3u { gap: 32px; top: 50%; width: 89%; } .framer-PPCnx .framer-1ar7ysk, .framer-PPCnx .framer-mk6mio, .framer-PPCnx .framer-pgmc0k, .framer-PPCnx .framer-12ylx6k, .framer-PPCnx .framer-l6rmy5, .framer-PPCnx .framer-1q2kwl7 { width: 100%; } .framer-PPCnx.framer-jzty43 { height: 100vh; z-index: 1; } .framer-PPCnx .framer-n71pqx { cursor: pointer; } .framer-PPCnx .framer-1ol7k60 { width: 310px; } .framer-PPCnx .framer-1g5801h { height: 24px; width: 42px; } .framer-PPCnx .framer-17jxy9g { height: var(--framer-aspect-ratio-supported, 25px); width: 27px; } .framer-PPCnx .framer-1dufehw { height: 24px; width: 25px; } .framer-PPCnx .framer-10zswyi { height: 25px; width: 35px; } .framer-PPCnx .framer-1wccvcl { height: 24px; width: 17px; } .framer-PPCnx .framer-14yxxls { gap: 16px; padding: 64px 20px 120px 20px; } .framer-PPCnx .framer-ayw7c0 { bottom: unset; height: 286px; left: unset; order: 1; position: relative; width: 360px; } .framer-PPCnx .framer-1klm3jh { order: 0; } .framer-PPCnx .framer-1ly4qn8 { order: 2; } .framer-PPCnx .framer-nholz8 { align-content: flex-start; align-items: flex-start; flex-direction: column; width: min-content; } .framer-PPCnx .framer-1o1e1m0 { justify-content: flex-start; padding: 80px 20px 60px 20px; } .framer-PPCnx .framer-mb6q7o { gap: 0px; } .framer-PPCnx .framer-109ej88 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 60px; justify-content: flex-start; overflow: hidden; padding: 0px 20px 30px 20px; } .framer-PPCnx .framer-k4b8lk { height: var(--framer-aspect-ratio-supported, 310px); width: 100%; } .framer-PPCnx .framer-egosl8 { gap: 36px; height: min-content; width: 100%; } .framer-PPCnx .framer-5cd0a2 { width: 411px; } .framer-PPCnx .framer-vick5n { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 60px; justify-content: flex-start; overflow: hidden; padding: 30px 20px 80px 20px; } .framer-PPCnx .framer-1kbibjb { gap: 36px; height: min-content; order: 1; width: 100%; } .framer-PPCnx .framer-10ieoa1 { width: 350px; } .framer-PPCnx .framer-1fwdkhg { aspect-ratio: unset; height: 248px; order: 0; width: 353px; } .framer-PPCnx .framer-12vndev { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex-direction: column; gap: 60px; justify-content: center; padding: 60px 20px 60px 20px; } .framer-PPCnx .framer-1qv45oh { order: 1; width: 100%; } .framer-PPCnx .framer-y3avpy { height: var(--framer-aspect-ratio-supported, 311px); } .framer-PPCnx .framer-11fug1 { flex: none; gap: 36px; order: 0; width: 100%; } .framer-PPCnx .framer-h4v251-container { height: 120px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PPCnx .framer-11zeubu, .framer-PPCnx .framer-1epplo6, .framer-PPCnx .framer-1ytzl3u, .framer-PPCnx .framer-14yxxls, .framer-PPCnx .framer-nholz8, .framer-PPCnx .framer-mb6q7o, .framer-PPCnx .framer-109ej88, .framer-PPCnx .framer-egosl8, .framer-PPCnx .framer-i7mgz, .framer-PPCnx .framer-1g3o2ur, .framer-PPCnx .framer-vick5n, .framer-PPCnx .framer-1kbibjb, .framer-PPCnx .framer-1xoonxx, .framer-PPCnx .framer-10mus89, .framer-PPCnx .framer-12vndev, .framer-PPCnx .framer-11fug1 { gap: 0px; } .framer-PPCnx .framer-11zeubu > *, .framer-PPCnx .framer-i7mgz > *, .framer-PPCnx .framer-1xoonxx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PPCnx .framer-11zeubu > :first-child, .framer-PPCnx .framer-1epplo6 > :first-child, .framer-PPCnx .framer-1ytzl3u > :first-child, .framer-PPCnx .framer-14yxxls > :first-child, .framer-PPCnx .framer-nholz8 > :first-child, .framer-PPCnx .framer-mb6q7o > :first-child, .framer-PPCnx .framer-109ej88 > :first-child, .framer-PPCnx .framer-egosl8 > :first-child, .framer-PPCnx .framer-i7mgz > :first-child, .framer-PPCnx .framer-1g3o2ur > :first-child, .framer-PPCnx .framer-vick5n > :first-child, .framer-PPCnx .framer-1kbibjb > :first-child, .framer-PPCnx .framer-1xoonxx > :first-child, .framer-PPCnx .framer-10mus89 > :first-child, .framer-PPCnx .framer-12vndev > :first-child, .framer-PPCnx .framer-11fug1 > :first-child { margin-top: 0px; } .framer-PPCnx .framer-11zeubu > :last-child, .framer-PPCnx .framer-1epplo6 > :last-child, .framer-PPCnx .framer-1ytzl3u > :last-child, .framer-PPCnx .framer-14yxxls > :last-child, .framer-PPCnx .framer-nholz8 > :last-child, .framer-PPCnx .framer-mb6q7o > :last-child, .framer-PPCnx .framer-109ej88 > :last-child, .framer-PPCnx .framer-egosl8 > :last-child, .framer-PPCnx .framer-i7mgz > :last-child, .framer-PPCnx .framer-1g3o2ur > :last-child, .framer-PPCnx .framer-vick5n > :last-child, .framer-PPCnx .framer-1kbibjb > :last-child, .framer-PPCnx .framer-1xoonxx > :last-child, .framer-PPCnx .framer-10mus89 > :last-child, .framer-PPCnx .framer-12vndev > :last-child, .framer-PPCnx .framer-11fug1 > :last-child { margin-bottom: 0px; } .framer-PPCnx .framer-1epplo6 > *, .framer-PPCnx .framer-1g3o2ur > *, .framer-PPCnx .framer-10mus89 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PPCnx .framer-1ytzl3u > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-PPCnx .framer-14yxxls > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-PPCnx .framer-nholz8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PPCnx .framer-mb6q7o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PPCnx .framer-109ej88 > *, .framer-PPCnx .framer-vick5n > *, .framer-PPCnx .framer-12vndev > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-PPCnx .framer-egosl8 > *, .framer-PPCnx .framer-1kbibjb > *, .framer-PPCnx .framer-11fug1 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-PPCnx.framer-14p5v8k { width: 810px; } .framer-PPCnx.framer-1shsqt4, .framer-PPCnx.framer-1fyh9tq, .framer-PPCnx.framer-bmui3o { top: 137px; transform: translateX(-50%); } .framer-PPCnx .framer-1ytzl3u { top: 50%; width: 100%; } .framer-PPCnx .framer-1ar7ysk, .framer-PPCnx .framer-pgmc0k, .framer-PPCnx .framer-12ylx6k, .framer-PPCnx .framer-l6rmy5 { width: 100%; } .framer-PPCnx .framer-ayw7c0 { bottom: unset; height: 408px; left: unset; order: 1; position: sticky; top: 0px; width: 577px; z-index: 1; } .framer-PPCnx .framer-1klm3jh { order: 0; } .framer-PPCnx .framer-1ly4qn8 { order: 2; } .framer-PPCnx .framer-nholz8 { flex-wrap: wrap; gap: 32px; width: 100%; } .framer-PPCnx .framer-109ej88, .framer-PPCnx .framer-vick5n { flex-direction: column; gap: 60px; justify-content: center; } .framer-PPCnx .framer-k4b8lk { height: var(--framer-aspect-ratio-supported, 505px); width: 100%; } .framer-PPCnx .framer-egosl8 { height: min-content; width: 100%; } .framer-PPCnx .framer-5cd0a2 { height: min-content; width: min-content; } .framer-PPCnx .framer-1kbibjb { height: min-content; order: 1; width: 100%; } .framer-PPCnx .framer-1fwdkhg { height: var(--framer-aspect-ratio-supported, 508px); order: 0; width: 100%; } .framer-PPCnx .framer-12vndev { align-content: flex-start; align-items: flex-start; flex-direction: column; width: min-content; } .framer-PPCnx .framer-1qv45oh { order: 1; } .framer-PPCnx .framer-11fug1 { flex: none; order: 0; width: 570px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PPCnx .framer-nholz8, .framer-PPCnx .framer-109ej88, .framer-PPCnx .framer-vick5n, .framer-PPCnx .framer-12vndev { gap: 0px; } .framer-PPCnx .framer-nholz8 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-PPCnx .framer-nholz8 > :first-child { margin-left: 0px; } .framer-PPCnx .framer-nholz8 > :last-child { margin-right: 0px; } .framer-PPCnx .framer-109ej88 > *, .framer-PPCnx .framer-vick5n > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-PPCnx .framer-109ej88 > :first-child, .framer-PPCnx .framer-vick5n > :first-child, .framer-PPCnx .framer-12vndev > :first-child { margin-top: 0px; } .framer-PPCnx .framer-109ej88 > :last-child, .framer-PPCnx .framer-vick5n > :last-child, .framer-PPCnx .framer-12vndev > :last-child { margin-bottom: 0px; } .framer-PPCnx .framer-12vndev > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6647\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zucwW3iTy\":{\"layout\":[\"fixed\",\"auto\"]},\"H9p1FwUE0\":{\"layout\":[\"fixed\",\"auto\"]},\"IfSbnjFHM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"uIFGCE7L2\":{\"pattern\":\":uIFGCE7L2\",\"name\":\"hero\"},\"IKYfyqPvv\":{\"pattern\":\":IKYfyqPvv\",\"name\":\"about\"},\"mUTCLanoh\":{\"pattern\":\":mUTCLanoh\",\"name\":\"ourservices\"},\"aedhp8tWM\":{\"pattern\":\":aedhp8tWM\",\"name\":\"feature1\"},\"QVVviBwZ2\":{\"pattern\":\":QVVviBwZ2\",\"name\":\"feature2\"},\"t_zHUpHWV\":{\"pattern\":\":t_zHUpHWV\",\"name\":\"socialproof\"},\"fpv0oShu6\":{\"pattern\":\":fpv0oShu6\",\"name\":\"form\"},\"TfV_0_CEN\":{\"pattern\":\":TfV_0_CEN\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const Frameri8duHiuqV=withCSS(Component,css,\"framer-PPCnx\");export default Frameri8duHiuqV;Frameri8duHiuqV.displayName=\"Home\";Frameri8duHiuqV.defaultProps={height:6647,width:1440};addFonts(Frameri8duHiuqV,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...NavbarFonts,...ButtonFonts,...VideoFonts,...AnimatedCounterFonts,...Button1Fonts,...SlidesOurPartners2Fonts,...TickerFonts,...Footer_formFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameri8duHiuqV\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"6647\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zucwW3iTy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H9p1FwUE0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IfSbnjFHM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"uIFGCE7L2\\\":{\\\"pattern\\\":\\\":uIFGCE7L2\\\",\\\"name\\\":\\\"hero\\\"},\\\"IKYfyqPvv\\\":{\\\"pattern\\\":\\\":IKYfyqPvv\\\",\\\"name\\\":\\\"about\\\"},\\\"mUTCLanoh\\\":{\\\"pattern\\\":\\\":mUTCLanoh\\\",\\\"name\\\":\\\"ourservices\\\"},\\\"aedhp8tWM\\\":{\\\"pattern\\\":\\\":aedhp8tWM\\\",\\\"name\\\":\\\"feature1\\\"},\\\"QVVviBwZ2\\\":{\\\"pattern\\\":\\\":QVVviBwZ2\\\",\\\"name\\\":\\\"feature2\\\"},\\\"t_zHUpHWV\\\":{\\\"pattern\\\":\\\":t_zHUpHWV\\\",\\\"name\\\":\\\"socialproof\\\"},\\\"fpv0oShu6\\\":{\\\"pattern\\\":\\\":fpv0oShu6\\\",\\\"name\\\":\\\"form\\\"},\\\"TfV_0_CEN\\\":{\\\"pattern\\\":\\\":TfV_0_CEN\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "label", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "FzopeykYQ", "MCTlfhiEb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap190lslt", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerfXp7eYb4Y", "withCSS", "fXp7eYb4Y_default", "addPropertyControls", "ControlType", "addFonts", "Tab_buttonFonts", "getFonts", "fXp7eYb4Y_default", "ButtonFonts", "ivjsgY1gt_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "MCTlfhiEbg72yps", "args", "MCTlfhiEbvarq0g", "MCTlfhiEbmw6t9f", "MCTlfhiEb12zpu7q", "MCTlfhiEbe8bjf4", "MCTlfhiEboimnr3", "MCTlfhiEbrekkdl", "MCTlfhiEbxhzrcl", "MCTlfhiEb1cx6joo", "MCTlfhiEb14k4jf6", "MCTlfhiEb1ulick7", "MCTlfhiEboree69", "MCTlfhiEb1ys9jbw", "MCTlfhiEb1f9bbyg", "MCTlfhiEb1hjytug", "MCTlfhiEb1f2v44x", "MCTlfhiEbet6dkf", "MCTlfhiEb10bmyr7", "MCTlfhiEbzhnm2v", "MCTlfhiEb1edt875", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "css", "FramerOaXlUNFGB", "withCSS", "OaXlUNFGB_default", "addPropertyControls", "ControlType", "addFonts", "NavbarFonts", "getFonts", "mFpSCBv1D_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "ButtonFonts", "k061zrOfw_default", "VideoFonts", "Video", "FormContainerWithFX", "withFX", "FormContainer", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "AnimatedCounterFonts", "AnimatedCounter", "RichTextWithFX", "RichText2", "ImageWithFX", "MotionDivWithFX", "motion", "Button1Fonts", "ivjsgY1gt_default", "ContainerWithFX", "Container", "SlidesOurPartners2Fonts", "OaXlUNFGB_default", "TickerFonts", "Ticker", "Footer_formFonts", "yrcLei0NJ_default", "FooterFonts", "jTGkU2HP3_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "formVariants", "form", "variants", "currentVariant", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation", "transition1", "textEffect", "textEffect1", "textEffect2", "animation1", "transition2", "transition3", "animation2", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "transition7", "animation7", "textEffect3", "textEffect4", "textEffect5", "animation8", "animation9", "textEffect6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "cnwoHbvmxyrcLei0NJ", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "hHedf9p0P3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "onTap3bnx0g", "yNMrGq_Xp3bnx0g", "scopingClassNames", "cx", "ref1", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "elementId1", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "router", "useRouter", "elementId6", "ref7", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "SVG", "formState", "FormPlainTextInput2", "getLoadingLazyAtYPosition", "overlay1", "overlay2", "overlay3", "ResolveLinks", "resolvedLinks", "css", "Frameri8duHiuqV", "withCSS", "i8duHiuqV_default", "addFonts", "__FramerMetadata__"]
}
