{
  "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/mXRMfr1hEWsWuszOFxvn/FCpIxLovvVeqEepuhtKK/G1quos_R8.js", "ssg:https://framerusercontent.com/modules/ojpk5VH8dW7slTIuuRFB/fMPbvbK6AtC9ak3ugHY0/pP7JHpqrA.js", "ssg:https://framerusercontent.com/modules/875RQT7Vo9FJWoyRiYUG/ImdOz4lktFcPw5J5Su61/ZtqXN38zW.js", "ssg:https://framerusercontent.com/modules/mpvz1xWpI2ajQxTOdKgS/J0muqPrx69LqvwwIWsLS/JYIEmzcQj.js", "ssg:https://framerusercontent.com/modules/wvbYtBSZon98kt6Wtkof/30NJiwZlaQXs4Yy47m9b/e8MqUfc3j.js", "ssg:https://framerusercontent.com/modules/j0IEhlZ28tfr7yJGCr6V/iLSsdjrX9JIO5UAuWaMm/sqcnnD9OB.js", "ssg:https://framerusercontent.com/modules/w1CWstGTZ3t5VNk6FPYo/0GTuvDvKhV8RMnvSRkz7/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const 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 (e4e7123)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/fQY1ZqprfwVOsTn3sepF/rmDa1yjXU9qOqU7PLpvu/e8MqUfc3j.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"zgsSv6D90\",\"wPUtodq0S\"];const serializationHash=\"framer-B5qhb\";const variantClassNames={wPUtodq0S:\"framer-v-17exa27\",zgsSv6D90:\"framer-v-1j4nrae\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};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.create(React.Fragment);const humanReadableVariantMap={Dekstop:\"zgsSv6D90\",Phone:\"wPUtodq0S\"};const getProps=({height,id,padding,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,Ii9PAH3tb:(_ref=padding!==null&&padding!==void 0?padding:props.Ii9PAH3tb)!==null&&_ref!==void 0?_ref:\"40px 60px 40px 60px\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"zgsSv6D90\"};};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,Ii9PAH3tb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zgsSv6D90\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1j4nrae\",className,classNames),\"data-framer-name\":\"Dekstop\",layoutDependency:layoutDependency,layoutId:\"zgsSv6D90\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1pn2t8c\":numberToPixelString(Ii9PAH3tb),backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({wPUtodq0S:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xo0xl9\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"TaxuHbfg6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f60523da-67f1-4acb-b019-29b0c1a82d33, rgb(186, 191, 196)))\"},children:\"Chosen by healthcare leaders\"})}),className:\"framer-2a8b7p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Saf325JIS\",style:{\"--extracted-r6o4lv\":\"var(--token-f60523da-67f1-4acb-b019-29b0c1a82d33, rgb(186, 191, 196))\",\"--framer-paragraph-spacing\":\"30px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yuhlz0-container\",layoutDependency:layoutDependency,layoutId:\"XNtA_NGyt-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:.5,id:\"XNtA_NGyt\",layoutId:\"XNtA_NGyt\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:175,pixelHeight:200,pixelWidth:350,src:\"https://framerusercontent.com/images/PEaUrYTakISVd7ka1HRBB4tCzPY.png\"},className:\"framer-vhuwa7\",\"data-framer-name\":\"Chs-bw-logo\",layoutDependency:layoutDependency,layoutId:\"vieVvewCW\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:175,pixelHeight:200,pixelWidth:350,src:\"https://framerusercontent.com/images/rGBwY8rMcNIsfLpG4GAj6yxevUw.png\"},className:\"framer-1r2g13z\",\"data-framer-name\":\"Christus-bw-logo\",layoutDependency:layoutDependency,layoutId:\"F7aOWJrvX\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:175,pixelHeight:200,pixelWidth:350,src:\"https://framerusercontent.com/images/L3Z3rN5Bjo52KuYQ4Lik8OkZ3A.png\"},className:\"framer-swco0s\",\"data-framer-name\":\"Lifepoint-bw-logo\",layoutDependency:layoutDependency,layoutId:\"nDXuy0Dg9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:175,pixelHeight:200,pixelWidth:350,src:\"https://framerusercontent.com/images/RZ74y1njtXExpg4gMqCRhl5DhTg.png\"},className:\"framer-1ugtbkl\",\"data-framer-name\":\"Scion-bw-logo\",layoutDependency:layoutDependency,layoutId:\"h1UV9awW1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:175,pixelHeight:200,pixelWidth:350,src:\"https://framerusercontent.com/images/By8GQes9j2cz3Y7IuIzEfxX3BL4.png\"},className:\"framer-u6giul\",\"data-framer-name\":\"Tenet-bw-logo\",layoutDependency:layoutDependency,layoutId:\"LQfQLuDjG\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:127,intrinsicWidth:238,pixelHeight:254,pixelWidth:476,src:\"https://framerusercontent.com/images/98OOvrJlapoLZsGsgiw8tS2oko.jpeg\"},className:\"framer-10t5kgy\",\"data-framer-name\":\"Bsmh-bw-logo\",layoutDependency:layoutDependency,layoutId:\"nxwYPy1mp\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({wPUtodq0S:{gap:26,padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B5qhb.framer-1cdbadx, .framer-B5qhb .framer-1cdbadx { display: block; }\",\".framer-B5qhb.framer-1j4nrae { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: var(--1pn2t8c); position: relative; width: 1920px; }\",\".framer-B5qhb .framer-xo0xl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-B5qhb .framer-2a8b7p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-B5qhb .framer-yuhlz0-container { flex: none; height: 107px; position: relative; width: 100%; }\",\".framer-B5qhb .framer-vhuwa7, .framer-B5qhb .framer-1r2g13z, .framer-B5qhb .framer-swco0s, .framer-B5qhb .framer-1ugtbkl, .framer-B5qhb .framer-u6giul { aspect-ratio: 1.75 / 1; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 175px; }\",\".framer-B5qhb .framer-10t5kgy { aspect-ratio: 1.874015748031496 / 1; height: var(--framer-aspect-ratio-supported, 89px); overflow: visible; position: relative; width: 167px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B5qhb.framer-1j4nrae, .framer-B5qhb .framer-xo0xl9 { gap: 0px; } .framer-B5qhb.framer-1j4nrae > *, .framer-B5qhb .framer-xo0xl9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-B5qhb.framer-1j4nrae > :first-child, .framer-B5qhb .framer-xo0xl9 > :first-child { margin-top: 0px; } .framer-B5qhb.framer-1j4nrae > :last-child, .framer-B5qhb .framer-xo0xl9 > :last-child { margin-bottom: 0px; } }\",\".framer-B5qhb.framer-v-17exa27.framer-1j4nrae { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 211\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wPUtodq0S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Ii9PAH3tb\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG1quos_R8=withCSS(Component,css,\"framer-B5qhb\");export default FramerG1quos_R8;FramerG1quos_R8.displayName=\"Section/Brands\";FramerG1quos_R8.defaultProps={height:211,width:1920};addPropertyControls(FramerG1quos_R8,{variant:{options:[\"zgsSv6D90\",\"wPUtodq0S\"],optionTitles:[\"Dekstop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},Ii9PAH3tb:{defaultValue:\"40px 60px 40px 60px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerG1quos_R8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG1quos_R8\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"211\",\"framerIntrinsicWidth\":\"1920\",\"framerVariables\":\"{\\\"Ii9PAH3tb\\\":\\\"padding\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wPUtodq0S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G1quos_R8.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-regular\",\"GF;Poppins-700\",\"GF;Poppins-700italic\",\"GF;Poppins-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiGyp8kv8JHgFVrJJLecnFBGPaTSQ.woff2\",weight:\"400\"}]}];export const css=['.framer-L60Oz .framer-styles-preset-1hmsvbq:not(.rich-text-wrapper), .framer-L60Oz .framer-styles-preset-1hmsvbq.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, #525c66); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-L60Oz .framer-styles-preset-1hmsvbq:not(.rich-text-wrapper), .framer-L60Oz .framer-styles-preset-1hmsvbq.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, #525c66); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-L60Oz .framer-styles-preset-1hmsvbq:not(.rich-text-wrapper), .framer-L60Oz .framer-styles-preset-1hmsvbq.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, #525c66); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-L60Oz\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-600\",\"GF;Poppins-900\",\"GF;Poppins-900italic\",\"GF;Poppins-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5V15vFP-KUEg.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm81xlFd2PQEhcqw.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmr19lFd2PQEhcqw.woff2\",weight:\"600\"}]}];export const css=['.framer-BjImk .framer-styles-preset-1a12uxy:not(.rich-text-wrapper), .framer-BjImk .framer-styles-preset-1a12uxy.rich-text-wrapper h5 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 810px) { .framer-BjImk .framer-styles-preset-1a12uxy:not(.rich-text-wrapper), .framer-BjImk .framer-styles-preset-1a12uxy.rich-text-wrapper h5 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-BjImk .framer-styles-preset-1a12uxy:not(.rich-text-wrapper), .framer-BjImk .framer-styles-preset-1a12uxy.rich-text-wrapper h5 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, #111111); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-BjImk\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ojpk5VH8dW7slTIuuRFB/fMPbvbK6AtC9ak3ugHY0/pP7JHpqrA.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/875RQT7Vo9FJWoyRiYUG/ImdOz4lktFcPw5J5Su61/ZtqXN38zW.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"pe7pc9KmC\",\"psNBvPf45\",\"O4qygjxuK\",\"L8CT58YiA\"];const serializationHash=\"framer-sBuOS\";const variantClassNames={L8CT58YiA:\"framer-v-84bjl5\",O4qygjxuK:\"framer-v-16zhgxn\",pe7pc9KmC:\"framer-v-1giklft\",psNBvPf45:\"framer-v-s43ihy\"};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:80,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={\"Phone-Closed\":\"O4qygjxuK\",\"Phone-open\":\"L8CT58YiA\",Closed:\"pe7pc9KmC\",Open:\"psNBvPf45\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"pe7pc9KmC\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pe7pc9KmC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1jbmr23=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"L8CT58YiA\");});const onTap11xm1gp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"O4qygjxuK\");});const onTapohg68w=activeVariantCallback(async(...args)=>{setVariant(\"psNBvPf45\");});const onTapv2ur4x=activeVariantCallback(async(...args)=>{setVariant(\"pe7pc9KmC\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"psNBvPf45\",\"L8CT58YiA\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1giklft\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"pe7pc9KmC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({L8CT58YiA:{\"data-framer-name\":\"Phone-open\",\"data-highlight\":true,onTap:onTap11xm1gp},O4qygjxuK:{\"data-framer-name\":\"Phone-Closed\",\"data-highlight\":true,onTap:onTap1jbmr23},psNBvPf45:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x5u90j\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"s08xark08\",onTap:onTapohg68w,...addPropertyOverrides({L8CT58YiA:{\"data-highlight\":undefined,onTap:undefined},O4qygjxuK:{\"data-highlight\":undefined,onTap:undefined},psNBvPf45:{onTap:onTapv2ur4x}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1iim4u5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QsCiiuyho\",style:{\"--extracted-1lwpl3i\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18xc6e1\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"czNTZ3vze\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kpjz6d-container\",layoutDependency:layoutDependency,layoutId:\"jMkILHIVM-container\",style:{rotate:0},variants:{L8CT58YiA:{rotate:180},psNBvPf45:{rotate:180}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f60523da-67f1-4acb-b019-29b0c1a82d33, rgb(186, 191, 196))\",height:\"100%\",iconSearch:\"CaretDown\",iconSelection:\"House\",id:\"jMkILHIVM\",layoutId:\"jMkILHIVM\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7a83jg\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"H1hnKwvpC\",style:{opacity:0},variants:{L8CT58YiA:{opacity:1},psNBvPf45:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-v6ebym\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B4HeuBENn\",text:T8rQFvSBR,variants:{L8CT58YiA:{\"--extracted-r6o4lv\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},psNBvPf45:{\"--extracted-r6o4lv\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({L8CT58YiA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})})},psNBvPf45:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sBuOS.framer-1o2c2fh, .framer-sBuOS .framer-1o2c2fh { display: block; }\",\".framer-sBuOS.framer-1giklft { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-sBuOS .framer-x5u90j { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 24px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-sBuOS .framer-1iim4u5 { -webkit-user-select: auto; flex: 1 0 0px; height: auto; position: relative; user-select: auto; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sBuOS .framer-18xc6e1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-sBuOS .framer-1kpjz6d-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-sBuOS .framer-7a83jg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 90%; }\",\".framer-sBuOS .framer-v6ebym { -webkit-user-select: auto; flex: none; height: auto; position: relative; user-select: auto; 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-sBuOS.framer-1giklft, .framer-sBuOS .framer-x5u90j, .framer-sBuOS .framer-7a83jg { gap: 0px; } .framer-sBuOS.framer-1giklft > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sBuOS.framer-1giklft > :first-child, .framer-sBuOS .framer-7a83jg > :first-child { margin-top: 0px; } .framer-sBuOS.framer-1giklft > :last-child, .framer-sBuOS .framer-7a83jg > :last-child { margin-bottom: 0px; } .framer-sBuOS .framer-x5u90j > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-sBuOS .framer-x5u90j > :first-child { margin-left: 0px; } .framer-sBuOS .framer-x5u90j > :last-child { margin-right: 0px; } .framer-sBuOS .framer-7a83jg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-sBuOS.framer-v-s43ihy .framer-7a83jg, .framer-sBuOS.framer-v-84bjl5 .framer-7a83jg { padding: 0px 0px 30px 0px; }\",\".framer-sBuOS.framer-v-16zhgxn.framer-1giklft, .framer-sBuOS.framer-v-84bjl5.framer-1giklft { cursor: pointer; }\",\".framer-sBuOS.framer-v-16zhgxn .framer-x5u90j, .framer-sBuOS.framer-v-84bjl5 .framer-x5u90j { cursor: unset; }\",\".framer-sBuOS.framer-v-84bjl5 .framer-1iim4u5 { order: 0; }\",\".framer-sBuOS.framer-v-84bjl5 .framer-18xc6e1 { order: 1; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 126\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"psNBvPf45\":{\"layout\":[\"fixed\",\"auto\"]},\"O4qygjxuK\":{\"layout\":[\"fixed\",\"auto\"]},\"L8CT58YiA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJYIEmzcQj=withCSS(Component,css,\"framer-sBuOS\");export default FramerJYIEmzcQj;FramerJYIEmzcQj.displayName=\"Section/FAQ - Question\";FramerJYIEmzcQj.defaultProps={height:126,width:400};addPropertyControls(FramerJYIEmzcQj,{variant:{options:[\"pe7pc9KmC\",\"psNBvPf45\",\"O4qygjxuK\",\"L8CT58YiA\"],optionTitles:[\"Closed\",\"Open\",\"Phone-Closed\",\"Phone-open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerJYIEmzcQj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJYIEmzcQj\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerIntrinsicHeight\":\"126\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"psNBvPf45\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O4qygjxuK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L8CT58YiA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-600\",\"GF;Poppins-900\",\"GF;Poppins-900italic\",\"GF;Poppins-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5V15vFP-KUEg.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm81xlFd2PQEhcqw.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmr19lFd2PQEhcqw.woff2\",weight:\"600\"}]}];export const css=['.framer-ur9oB .framer-styles-preset-1po14y4:not(.rich-text-wrapper), .framer-ur9oB .framer-styles-preset-1po14y4.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, #011932); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-ur9oB .framer-styles-preset-1po14y4:not(.rich-text-wrapper), .framer-ur9oB .framer-styles-preset-1po14y4.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 22px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, #011932); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ur9oB .framer-styles-preset-1po14y4:not(.rich-text-wrapper), .framer-ur9oB .framer-styles-preset-1po14y4.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 22px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, #011932); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-ur9oB\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/wvbYtBSZon98kt6Wtkof/30NJiwZlaQXs4Yy47m9b/e8MqUfc3j.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={Uf9cKxuhR:{hover:true}};const cycleOrder=[\"CjEHFWqVh\",\"Is6c0M9ey\",\"UKphh9mXE\",\"TPKPdX0Ic\",\"Uf9cKxuhR\"];const serializationHash=\"framer-nSyjo\";const variantClassNames={CjEHFWqVh:\"framer-v-m15u2g\",Is6c0M9ey:\"framer-v-10dccdt\",TPKPdX0Ic:\"framer-v-72yjxf\",Uf9cKxuhR:\"framer-v-1jbgru6\",UKphh9mXE:\"framer-v-1taqdst\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition2={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={\"Badge-Outline-Black\":\"TPKPdX0Ic\",\"Badge-Outline\":\"CjEHFWqVh\",\"Badge-Plain\":\"UKphh9mXE\",\"Badge-Small\":\"Uf9cKxuhR\",\"Badge-White\":\"Is6c0M9ey\"};const getProps=({border,content,height,id,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,JDEMNPLZW:(_ref=content!==null&&content!==void 0?content:props.JDEMNPLZW)!==null&&_ref!==void 0?_ref:\"Workflows\",uCazwUNgB:(_ref1=border!==null&&border!==void 0?border:props.uCazwUNgB)!==null&&_ref1!==void 0?_ref1:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"CjEHFWqVh\"};};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,JDEMNPLZW,uCazwUNgB,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CjEHFWqVh\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();var _uCazwUNgB_borderBottomWidth,_uCazwUNgB_borderLeftWidth,_uCazwUNgB_borderRightWidth,_uCazwUNgB_borderTopWidth;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:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-m15u2g\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Badge-Outline\",layoutDependency:layoutDependency,layoutId:\"CjEHFWqVh\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(211, 227, 235, 0.72)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgb(255, 255, 255) 2.3684757858670017e-14%, rgb(255, 255, 255) 21.856901544401506%, rgb(235, 245, 255) 100%)\",borderBottomLeftRadius:23,borderBottomRightRadius:23,borderTopLeftRadius:23,borderTopRightRadius:23,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.5px rgba(11, 59, 107, 0.21296), 0px 2.288533303243457px 2.288533303243457px -3px rgba(11, 59, 107, 0.17923), 0px 10px 10px -4.5px rgba(11, 59, 107, 0.025)\",...style},variants:{Is6c0M9ey:{\"--border-color\":\"rgba(34, 34, 34, 0)\"},Uf9cKxuhR:{\"--border-bottom-width\":`${(_uCazwUNgB_borderBottomWidth=uCazwUNgB.borderBottomWidth)!==null&&_uCazwUNgB_borderBottomWidth!==void 0?_uCazwUNgB_borderBottomWidth:uCazwUNgB.borderWidth}px`,\"--border-color\":uCazwUNgB.borderColor,\"--border-left-width\":`${(_uCazwUNgB_borderLeftWidth=uCazwUNgB.borderLeftWidth)!==null&&_uCazwUNgB_borderLeftWidth!==void 0?_uCazwUNgB_borderLeftWidth:uCazwUNgB.borderWidth}px`,\"--border-right-width\":`${(_uCazwUNgB_borderRightWidth=uCazwUNgB.borderRightWidth)!==null&&_uCazwUNgB_borderRightWidth!==void 0?_uCazwUNgB_borderRightWidth:uCazwUNgB.borderWidth}px`,\"--border-style\":uCazwUNgB.borderStyle,\"--border-top-width\":`${(_uCazwUNgB_borderTopWidth=uCazwUNgB.borderTopWidth)!==null&&_uCazwUNgB_borderTopWidth!==void 0?_uCazwUNgB_borderTopWidth:uCazwUNgB.borderWidth}px`},UKphh9mXE:{\"--border-color\":\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"Uf9cKxuhR-hover\":{\"data-framer-name\":undefined},Is6c0M9ey:{\"data-framer-name\":\"Badge-White\"},TPKPdX0Ic:{\"data-framer-name\":\"Badge-Outline-Black\"},Uf9cKxuhR:{\"data-framer-name\":\"Badge-Small\"},UKphh9mXE:{\"data-framer-name\":\"Badge-Plain\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208)))\"},children:\"Workflows\"})}),className:\"framer-xutvfw\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zrPtz_HUw\",style:{\"--extracted-r6o4lv\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\"},text:JDEMNPLZW,variants:{\"Uf9cKxuhR-hover\":{\"--extracted-r6o4lv\":\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\"},Uf9cKxuhR:{\"--extracted-r6o4lv\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},UKphh9mXE:{\"--extracted-r6o4lv\":\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Uf9cKxuhR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)))\"},children:\"Workflows\"})})},Uf9cKxuhR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102)))\"},children:\"Workflows\"})}),fonts:[\"GF;Inter-600\"]},UKphh9mXE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)))\"},children:\"Workflows\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nSyjo.framer-1fquawd, .framer-nSyjo .framer-1fquawd { display: block; }\",\".framer-nSyjo.framer-m15u2g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 14px 4px 14px; position: relative; width: min-content; }\",\".framer-nSyjo .framer-xutvfw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nSyjo.framer-m15u2g { gap: 0px; } .framer-nSyjo.framer-m15u2g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nSyjo.framer-m15u2g > :first-child { margin-left: 0px; } .framer-nSyjo.framer-m15u2g > :last-child { margin-right: 0px; } }\",\".framer-nSyjo.framer-v-1jbgru6.framer-m15u2g { cursor: pointer; height: 26px; padding: 2px 10px 2px 10px; }\",...sharedStyle.css,'.framer-nSyjo[data-border=\"true\"]::after, .framer-nSyjo [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 32\n * @framerIntrinsicWidth 113\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Is6c0M9ey\":{\"layout\":[\"auto\",\"auto\"]},\"UKphh9mXE\":{\"layout\":[\"auto\",\"auto\"]},\"TPKPdX0Ic\":{\"layout\":[\"auto\",\"auto\"]},\"Uf9cKxuhR\":{\"layout\":[\"auto\",\"fixed\"]},\"dpkU1Ik3t\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"JDEMNPLZW\":\"content\",\"uCazwUNgB\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersqcnnD9OB=withCSS(Component,css,\"framer-nSyjo\");export default FramersqcnnD9OB;FramersqcnnD9OB.displayName=\"Badge/Normal\";FramersqcnnD9OB.defaultProps={height:32,width:113};addPropertyControls(FramersqcnnD9OB,{variant:{options:[\"CjEHFWqVh\",\"Is6c0M9ey\",\"UKphh9mXE\",\"TPKPdX0Ic\",\"Uf9cKxuhR\"],optionTitles:[\"Badge-Outline\",\"Badge-White\",\"Badge-Plain\",\"Badge-Outline-Black\",\"Badge-Small\"],title:\"Variant\",type:ControlType.Enum},JDEMNPLZW:{defaultValue:\"Workflows\",displayTextArea:false,title:\"Content\",type:ControlType.String},uCazwUNgB:{defaultValue:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border}});addFonts(FramersqcnnD9OB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersqcnnD9OB\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"113\",\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Is6c0M9ey\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UKphh9mXE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TPKPdX0Ic\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Uf9cKxuhR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"dpkU1Ik3t\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"JDEMNPLZW\\\":\\\"content\\\",\\\"uCazwUNgB\\\":\\\"border\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sqcnnD9OB.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SectionBrands from\"#framer/local/canvasComponent/G1quos_R8/G1quos_R8.js\";import SectionFAQQuestion from\"#framer/local/canvasComponent/JYIEmzcQj/JYIEmzcQj.js\";import Button from\"#framer/local/canvasComponent/KF7UbbSfc/KF7UbbSfc.js\";import SectionCTA from\"#framer/local/canvasComponent/LpjyIZj0_/LpjyIZj0_.js\";import SectionFooter from\"#framer/local/canvasComponent/lS9TvqxVt/lS9TvqxVt.js\";import HomeDesktop from\"#framer/local/canvasComponent/pqx7SY14c/pqx7SY14c.js\";import BackgroundGrid from\"#framer/local/canvasComponent/pwVXWPq1Q/pwVXWPq1Q.js\";import TopNavigationBar from\"#framer/local/canvasComponent/sltkc74h7/sltkc74h7.js\";import BadgeNormal from\"#framer/local/canvasComponent/sqcnnD9OB/sqcnnD9OB.js\";import*as sharedStyle4 from\"#framer/local/css/dvxIS3aly/dvxIS3aly.js\";import*as sharedStyle6 from\"#framer/local/css/GiIrC5gDK/GiIrC5gDK.js\";import*as sharedStyle1 from\"#framer/local/css/iWwuCnlxd/iWwuCnlxd.js\";import*as sharedStyle7 from\"#framer/local/css/Jjj2T4gpQ/Jjj2T4gpQ.js\";import*as sharedStyle8 from\"#framer/local/css/lF9kmblJi/lF9kmblJi.js\";import*as sharedStyle from\"#framer/local/css/oEPT_ciXE/oEPT_ciXE.js\";import*as sharedStyle3 from\"#framer/local/css/pP7JHpqrA/pP7JHpqrA.js\";import*as sharedStyle5 from\"#framer/local/css/x4uNjjtJw/x4uNjjtJw.js\";import*as sharedStyle2 from\"#framer/local/css/ZtqXN38zW/ZtqXN38zW.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavigationBarFonts=getFonts(TopNavigationBar);const BackgroundGridFonts=getFonts(BackgroundGrid);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const HomeDesktopFonts=getFonts(HomeDesktop);const SectionBrandsFonts=getFonts(SectionBrands);const PhosphorFonts=getFonts(Phosphor);const MotionAWithFX=withFX(motion.a);const BadgeNormalFonts=getFonts(BadgeNormal);const ImageWithFX=withFX(Image);const SectionFAQQuestionFonts=getFonts(SectionFAQQuestion);const ContainerWithFX=withFX(Container);const SectionCTAFonts=getFonts(SectionCTA);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={ilCPgpUK1:\"(min-width: 810px) and (max-width: 1279px)\",WQLkyLRf1:\"(min-width: 1920px)\",xf27aOaI0:\"(min-width: 1280px) and (max-width: 1919px)\",xmttBflmi:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BE6Z5\";const variantClassNames={ilCPgpUK1:\"framer-v-fr0arj\",WQLkyLRf1:\"framer-v-72rtr7\",xf27aOaI0:\"framer-v-138cown\",xmttBflmi:\"framer-v-1oijrcc\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:80,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition2={damping:80,delay:.5,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const transition3={damping:80,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-40,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:-40,y:0};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={boxShadow:\"0px 0px 5px 2px var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const transition5={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};const transition6={damping:80,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:40};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition7={damping:100,delay:1.2,mass:1,stiffness:500,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={damping:80,delay:.8,mass:1,stiffness:500,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:40};const transition9={damping:80,delay:1,mass:1,stiffness:500,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:40};const transition10={damping:80,delay:1.4,mass:1,stiffness:500,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:40};const transition11={damping:80,delay:1.1,mass:1,stiffness:500,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:40};const transition12={damping:80,delay:1.2,mass:1,stiffness:500,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:40};const transition13={damping:80,delay:1.3,mass:1,stiffness:500,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop-1920\":\"WQLkyLRf1\",Desktop:\"xf27aOaI0\",Phone:\"xmttBflmi\",Tablet:\"ilCPgpUK1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"wmq2fun3b\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"Ps2T7_7OG\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xmttBflmi\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"xf27aOaI0\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"xf27aOaI0\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"xmttBflmi\")return true;return false;};const elementId2=useRouteElementId(\"tyaJWB848\");const ref3=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if([\"ilCPgpUK1\",\"xmttBflmi\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"ilCPgpUK1\")return true;return false;};const elementId3=useRouteElementId(\"ndlThHx0u\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:componentViewport?.width||\"100vw\",y:0},xmttBflmi:{width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nfyqiq-container\",layoutScroll:true,nodeId:\"e6KSY9g1O\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{style:{width:\"100%\"},variant:\"QFrDOQu_j\"},xmttBflmi:{style:{width:\"100%\"},variant:\"wLpyUMyTT\"}},children:/*#__PURE__*/_jsx(TopNavigationBar,{height:\"100%\",id:\"e6KSY9g1O\",layoutId:\"e6KSY9g1O\",QC5fvS0rg:0,sG2_oXGa2:\"rgba(255, 255, 255, 0.78)\",variant:\"tZO_1MKZj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-116cg1o\",\"data-framer-name\":\"Section - Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:\"810px\",y:(componentViewport?.y||0)+0+0+88.07200000000017},xf27aOaI0:{width:\"1600px\"},xmttBflmi:{height:723,width:`calc(${componentViewport?.width||\"100vw\"} + 964px)`,y:(componentViewport?.y||0)+0+0+-113}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:727,width:\"1920px\",y:(componentViewport?.y||0)+0+0+-120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-armwt7-container\",nodeId:\"JVwk7WxCk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BackgroundGrid,{height:\"100%\",id:\"JVwk7WxCk\",layoutId:\"JVwk7WxCk\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fsbns6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kc5ix7\",\"data-framer-name\":\"Content left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-131nqtm\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-103zubr\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1viqu0x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(6, 28, 54) 0%, rgb(49, 68, 89) 100%)\"},children:\"Advanced Visibility Tools For Healthcare\"})})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(6, 28, 54) 0%, rgb(49, 68, 89) 100%)\"},children:\"Advanced Visibility Tools For Healthcare\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(286deg, rgb(6, 28, 54) 0%, rgb(49, 68, 89) 100%)\"},children:\"Advanced Visibility Tools For Healthcare\"})})}),className:\"framer-172bfaj\",\"data-framer-name\":\"Improving Safety & Productivity for Carriers\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Facilities achieve sustained improvements in financial performance and timely access to care for patients.\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Facilities achieve sustained improvements in financial performance and timely access to care for patients.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",children:\"Facilities achieve sustained improvements in financial performance and timely access to care for patients.\"})}),className:\"framer-r6p37f\",\"data-framer-name\":\"To be the technology platform that eliminates inefficiencies in the transportation industry.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gu353a\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined},{href:{webPageId:\"mTqFgu2_G\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+0+140+0+0+0+0+245+0},xmttBflmi:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 430px), 1px)`,y:(componentViewport?.y||0)+0+0+0+0+140+0+0+237+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"170px\",y:(componentViewport?.y||0)+0+0+0+271+40+0+249+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g5qsyv-container\",nodeId:\"BX_F0cvN9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"arrow-right\",CJwkcCfE5:resolvedLinks[0],GR68CgLTN:\"Contact Us\",height:\"100%\",id:\"BX_F0cvN9\",layoutId:\"BX_F0cvN9\",LG5CSJpvD:false,ot18wTv79:false,style:{width:\"100%\"},variant:\"WKIwTYTZF\",w5Hgz19ND:10,width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t3fhr0\",\"data-framer-name\":\"Hero - Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+0+140+0+0+325+0},xmttBflmi:{height:254,width:\"358px\",y:(componentViewport?.y||0)+0+0+0+0+140+277+66}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:426.5,width:\"602px\",y:(componentViewport?.y||0)+0+0+0+271+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bryj7p-container\",nodeId:\"sJCy9bdPh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HomeDesktop,{height:\"100%\",id:\"sJCy9bdPh\",layoutId:\"sJCy9bdPh\",style:{height:\"100%\",width:\"100%\"},variant:\"fILp7k7ZK\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+933},xmttBflmi:{y:(componentViewport?.y||0)+0+775}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:211,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+750,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da3v62-container\",id:elementId,nodeId:\"wmq2fun3b\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{Ii9PAH3tb:\"0px 0px 20px 0px\"}},children:/*#__PURE__*/_jsx(SectionBrands,{height:\"100%\",id:\"wmq2fun3b\",Ii9PAH3tb:\"40px 60px 40px 60px\",layoutId:\"wmq2fun3b\",style:{width:\"100%\"},variant:\"zgsSv6D90\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1236gso\",\"data-framer-name\":\"Choose your Solution\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ycwa5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bm1ux4\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r6bp7j\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Choose your Solution\"})}),className:\"framer-u5inq1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14z4qf4\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K6xCbsh28\"},motionChild:true,nodeId:\"oTeJdmqxV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9w1mng framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card/Icon\",style:{transformPerspective:1200},whileHover:animation6,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1144+23.5+0+0+0+86+0+0+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+18.5+0+0+0+95+0+0+20+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+33+0+0+0+106+0+0+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"},className:\"framer-gze9wb hidden-1oijrcc\",\"data-framer-name\":\"solution-icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-159mmk5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Wmxt0M7IS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",height:\"100%\",iconSearch:\"user-switch\",iconSelection:\"House\",id:\"Wmxt0M7IS\",layoutId:\"Wmxt0M7IS\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k998ze\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Admit Control\"})}),className:\"framer-1pbpe4w\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Optimize patient admits and internal transfers with integrated bed management and visibility.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Optimize patient admits and internal transfers with integrated bed management and visibility.\"})}),className:\"framer-1aojjr5\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WYSe9A6eI\"},motionChild:true,nodeId:\"Ti5pVMoQx\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13deq6b framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card/Icon\",style:{transformPerspective:1200},whileHover:animation6,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1144+23.5+0+0+0+86+0+0+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+18.5+0+0+0+95+0+0+20+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+33+0+0+0+106+0+0+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"},className:\"framer-ikzz3c hidden-1oijrcc\",\"data-framer-name\":\"solution-icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-146m63p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XKl2DhE7g\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",height:\"100%\",iconSearch:\"bed\",iconSelection:\"House\",id:\"XKl2DhE7g\",layoutId:\"XKl2DhE7g\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6oui9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Bed Control\"})}),className:\"framer-hl6whr\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Streamline bed turnover with real-time tracking and automated room dispatching.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Streamline bed turnover with real-time tracking and automated room dispatching.\"})}),className:\"framer-acvv16\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FtkSex5dJ\"},motionChild:true,nodeId:\"JDWPPziSw\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-aikp7n framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card/Icon\",style:{transformPerspective:1200},whileHover:animation6,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1144+23.5+0+0+0+86+0+0+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+18.5+0+0+0+95+0+0+20+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+33+0+0+0+106+0+0+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"},className:\"framer-rklgeh hidden-1oijrcc\",\"data-framer-name\":\"solution-icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1afxgyn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eUmxWccrN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",height:\"100%\",iconSearch:\"wheelchair\",iconSelection:\"House\",id:\"eUmxWccrN\",layoutId:\"eUmxWccrN\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8akyuu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Transport Control\"})}),className:\"framer-2tenim\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Enhance transport efficiency with real-time tracking, mobile access, and crowd-sourced management.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Enhance transport efficiency with real-time tracking, mobile access, and crowd-sourced management.\"})}),className:\"framer-1kcz321\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yutQFdODx\"},motionChild:true,nodeId:\"r73GUdkMU\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n0ar0a framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card/Icon\",style:{transformPerspective:1200},whileHover:animation6,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1144+23.5+0+0+0+86+0+329+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+18.5+0+0+0+95+0+0+20+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+33+0+0+0+106+0+0+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"},className:\"framer-1sh1g87 hidden-1oijrcc\",\"data-framer-name\":\"solution-icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17rbl50-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IxVkDM4Tr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",height:\"100%\",iconSearch:\"robot\",iconSelection:\"House\",id:\"IxVkDM4Tr\",layoutId:\"IxVkDM4Tr\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e6825j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Equipment Control\"})}),className:\"framer-1kxleuf\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Monitor equipment status to optimize usage, reduce costs, and improve room availability insights.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Monitor equipment status to optimize usage, reduce costs, and improve room availability insights.\"})}),className:\"framer-iqfu9b\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zTsLR2OdP\"},motionChild:true,nodeId:\"MxDYXedHg\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v1cqmy framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card/Icon\",style:{transformPerspective:1200},whileHover:animation6,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1144+23.5+0+0+0+86+0+329+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+18.5+0+0+0+95+0+299+20+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+33+0+0+0+106+0+329+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"},className:\"framer-26hw9n hidden-1oijrcc\",\"data-framer-name\":\"solution-icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qh438k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xPnOKP8sD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",height:\"100%\",iconSearch:\"hospital\",iconSelection:\"House\",id:\"xPnOKP8sD\",layoutId:\"xPnOKP8sD\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tfrs9k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Community Gateway\"})}),className:\"framer-wa8hoq\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Connect providers with real-time referral tracking, and enhanced patient placement visibility.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Connect providers with real-time referral tracking, and enhanced patient placement visibility.\"})}),className:\"framer-1shiv82\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sN4olU7YZ\"},motionChild:true,nodeId:\"BHxfo0XN_\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-129p377 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card/Icon\",style:{transformPerspective:1200},whileHover:animation6,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1144+23.5+0+0+0+86+0+329+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+18.5+0+0+0+95+0+299+20+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+33+0+0+0+106+0+329+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"},className:\"framer-1nszl4i hidden-1oijrcc\",\"data-framer-name\":\"solution-icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rrwzno-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kOkyVgzOE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",height:\"100%\",iconSearch:\"speedometer\",iconSelection:\"House\",id:\"kOkyVgzOE\",layoutId:\"kOkyVgzOE\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cj0usk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Service Control\"})}),className:\"framer-1rwt2wp\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Empower teams with real-time request management and visibility for operational excellence.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Empower teams with real-time request management and enhanced visibility for operational excellence.\"})}),className:\"framer-1wmfttr\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YGtwU0pF3\"},motionChild:true,nodeId:\"ote3bpoNc\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bl75gu framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card/Icon\",style:{transformPerspective:1200},whileHover:animation6,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1144+23.5+0+0+0+86+0+658+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+18.5+0+0+0+95+0+299+20+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+33+0+0+0+106+0+329+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"},className:\"framer-ha3ewr hidden-1oijrcc\",\"data-framer-name\":\"solution-icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p9z78t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Q0MELXIeS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",height:\"100%\",iconSearch:\"list-checks\",iconSelection:\"House\",id:\"Q0MELXIeS\",layoutId:\"Q0MELXIeS\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ktz66z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Daily Checklists\"})}),className:\"framer-1epnce5\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Manage recurring tasks with mobile access, real-time updates, and performance visibility.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Track and manage recurring tasks with mobile access, real-time updates, and performance visibility.\"})}),className:\"framer-1vdvfdm\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jXW64rzVl\"},motionChild:true,nodeId:\"S8YISMbnS\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7z8y6g framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card/Icon\",style:{transformPerspective:1200},whileHover:animation6,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1144+23.5+0+0+0+86+0+658+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+18.5+0+0+0+95+0+299+20+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+961+33+0+0+0+106+0+329+24+0),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg\",srcSet:\"https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/egUTUjNwqfPzPk7o6Oa151XgpE.svg 960w\"},className:\"framer-p94acy hidden-1oijrcc\",\"data-framer-name\":\"solution-icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ubejf7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"R7nIgkzCn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\",height:\"100%\",iconSearch:\"mask\",iconSelection:\"House\",id:\"R7nIgkzCn\",layoutId:\"R7nIgkzCn\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3oehd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Infection Control\"})}),className:\"framer-bvdq47\",\"data-framer-name\":\"Heading 3 \u2192 San Francisco\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Lower infection rates by tracking processes, compliance, and improving patient safety.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Lower infection rates by tracking processes, compliance, and improving patient safety.\"})}),className:\"framer-1crckm9\",\"data-framer-name\":\"The majority of the office is based in San Fransisco.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})]})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1enuwmc\",\"data-framer-name\":\"Automated. Integrated.\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cf1ibq hidden-1oijrcc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-irpp6m\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cobose\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Automated.   Integrated.\"})}),className:\"framer-ofcd25\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1obrfon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\"},children:\"Intelligent.\"})}),className:\"framer-fe0pn1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14n9cel\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q9iba1 hidden-1oijrcc\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:165,intrinsicWidth:166,pixelHeight:330,pixelWidth:332,src:\"https://framerusercontent.com/images/5xVOUabxaH8arwzCZwz0Fg.png\"},className:\"framer-nlxdyu hidden-138cown\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-wnbc04\",\"data-framer-name\":\"Clinical Teams\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Clinical Teams\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Clinical Teams\"})}),className:\"framer-14184w7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"Support your clinical teams with custom bed boards and quick service requests.\"})}),className:\"framer-hyijc\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:164,intrinsicWidth:166,pixelHeight:328,pixelWidth:332,src:\"https://framerusercontent.com/images/gHnBnDVqyh39n7JolODoFpBHE4o.png\"},className:\"framer-m5ghcn\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-1h6qz3l\",\"data-framer-name\":\"Hospital EHR\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x2iuvg\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ckhj7v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"akPMc3Krq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"hospital\",iconSelection:\"House\",id:\"akPMc3Krq\",layoutId:\"akPMc3Krq\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Hospital EHR / HIS\"})}),className:\"framer-171p8a1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"Integrate with any major EMR system in the US for updates via HL7\"})}),className:\"framer-1ev1ajf\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-1u55beu\",\"data-border\":true,\"data-framer-name\":\"Data\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1etvc16\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r09e7r-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Gz9Lg5Wha\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",height:\"100%\",iconSearch:\"chart-line\",iconSelection:\"House\",id:\"Gz9Lg5Wha\",layoutId:\"Gz9Lg5Wha\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\"},children:\"Advanced Analytics\"})}),className:\"framer-1e8qil7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"Gain insights across your operations with interactive business intelligence\"})}),className:\"framer-15auyow\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-s080vz\",\"data-framer-name\":\"Desktop / Mobile\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hqklxx\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-py7woj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fqTL7kUkM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"mobile\",iconSelection:\"House\",id:\"fqTL7kUkM\",layoutId:\"fqTL7kUkM\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Desktop / Mobile Apps\"})}),className:\"framer-109qiip\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"Web-based and native mobile apps provide mobility and real-time visibility.\"})}),className:\"framer-s1lp3x\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:165,intrinsicWidth:166,pixelHeight:330,pixelWidth:332,src:\"https://framerusercontent.com/images/a3eTnL9OJ0xPo563cVOf5wkWEtI.png\"},className:\"framer-1plhaj7 hidden-72rtr7 hidden-fr0arj\",\"data-framer-name\":\"Image\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:165,intrinsicWidth:166,pixelHeight:330,pixelWidth:332,src:\"https://framerusercontent.com/images/a3eTnL9OJ0xPo563cVOf5wkWEtI.png\"},className:\"framer-1dli80i hidden-138cown\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-1pdfida\",\"data-framer-name\":\"Service Teams\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Service Teams\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Service Teams\"})}),className:\"framer-1mdldv3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"Support your service teams with real-time requests and tracking.\"})}),className:\"framer-15154e9\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:165,intrinsicWidth:165,pixelHeight:330,pixelWidth:330,src:\"https://framerusercontent.com/images/k231e9mY1E6OiPxRPCIWdMSQp2M.png\"},className:\"framer-8kzujm hidden-72rtr7 hidden-fr0arj\",\"data-framer-name\":\"Image\"}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:165,intrinsicWidth:166,pixelHeight:330,pixelWidth:332,src:\"https://framerusercontent.com/images/5xVOUabxaH8arwzCZwz0Fg.png\"},className:\"framer-1ahr3b hidden-72rtr7 hidden-fr0arj\",\"data-framer-name\":\"Image\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:165,intrinsicWidth:165,pixelHeight:330,pixelWidth:330,src:\"https://framerusercontent.com/images/k231e9mY1E6OiPxRPCIWdMSQp2M.png\"},className:\"framer-1kia2s hidden-138cown\",\"data-framer-name\":\"Image\"})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jqxs1s hidden-72rtr7 hidden-138cown hidden-fr0arj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Automated.\"})}),className:\"framer-1u1kg50\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bvskfg hidden-72rtr7 hidden-138cown hidden-fr0arj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Integrated.\"})}),className:\"framer-1xh7i0v\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qfdl4p hidden-72rtr7 hidden-138cown hidden-fr0arj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\"},children:\"Intelligent.\"})}),className:\"framer-14hkvs7\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ld4q2i hidden-72rtr7 hidden-138cown hidden-fr0arj\",children:[/*#__PURE__*/_jsx(FormContainer,{className:\"framer-10h0ua6\",\"data-framer-name\":\"Clinical Teams\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hospital EHR / HIS\"})}),className:\"framer-ecwsiz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Integrate with any major EMR system in the US for updates via HL7\"})}),className:\"framer-1xxwvgw\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-1axkvmy\",\"data-framer-name\":\"Clinical Teams\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Clinical Teams\"})}),className:\"framer-8x8mv0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Support your clinical teams with custom bed boards and quick service requests.\"})}),className:\"framer-1qxcni2\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-rq7i8w\",\"data-framer-name\":\"Clinical Teams\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Service Teams\"})}),className:\"framer-qiwn9e\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Support your service teams with real-time requests and tracking.\"})}),className:\"framer-poyvaf\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-chd6d5\",\"data-framer-name\":\"Clinical Teams\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Desktop / Mobile Apps\"})}),className:\"framer-4vmtlu\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Web-based and native mobile apps provide mobility and real-time visibility.\"})}),className:\"framer-fvfy7x\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(FormContainer,{className:\"framer-64e6g1\",\"data-framer-name\":\"Data\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2up5m\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-174opx4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PkKmGMmVo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",height:\"100%\",iconSearch:\"chart-line\",iconSelection:\"House\",id:\"PkKmGMmVo\",layoutId:\"PkKmGMmVo\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\"},children:\"Advanced Analytics\"})}),className:\"framer-1l66h4f\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m0ov8s\",\"data-styles-preset\":\"x4uNjjtJw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Support your clinical teams with custom bed boards and quick service requests.\"})}),className:\"framer-10vbmch\",\"data-framer-name\":\"Normally, we will respond within 3 business days.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-qsgfe1\",\"data-framer-name\":\"Advanced Analytics\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:undefined,y:(componentViewport?.y||0)+0+2944+1240.8-727},xf27aOaI0:{y:(componentViewport?.y||0)+0+2411+693.8-727},xmttBflmi:{y:(componentViewport?.y||0)+0+3256+2034.8-727}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:727,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2490+693.8-727,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q5t15n-container\",nodeId:\"vRcEQscNs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BackgroundGrid,{height:\"100%\",id:\"vRcEQscNs\",layoutId:\"vRcEQscNs\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1adkfnh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bwhfal\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Advanced Analytics\"})}),className:\"framer-m6hkcd\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+2944+60+0+0+0+0+66.80000000000001},xf27aOaI0:{y:(componentViewport?.y||0)+0+2411+80+0+0+0+0+66.80000000000001},xmttBflmi:{y:(componentViewport?.y||0)+0+3256+48+0+0+0+0+66.80000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+2490+80+0+0+0+0+66.80000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s520bk-container\",nodeId:\"sYUCSeMo6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BadgeNormal,{height:\"100%\",id:\"sYUCSeMo6\",JDEMNPLZW:\"Embedded + Deliverable\",layoutId:\"sYUCSeMo6\",uCazwUNgB:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:\"Is6c0M9ey\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-amdfa7\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-izrqvy\",\"data-border\":true,\"data-framer-name\":\"Dashboard - Patient Access\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Patient Access Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2944+60+0+0+146.8+14+12+0),pixelHeight:414,pixelWidth:475,src:\"https://framerusercontent.com/images/U6jOJPNWTFIdBEc1l0TYybYAs8.png\"}},xf27aOaI0:{background:{alt:\"Patient Access Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2411+80+0+0+146.8+0+12+0),pixelHeight:414,pixelWidth:475,src:\"https://framerusercontent.com/images/U6jOJPNWTFIdBEc1l0TYybYAs8.png\"}},xmttBflmi:{background:{alt:\"Patient Access Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3256+48+0+0+122.80000000000001+2+12+0),pixelHeight:414,pixelWidth:475,src:\"https://framerusercontent.com/images/U6jOJPNWTFIdBEc1l0TYybYAs8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Patient Access Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2490+80+0+0+146.8+0+12+0),pixelHeight:414,pixelWidth:475,src:\"https://framerusercontent.com/images/U6jOJPNWTFIdBEc1l0TYybYAs8.png\"},className:\"framer-4hkjqk\",\"data-framer-name\":\"Desktop-patient-access-dashboard\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qll9qt\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Patient Access\"})}),className:\"framer-an530f\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Monitor patient admits, internal transfers and hold times\"})}),className:\"framer-1j3av7n\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15048xi hidden-1oijrcc\",\"data-border\":true,\"data-framer-name\":\"Dashboard - Patient Access\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Patient Departs Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2944+60+0+0+146.8+2+24+0),pixelHeight:414,pixelWidth:475,src:\"https://framerusercontent.com/images/lSOgBG9oeoT4wNoYQU3EmIZdF6o.png\"}},xf27aOaI0:{background:{alt:\"Patient Departs Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2411+80+0+0+146.8+0+12+0),pixelHeight:414,pixelWidth:475,src:\"https://framerusercontent.com/images/lSOgBG9oeoT4wNoYQU3EmIZdF6o.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Patient Departs Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2490+80+0+0+146.8+0+12+0),pixelHeight:414,pixelWidth:475,src:\"https://framerusercontent.com/images/lSOgBG9oeoT4wNoYQU3EmIZdF6o.png\"},className:\"framer-yfvgng\",\"data-framer-name\":\"Desktop-patient-access-dashboard\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tah04r\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Patient Departs\"})}),className:\"framer-1v5lo9c\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Track patient departs and conditional discharges\"})}),className:\"framer-1cifuul\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19mwqzw hidden-fr0arj hidden-1oijrcc\",\"data-border\":true,\"data-framer-name\":\"Dashboard - Patient Access\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{background:{alt:\"EVS Discharge Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2411+80+0+0+146.8+0+12+0),pixelHeight:406,pixelWidth:475,src:\"https://framerusercontent.com/images/2EwylwkPSyO31IQHciuE0hz2xrE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"EVS Discharge Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2490+80+0+0+146.8+0+12+0),pixelHeight:406,pixelWidth:475,src:\"https://framerusercontent.com/images/2EwylwkPSyO31IQHciuE0hz2xrE.png\"},className:\"framer-wpn2yd\",\"data-framer-name\":\"Desktop-patient-access-dashboard\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-loi5jw\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"EVS Discharges\"})}),className:\"framer-1arnxgl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Find bottlenecks and inefficiencies in housekeeping\"})}),className:\"framer-bckzoo\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19p2898 hidden-fr0arj hidden-1oijrcc\",\"data-border\":true,\"data-framer-name\":\"Dashboard - Patient Access\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{background:{alt:\"Transports Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2411+80+0+0+146.8+0+12+0),pixelHeight:435,pixelWidth:480,src:\"https://framerusercontent.com/images/p5D0xEBo4ZlgKwzdJmrk4rkcQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Transports Dashboard\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2490+80+0+0+146.8+0+12+0),pixelHeight:435,pixelWidth:480,src:\"https://framerusercontent.com/images/p5D0xEBo4ZlgKwzdJmrk4rkcQ.png\"},className:\"framer-bsdxu3\",\"data-framer-name\":\"Desktop-patient-access-dashboard\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oi5mix\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Transport Times\"})}),className:\"framer-bey0ko\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Maintain performant transport runtimes of patient transfers\"})}),className:\"framer-cxkkzw\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-35l6e1 hidden-72rtr7 hidden-138cown hidden-fr0arj\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2djeuk\",\"data-border\":true,\"data-framer-name\":\"Dashboard - Patient Access\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3256+48+0+0+576.8+2+12+0),pixelHeight:414,pixelWidth:475,src:\"https://framerusercontent.com/images/lSOgBG9oeoT4wNoYQU3EmIZdF6o.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,pixelHeight:414,pixelWidth:475,src:\"https://framerusercontent.com/images/lSOgBG9oeoT4wNoYQU3EmIZdF6o.png\"},className:\"framer-q60ux3\",\"data-framer-name\":\"Desktop-patient-access-dashboard\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nspkl\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Patient Departs\"})}),className:\"framer-coez6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Track patient departs and conditional discharges\"})}),className:\"framer-1eojf3p\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u0bb85 hidden-72rtr7 hidden-138cown hidden-fr0arj\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ym5m0b\",\"data-border\":true,\"data-framer-name\":\"Dashboard - Patient Access\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3256+48+0+0+1030.8+2+12+0),pixelHeight:406,pixelWidth:475,src:\"https://framerusercontent.com/images/2EwylwkPSyO31IQHciuE0hz2xrE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,pixelHeight:406,pixelWidth:475,src:\"https://framerusercontent.com/images/2EwylwkPSyO31IQHciuE0hz2xrE.png\"},className:\"framer-g14c5p\",\"data-framer-name\":\"Desktop-patient-access-dashboard\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zeoi08\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"EVS Discharges\"})}),className:\"framer-1cal7sc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Find bottlenecks and inefficiencies in housekeeping\"})}),className:\"framer-1l8yz4h\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iwsinv hidden-72rtr7 hidden-138cown hidden-fr0arj\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dbzhik\",\"data-border\":true,\"data-framer-name\":\"Dashboard - Patient Access\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3256+48+0+0+1484.8+2+12+0),pixelHeight:435,pixelWidth:480,src:\"https://framerusercontent.com/images/p5D0xEBo4ZlgKwzdJmrk4rkcQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,pixelHeight:435,pixelWidth:480,src:\"https://framerusercontent.com/images/p5D0xEBo4ZlgKwzdJmrk4rkcQ.png\"},className:\"framer-1hh1u2l\",\"data-framer-name\":\"Desktop-patient-access-dashboard\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3dt3s\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Transport Times\"})}),className:\"framer-1yvbu4d\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Maintain performant transport runtimes of patient transfers\"})}),className:\"framer-1km9ebp\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vr57qr hidden-72rtr7 hidden-138cown hidden-1oijrcc\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16ds8rs\",\"data-border\":true,\"data-framer-name\":\"Dashboard - Patient Access\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2944+60+0+0+645.8+2+12+0),pixelHeight:406,pixelWidth:475,src:\"https://framerusercontent.com/images/2EwylwkPSyO31IQHciuE0hz2xrE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,pixelHeight:406,pixelWidth:475,src:\"https://framerusercontent.com/images/2EwylwkPSyO31IQHciuE0hz2xrE.png\"},className:\"framer-135arnh\",\"data-framer-name\":\"Desktop-patient-access-dashboard\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1luj365\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"EVS Discharges\"})}),className:\"framer-k0bwgc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Find bottlenecks and inefficiencies in housekeeping\"})}),className:\"framer-1fgsw7t\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17ubn0o\",\"data-border\":true,\"data-framer-name\":\"Dashboard - Patient Access\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2944+60+0+0+645.8+2+12+0),pixelHeight:435,pixelWidth:480,src:\"https://framerusercontent.com/images/p5D0xEBo4ZlgKwzdJmrk4rkcQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207,intrinsicWidth:237.5,pixelHeight:435,pixelWidth:480,src:\"https://framerusercontent.com/images/p5D0xEBo4ZlgKwzdJmrk4rkcQ.png\"},className:\"framer-1a42r9u\",\"data-framer-name\":\"Desktop-patient-access-dashboard\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ptlqld\",\"data-framer-name\":\"Text and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Transport Times\"})}),className:\"framer-8xzz64\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},children:\"Maintain performant transport runtimes of patient transfers\"})}),className:\"framer-1opebws\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12bbq58\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200}})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-189kxw4\",\"data-framer-name\":\"Section - How We Compare\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-102pmfp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i5nlvy\",\"data-framer-name\":\"Text header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(46, 80, 97, 0.99) 0%, var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184)) 100%, rgba(5, 20, 133, 0.8) 100%)\"},children:\"How Do We Compare?\"})})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1.1px\",\"--framer-line-height\":\"45px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(46, 80, 97, 0.99) 0%, var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184)) 100%, rgba(5, 20, 133, 0.8) 100%)\"},children:\"How Do We Compare?\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(46, 80, 97, 0.99) 0%, var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184)) 100%, rgba(5, 20, 133, 0.8) 100%)\"},children:\"How Do We Compare?\"})})}),className:\"framer-v30enm\",\"data-framer-name\":\"Performance manageme\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z04swh\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16n718z\",\"data-framer-name\":\"Group\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vjk67e\",\"data-framer-name\":\"Content / Body text base\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19rr376\",\"data-framer-name\":\"Feature / Element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vn21ne\",\"data-framer-name\":\"Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-aae1yi\",\"data-framer-name\":\"Local / Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-s6s3qm\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rxsb0a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Vtwrz4KJc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f9179bde-2f3f-47bc-99b6-4783158d4069, rgb(75, 107, 123))\",height:\"100%\",iconSearch:\"trophy\",iconSelection:\"House\",id:\"Vtwrz4KJc\",layoutId:\"Vtwrz4KJc\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r7dg0i\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Best-in-Class Management Tools\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Best-in-Class Management Tools\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-8b80e420-2b18-452f-bee4-bc23bd42164b, rgb(45, 79, 97))\"},children:\"Best-in-Class Management Tools\"})}),className:\"framer-xj9ije\",\"data-framer-name\":\"Shared materials\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{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\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"Purpose-built for capacity and facility management, not just an afterthought.\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"Purpose-built for capacity and facility management, not just an afterthought.\"})})}},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\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6cde8a4a-b78a-466d-be88-02ffd2fc60ab, rgb(105, 134, 149))\"},children:\"Purpose-built for capacity and facility management, not just an afterthought.\"})}),className:\"framer-154uwdl\",\"data-framer-name\":\"This awesome element has more variants and fully customizable property.\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cv7thh\",\"data-framer-name\":\"Line 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:573,svg:'<svg width=\"573\" height=\"3\" viewBox=\"-1 -1 573 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"570.5\" y1=\"0.500488\" x2=\"0.5\" y2=\"0.500488\" stroke=\"#D9D9D9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ru7hit\",\"data-framer-name\":\"Feature / Element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w6bsct\",\"data-framer-name\":\"Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pjrzcx\",\"data-framer-name\":\"Local / Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-irtxnq\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i86rqr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dEqC6zSGA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f9179bde-2f3f-47bc-99b6-4783158d4069, rgb(75, 107, 123))\",height:\"100%\",iconSearch:\"user-check\",iconSelection:\"House\",id:\"dEqC6zSGA\",layoutId:\"dEqC6zSGA\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36wxe6\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"End-user Driven Design\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"End-user Driven Design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-8b80e420-2b18-452f-bee4-bc23bd42164b, rgb(45, 79, 97))\"},children:\"End-user Driven Design\"})}),className:\"framer-1p91vmj\",\"data-framer-name\":\"Live interaction\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{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\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"Developed in close collaboration with EVS and Clinical teams for real-world usability.\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"Developed in close collaboration with EVS and Clinical teams for real-world usability.\"})})}},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\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6cde8a4a-b78a-466d-be88-02ffd2fc60ab, rgb(105, 134, 149))\"},children:\"Developed in close collaboration with EVS and Clinical teams for real-world usability.\"})}),className:\"framer-qqgzfj\",\"data-framer-name\":\"This awesome element has more variants and fully customizable property.\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15qj1yt\",\"data-framer-name\":\"Line 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:573,svg:'<svg width=\"573\" height=\"3\" viewBox=\"-1 -1 573 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"570.5\" y1=\"0.500488\" x2=\"0.5\" y2=\"0.500488\" stroke=\"#D9D9D9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e2o8nr\",\"data-framer-name\":\"Feature / Element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yb15wk\",\"data-framer-name\":\"Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2mpt0m\",\"data-framer-name\":\"Local / Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-b57cn8\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vobvv3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UZIaWlRCY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f9179bde-2f3f-47bc-99b6-4783158d4069, rgb(75, 107, 123))\",height:\"100%\",iconSearch:\"dollar\",iconSelection:\"House\",id:\"UZIaWlRCY\",layoutId:\"UZIaWlRCY\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bubfrj\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Cost-Effective\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Cost-Effective\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-8b80e420-2b18-452f-bee4-bc23bd42164b, rgb(45, 79, 97))\"},children:\"Cost-Effective\"})}),className:\"framer-iqr69z\",\"data-framer-name\":\"Realtime collaboration\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{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\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"More affordable than EMR add-ons and direct competitors while delivering superior functionality.\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"More affordable than EMR add-ons and direct competitors while delivering superior functionality.\"})})}},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\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6cde8a4a-b78a-466d-be88-02ffd2fc60ab, rgb(105, 134, 149))\"},children:\"More affordable than EMR add-ons and direct competitors while delivering superior functionality.\"})}),className:\"framer-1ya35ui\",\"data-framer-name\":\"This awesome element has more variants and fully customizable property.\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xbqvgb\",\"data-framer-name\":\"Group\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xgib4\",\"data-framer-name\":\"Content / Body text base\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zvnwma\",\"data-framer-name\":\"Feature / Element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tr3rsu\",\"data-framer-name\":\"Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fyvu33\",\"data-framer-name\":\"Local / Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1umie5z\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19oqtso-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"J9vTf_HqO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f9179bde-2f3f-47bc-99b6-4783158d4069, rgb(75, 107, 123))\",height:\"100%\",iconSearch:\"handshake\",iconSelection:\"House\",id:\"J9vTf_HqO\",layoutId:\"J9vTf_HqO\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15dlhbn\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Ongoing Customer Engagement\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Ongoing Customer Engagement\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-8b80e420-2b18-452f-bee4-bc23bd42164b, rgb(45, 79, 97))\"},children:\"Ongoing Customer Engagement\"})}),className:\"framer-hummad\",\"data-framer-name\":\"Shared materials\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{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\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"We provide continuous support, feedback, and data-driven recommendations post-implementation.\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"We provide continuous support, feedback, and data-driven recommendations post-implementation.\"})})}},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\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6cde8a4a-b78a-466d-be88-02ffd2fc60ab, rgb(105, 134, 149))\"},children:\"We provide continuous support, feedback, and data-driven recommendations post-implementation.\"})}),className:\"framer-7ndt5x\",\"data-framer-name\":\"This awesome element has more variants and fully customizable property.\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-73105f\",\"data-framer-name\":\"Line 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:573,svg:'<svg width=\"573\" height=\"3\" viewBox=\"-1 -1 573 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"570.5\" y1=\"0.500488\" x2=\"0.5\" y2=\"0.500488\" stroke=\"#D9D9D9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9c3ed4\",\"data-framer-name\":\"Feature / Element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-otnxi6\",\"data-framer-name\":\"Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ey7j2d\",\"data-framer-name\":\"Local / Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-q8rk5z\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aacn2o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JbeEEr3SW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f9179bde-2f3f-47bc-99b6-4783158d4069, rgb(75, 107, 123))\",height:\"100%\",iconSearch:\"clock-clockwise\",iconSelection:\"House\",id:\"JbeEEr3SW\",layoutId:\"JbeEEr3SW\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zfdru7\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Ahead of EMR Discharges\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Ahead of EMR Discharges\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-8b80e420-2b18-452f-bee4-bc23bd42164b, rgb(45, 79, 97))\"},children:\"Ahead of EMR Discharges\"})}),className:\"framer-e7v18l\",\"data-framer-name\":\"Realtime collaboration\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{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\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"Our solutions enable EVS to turnaround dirty beds before Nursing EMR Discharges\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"Our solutions enable EVS to turnaround dirty beds before Nursing EMR Discharges\"})})}},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\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6cde8a4a-b78a-466d-be88-02ffd2fc60ab, rgb(105, 134, 149))\"},children:\"Our solutions enable EVS to turnaround dirty beds before Nursing EMR Discharges\"})}),className:\"framer-707g8m\",\"data-framer-name\":\"This awesome element has more variants and fully customizable property.\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-186v200\",\"data-framer-name\":\"Line 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:573,svg:'<svg width=\"573\" height=\"3\" viewBox=\"-1 -1 573 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"570.5\" y1=\"0.500488\" x2=\"0.5\" y2=\"0.500488\" stroke=\"#D9D9D9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pxhhbq\",\"data-framer-name\":\"Feature / Element\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s75a04\",\"data-framer-name\":\"Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d0dx8i\",\"data-framer-name\":\"Local / Placeholder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-182xc3e\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11sl8l7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sPtY_btaP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f9179bde-2f3f-47bc-99b6-4783158d4069, rgb(75, 107, 123))\",height:\"100%\",iconSearch:\"chart-line-up\",iconSelection:\"House\",id:\"sPtY_btaP\",layoutId:\"sPtY_btaP\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a5kx96\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Proven Performance Improvements\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-070dc440-c11b-4548-ae1d-99aba5dc493b, rgb(45, 79, 97))\"},children:\"Proven Performance Improvements\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"var(--token-8b80e420-2b18-452f-bee4-bc23bd42164b, rgb(45, 79, 97))\"},children:\"Proven Performance Improvements\"})}),className:\"framer-1b8fgca\",\"data-framer-name\":\"Live interaction\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{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\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"Consistent facility performance gains post-implementation, backed by real case studies.\"})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-be4d7b0b-cd3f-4ede-8f59-1100fcc029e1, rgb(105, 134, 149))\"},children:\"Consistent facility performance gains post-implementation, backed by real case studies.\"})})}},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\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-6cde8a4a-b78a-466d-be88-02ffd2fc60ab, rgb(105, 134, 149))\"},children:\"Consistent facility performance gains post-implementation, backed by real case studies.\"})}),className:\"framer-ghizus\",\"data-framer-name\":\"This awesome element has more variants and fully customizable property.\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1plmbqh hidden-72rtr7 hidden-138cown hidden-1oijrcc\",\"data-framer-name\":\"Line 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:573,svg:'<svg width=\"573\" height=\"3\" viewBox=\"-1 -1 573 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"570.5\" y1=\"0.500488\" x2=\"0.5\" y2=\"0.500488\" stroke=\"#D9D9D9\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mu85sd\",\"data-framer-name\":\"Section - FAQ\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-d6h7w3\",\"data-framer-name\":\"Section/FAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:550.5,intrinsicWidth:792,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5666.8+60+0),pixelHeight:1101,pixelWidth:1584,sizes:\"440px\",src:\"https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png 1584w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:550.5,intrinsicWidth:792,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4127.8+0+0),pixelHeight:1101,pixelWidth:1584,sizes:\"440px\",src:\"https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png 1584w\"}},xmttBflmi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:550.5,intrinsicWidth:792,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6390.8+48+0),pixelHeight:1101,pixelWidth:1584,sizes:\"337px\",src:\"https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png 1584w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:550.5,intrinsicWidth:792,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4206.8+0+0),pixelHeight:1101,pixelWidth:1584,sizes:\"440px\",src:\"https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OBSDANtnDzl4DquqKDcoyxWUQw.png 1584w\"},className:\"framer-s4nl1l\",\"data-framer-name\":\"faqbg\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16aymdr\",\"data-framer-name\":\"Left Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6j889a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y8i9y6\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wadg0y\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-color\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\"},children:\"FAQ\"})}),className:\"framer-10bw9n7\",\"data-framer-name\":\"Section \u2192 Heading 1 \u2192 Driver, Broker & Fleet Solutions\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Quick answers to commonly asked questions.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",children:\"Quick answers to commonly asked questions.\"})}),className:\"framer-lptjyh\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19jnpjt\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",children:[\"Couldn\u2019t find what you were looking for?\",/*#__PURE__*/_jsx(\"br\",{}),\"write to us at\"]})}),className:\"framer-i6eo02\",\"data-framer-name\":\"TruckLoads connects you to a huge network of U.S. truckers, with over 600,000 users from America's top trucking app, Trucker Path.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-color\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(6, 141, 208))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:help@bedwatch.com\",motionChild:true,nodeId:\"g5zSNM6tf\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dq1qtr\",\"data-styles-preset\":\"lF9kmblJi\",children:\"help@bedwatch.com\"})})})}),className:\"framer-n4q8uo\",\"data-framer-name\":\"TruckLoads connects you to a huge network of U.S. truckers, with over 600,000 users from America's top trucking app, Trucker Path.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cs7kii\",\"data-framer-name\":\"Questions list\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11jxg28\",\"data-framer-name\":\"Section/FAQ - Accordion\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+5666.8+60+0+436.8+0+0+0+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+4127.8+0+80+20+0+0+0},xmttBflmi:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+0+6390.8+48+0+418.8+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"667px\",y:(componentViewport?.y||0)+0+4206.8+0+80+20+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ojjhhb-container\",nodeId:\"gjEJatCdo\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{variant:\"O4qygjxuK\"}},children:/*#__PURE__*/_jsx(SectionFAQQuestion,{height:\"100%\",id:\"gjEJatCdo\",layoutId:\"gjEJatCdo\",style:{width:\"100%\"},T8rQFvSBR:\"BedWatch integrates with all major health cares systems in the US.  It's integration is agnostic and relies on standard HL7.\",variant:\"psNBvPf45\",W88zB8mIG:\"What hospital systems can BedWatch integrate with?\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uj23wn\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+5666.8+60+0+436.8+0+0+0+127},xf27aOaI0:{y:(componentViewport?.y||0)+0+4127.8+0+80+20+0+0+127},xmttBflmi:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+0+6390.8+48+0+418.8+0+0+0+127}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"667px\",y:(componentViewport?.y||0)+0+4206.8+0+80+20+0+0+127,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-opmgvv-container\",nodeId:\"hbg2Nrq2o\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionFAQQuestion,{height:\"100%\",id:\"hbg2Nrq2o\",layoutId:\"hbg2Nrq2o\",style:{width:\"100%\"},T8rQFvSBR:\"Capacity and facility management is not a primary focus or revenue driver for most EMR vendors. Consequently, their management tools are often more expensive and lack the robust functionality and innovation required to optimize patient flow and departmental coordination effectively.\",variant:\"pe7pc9KmC\",W88zB8mIG:\"Why choose BedWatch over existing EMR tools?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oqwgb6\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+5666.8+60+0+436.8+0+0+0+254},xf27aOaI0:{y:(componentViewport?.y||0)+0+4127.8+0+80+20+0+0+254},xmttBflmi:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+0+6390.8+48+0+418.8+0+0+0+254}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"667px\",y:(componentViewport?.y||0)+0+4206.8+0+80+20+0+0+254,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1io9y7f-container\",nodeId:\"jaySMg2Gc\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionFAQQuestion,{height:\"100%\",id:\"jaySMg2Gc\",layoutId:\"jaySMg2Gc\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, BedWatch maintains HIPAA compliance across all of its products and infrastructure, and has an annual SOC 2 audit performed.\",variant:\"pe7pc9KmC\",W88zB8mIG:\"Is BedWatch HIPAA compliant?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hokzy7\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+5666.8+60+0+436.8+0+0+0+381},xf27aOaI0:{y:(componentViewport?.y||0)+0+4127.8+0+80+20+0+0+381},xmttBflmi:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+0+6390.8+48+0+418.8+0+0+0+381}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"667px\",y:(componentViewport?.y||0)+0+4206.8+0+80+20+0+0+381,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13efomz-container\",nodeId:\"ulihCj1xP\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionFAQQuestion,{height:\"100%\",id:\"ulihCj1xP\",layoutId:\"ulihCj1xP\",style:{width:\"100%\"},T8rQFvSBR:\"BedWatch has been implemented at many major healthcare systems, such as CHRISTUS, CHS, HCA, Lifepoint, Bon Secours Mercy Health, and more.\",variant:\"pe7pc9KmC\",W88zB8mIG:\"What hospital systems are already customers?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1byeyci\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+5666.8+60+0+436.8+0+0+0+508},xf27aOaI0:{y:(componentViewport?.y||0)+0+4127.8+0+80+20+0+0+508},xmttBflmi:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+0+6390.8+48+0+418.8+0+0+0+508}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"667px\",y:(componentViewport?.y||0)+0+4206.8+0+80+20+0+0+508,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sg8sbh-container\",nodeId:\"WWtqpLEES\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionFAQQuestion,{height:\"100%\",id:\"WWtqpLEES\",layoutId:\"WWtqpLEES\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, BedWatch is and always has been a cloud-based solution, allowing for customers to access our products through web and mobile devices.\",variant:\"pe7pc9KmC\",W88zB8mIG:\"Is BedWatch a fully cloud-based solution?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u2mxod\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+5666.8+60+0+436.8+0+0+0+635},xf27aOaI0:{y:(componentViewport?.y||0)+0+4127.8+0+80+20+0+0+635},xmttBflmi:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+0+6390.8+48+0+418.8+0+0+0+635}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:126,width:\"667px\",y:(componentViewport?.y||0)+0+4206.8+0+80+20+0+0+635,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v91692-container\",nodeId:\"AswGIH5Ic\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionFAQQuestion,{height:\"100%\",id:\"AswGIH5Ic\",layoutId:\"AswGIH5Ic\",style:{width:\"100%\"},T8rQFvSBR:\"A typical implementation of a BedWatch product is typically 4 - 6 weeks.\",variant:\"pe7pc9KmC\",W88zB8mIG:\"How long does does it take to implement our solutions?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iiu2qo\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+6985.6},xf27aOaI0:{y:(componentViewport?.y||0)+0+5089.8},xmttBflmi:{y:(componentViewport?.y||0)+0+7667.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:322,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5168.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a1v6xh-container\",nodeId:\"HuFDIhcTV\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"bxCCCX6Qn\"},xmttBflmi:{variant:\"b5pZoR74d\"}},children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"HuFDIhcTV\",layoutId:\"HuFDIhcTV\",style:{width:\"100%\"},variant:\"RmqJkb9gf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+7307.6},xf27aOaI0:{y:(componentViewport?.y||0)+0+5411.8},xmttBflmi:{y:(componentViewport?.y||0)+0+7989.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:362,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5490.8,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lej1m7-container\",nodeId:\"qJRyITRr0\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"F3zm5FrZx\"},xmttBflmi:{variant:\"TfR8Rq4xe\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"qJRyITRr0\",layoutId:\"qJRyITRr0\",style:{width:\"100%\"},variant:\"Rnrfca9Uv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BE6Z5.framer-lux5qc, .framer-BE6Z5 .framer-lux5qc { display: block; }\",\".framer-BE6Z5.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-BE6Z5 .framer-1nfyqiq-container { flex: none; height: auto; left: 50%; position: fixed; top: 20px; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-BE6Z5 .framer-116cg1o { align-content: center; align-items: center; background: linear-gradient(180deg, #ebeef1 0%, rgba(240, 240, 240, 0) 100%, rgba(238, 240, 242, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 750px; justify-content: flex-end; overflow: hidden; padding: 0px 0px 110px 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-armwt7-container { flex: none; height: 727px; left: calc(50.00000000000002% - 1920px / 2); position: absolute; top: -120px; width: 1920px; z-index: 0; }\",\".framer-BE6Z5 .framer-fsbns6 { 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-BE6Z5 .framer-kc5ix7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 30px; position: relative; width: 525px; }\",\".framer-BE6Z5 .framer-131nqtm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-103zubr { 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-BE6Z5 .framer-1viqu0x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BE6Z5 .framer-172bfaj { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 525px; word-break: break-word; word-wrap: break-word; }\",\".framer-BE6Z5 .framer-r6p37f, .framer-BE6Z5 .framer-hyijc, .framer-BE6Z5 .framer-1ev1ajf, .framer-BE6Z5 .framer-15auyow, .framer-BE6Z5 .framer-s1lp3x, .framer-BE6Z5 .framer-15154e9, .framer-BE6Z5 .framer-1xxwvgw, .framer-BE6Z5 .framer-1qxcni2, .framer-BE6Z5 .framer-poyvaf, .framer-BE6Z5 .framer-fvfy7x, .framer-BE6Z5 .framer-10vbmch, .framer-BE6Z5 .framer-m6hkcd, .framer-BE6Z5 .framer-an530f, .framer-BE6Z5 .framer-1j3av7n, .framer-BE6Z5 .framer-1v5lo9c, .framer-BE6Z5 .framer-1cifuul, .framer-BE6Z5 .framer-1arnxgl, .framer-BE6Z5 .framer-bckzoo, .framer-BE6Z5 .framer-bey0ko, .framer-BE6Z5 .framer-cxkkzw, .framer-BE6Z5 .framer-coez6, .framer-BE6Z5 .framer-1eojf3p, .framer-BE6Z5 .framer-1cal7sc, .framer-BE6Z5 .framer-1l8yz4h, .framer-BE6Z5 .framer-1yvbu4d, .framer-BE6Z5 .framer-1km9ebp, .framer-BE6Z5 .framer-k0bwgc, .framer-BE6Z5 .framer-1fgsw7t, .framer-BE6Z5 .framer-8xzz64, .framer-BE6Z5 .framer-1opebws, .framer-BE6Z5 .framer-lptjyh { --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-BE6Z5 .framer-1gu353a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BE6Z5 .framer-g5qsyv-container { flex: none; height: auto; position: relative; width: 170px; }\",\".framer-BE6Z5 .framer-1t3fhr0 { flex: none; height: 369px; overflow: visible; position: relative; width: 672px; }\",\".framer-BE6Z5 .framer-bryj7p-container { aspect-ratio: 1.4112676056338027 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 427px); left: 90px; position: absolute; right: -20px; top: 0px; }\",\".framer-BE6Z5 .framer-1da3v62-container, .framer-BE6Z5 .framer-1ojjhhb-container, .framer-BE6Z5 .framer-opmgvv-container, .framer-BE6Z5 .framer-1io9y7f-container, .framer-BE6Z5 .framer-13efomz-container, .framer-BE6Z5 .framer-1sg8sbh-container, .framer-BE6Z5 .framer-1v91692-container, .framer-BE6Z5 .framer-1a1v6xh-container, .framer-BE6Z5 .framer-lej1m7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-1236gso { align-content: center; align-items: center; background-color: var(--token-76de8d43-1a5f-4bbf-ae19-bb034cd5b3d4, #f3f5f6); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 850px; justify-content: center; overflow: visible; padding: 40px 160px 80px 160px; position: relative; width: 1920px; }\",\".framer-BE6Z5 .framer-18ycwa5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BE6Z5 .framer-1bm1ux4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BE6Z5 .framer-r6bp7j { align-content: center; align-items: center; 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: 1200px; }\",\".framer-BE6Z5 .framer-u5inq1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-BE6Z5 .framer-14z4qf4 { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-BE6Z5 .framer-9w1mng, .framer-BE6Z5 .framer-13deq6b, .framer-BE6Z5 .framer-aikp7n, .framer-BE6Z5 .framer-1n0ar0a, .framer-BE6Z5 .framer-v1cqmy, .framer-BE6Z5 .framer-129p377, .framer-BE6Z5 .framer-bl75gu, .framer-BE6Z5 .framer-7z8y6g { --border-bottom-width: 1px; --border-color: var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, #dfe3e7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 6px 24px -1px rgba(0, 0, 0, 0.06); cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-BE6Z5 .framer-gze9wb, .framer-BE6Z5 .framer-ikzz3c, .framer-BE6Z5 .framer-rklgeh, .framer-BE6Z5 .framer-1sh1g87, .framer-BE6Z5 .framer-26hw9n, .framer-BE6Z5 .framer-1nszl4i, .framer-BE6Z5 .framer-ha3ewr, .framer-BE6Z5 .framer-p94acy { flex: none; height: 100px; position: relative; width: 100px; }\",\".framer-BE6Z5 .framer-159mmk5-container, .framer-BE6Z5 .framer-146m63p-container, .framer-BE6Z5 .framer-1afxgyn-container, .framer-BE6Z5 .framer-17rbl50-container, .framer-BE6Z5 .framer-qh438k-container, .framer-BE6Z5 .framer-rrwzno-container, .framer-BE6Z5 .framer-p9z78t-container, .framer-BE6Z5 .framer-1ubejf7-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 50%; position: absolute; top: 40px; transform: translateX(-50%); width: 20px; }\",\".framer-BE6Z5 .framer-k998ze, .framer-BE6Z5 .framer-1p6oui9, .framer-BE6Z5 .framer-8akyuu, .framer-BE6Z5 .framer-e6825j, .framer-BE6Z5 .framer-tfrs9k, .framer-BE6Z5 .framer-cj0usk, .framer-BE6Z5 .framer-1ktz66z, .framer-BE6Z5 .framer-x3oehd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-1pbpe4w, .framer-BE6Z5 .framer-hl6whr, .framer-BE6Z5 .framer-2tenim, .framer-BE6Z5 .framer-1kxleuf, .framer-BE6Z5 .framer-wa8hoq, .framer-BE6Z5 .framer-1rwt2wp, .framer-BE6Z5 .framer-1epnce5, .framer-BE6Z5 .framer-bvdq47 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BE6Z5 .framer-1aojjr5, .framer-BE6Z5 .framer-acvv16, .framer-BE6Z5 .framer-1kcz321, .framer-BE6Z5 .framer-iqfu9b, .framer-BE6Z5 .framer-1shiv82, .framer-BE6Z5 .framer-1wmfttr, .framer-BE6Z5 .framer-1vdvfdm, .framer-BE6Z5 .framer-1crckm9 { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BE6Z5 .framer-1enuwmc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: 679px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-1cf1ibq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 38px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-irpp6m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 76px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1160px; }\",\".framer-BE6Z5 .framer-cobose { align-content: center; align-items: center; background-color: var(--token-31aa895f-93bc-4169-995a-064a6b802e57, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 500px; }\",\".framer-BE6Z5 .framer-ofcd25, .framer-BE6Z5 .framer-1u1kg50, .framer-BE6Z5 .framer-1xh7i0v, .framer-BE6Z5 .framer-14hkvs7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BE6Z5 .framer-1obrfon { background-color: var(--token-31aa895f-93bc-4169-995a-064a6b802e57, #ffffff); flex: none; height: 100%; position: relative; width: 205px; }\",\".framer-BE6Z5 .framer-fe0pn1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; bottom: -4px; flex: none; left: 0px; max-width: 100%; position: absolute; top: -7px; white-space: pre-wrap; width: 205px; word-break: break-word; word-wrap: break-word; }\",\".framer-BE6Z5 .framer-14n9cel { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: 88%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-1q9iba1 { display: grid; flex: none; gap: 0px; grid-auto-rows: 120px; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(7, 120px); height: 100%; justify-content: center; overflow: hidden; padding: 10px 0px 20px 0px; position: relative; width: 1200px; }\",\".framer-BE6Z5 .framer-nlxdyu, .framer-BE6Z5 .framer-1ahr3b { align-self: end; aspect-ratio: 1.006060606060606 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); justify-self: end; overflow: visible; position: relative; width: 80px; }\",\".framer-BE6Z5 .framer-wnbc04, .framer-BE6Z5 .framer-1pdfida { align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; justify-self: center; overflow: hidden; padding: 14px; position: relative; width: 80%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BE6Z5 .framer-14184w7, .framer-BE6Z5 .framer-171p8a1, .framer-BE6Z5 .framer-1e8qil7, .framer-BE6Z5 .framer-109qiip, .framer-BE6Z5 .framer-1mdldv3, .framer-BE6Z5 .framer-ecwsiz, .framer-BE6Z5 .framer-8x8mv0, .framer-BE6Z5 .framer-qiwn9e, .framer-BE6Z5 .framer-4vmtlu, .framer-BE6Z5 .framer-1l66h4f, .framer-BE6Z5 .framer-v30enm, .framer-BE6Z5 .framer-xj9ije, .framer-BE6Z5 .framer-1p91vmj, .framer-BE6Z5 .framer-qqgzfj, .framer-BE6Z5 .framer-iqr69z, .framer-BE6Z5 .framer-1ya35ui, .framer-BE6Z5 .framer-hummad, .framer-BE6Z5 .framer-e7v18l, .framer-BE6Z5 .framer-707g8m, .framer-BE6Z5 .framer-1b8fgca, .framer-BE6Z5 .framer-ghizus { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BE6Z5 .framer-m5ghcn { align-self: end; aspect-ratio: 1.0121951219512195 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 79px); justify-self: start; overflow: visible; position: relative; width: 80px; }\",\".framer-BE6Z5 .framer-1h6qz3l { align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 2px; grid-row: auto / span 2; height: 200px; justify-content: center; justify-self: center; overflow: visible; padding: 14px; position: relative; width: 80%; z-index: 1; }\",\".framer-BE6Z5 .framer-1x2iuvg, .framer-BE6Z5 .framer-1etvc16, .framer-BE6Z5 .framer-1hqklxx, .framer-BE6Z5 .framer-2up5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: min-content; }\",\".framer-BE6Z5 .framer-1ckhj7v-container, .framer-BE6Z5 .framer-r09e7r-container, .framer-BE6Z5 .framer-py7woj-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 40px; }\",\".framer-BE6Z5 .framer-1u55beu { --border-bottom-width: 0px; --border-color: var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, #007ab8); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; grid-row: auto / span 2; height: 200px; justify-content: center; justify-self: center; overflow: hidden; padding: 14px; position: relative; width: 80%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BE6Z5 .framer-s080vz { align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; grid-row: auto / span 2; height: 200px; justify-content: center; justify-self: center; overflow: hidden; padding: 14px; position: relative; width: 80%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BE6Z5 .framer-1plhaj7, .framer-BE6Z5 .framer-1dli80i { align-self: start; aspect-ratio: 1.006060606060606 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); justify-self: end; overflow: visible; position: relative; width: 80px; }\",\".framer-BE6Z5 .framer-8kzujm, .framer-BE6Z5 .framer-1kia2s { align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); justify-self: start; overflow: visible; position: relative; width: 80px; }\",\".framer-BE6Z5 .framer-jqxs1s, .framer-BE6Z5 .framer-bvskfg, .framer-BE6Z5 .framer-qfdl4p { align-content: center; align-items: center; background-color: var(--token-31aa895f-93bc-4169-995a-064a6b802e57, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; padding: 0px; position: relative; width: 390px; }\",\".framer-BE6Z5 .framer-1ld4q2i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: 644px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 144%; }\",\".framer-BE6Z5 .framer-10h0ua6, .framer-BE6Z5 .framer-1axkvmy, .framer-BE6Z5 .framer-rq7i8w, .framer-BE6Z5 .framer-chd6d5 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: 80%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BE6Z5 .framer-64e6g1 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 200px; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: 80%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BE6Z5 .framer-174opx4-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-BE6Z5 .framer-qsgfe1 { align-content: center; align-items: center; background-color: var(--token-76de8d43-1a5f-4bbf-ae19-bb034cd5b3d4, #f3f5f6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-q5t15n-container { bottom: 0px; flex: none; height: 727px; left: 0px; position: absolute; right: 0px; z-index: 0; }\",\".framer-BE6Z5 .framer-1adkfnh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-bwhfal { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-BE6Z5 .framer-s520bk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BE6Z5 .framer-amdfa7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-izrqvy, .framer-BE6Z5 .framer-15048xi, .framer-BE6Z5 .framer-19mwqzw, .framer-BE6Z5 .framer-19p2898, .framer-BE6Z5 .framer-2djeuk, .framer-BE6Z5 .framer-ym5m0b, .framer-BE6Z5 .framer-dbzhik, .framer-BE6Z5 .framer-16ds8rs, .framer-BE6Z5 .framer-17ubn0o { --border-bottom-width: 0.5px; --border-color: var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, #dfe3e7); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 2px 4px 0px rgba(27, 28, 29, 0.04); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-BE6Z5 .framer-4hkjqk, .framer-BE6Z5 .framer-yfvgng, .framer-BE6Z5 .framer-wpn2yd, .framer-BE6Z5 .framer-bsdxu3, .framer-BE6Z5 .framer-q60ux3, .framer-BE6Z5 .framer-g14c5p, .framer-BE6Z5 .framer-1hh1u2l, .framer-BE6Z5 .framer-135arnh, .framer-BE6Z5 .framer-1a42r9u { aspect-ratio: 1.1473429951690821 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 207px); overflow: visible; position: relative; width: 238px; }\",\".framer-BE6Z5 .framer-qll9qt, .framer-BE6Z5 .framer-tah04r, .framer-BE6Z5 .framer-loi5jw, .framer-BE6Z5 .framer-oi5mix, .framer-BE6Z5 .framer-19nspkl, .framer-BE6Z5 .framer-zeoi08, .framer-BE6Z5 .framer-x3dt3s, .framer-BE6Z5 .framer-1luj365, .framer-BE6Z5 .framer-1ptlqld { 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: 16px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-35l6e1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; overflow-x: auto; padding: 2px 6px 9px 6px; position: relative; width: 271px; }\",\".framer-BE6Z5 .framer-1u0bb85, .framer-BE6Z5 .framer-1iwsinv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; overflow-x: auto; padding: 2px 6px 9px 6px; position: relative; width: 270px; }\",\".framer-BE6Z5 .framer-vr57qr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: auto; padding: 2px 6px 6px 6px; position: relative; width: 548px; }\",\".framer-BE6Z5 .framer-12bbq58 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 44px; min-width: 170px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BE6Z5 .framer-189kxw4 { align-content: center; align-items: center; background-color: var(--token-31aa895f-93bc-4169-995a-064a6b802e57, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 68px 0px 68px 0px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-BE6Z5 .framer-102pmfp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1460px; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 1px; }\",\".framer-BE6Z5 .framer-1i5nlvy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 41%; }\",\".framer-BE6Z5 .framer-z04swh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-16n718z, .framer-BE6Z5 .framer-xbqvgb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BE6Z5 .framer-vjk67e, .framer-BE6Z5 .framer-14xgib4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 20px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-19rr376, .framer-BE6Z5 .framer-1ru7hit, .framer-BE6Z5 .framer-1e2o8nr, .framer-BE6Z5 .framer-zvnwma, .framer-BE6Z5 .framer-9c3ed4, .framer-BE6Z5 .framer-1pxhhbq { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-vn21ne, .framer-BE6Z5 .framer-1w6bsct, .framer-BE6Z5 .framer-yb15wk, .framer-BE6Z5 .framer-1tr3rsu, .framer-BE6Z5 .framer-otnxi6, .framer-BE6Z5 .framer-s75a04 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BE6Z5 .framer-aae1yi, .framer-BE6Z5 .framer-pjrzcx, .framer-BE6Z5 .framer-2mpt0m, .framer-BE6Z5 .framer-fyvu33, .framer-BE6Z5 .framer-ey7j2d, .framer-BE6Z5 .framer-d0dx8i { flex: none; height: 64px; overflow: visible; position: relative; width: 64px; }\",\".framer-BE6Z5 .framer-s6s3qm, .framer-BE6Z5 .framer-irtxnq, .framer-BE6Z5 .framer-b57cn8, .framer-BE6Z5 .framer-1umie5z, .framer-BE6Z5 .framer-q8rk5z, .framer-BE6Z5 .framer-182xc3e { align-content: center; align-items: center; background-color: var(--token-62fc310d-c5e4-469e-916e-c4723bf85402, #e3f0f7); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 64px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 64px; }\",\".framer-BE6Z5 .framer-1rxsb0a-container, .framer-BE6Z5 .framer-i86rqr-container, .framer-BE6Z5 .framer-1vobvv3-container, .framer-BE6Z5 .framer-19oqtso-container, .framer-BE6Z5 .framer-aacn2o-container, .framer-BE6Z5 .framer-11sl8l7-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-BE6Z5 .framer-r7dg0i, .framer-BE6Z5 .framer-36wxe6, .framer-BE6Z5 .framer-bubfrj, .framer-BE6Z5 .framer-15dlhbn, .framer-BE6Z5 .framer-zfdru7, .framer-BE6Z5 .framer-a5kx96 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BE6Z5 .framer-154uwdl, .framer-BE6Z5 .framer-7ndt5x { flex: none; height: 47px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BE6Z5 .framer-cv7thh, .framer-BE6Z5 .framer-15qj1yt, .framer-BE6Z5 .framer-73105f, .framer-BE6Z5 .framer-186v200, .framer-BE6Z5 .framer-1plmbqh { flex: none; height: 3px; position: relative; width: 573px; }\",\".framer-BE6Z5 .framer-mu85sd { align-content: flex-start; align-items: flex-start; background-color: var(--token-76de8d43-1a5f-4bbf-ae19-bb034cd5b3d4, #f3f5f6); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-d6h7w3 { align-content: flex-start; align-items: flex-start; background-color: var(--token-76de8d43-1a5f-4bbf-ae19-bb034cd5b3d4, #f3f5f6); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 1200px; }\",\".framer-BE6Z5 .framer-s4nl1l { aspect-ratio: 1.438692098092643 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 306px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 440px; z-index: 1; }\",\".framer-BE6Z5 .framer-16aymdr { 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: 473px; z-index: 1; }\",\".framer-BE6Z5 .framer-6j889a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BE6Z5 .framer-1y8i9y6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 177px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 473px; }\",\".framer-BE6Z5 .framer-wadg0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BE6Z5 .framer-10bw9n7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BE6Z5 .framer-19jnpjt { align-content: flex-start; align-items: flex-start; 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-BE6Z5 .framer-i6eo02, .framer-BE6Z5 .framer-n4q8uo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 473px; word-break: break-word; word-wrap: break-word; }\",\".framer-BE6Z5 .framer-1cs7kii { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-BE6Z5 .framer-11jxg28 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-BE6Z5 .framer-uj23wn, .framer-BE6Z5 .framer-oqwgb6, .framer-BE6Z5 .framer-1hokzy7, .framer-BE6Z5 .framer-1byeyci, .framer-BE6Z5 .framer-u2mxod, .framer-BE6Z5 .framer-iiu2qo { background-color: var(--token-76de8d43-1a5f-4bbf-ae19-bb034cd5b3d4, #f3f5f6); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BE6Z5.framer-72rtr7, .framer-BE6Z5 .framer-116cg1o, .framer-BE6Z5 .framer-kc5ix7, .framer-BE6Z5 .framer-131nqtm, .framer-BE6Z5 .framer-103zubr, .framer-BE6Z5 .framer-1viqu0x, .framer-BE6Z5 .framer-1gu353a, .framer-BE6Z5 .framer-1236gso, .framer-BE6Z5 .framer-18ycwa5, .framer-BE6Z5 .framer-1bm1ux4, .framer-BE6Z5 .framer-r6bp7j, .framer-BE6Z5 .framer-9w1mng, .framer-BE6Z5 .framer-k998ze, .framer-BE6Z5 .framer-13deq6b, .framer-BE6Z5 .framer-1p6oui9, .framer-BE6Z5 .framer-aikp7n, .framer-BE6Z5 .framer-8akyuu, .framer-BE6Z5 .framer-1n0ar0a, .framer-BE6Z5 .framer-e6825j, .framer-BE6Z5 .framer-v1cqmy, .framer-BE6Z5 .framer-tfrs9k, .framer-BE6Z5 .framer-129p377, .framer-BE6Z5 .framer-cj0usk, .framer-BE6Z5 .framer-bl75gu, .framer-BE6Z5 .framer-1ktz66z, .framer-BE6Z5 .framer-7z8y6g, .framer-BE6Z5 .framer-x3oehd, .framer-BE6Z5 .framer-1enuwmc, .framer-BE6Z5 .framer-1cf1ibq, .framer-BE6Z5 .framer-irpp6m, .framer-BE6Z5 .framer-cobose, .framer-BE6Z5 .framer-14n9cel, .framer-BE6Z5 .framer-wnbc04, .framer-BE6Z5 .framer-1h6qz3l, .framer-BE6Z5 .framer-1x2iuvg, .framer-BE6Z5 .framer-1u55beu, .framer-BE6Z5 .framer-1etvc16, .framer-BE6Z5 .framer-s080vz, .framer-BE6Z5 .framer-1hqklxx, .framer-BE6Z5 .framer-1pdfida, .framer-BE6Z5 .framer-jqxs1s, .framer-BE6Z5 .framer-bvskfg, .framer-BE6Z5 .framer-qfdl4p, .framer-BE6Z5 .framer-1ld4q2i, .framer-BE6Z5 .framer-10h0ua6, .framer-BE6Z5 .framer-1axkvmy, .framer-BE6Z5 .framer-rq7i8w, .framer-BE6Z5 .framer-chd6d5, .framer-BE6Z5 .framer-64e6g1, .framer-BE6Z5 .framer-2up5m, .framer-BE6Z5 .framer-qsgfe1, .framer-BE6Z5 .framer-1adkfnh, .framer-BE6Z5 .framer-bwhfal, .framer-BE6Z5 .framer-amdfa7, .framer-BE6Z5 .framer-izrqvy, .framer-BE6Z5 .framer-qll9qt, .framer-BE6Z5 .framer-15048xi, .framer-BE6Z5 .framer-tah04r, .framer-BE6Z5 .framer-19mwqzw, .framer-BE6Z5 .framer-loi5jw, .framer-BE6Z5 .framer-19p2898, .framer-BE6Z5 .framer-oi5mix, .framer-BE6Z5 .framer-35l6e1, .framer-BE6Z5 .framer-2djeuk, .framer-BE6Z5 .framer-19nspkl, .framer-BE6Z5 .framer-1u0bb85, .framer-BE6Z5 .framer-ym5m0b, .framer-BE6Z5 .framer-zeoi08, .framer-BE6Z5 .framer-1iwsinv, .framer-BE6Z5 .framer-dbzhik, .framer-BE6Z5 .framer-x3dt3s, .framer-BE6Z5 .framer-vr57qr, .framer-BE6Z5 .framer-16ds8rs, .framer-BE6Z5 .framer-1luj365, .framer-BE6Z5 .framer-17ubn0o, .framer-BE6Z5 .framer-1ptlqld, .framer-BE6Z5 .framer-12bbq58, .framer-BE6Z5 .framer-189kxw4, .framer-BE6Z5 .framer-102pmfp, .framer-BE6Z5 .framer-1i5nlvy, .framer-BE6Z5 .framer-16n718z, .framer-BE6Z5 .framer-vjk67e, .framer-BE6Z5 .framer-19rr376, .framer-BE6Z5 .framer-vn21ne, .framer-BE6Z5 .framer-s6s3qm, .framer-BE6Z5 .framer-r7dg0i, .framer-BE6Z5 .framer-1ru7hit, .framer-BE6Z5 .framer-1w6bsct, .framer-BE6Z5 .framer-irtxnq, .framer-BE6Z5 .framer-36wxe6, .framer-BE6Z5 .framer-1e2o8nr, .framer-BE6Z5 .framer-yb15wk, .framer-BE6Z5 .framer-b57cn8, .framer-BE6Z5 .framer-bubfrj, .framer-BE6Z5 .framer-xbqvgb, .framer-BE6Z5 .framer-14xgib4, .framer-BE6Z5 .framer-zvnwma, .framer-BE6Z5 .framer-1tr3rsu, .framer-BE6Z5 .framer-1umie5z, .framer-BE6Z5 .framer-15dlhbn, .framer-BE6Z5 .framer-9c3ed4, .framer-BE6Z5 .framer-otnxi6, .framer-BE6Z5 .framer-q8rk5z, .framer-BE6Z5 .framer-zfdru7, .framer-BE6Z5 .framer-1pxhhbq, .framer-BE6Z5 .framer-s75a04, .framer-BE6Z5 .framer-182xc3e, .framer-BE6Z5 .framer-a5kx96, .framer-BE6Z5 .framer-mu85sd, .framer-BE6Z5 .framer-d6h7w3, .framer-BE6Z5 .framer-16aymdr, .framer-BE6Z5 .framer-6j889a, .framer-BE6Z5 .framer-1y8i9y6, .framer-BE6Z5 .framer-wadg0y, .framer-BE6Z5 .framer-19jnpjt, .framer-BE6Z5 .framer-1cs7kii, .framer-BE6Z5 .framer-11jxg28 { gap: 0px; } .framer-BE6Z5.framer-72rtr7 > *, .framer-BE6Z5 .framer-116cg1o > *, .framer-BE6Z5 .framer-1viqu0x > *, .framer-BE6Z5 .framer-11jxg28 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BE6Z5.framer-72rtr7 > :first-child, .framer-BE6Z5 .framer-116cg1o > :first-child, .framer-BE6Z5 .framer-kc5ix7 > :first-child, .framer-BE6Z5 .framer-131nqtm > :first-child, .framer-BE6Z5 .framer-103zubr > :first-child, .framer-BE6Z5 .framer-1viqu0x > :first-child, .framer-BE6Z5 .framer-18ycwa5 > :first-child, .framer-BE6Z5 .framer-1bm1ux4 > :first-child, .framer-BE6Z5 .framer-r6bp7j > :first-child, .framer-BE6Z5 .framer-9w1mng > :first-child, .framer-BE6Z5 .framer-k998ze > :first-child, .framer-BE6Z5 .framer-13deq6b > :first-child, .framer-BE6Z5 .framer-1p6oui9 > :first-child, .framer-BE6Z5 .framer-aikp7n > :first-child, .framer-BE6Z5 .framer-8akyuu > :first-child, .framer-BE6Z5 .framer-1n0ar0a > :first-child, .framer-BE6Z5 .framer-e6825j > :first-child, .framer-BE6Z5 .framer-v1cqmy > :first-child, .framer-BE6Z5 .framer-tfrs9k > :first-child, .framer-BE6Z5 .framer-129p377 > :first-child, .framer-BE6Z5 .framer-cj0usk > :first-child, .framer-BE6Z5 .framer-bl75gu > :first-child, .framer-BE6Z5 .framer-1ktz66z > :first-child, .framer-BE6Z5 .framer-7z8y6g > :first-child, .framer-BE6Z5 .framer-x3oehd > :first-child, .framer-BE6Z5 .framer-1enuwmc > :first-child, .framer-BE6Z5 .framer-1cf1ibq > :first-child, .framer-BE6Z5 .framer-wnbc04 > :first-child, .framer-BE6Z5 .framer-1h6qz3l > :first-child, .framer-BE6Z5 .framer-1u55beu > :first-child, .framer-BE6Z5 .framer-s080vz > :first-child, .framer-BE6Z5 .framer-1pdfida > :first-child, .framer-BE6Z5 .framer-1ld4q2i > :first-child, .framer-BE6Z5 .framer-10h0ua6 > :first-child, .framer-BE6Z5 .framer-1axkvmy > :first-child, .framer-BE6Z5 .framer-rq7i8w > :first-child, .framer-BE6Z5 .framer-chd6d5 > :first-child, .framer-BE6Z5 .framer-64e6g1 > :first-child, .framer-BE6Z5 .framer-qsgfe1 > :first-child, .framer-BE6Z5 .framer-1adkfnh > :first-child, .framer-BE6Z5 .framer-bwhfal > :first-child, .framer-BE6Z5 .framer-izrqvy > :first-child, .framer-BE6Z5 .framer-qll9qt > :first-child, .framer-BE6Z5 .framer-15048xi > :first-child, .framer-BE6Z5 .framer-tah04r > :first-child, .framer-BE6Z5 .framer-19mwqzw > :first-child, .framer-BE6Z5 .framer-loi5jw > :first-child, .framer-BE6Z5 .framer-19p2898 > :first-child, .framer-BE6Z5 .framer-oi5mix > :first-child, .framer-BE6Z5 .framer-2djeuk > :first-child, .framer-BE6Z5 .framer-19nspkl > :first-child, .framer-BE6Z5 .framer-ym5m0b > :first-child, .framer-BE6Z5 .framer-zeoi08 > :first-child, .framer-BE6Z5 .framer-dbzhik > :first-child, .framer-BE6Z5 .framer-x3dt3s > :first-child, .framer-BE6Z5 .framer-16ds8rs > :first-child, .framer-BE6Z5 .framer-1luj365 > :first-child, .framer-BE6Z5 .framer-17ubn0o > :first-child, .framer-BE6Z5 .framer-1ptlqld > :first-child, .framer-BE6Z5 .framer-102pmfp > :first-child, .framer-BE6Z5 .framer-1i5nlvy > :first-child, .framer-BE6Z5 .framer-16n718z > :first-child, .framer-BE6Z5 .framer-vjk67e > :first-child, .framer-BE6Z5 .framer-vn21ne > :first-child, .framer-BE6Z5 .framer-r7dg0i > :first-child, .framer-BE6Z5 .framer-1w6bsct > :first-child, .framer-BE6Z5 .framer-36wxe6 > :first-child, .framer-BE6Z5 .framer-yb15wk > :first-child, .framer-BE6Z5 .framer-bubfrj > :first-child, .framer-BE6Z5 .framer-xbqvgb > :first-child, .framer-BE6Z5 .framer-14xgib4 > :first-child, .framer-BE6Z5 .framer-1tr3rsu > :first-child, .framer-BE6Z5 .framer-15dlhbn > :first-child, .framer-BE6Z5 .framer-otnxi6 > :first-child, .framer-BE6Z5 .framer-zfdru7 > :first-child, .framer-BE6Z5 .framer-s75a04 > :first-child, .framer-BE6Z5 .framer-a5kx96 > :first-child, .framer-BE6Z5 .framer-16aymdr > :first-child, .framer-BE6Z5 .framer-6j889a > :first-child, .framer-BE6Z5 .framer-1y8i9y6 > :first-child, .framer-BE6Z5 .framer-19jnpjt > :first-child, .framer-BE6Z5 .framer-1cs7kii > :first-child, .framer-BE6Z5 .framer-11jxg28 > :first-child { margin-top: 0px; } .framer-BE6Z5.framer-72rtr7 > :last-child, .framer-BE6Z5 .framer-116cg1o > :last-child, .framer-BE6Z5 .framer-kc5ix7 > :last-child, .framer-BE6Z5 .framer-131nqtm > :last-child, .framer-BE6Z5 .framer-103zubr > :last-child, .framer-BE6Z5 .framer-1viqu0x > :last-child, .framer-BE6Z5 .framer-18ycwa5 > :last-child, .framer-BE6Z5 .framer-1bm1ux4 > :last-child, .framer-BE6Z5 .framer-r6bp7j > :last-child, .framer-BE6Z5 .framer-9w1mng > :last-child, .framer-BE6Z5 .framer-k998ze > :last-child, .framer-BE6Z5 .framer-13deq6b > :last-child, .framer-BE6Z5 .framer-1p6oui9 > :last-child, .framer-BE6Z5 .framer-aikp7n > :last-child, .framer-BE6Z5 .framer-8akyuu > :last-child, .framer-BE6Z5 .framer-1n0ar0a > :last-child, .framer-BE6Z5 .framer-e6825j > :last-child, .framer-BE6Z5 .framer-v1cqmy > :last-child, .framer-BE6Z5 .framer-tfrs9k > :last-child, .framer-BE6Z5 .framer-129p377 > :last-child, .framer-BE6Z5 .framer-cj0usk > :last-child, .framer-BE6Z5 .framer-bl75gu > :last-child, .framer-BE6Z5 .framer-1ktz66z > :last-child, .framer-BE6Z5 .framer-7z8y6g > :last-child, .framer-BE6Z5 .framer-x3oehd > :last-child, .framer-BE6Z5 .framer-1enuwmc > :last-child, .framer-BE6Z5 .framer-1cf1ibq > :last-child, .framer-BE6Z5 .framer-wnbc04 > :last-child, .framer-BE6Z5 .framer-1h6qz3l > :last-child, .framer-BE6Z5 .framer-1u55beu > :last-child, .framer-BE6Z5 .framer-s080vz > :last-child, .framer-BE6Z5 .framer-1pdfida > :last-child, .framer-BE6Z5 .framer-1ld4q2i > :last-child, .framer-BE6Z5 .framer-10h0ua6 > :last-child, .framer-BE6Z5 .framer-1axkvmy > :last-child, .framer-BE6Z5 .framer-rq7i8w > :last-child, .framer-BE6Z5 .framer-chd6d5 > :last-child, .framer-BE6Z5 .framer-64e6g1 > :last-child, .framer-BE6Z5 .framer-qsgfe1 > :last-child, .framer-BE6Z5 .framer-1adkfnh > :last-child, .framer-BE6Z5 .framer-bwhfal > :last-child, .framer-BE6Z5 .framer-izrqvy > :last-child, .framer-BE6Z5 .framer-qll9qt > :last-child, .framer-BE6Z5 .framer-15048xi > :last-child, .framer-BE6Z5 .framer-tah04r > :last-child, .framer-BE6Z5 .framer-19mwqzw > :last-child, .framer-BE6Z5 .framer-loi5jw > :last-child, .framer-BE6Z5 .framer-19p2898 > :last-child, .framer-BE6Z5 .framer-oi5mix > :last-child, .framer-BE6Z5 .framer-2djeuk > :last-child, .framer-BE6Z5 .framer-19nspkl > :last-child, .framer-BE6Z5 .framer-ym5m0b > :last-child, .framer-BE6Z5 .framer-zeoi08 > :last-child, .framer-BE6Z5 .framer-dbzhik > :last-child, .framer-BE6Z5 .framer-x3dt3s > :last-child, .framer-BE6Z5 .framer-16ds8rs > :last-child, .framer-BE6Z5 .framer-1luj365 > :last-child, .framer-BE6Z5 .framer-17ubn0o > :last-child, .framer-BE6Z5 .framer-1ptlqld > :last-child, .framer-BE6Z5 .framer-102pmfp > :last-child, .framer-BE6Z5 .framer-1i5nlvy > :last-child, .framer-BE6Z5 .framer-16n718z > :last-child, .framer-BE6Z5 .framer-vjk67e > :last-child, .framer-BE6Z5 .framer-vn21ne > :last-child, .framer-BE6Z5 .framer-r7dg0i > :last-child, .framer-BE6Z5 .framer-1w6bsct > :last-child, .framer-BE6Z5 .framer-36wxe6 > :last-child, .framer-BE6Z5 .framer-yb15wk > :last-child, .framer-BE6Z5 .framer-bubfrj > :last-child, .framer-BE6Z5 .framer-xbqvgb > :last-child, .framer-BE6Z5 .framer-14xgib4 > :last-child, .framer-BE6Z5 .framer-1tr3rsu > :last-child, .framer-BE6Z5 .framer-15dlhbn > :last-child, .framer-BE6Z5 .framer-otnxi6 > :last-child, .framer-BE6Z5 .framer-zfdru7 > :last-child, .framer-BE6Z5 .framer-s75a04 > :last-child, .framer-BE6Z5 .framer-a5kx96 > :last-child, .framer-BE6Z5 .framer-16aymdr > :last-child, .framer-BE6Z5 .framer-6j889a > :last-child, .framer-BE6Z5 .framer-1y8i9y6 > :last-child, .framer-BE6Z5 .framer-19jnpjt > :last-child, .framer-BE6Z5 .framer-1cs7kii > :last-child, .framer-BE6Z5 .framer-11jxg28 > :last-child { margin-bottom: 0px; } .framer-BE6Z5 .framer-kc5ix7 > *, .framer-BE6Z5 .framer-6j889a > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BE6Z5 .framer-131nqtm > *, .framer-BE6Z5 .framer-vjk67e > *, .framer-BE6Z5 .framer-14xgib4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BE6Z5 .framer-103zubr > *, .framer-BE6Z5 .framer-qll9qt > *, .framer-BE6Z5 .framer-tah04r > *, .framer-BE6Z5 .framer-loi5jw > *, .framer-BE6Z5 .framer-oi5mix > *, .framer-BE6Z5 .framer-19nspkl > *, .framer-BE6Z5 .framer-zeoi08 > *, .framer-BE6Z5 .framer-x3dt3s > *, .framer-BE6Z5 .framer-1luj365 > *, .framer-BE6Z5 .framer-1ptlqld > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-BE6Z5 .framer-1gu353a > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-BE6Z5 .framer-1gu353a > :first-child, .framer-BE6Z5 .framer-1236gso > :first-child, .framer-BE6Z5 .framer-irpp6m > :first-child, .framer-BE6Z5 .framer-cobose > :first-child, .framer-BE6Z5 .framer-14n9cel > :first-child, .framer-BE6Z5 .framer-1x2iuvg > :first-child, .framer-BE6Z5 .framer-1etvc16 > :first-child, .framer-BE6Z5 .framer-1hqklxx > :first-child, .framer-BE6Z5 .framer-jqxs1s > :first-child, .framer-BE6Z5 .framer-bvskfg > :first-child, .framer-BE6Z5 .framer-qfdl4p > :first-child, .framer-BE6Z5 .framer-2up5m > :first-child, .framer-BE6Z5 .framer-amdfa7 > :first-child, .framer-BE6Z5 .framer-35l6e1 > :first-child, .framer-BE6Z5 .framer-1u0bb85 > :first-child, .framer-BE6Z5 .framer-1iwsinv > :first-child, .framer-BE6Z5 .framer-vr57qr > :first-child, .framer-BE6Z5 .framer-12bbq58 > :first-child, .framer-BE6Z5 .framer-189kxw4 > :first-child, .framer-BE6Z5 .framer-19rr376 > :first-child, .framer-BE6Z5 .framer-s6s3qm > :first-child, .framer-BE6Z5 .framer-1ru7hit > :first-child, .framer-BE6Z5 .framer-irtxnq > :first-child, .framer-BE6Z5 .framer-1e2o8nr > :first-child, .framer-BE6Z5 .framer-b57cn8 > :first-child, .framer-BE6Z5 .framer-zvnwma > :first-child, .framer-BE6Z5 .framer-1umie5z > :first-child, .framer-BE6Z5 .framer-9c3ed4 > :first-child, .framer-BE6Z5 .framer-q8rk5z > :first-child, .framer-BE6Z5 .framer-1pxhhbq > :first-child, .framer-BE6Z5 .framer-182xc3e > :first-child, .framer-BE6Z5 .framer-mu85sd > :first-child, .framer-BE6Z5 .framer-d6h7w3 > :first-child, .framer-BE6Z5 .framer-wadg0y > :first-child { margin-left: 0px; } .framer-BE6Z5 .framer-1gu353a > :last-child, .framer-BE6Z5 .framer-1236gso > :last-child, .framer-BE6Z5 .framer-irpp6m > :last-child, .framer-BE6Z5 .framer-cobose > :last-child, .framer-BE6Z5 .framer-14n9cel > :last-child, .framer-BE6Z5 .framer-1x2iuvg > :last-child, .framer-BE6Z5 .framer-1etvc16 > :last-child, .framer-BE6Z5 .framer-1hqklxx > :last-child, .framer-BE6Z5 .framer-jqxs1s > :last-child, .framer-BE6Z5 .framer-bvskfg > :last-child, .framer-BE6Z5 .framer-qfdl4p > :last-child, .framer-BE6Z5 .framer-2up5m > :last-child, .framer-BE6Z5 .framer-amdfa7 > :last-child, .framer-BE6Z5 .framer-35l6e1 > :last-child, .framer-BE6Z5 .framer-1u0bb85 > :last-child, .framer-BE6Z5 .framer-1iwsinv > :last-child, .framer-BE6Z5 .framer-vr57qr > :last-child, .framer-BE6Z5 .framer-12bbq58 > :last-child, .framer-BE6Z5 .framer-189kxw4 > :last-child, .framer-BE6Z5 .framer-19rr376 > :last-child, .framer-BE6Z5 .framer-s6s3qm > :last-child, .framer-BE6Z5 .framer-1ru7hit > :last-child, .framer-BE6Z5 .framer-irtxnq > :last-child, .framer-BE6Z5 .framer-1e2o8nr > :last-child, .framer-BE6Z5 .framer-b57cn8 > :last-child, .framer-BE6Z5 .framer-zvnwma > :last-child, .framer-BE6Z5 .framer-1umie5z > :last-child, .framer-BE6Z5 .framer-9c3ed4 > :last-child, .framer-BE6Z5 .framer-q8rk5z > :last-child, .framer-BE6Z5 .framer-1pxhhbq > :last-child, .framer-BE6Z5 .framer-182xc3e > :last-child, .framer-BE6Z5 .framer-mu85sd > :last-child, .framer-BE6Z5 .framer-d6h7w3 > :last-child, .framer-BE6Z5 .framer-wadg0y > :last-child { margin-right: 0px; } .framer-BE6Z5 .framer-1236gso > *, .framer-BE6Z5 .framer-s6s3qm > *, .framer-BE6Z5 .framer-irtxnq > *, .framer-BE6Z5 .framer-b57cn8 > *, .framer-BE6Z5 .framer-1umie5z > *, .framer-BE6Z5 .framer-q8rk5z > *, .framer-BE6Z5 .framer-182xc3e > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-BE6Z5 .framer-18ycwa5 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-BE6Z5 .framer-1bm1ux4 > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-BE6Z5 .framer-r6bp7j > *, .framer-BE6Z5 .framer-16aymdr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BE6Z5 .framer-9w1mng > *, .framer-BE6Z5 .framer-13deq6b > *, .framer-BE6Z5 .framer-aikp7n > *, .framer-BE6Z5 .framer-1n0ar0a > *, .framer-BE6Z5 .framer-v1cqmy > *, .framer-BE6Z5 .framer-129p377 > *, .framer-BE6Z5 .framer-bl75gu > *, .framer-BE6Z5 .framer-7z8y6g > *, .framer-BE6Z5 .framer-1cf1ibq > *, .framer-BE6Z5 .framer-1ld4q2i > *, .framer-BE6Z5 .framer-102pmfp > *, .framer-BE6Z5 .framer-1i5nlvy > *, .framer-BE6Z5 .framer-vn21ne > *, .framer-BE6Z5 .framer-1w6bsct > *, .framer-BE6Z5 .framer-yb15wk > *, .framer-BE6Z5 .framer-1tr3rsu > *, .framer-BE6Z5 .framer-otnxi6 > *, .framer-BE6Z5 .framer-s75a04 > *, .framer-BE6Z5 .framer-1y8i9y6 > *, .framer-BE6Z5 .framer-19jnpjt > *, .framer-BE6Z5 .framer-1cs7kii > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BE6Z5 .framer-k998ze > *, .framer-BE6Z5 .framer-1p6oui9 > *, .framer-BE6Z5 .framer-8akyuu > *, .framer-BE6Z5 .framer-e6825j > *, .framer-BE6Z5 .framer-tfrs9k > *, .framer-BE6Z5 .framer-cj0usk > *, .framer-BE6Z5 .framer-1ktz66z > *, .framer-BE6Z5 .framer-x3oehd > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-BE6Z5 .framer-1enuwmc > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-BE6Z5 .framer-irpp6m > *, .framer-BE6Z5 .framer-cobose > *, .framer-BE6Z5 .framer-14n9cel > *, .framer-BE6Z5 .framer-jqxs1s > *, .framer-BE6Z5 .framer-bvskfg > *, .framer-BE6Z5 .framer-qfdl4p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BE6Z5 .framer-wnbc04 > *, .framer-BE6Z5 .framer-1h6qz3l > *, .framer-BE6Z5 .framer-1u55beu > *, .framer-BE6Z5 .framer-s080vz > *, .framer-BE6Z5 .framer-1pdfida > *, .framer-BE6Z5 .framer-10h0ua6 > *, .framer-BE6Z5 .framer-1axkvmy > *, .framer-BE6Z5 .framer-rq7i8w > *, .framer-BE6Z5 .framer-chd6d5 > *, .framer-BE6Z5 .framer-64e6g1 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-BE6Z5 .framer-1x2iuvg > *, .framer-BE6Z5 .framer-1etvc16 > *, .framer-BE6Z5 .framer-1hqklxx > *, .framer-BE6Z5 .framer-2up5m > *, .framer-BE6Z5 .framer-mu85sd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BE6Z5 .framer-qsgfe1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-BE6Z5 .framer-1adkfnh > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-BE6Z5 .framer-bwhfal > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BE6Z5 .framer-amdfa7 > *, .framer-BE6Z5 .framer-189kxw4 > *, .framer-BE6Z5 .framer-d6h7w3 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-BE6Z5 .framer-izrqvy > *, .framer-BE6Z5 .framer-15048xi > *, .framer-BE6Z5 .framer-19mwqzw > *, .framer-BE6Z5 .framer-19p2898 > *, .framer-BE6Z5 .framer-2djeuk > *, .framer-BE6Z5 .framer-ym5m0b > *, .framer-BE6Z5 .framer-dbzhik > *, .framer-BE6Z5 .framer-16ds8rs > *, .framer-BE6Z5 .framer-17ubn0o > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-BE6Z5 .framer-35l6e1 > *, .framer-BE6Z5 .framer-1u0bb85 > *, .framer-BE6Z5 .framer-1iwsinv > *, .framer-BE6Z5 .framer-vr57qr > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-BE6Z5 .framer-12bbq58 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-BE6Z5 .framer-16n718z > *, .framer-BE6Z5 .framer-xbqvgb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BE6Z5 .framer-19rr376 > *, .framer-BE6Z5 .framer-1ru7hit > *, .framer-BE6Z5 .framer-1e2o8nr > *, .framer-BE6Z5 .framer-zvnwma > *, .framer-BE6Z5 .framer-9c3ed4 > *, .framer-BE6Z5 .framer-1pxhhbq > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-BE6Z5 .framer-r7dg0i > *, .framer-BE6Z5 .framer-36wxe6 > *, .framer-BE6Z5 .framer-bubfrj > *, .framer-BE6Z5 .framer-15dlhbn > *, .framer-BE6Z5 .framer-zfdru7 > *, .framer-BE6Z5 .framer-a5kx96 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BE6Z5 .framer-wadg0y > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-BE6Z5[data-border=\"true\"]::after, .framer-BE6Z5 [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: 1280px) and (max-width: 1919px) { .framer-BE6Z5.framer-72rtr7 { width: 1280px; } .framer-BE6Z5 .framer-1nfyqiq-container, .framer-BE6Z5 .framer-1t3fhr0, .framer-BE6Z5 .framer-wnbc04 { order: 1; } .framer-BE6Z5 .framer-116cg1o, .framer-BE6Z5 .framer-kc5ix7, .framer-BE6Z5 .framer-1x2iuvg, .framer-BE6Z5 .framer-1etvc16, .framer-BE6Z5 .framer-1hqklxx, .framer-BE6Z5 .framer-1ahr3b { order: 0; } .framer-BE6Z5 .framer-armwt7-container { left: calc(50.00000000000002% - 1600px / 2); width: 1600px; } .framer-BE6Z5 .framer-fsbns6 { gap: 27px; justify-content: flex-start; } .framer-BE6Z5 .framer-bryj7p-container { left: 80px; right: -10px; } .framer-BE6Z5 .framer-1da3v62-container, .framer-BE6Z5 .framer-m5ghcn { order: 2; } .framer-BE6Z5 .framer-1236gso { height: 750px; order: 3; width: 100%; } .framer-BE6Z5 .framer-18ycwa5 { gap: 120px; } .framer-BE6Z5 .framer-1bm1ux4 { gap: 41px; } .framer-BE6Z5 .framer-9w1mng, .framer-BE6Z5 .framer-13deq6b, .framer-BE6Z5 .framer-aikp7n, .framer-BE6Z5 .framer-1n0ar0a, .framer-BE6Z5 .framer-v1cqmy, .framer-BE6Z5 .framer-129p377, .framer-BE6Z5 .framer-bl75gu, .framer-BE6Z5 .framer-7z8y6g { gap: 8px; padding: 20px; } .framer-BE6Z5 .framer-1enuwmc { height: 700px; order: 4; width: 1279px; } .framer-BE6Z5 .framer-1h6qz3l { order: 3; } .framer-BE6Z5 .framer-1u55beu { order: 4; } .framer-BE6Z5 .framer-s080vz { order: 5; } .framer-BE6Z5 .framer-1plhaj7, .framer-BE6Z5 .framer-qsgfe1 { order: 6; } .framer-BE6Z5 .framer-1pdfida, .framer-BE6Z5 .framer-189kxw4 { order: 7; } .framer-BE6Z5 .framer-8kzujm, .framer-BE6Z5 .framer-mu85sd { order: 8; } .framer-BE6Z5 .framer-1a1v6xh-container { order: 15; } .framer-BE6Z5 .framer-lej1m7-container { order: 16; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BE6Z5 .framer-fsbns6, .framer-BE6Z5 .framer-18ycwa5, .framer-BE6Z5 .framer-1bm1ux4, .framer-BE6Z5 .framer-9w1mng, .framer-BE6Z5 .framer-13deq6b, .framer-BE6Z5 .framer-aikp7n, .framer-BE6Z5 .framer-1n0ar0a, .framer-BE6Z5 .framer-v1cqmy, .framer-BE6Z5 .framer-129p377, .framer-BE6Z5 .framer-bl75gu, .framer-BE6Z5 .framer-7z8y6g { gap: 0px; } .framer-BE6Z5 .framer-fsbns6 > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } .framer-BE6Z5 .framer-fsbns6 > :first-child { margin-left: 0px; } .framer-BE6Z5 .framer-fsbns6 > :last-child { margin-right: 0px; } .framer-BE6Z5 .framer-18ycwa5 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-BE6Z5 .framer-18ycwa5 > :first-child, .framer-BE6Z5 .framer-1bm1ux4 > :first-child, .framer-BE6Z5 .framer-9w1mng > :first-child, .framer-BE6Z5 .framer-13deq6b > :first-child, .framer-BE6Z5 .framer-aikp7n > :first-child, .framer-BE6Z5 .framer-1n0ar0a > :first-child, .framer-BE6Z5 .framer-v1cqmy > :first-child, .framer-BE6Z5 .framer-129p377 > :first-child, .framer-BE6Z5 .framer-bl75gu > :first-child, .framer-BE6Z5 .framer-7z8y6g > :first-child { margin-top: 0px; } .framer-BE6Z5 .framer-18ycwa5 > :last-child, .framer-BE6Z5 .framer-1bm1ux4 > :last-child, .framer-BE6Z5 .framer-9w1mng > :last-child, .framer-BE6Z5 .framer-13deq6b > :last-child, .framer-BE6Z5 .framer-aikp7n > :last-child, .framer-BE6Z5 .framer-1n0ar0a > :last-child, .framer-BE6Z5 .framer-v1cqmy > :last-child, .framer-BE6Z5 .framer-129p377 > :last-child, .framer-BE6Z5 .framer-bl75gu > :last-child, .framer-BE6Z5 .framer-7z8y6g > :last-child { margin-bottom: 0px; } .framer-BE6Z5 .framer-1bm1ux4 > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-BE6Z5 .framer-9w1mng > *, .framer-BE6Z5 .framer-13deq6b > *, .framer-BE6Z5 .framer-aikp7n > *, .framer-BE6Z5 .framer-1n0ar0a > *, .framer-BE6Z5 .framer-v1cqmy > *, .framer-BE6Z5 .framer-129p377 > *, .framer-BE6Z5 .framer-bl75gu > *, .framer-BE6Z5 .framer-7z8y6g > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1279px) { .framer-BE6Z5.framer-72rtr7, .framer-BE6Z5 .framer-1q9iba1 { width: 810px; } .framer-BE6Z5 .framer-1nfyqiq-container { order: 0; top: 0px; width: 100%; } .framer-BE6Z5 .framer-116cg1o { height: min-content; order: 1; padding: 140px 40px 0px 40px; } .framer-BE6Z5 .framer-armwt7-container { left: calc(50.00000000000002% - 810px / 2); top: calc(48.40000000000002% - 727px / 2); width: 810px; } .framer-BE6Z5 .framer-fsbns6 { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-BE6Z5 .framer-kc5ix7 { align-content: center; align-items: center; order: 0; padding: 0px; width: 100%; } .framer-BE6Z5 .framer-131nqtm { align-content: center; align-items: center; gap: 12px; } .framer-BE6Z5 .framer-103zubr, .framer-BE6Z5 .framer-1viqu0x { align-content: center; align-items: center; } .framer-BE6Z5 .framer-r6p37f { width: 70%; } .framer-BE6Z5 .framer-1t3fhr0 { height: 468px; order: 1; } .framer-BE6Z5 .framer-bryj7p-container { left: 55px; right: 15px; } .framer-BE6Z5 .framer-1da3v62-container, .framer-BE6Z5 .framer-9c3ed4 { order: 2; } .framer-BE6Z5 .framer-1236gso { height: 1100px; order: 3; padding: 30px 40px 30px 40px; width: 100%; } .framer-BE6Z5 .framer-18ycwa5 { flex: 1 0 0px; gap: 50px; width: 1px; } .framer-BE6Z5 .framer-1bm1ux4 { gap: 32px; width: 100%; } .framer-BE6Z5 .framer-14z4qf4 { grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); width: 750px; } .framer-BE6Z5 .framer-1enuwmc { height: 700px; order: 4; } .framer-BE6Z5 .framer-1x2iuvg, .framer-BE6Z5 .framer-1etvc16, .framer-BE6Z5 .framer-1hqklxx { order: 0; } .framer-BE6Z5 .framer-qsgfe1 { order: 6; padding: 60px 40px 60px 40px; width: min-content; } .framer-BE6Z5 .framer-1adkfnh { width: 730px; } .framer-BE6Z5 .framer-bwhfal { width: 100%; } .framer-BE6Z5 .framer-amdfa7 { gap: 12px; justify-content: flex-start; overflow: auto; padding: 2px 6px 6px 6px; width: 555px; } .framer-BE6Z5 .framer-15048xi { padding: 24px 12px 24px 12px; } .framer-BE6Z5 .framer-189kxw4 { order: 7; padding: 48px 60px 48px 60px; } .framer-BE6Z5 .framer-102pmfp { padding: 0px 30px 0px 30px; } .framer-BE6Z5 .framer-z04swh { flex-direction: column; gap: 3px; justify-content: center; max-width: 720px; } .framer-BE6Z5 .framer-16n718z, .framer-BE6Z5 .framer-xbqvgb { flex: none; width: 100%; } .framer-BE6Z5 .framer-14xgib4 { height: 1px; order: 0; } .framer-BE6Z5 .framer-zvnwma { order: 4; } .framer-BE6Z5 .framer-73105f { order: 5; } .framer-BE6Z5 .framer-186v200 { order: 1; } .framer-BE6Z5 .framer-1pxhhbq { order: 6; } .framer-BE6Z5 .framer-1plmbqh { order: 3; } .framer-BE6Z5 .framer-mu85sd { order: 8; padding: 60px 40px 60px 40px; } .framer-BE6Z5 .framer-d6h7w3 { flex: 1 0 0px; flex-direction: column; gap: 50px; padding: 0px; width: 1px; } .framer-BE6Z5 .framer-16aymdr { justify-content: flex-start; width: 100%; } .framer-BE6Z5 .framer-6j889a { gap: 24px; } .framer-BE6Z5 .framer-1y8i9y6 { height: min-content; width: 533px; } .framer-BE6Z5 .framer-1cs7kii { flex: none; padding: 0px; width: 100%; } .framer-BE6Z5 .framer-1a1v6xh-container { order: 15; } .framer-BE6Z5 .framer-lej1m7-container { order: 16; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BE6Z5 .framer-fsbns6, .framer-BE6Z5 .framer-131nqtm, .framer-BE6Z5 .framer-18ycwa5, .framer-BE6Z5 .framer-1bm1ux4, .framer-BE6Z5 .framer-amdfa7, .framer-BE6Z5 .framer-z04swh, .framer-BE6Z5 .framer-d6h7w3, .framer-BE6Z5 .framer-6j889a { gap: 0px; } .framer-BE6Z5 .framer-fsbns6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BE6Z5 .framer-fsbns6 > :first-child, .framer-BE6Z5 .framer-131nqtm > :first-child, .framer-BE6Z5 .framer-18ycwa5 > :first-child, .framer-BE6Z5 .framer-1bm1ux4 > :first-child, .framer-BE6Z5 .framer-z04swh > :first-child, .framer-BE6Z5 .framer-d6h7w3 > :first-child, .framer-BE6Z5 .framer-6j889a > :first-child { margin-top: 0px; } .framer-BE6Z5 .framer-fsbns6 > :last-child, .framer-BE6Z5 .framer-131nqtm > :last-child, .framer-BE6Z5 .framer-18ycwa5 > :last-child, .framer-BE6Z5 .framer-1bm1ux4 > :last-child, .framer-BE6Z5 .framer-z04swh > :last-child, .framer-BE6Z5 .framer-d6h7w3 > :last-child, .framer-BE6Z5 .framer-6j889a > :last-child { margin-bottom: 0px; } .framer-BE6Z5 .framer-131nqtm > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BE6Z5 .framer-18ycwa5 > *, .framer-BE6Z5 .framer-d6h7w3 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-BE6Z5 .framer-1bm1ux4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BE6Z5 .framer-amdfa7 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-BE6Z5 .framer-amdfa7 > :first-child { margin-left: 0px; } .framer-BE6Z5 .framer-amdfa7 > :last-child { margin-right: 0px; } .framer-BE6Z5 .framer-z04swh > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-BE6Z5 .framer-6j889a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 809px) { .framer-BE6Z5.framer-72rtr7 { justify-content: flex-start; width: 390px; } .framer-BE6Z5 .framer-1nfyqiq-container { top: 0px; width: 100%; } .framer-BE6Z5 .framer-116cg1o { height: min-content; padding: 0px; } .framer-BE6Z5 .framer-armwt7-container { height: 723px; left: -482px; right: -482px; top: -113px; width: unset; } .framer-BE6Z5 .framer-fsbns6 { flex-direction: column; padding: 140px 20px 38px 20px; } .framer-BE6Z5 .framer-kc5ix7 { align-content: center; align-items: center; gap: 24px; padding: 0px; width: 100%; } .framer-BE6Z5 .framer-131nqtm { align-content: center; align-items: center; gap: 12px; } .framer-BE6Z5 .framer-103zubr { align-content: center; align-items: center; gap: 0px; } .framer-BE6Z5 .framer-1viqu0x { align-content: center; align-items: center; width: 100%; } .framer-BE6Z5 .framer-172bfaj, .framer-BE6Z5 .framer-r6bp7j, .framer-BE6Z5 .framer-16aymdr, .framer-BE6Z5 .framer-i6eo02, .framer-BE6Z5 .framer-n4q8uo { width: 100%; } .framer-BE6Z5 .framer-1gu353a { gap: 12px; max-width: 430px; width: 100%; } .framer-BE6Z5 .framer-g5qsyv-container { flex: 1 0 0px; width: 1px; } .framer-BE6Z5 .framer-1t3fhr0 { height: 320px; width: 404px; } .framer-BE6Z5 .framer-bryj7p-container { height: var(--framer-aspect-ratio-supported, 254px); left: 23px; right: 23px; top: 66px; } .framer-BE6Z5 .framer-1236gso { height: 1400px; padding: 48px 16px 48px 16px; width: 100%; } .framer-BE6Z5 .framer-18ycwa5 { flex: 1 0 0px; gap: 36px; width: 1px; } .framer-BE6Z5 .framer-1bm1ux4 { gap: 24px; order: 0; width: 100%; } .framer-BE6Z5 .framer-14z4qf4 { gap: 12px; grid-template-columns: repeat(1, minmax(1px, 1fr)); width: 338px; } .framer-BE6Z5 .framer-1enuwmc { height: 870px; padding: 60px; width: 101%; } .framer-BE6Z5 .framer-14n9cel { flex-direction: column; height: 150px; width: 143%; } .framer-BE6Z5 .framer-qsgfe1, .framer-BE6Z5 .framer-mu85sd { padding: 48px 16px 48px 16px; } .framer-BE6Z5 .framer-1adkfnh, .framer-BE6Z5 .framer-6j889a { gap: 24px; } .framer-BE6Z5 .framer-bwhfal { order: 0; width: 100%; } .framer-BE6Z5 .framer-amdfa7 { gap: 12px; justify-content: flex-start; order: 1; overflow: hidden; overflow-x: auto; padding: 2px 6px 9px 6px; width: 271px; } .framer-BE6Z5 .framer-35l6e1 { order: 2; } .framer-BE6Z5 .framer-1u0bb85 { order: 3; } .framer-BE6Z5 .framer-1iwsinv { order: 4; } .framer-BE6Z5 .framer-12bbq58 { gap: 12px; max-width: 430px; min-width: unset; order: 6; width: 100%; } .framer-BE6Z5 .framer-189kxw4 { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px; } .framer-BE6Z5 .framer-102pmfp { flex: none; gap: 0px; height: 1100px; max-width: unset; padding: 0px; width: 391px; } .framer-BE6Z5 .framer-1i5nlvy { width: 80%; } .framer-BE6Z5 .framer-z04swh { flex-direction: column; gap: 6px; justify-content: center; } .framer-BE6Z5 .framer-16n718z, .framer-BE6Z5 .framer-xbqvgb { align-content: center; align-items: center; flex: none; width: 100%; } .framer-BE6Z5 .framer-vjk67e, .framer-BE6Z5 .framer-14xgib4 { align-content: center; align-items: center; gap: 14px; } .framer-BE6Z5 .framer-d6h7w3 { flex: 1 0 0px; flex-direction: column; gap: 32px; padding: 0px; width: 1px; } .framer-BE6Z5 .framer-s4nl1l { height: var(--framer-aspect-ratio-supported, 234px); width: 337px; } .framer-BE6Z5 .framer-1y8i9y6 { height: min-content; width: 100%; } .framer-BE6Z5 .framer-1cs7kii { flex: none; padding: 0px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BE6Z5 .framer-fsbns6, .framer-BE6Z5 .framer-kc5ix7, .framer-BE6Z5 .framer-131nqtm, .framer-BE6Z5 .framer-103zubr, .framer-BE6Z5 .framer-1gu353a, .framer-BE6Z5 .framer-18ycwa5, .framer-BE6Z5 .framer-1bm1ux4, .framer-BE6Z5 .framer-14z4qf4, .framer-BE6Z5 .framer-14n9cel, .framer-BE6Z5 .framer-1adkfnh, .framer-BE6Z5 .framer-amdfa7, .framer-BE6Z5 .framer-12bbq58, .framer-BE6Z5 .framer-189kxw4, .framer-BE6Z5 .framer-102pmfp, .framer-BE6Z5 .framer-z04swh, .framer-BE6Z5 .framer-vjk67e, .framer-BE6Z5 .framer-14xgib4, .framer-BE6Z5 .framer-d6h7w3, .framer-BE6Z5 .framer-6j889a { gap: 0px; } .framer-BE6Z5 .framer-fsbns6 > *, .framer-BE6Z5 .framer-fsbns6 > :first-child, .framer-BE6Z5 .framer-fsbns6 > :last-child, .framer-BE6Z5 .framer-14z4qf4 > *, .framer-BE6Z5 .framer-14z4qf4 > :first-child, .framer-BE6Z5 .framer-14z4qf4 > :last-child { margin: 0px; } .framer-BE6Z5 .framer-kc5ix7 > *, .framer-BE6Z5 .framer-1bm1ux4 > *, .framer-BE6Z5 .framer-1adkfnh > *, .framer-BE6Z5 .framer-6j889a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BE6Z5 .framer-kc5ix7 > :first-child, .framer-BE6Z5 .framer-131nqtm > :first-child, .framer-BE6Z5 .framer-103zubr > :first-child, .framer-BE6Z5 .framer-18ycwa5 > :first-child, .framer-BE6Z5 .framer-1bm1ux4 > :first-child, .framer-BE6Z5 .framer-14n9cel > :first-child, .framer-BE6Z5 .framer-1adkfnh > :first-child, .framer-BE6Z5 .framer-189kxw4 > :first-child, .framer-BE6Z5 .framer-102pmfp > :first-child, .framer-BE6Z5 .framer-z04swh > :first-child, .framer-BE6Z5 .framer-vjk67e > :first-child, .framer-BE6Z5 .framer-14xgib4 > :first-child, .framer-BE6Z5 .framer-d6h7w3 > :first-child, .framer-BE6Z5 .framer-6j889a > :first-child { margin-top: 0px; } .framer-BE6Z5 .framer-kc5ix7 > :last-child, .framer-BE6Z5 .framer-131nqtm > :last-child, .framer-BE6Z5 .framer-103zubr > :last-child, .framer-BE6Z5 .framer-18ycwa5 > :last-child, .framer-BE6Z5 .framer-1bm1ux4 > :last-child, .framer-BE6Z5 .framer-14n9cel > :last-child, .framer-BE6Z5 .framer-1adkfnh > :last-child, .framer-BE6Z5 .framer-189kxw4 > :last-child, .framer-BE6Z5 .framer-102pmfp > :last-child, .framer-BE6Z5 .framer-z04swh > :last-child, .framer-BE6Z5 .framer-vjk67e > :last-child, .framer-BE6Z5 .framer-14xgib4 > :last-child, .framer-BE6Z5 .framer-d6h7w3 > :last-child, .framer-BE6Z5 .framer-6j889a > :last-child { margin-bottom: 0px; } .framer-BE6Z5 .framer-131nqtm > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BE6Z5 .framer-103zubr > *, .framer-BE6Z5 .framer-102pmfp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BE6Z5 .framer-1gu353a > *, .framer-BE6Z5 .framer-amdfa7 > *, .framer-BE6Z5 .framer-12bbq58 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-BE6Z5 .framer-1gu353a > :first-child, .framer-BE6Z5 .framer-amdfa7 > :first-child, .framer-BE6Z5 .framer-12bbq58 > :first-child { margin-left: 0px; } .framer-BE6Z5 .framer-1gu353a > :last-child, .framer-BE6Z5 .framer-amdfa7 > :last-child, .framer-BE6Z5 .framer-12bbq58 > :last-child { margin-right: 0px; } .framer-BE6Z5 .framer-18ycwa5 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-BE6Z5 .framer-14n9cel > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BE6Z5 .framer-189kxw4 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-BE6Z5 .framer-z04swh > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-BE6Z5 .framer-vjk67e > *, .framer-BE6Z5 .framer-14xgib4 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-BE6Z5 .framer-d6h7w3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5252\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xf27aOaI0\":{\"layout\":[\"fixed\",\"auto\"]},\"ilCPgpUK1\":{\"layout\":[\"fixed\",\"auto\"]},\"xmttBflmi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"wmq2fun3b\":{\"pattern\":\":wmq2fun3b\",\"name\":\"brands\"},\"Ps2T7_7OG\":{\"pattern\":\":Ps2T7_7OG\",\"name\":\"solutions\"},\"tyaJWB848\":{\"pattern\":\":tyaJWB848\",\"name\":\"2\"},\"ndlThHx0u\":{\"pattern\":\":ndlThHx0u\",\"name\":\"how-do-we-compare\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-BE6Z5\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5252,width:1920};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...TopNavigationBarFonts,...BackgroundGridFonts,...ButtonFonts,...HomeDesktopFonts,...SectionBrandsFonts,...PhosphorFonts,...BadgeNormalFonts,...SectionFAQQuestionFonts,...SectionCTAFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1920\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"wmq2fun3b\\\":{\\\"pattern\\\":\\\":wmq2fun3b\\\",\\\"name\\\":\\\"brands\\\"},\\\"Ps2T7_7OG\\\":{\\\"pattern\\\":\\\":Ps2T7_7OG\\\",\\\"name\\\":\\\"solutions\\\"},\\\"tyaJWB848\\\":{\\\"pattern\\\":\\\":tyaJWB848\\\",\\\"name\\\":\\\"2\\\"},\\\"ndlThHx0u\\\":{\\\"pattern\\\":\\\":ndlThHx0u\\\",\\\"name\\\":\\\"how-do-we-compare\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xf27aOaI0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ilCPgpUK1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xmttBflmi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"5252\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "n", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "r", "a", "velocityPerSecond", "n", "calcDampingRatio", "e", "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", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "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", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Ii9PAH3tb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "FramerG1quos_R8", "withCSS", "G1quos_R8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1jbmr23", "args", "onTap11xm1gp", "onTapohg68w", "onTapv2ur4x", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerJYIEmzcQj", "withCSS", "JYIEmzcQj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "border", "content", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "JDEMNPLZW", "uCazwUNgB", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_uCazwUNgB_borderBottomWidth", "_uCazwUNgB_borderLeftWidth", "_uCazwUNgB_borderRightWidth", "_uCazwUNgB_borderTopWidth", "LayoutGroup", "cx", "RichText2", "css", "FramersqcnnD9OB", "withCSS", "sqcnnD9OB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TopNavigationBarFonts", "getFonts", "sltkc74h7_default", "BackgroundGridFonts", "pwVXWPq1Q_default", "RichTextWithFX", "withFX", "RichText2", "ButtonFonts", "KF7UbbSfc_default", "MotionDivWithFX", "motion", "HomeDesktopFonts", "pqx7SY14c_default", "SectionBrandsFonts", "G1quos_R8_default", "PhosphorFonts", "Icon", "MotionAWithFX", "BadgeNormalFonts", "sqcnnD9OB_default", "ImageWithFX", "Image2", "SectionFAQQuestionFonts", "JYIEmzcQj_default", "ContainerWithFX", "Container", "SectionCTAFonts", "LpjyIZj0_default", "SectionFooterFonts", "lS9TvqxVt_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "transition6", "animation8", "animation9", "transition7", "animation10", "transition8", "animation11", "transition9", "animation12", "transition10", "animation13", "transition11", "animation14", "transition12", "animation15", "transition13", "animation16", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId2", "ref3", "isDisplayed4", "isDisplayed5", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "ResolveLinks", "resolvedLinks", "Link", "getLoadingLazyAtYPosition", "FormContainer", "formState", "l", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
