{
  "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.13.1/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/62gLVM2lO3lTmNEA7tdp/zSwSBecVo3ckxdV9rIr4/acxHyFW09.js", "ssg:https://framerusercontent.com/modules/hMYFpEsLchZczhGhzJb9/mnyln3Ayl4paOjHHRRgA/GgKQgUt9_.js", "ssg:https://framerusercontent.com/modules/Aty6yPe4xTxxtkhgi3OP/zCsAc863FYO6USWL5Kdj/l9cSOWaCs.js", "ssg:https://framerusercontent.com/modules/VvvR9cpZz2zrsHCDK8Ts/d3ctb8UDjgTCcxMqgh6D/MWPPU0pVu.js", "ssg:https://framerusercontent.com/modules/q0UXKYNdDZ7V0SKEzagT/XnSt3z8mb1fjTN07tZFM/pu20SwG4Z.js", "ssg:https://framerusercontent.com/modules/63fHjk0XDxkYVv7637Z8/NSOMnxYJVpiWBMhmlbkQ/Y1WawIwra.js", "ssg:https://framerusercontent.com/modules/mQ5E7p2NdBkU8mTeanZN/CFY0l25eqcPFtTNZSDr4/y_olt3QNm.js", "ssg:https://framerusercontent.com/modules/mlyS4zWGmxm4ud7HKK9L/XgZ693eu8C316mYj4Jba/augiA20Il.js", "ssg:https://framerusercontent.com/modules/56Y7YWIB6QgPnCz6gsrs/lwTuNgSFwaBsNo3G08yc/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,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[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 $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);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]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;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){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.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 r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}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=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.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(u));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=f.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 r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}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 i(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 l(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){d(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:g(i,s,o[r]),easing:m(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,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));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,O(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=x((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 U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;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=G.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&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=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 J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}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 Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(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}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;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=w(p(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 s=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:i(t)?()=>t(n):scrubAnimation(t,n[s])}}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 oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.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()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.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 re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,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 ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(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 ce={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 le={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 fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=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 ue)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)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[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(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[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:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.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)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.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{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N 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;const numChildren=Children.count(slots);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(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.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(slots,(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%\"};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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/nPjzYOmeolc5ErvlLCjg/s3tsqE8e8rurj77phe5F/HpLvdzTXK.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const serializationHash=\"framer-i7wbZ\";const variantClassNames={X2f58d1f8:\"framer-v-er9drh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"X2f58d1f8\",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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-er9drh\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"X2f58d1f8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.5,...style},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ykd6uc\",\"data-styles-preset\":\"HpLvdzTXK\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(0, 0, 0))\"},children:\"Therapist\"})}),className:\"framer-1v0444m\",\"data-framer-appear-id\":\"1v0444m\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"MANbjx8Gs\",optimized:true,style:{\"--extracted-a0htzi\":\"rgb(0, 0, 0)\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i7wbZ.framer-55otll, .framer-i7wbZ .framer-55otll { display: block; }\",\".framer-i7wbZ.framer-er9drh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 58px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 242px; }\",\".framer-i7wbZ .framer-1v0444m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-i7wbZ.framer-er9drh { gap: 0px; } .framer-i7wbZ.framer-er9drh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-i7wbZ.framer-er9drh > :first-child { margin-left: 0px; } .framer-i7wbZ.framer-er9drh > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 58\n * @framerIntrinsicWidth 242\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameracxHyFW09=withCSS(Component,css,\"framer-i7wbZ\");export default FrameracxHyFW09;FrameracxHyFW09.displayName=\"kraken\";FrameracxHyFW09.defaultProps={height:58,width:242};addFonts(FrameracxHyFW09,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameracxHyFW09\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"242\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"58\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1b7c4bf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"WkJ9gzbNg\",\"psLdlZTuE\",\"SXKTKBlNZ\"];const serializationHash=\"framer-vdrMV\";const variantClassNames={psLdlZTuE:\"framer-v-1s8rtkp\",SXKTKBlNZ:\"framer-v-yhqcw5\",WkJ9gzbNg:\"framer-v-8zpc1l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Label Dark\":\"SXKTKBlNZ\",\"Label Hero\":\"WkJ9gzbNg\",\"Label Section\":\"psLdlZTuE\"};const getProps=({height,id,image,labelTag,labelText,link,width,...props})=>{return{...props,PKvYSA5Uj:image??props.PKvYSA5Uj??{src:\"https://framerusercontent.com/images/huTGRaTWOfwCokJDlwFx6154.png\"},rq7tYFIEJ:labelTag??props.rq7tYFIEJ??\"What's New?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WkJ9gzbNg\",XvQYy3ZyV:labelText??props.XvQYy3ZyV??\"Label Text\",XzdqXWE_7:link??props.XzdqXWE_7};};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,XvQYy3ZyV,rq7tYFIEJ,PKvYSA5Uj,XzdqXWE_7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WkJ9gzbNg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"psLdlZTuE\",\"SXKTKBlNZ\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:XzdqXWE_7,nodeId:\"WkJ9gzbNg\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-8zpc1l\",className,classNames)} framer-ovwz71`,\"data-border\":true,\"data-framer-name\":\"Label Hero\",layoutDependency:layoutDependency,layoutId:\"WkJ9gzbNg\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-caa7547d-cf57-44d3-92c2-01fcbf1068be, rgb(243, 243, 241))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(180deg, var(--token-f395e90f-e08f-456b-b155-0974850affb9, rgb(255, 255, 255)) /* {\"name\":\"White\"} */ 46.97994087837838%, var(--token-21001bb2-95fc-4899-93cf-7cca6736a1a2, rgb(250, 250, 247)) /* {\"name\":\"White Snow\"} */ 100%)',backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 0px 0px 0px var(--token-d9b61195-aab4-476b-b9e3-079c888576c0, rgb(255, 241, 227))\",...style},variants:{psLdlZTuE:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\",background:\"linear-gradient(180deg, var(--token-c052246b-7349-47f4-98d2-d23dbe774dd9, rgb(254, 254, 254)) 0%, var(--token-c052246b-7349-47f4-98d2-d23dbe774dd9, rgb(254, 254, 254)) 100%)\",backgroundColor:\"var(--token-c052246b-7349-47f4-98d2-d23dbe774dd9, rgb(254, 254, 254))\",boxShadow:\"none\"},SXKTKBlNZ:{\"--border-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\",background:\"linear-gradient(180deg, rgb(24, 30, 38) 0%, rgb(24, 30, 38) 100%)\",backgroundColor:\"rgb(24, 30, 38)\"}},...addPropertyOverrides({psLdlZTuE:{\"data-framer-name\":\"Label Section\"},SXKTKBlNZ:{\"data-framer-name\":\"Label Dark\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-caa7547d-cf57-44d3-92c2-01fcbf1068be, rgb(243, 243, 241))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(180deg, var(--token-f395e90f-e08f-456b-b155-0974850affb9, rgb(255, 255, 255)) /* {\"name\":\"White\"} */ 46.97994087837838%, var(--token-21001bb2-95fc-4899-93cf-7cca6736a1a2, rgb(250, 250, 247)) /* {\"name\":\"White Snow\"} */ 100%)',borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 0px 0px 0px var(--token-d9b61195-aab4-476b-b9e3-079c888576c0, rgb(255, 241, 227))\",...style}}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ojqmoz\",\"data-framer-name\":\"Left \",layoutDependency:layoutDependency,layoutId:\"tDe9DKnkO\",style:{backgroundColor:\"rgb(244, 246, 250)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(8, 77, 179))\"},children:\"What's New?\"})}),className:\"framer-vmk0ah\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"Ang7EHYZW\",style:{\"--extracted-r6o4lv\":\"rgb(8, 77, 179)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rq7tYFIEJ,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iqgl3v\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"QRlets5LM\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(7+((componentViewport?.height||39)-14-18)/2)+0),sizes:\"18px\",...toResponsiveImage(PKvYSA5Uj),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1lz85fi\",layoutDependency:layoutDependency,layoutId:\"hXDNtNdpK\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-214978fa-e761-4572-91af-3494aef8f421, rgb(33, 42, 64)))\"},children:\"Label Text\"})}),className:\"framer-n9chfm\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"Zp3R7DKw5\",style:{\"--extracted-r6o4lv\":\"var(--token-214978fa-e761-4572-91af-3494aef8f421, rgb(33, 42, 64))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XvQYy3ZyV,variants:{SXKTKBlNZ:{\"--extracted-r6o4lv\":\"rgb(144, 162, 175)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SXKTKBlNZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 162, 175))\"},children:\"Label Text\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vdrMV.framer-ovwz71, .framer-vdrMV .framer-ovwz71 { display: block; }\",\".framer-vdrMV.framer-8zpc1l { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 13px 7px 7px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vdrMV .framer-ojqmoz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px 9px 5px 9px; position: relative; width: min-content; }\",\".framer-vdrMV .framer-vmk0ah, .framer-vdrMV .framer-n9chfm { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vdrMV .framer-1iqgl3v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vdrMV .framer-1lz85fi { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vdrMV.framer-8zpc1l, .framer-vdrMV .framer-ojqmoz, .framer-vdrMV .framer-1iqgl3v { gap: 0px; } .framer-vdrMV.framer-8zpc1l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vdrMV.framer-8zpc1l > :first-child, .framer-vdrMV .framer-1iqgl3v > :first-child { margin-left: 0px; } .framer-vdrMV.framer-8zpc1l > :last-child, .framer-vdrMV .framer-1iqgl3v > :last-child { margin-right: 0px; } .framer-vdrMV .framer-ojqmoz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vdrMV .framer-ojqmoz > :first-child { margin-top: 0px; } .framer-vdrMV .framer-ojqmoz > :last-child { margin-bottom: 0px; } .framer-vdrMV .framer-1iqgl3v > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-vdrMV.framer-v-1s8rtkp.framer-8zpc1l, .framer-vdrMV.framer-v-yhqcw5.framer-8zpc1l { padding: 8px 25px 8px 25px; }\",\".framer-vdrMV.framer-v-1s8rtkp .framer-1iqgl3v { gap: 0px; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vdrMV.framer-v-1s8rtkp .framer-1iqgl3v { gap: 0px; } .framer-vdrMV.framer-v-1s8rtkp .framer-1iqgl3v > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-vdrMV.framer-v-1s8rtkp .framer-1iqgl3v > :first-child { margin-left: 0px; } .framer-vdrMV.framer-v-1s8rtkp .framer-1iqgl3v > :last-child { margin-right: 0px; } }\",'.framer-vdrMV[data-border=\"true\"]::after, .framer-vdrMV [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 39\n * @framerIntrinsicWidth 239\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"psLdlZTuE\":{\"layout\":[\"auto\",\"auto\"]},\"SXKTKBlNZ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"XvQYy3ZyV\":\"labelText\",\"rq7tYFIEJ\":\"labelTag\",\"PKvYSA5Uj\":\"image\",\"XzdqXWE_7\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGgKQgUt9_=withCSS(Component,css,\"framer-vdrMV\");export default FramerGgKQgUt9_;FramerGgKQgUt9_.displayName=\"Elements/Label\";FramerGgKQgUt9_.defaultProps={height:39,width:239};addPropertyControls(FramerGgKQgUt9_,{variant:{options:[\"WkJ9gzbNg\",\"psLdlZTuE\",\"SXKTKBlNZ\"],optionTitles:[\"Label Hero\",\"Label Section\",\"Label Dark\"],title:\"Variant\",type:ControlType.Enum},XvQYy3ZyV:{defaultValue:\"Label Text\",description:\"\",displayTextArea:false,title:\"Label Text\",type:ControlType.String},rq7tYFIEJ:{defaultValue:\"What's New?\",displayTextArea:false,title:\"Label Tag\",type:ControlType.String},PKvYSA5Uj:{__defaultAssetReference:\"data:framer/asset-reference,huTGRaTWOfwCokJDlwFx6154.png?originalFilename=christmas-stars.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},XzdqXWE_7:{title:\"Link\",type:ControlType.Link}});addFonts(FramerGgKQgUt9_,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGgKQgUt9_\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"239\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"psLdlZTuE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SXKTKBlNZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"39\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"XvQYy3ZyV\\\":\\\"labelText\\\",\\\"rq7tYFIEJ\\\":\\\"labelTag\\\",\\\"PKvYSA5Uj\\\":\\\"image\\\",\\\"XzdqXWE_7\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GgKQgUt9_.map", "// Generated by Framer (46bb7e9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/nPjzYOmeolc5ErvlLCjg/s3tsqE8e8rurj77phe5F/HpLvdzTXK.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const serializationHash=\"framer-oUzX6\";const variantClassNames={StULI0EfU:\"framer-v-1dvw56m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"StULI0EfU\",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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dvw56m\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"StULI0EfU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.5,...style},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ykd6uc\",\"data-styles-preset\":\"HpLvdzTXK\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(0, 0, 0))\"},children:\"Psychiatrists\"})}),className:\"framer-1fs2lkn\",\"data-framer-appear-id\":\"1fs2lkn\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"iBIE9plCY\",optimized:true,style:{\"--extracted-a0htzi\":\"rgb(0, 0, 0)\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oUzX6.framer-1wt7sgq, .framer-oUzX6 .framer-1wt7sgq { display: block; }\",\".framer-oUzX6.framer-1dvw56m { height: 58px; overflow: hidden; position: relative; width: 304px; }\",\".framer-oUzX6 .framer-1fs2lkn { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 306px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 58\n * @framerIntrinsicWidth 304\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerl9cSOWaCs=withCSS(Component,css,\"framer-oUzX6\");export default Framerl9cSOWaCs;Framerl9cSOWaCs.displayName=\"coinbase\";Framerl9cSOWaCs.defaultProps={height:58,width:304};addFonts(Framerl9cSOWaCs,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerl9cSOWaCs\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"58\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"304\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"dwA0zBPoS\",\"o76E8GGCk\"];const serializationHash=\"framer-k6veO\";const variantClassNames={dwA0zBPoS:\"framer-v-fd2qda\",o76E8GGCk:\"framer-v-vdqzro\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"dwA0zBPoS\",Mobile:\"o76E8GGCk\"};const getProps=({background,height,id,text,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,Jxq2GRK7M:(_ref=text!==null&&text!==void 0?text:props.Jxq2GRK7M)!==null&&_ref!==void 0?_ref:\"\u201CWe are really enjoying using Prolific. It has been so much better for us than MTurk.\u201D\",lxoksPKf0:(_ref1=background!==null&&background!==void 0?background:props.lxoksPKf0)!==null&&_ref1!==void 0?_ref1:\"var(--token-bd09f862-3d36-40c1-a67e-253cf9f8a0b7, rgb(236, 229, 255))\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"dwA0zBPoS\"};};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,lxoksPKf0,Jxq2GRK7M,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dwA0zBPoS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fd2qda\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"dwA0zBPoS\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:lxoksPKf0,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({o76E8GGCk:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0)))\"},children:\"\u201CWe are really enjoying using Prolific. It has been so much better for us than MTurk.\u201D\"})}),className:\"framer-qtlnek\",\"data-framer-name\":\"\u201CWe are really enjoying using Prolific. It has been so much better for us than MTurk.\u201D\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"JBp8B9u2F\",style:{\"--extracted-r6o4lv\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},text:Jxq2GRK7M,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-k6veO.framer-5is47t, .framer-k6veO .framer-5is47t { display: block; }\",\".framer-k6veO.framer-fd2qda { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 360px; justify-content: space-between; overflow: visible; padding: 40px; position: relative; width: 668px; }\",\".framer-k6veO .framer-qtlnek { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-k6veO.framer-v-vdqzro.framer-fd2qda { gap: 40px; height: min-content; justify-content: center; padding: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-k6veO.framer-v-vdqzro.framer-fd2qda { gap: 0px; } .framer-k6veO.framer-v-vdqzro.framer-fd2qda > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-k6veO.framer-v-vdqzro.framer-fd2qda > :first-child { margin-top: 0px; } .framer-k6veO.framer-v-vdqzro.framer-fd2qda > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 360\n * @framerIntrinsicWidth 668\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"o76E8GGCk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"lxoksPKf0\":\"background\",\"Jxq2GRK7M\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMWPPU0pVu=withCSS(Component,css,\"framer-k6veO\");export default FramerMWPPU0pVu;FramerMWPPU0pVu.displayName=\"Testimonial 2\";FramerMWPPU0pVu.defaultProps={height:360,width:668};addPropertyControls(FramerMWPPU0pVu,{variant:{options:[\"dwA0zBPoS\",\"o76E8GGCk\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},lxoksPKf0:{defaultValue:'var(--token-bd09f862-3d36-40c1-a67e-253cf9f8a0b7, rgb(236, 229, 255)) /* {\"name\":\"Secondary/Lavender\"} */',title:\"Background\",type:ControlType.Color},Jxq2GRK7M:{defaultValue:\"\u201CWe are really enjoying using Prolific. It has been so much better for us than MTurk.\u201D\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerMWPPU0pVu,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMWPPU0pVu\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"668\",\"framerVariables\":\"{\\\"lxoksPKf0\\\":\\\"background\\\",\\\"Jxq2GRK7M\\\":\\\"text\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"360\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o76E8GGCk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MWPPU0pVu.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/nPjzYOmeolc5ErvlLCjg/s3tsqE8e8rurj77phe5F/HpLvdzTXK.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const serializationHash=\"framer-Ylpob\";const variantClassNames={PKORZ4aDX:\"framer-v-1wpnpjl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"PKORZ4aDX\",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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1wpnpjl\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PKORZ4aDX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.5,...style},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ykd6uc\",\"data-styles-preset\":\"HpLvdzTXK\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(0, 0, 0))\"},children:\"Telemedicine\"})}),className:\"framer-zqs7pa\",\"data-framer-appear-id\":\"zqs7pa\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"Qptm84OcQ\",optimized:true,style:{\"--extracted-a0htzi\":\"rgb(0, 0, 0)\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ylpob.framer-wayhx, .framer-Ylpob .framer-wayhx { display: block; }\",\".framer-Ylpob.framer-1wpnpjl { height: 56px; overflow: hidden; position: relative; width: 259px; }\",\".framer-Ylpob .framer-zqs7pa { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 259\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerpu20SwG4Z=withCSS(Component,css,\"framer-Ylpob\");export default Framerpu20SwG4Z;Framerpu20SwG4Z.displayName=\"binance\";Framerpu20SwG4Z.defaultProps={height:56,width:259};addFonts(Framerpu20SwG4Z,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpu20SwG4Z\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"56\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"259\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (46bb7e9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/nPjzYOmeolc5ErvlLCjg/s3tsqE8e8rurj77phe5F/HpLvdzTXK.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const serializationHash=\"framer-g3rLy\";const variantClassNames={rSICB9Amm:\"framer-v-1nu2kf9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rSICB9Amm\",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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nu2kf9\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rSICB9Amm\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.5,...style},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ykd6uc\",\"data-styles-preset\":\"HpLvdzTXK\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(0, 0, 0))\"},children:\"Home Healthcare Physicians\"})}),className:\"framer-13zeg6j\",\"data-framer-appear-id\":\"13zeg6j\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"gT66wEKI3\",optimized:true,style:{\"--extracted-a0htzi\":\"rgb(0, 0, 0)\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g3rLy.framer-bmprez, .framer-g3rLy .framer-bmprez { display: block; }\",\".framer-g3rLy.framer-1nu2kf9 { height: 54px; overflow: hidden; position: relative; width: 670px; }\",\".framer-g3rLy .framer-13zeg6j { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 724px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 670\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerY1WawIwra=withCSS(Component,css,\"framer-g3rLy\");export default FramerY1WawIwra;FramerY1WawIwra.displayName=\"bitfinex\";FramerY1WawIwra.defaultProps={height:54,width:670};addFonts(FramerY1WawIwra,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerY1WawIwra\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"670\",\"framerIntrinsicHeight\":\"54\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-regular\",\"GF;Inter-700\"]);export const fonts=[{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}];export const css=['.framer-KgfoX .framer-styles-preset-1gv99vf:not(.rich-text-wrapper), .framer-KgfoX .framer-styles-preset-1gv99vf.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 125%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #374151; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-KgfoX .framer-styles-preset-1gv99vf:not(.rich-text-wrapper), .framer-KgfoX .framer-styles-preset-1gv99vf.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 125%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #374151; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-KgfoX .framer-styles-preset-1gv99vf:not(.rich-text-wrapper), .framer-KgfoX .framer-styles-preset-1gv99vf.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 25px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 125%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #374151; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-KgfoX\";\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 (e1a43d5)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={R2t5dZieP:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e1a43d5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Jo2d4bKbCdbbg0oiZ0LB/Input.js\";import Kraken from\"#framer/local/canvasComponent/acxHyFW09/acxHyFW09.js\";import Navigation from\"#framer/local/canvasComponent/dtJGnPs3l/dtJGnPs3l.js\";import ElementsLabel from\"#framer/local/canvasComponent/GgKQgUt9_/GgKQgUt9_.js\";import Footer2 from\"#framer/local/canvasComponent/hA3skc3yy/hA3skc3yy.js\";import Coinbase from\"#framer/local/canvasComponent/l9cSOWaCs/l9cSOWaCs.js\";import Buttons2 from\"#framer/local/canvasComponent/M5LBGV9Vr/M5LBGV9Vr.js\";import Testimonial2 from\"#framer/local/canvasComponent/MWPPU0pVu/MWPPU0pVu.js\";import Binance from\"#framer/local/canvasComponent/pu20SwG4Z/pu20SwG4Z.js\";import Button from\"#framer/local/canvasComponent/QhdhLt5p5/QhdhLt5p5.js\";import Buttons from\"#framer/local/canvasComponent/V_vHOGBwE/V_vHOGBwE.js\";import Badge2 from\"#framer/local/canvasComponent/x2BZgbyY4/x2BZgbyY4.js\";import Bitfinex from\"#framer/local/canvasComponent/Y1WawIwra/Y1WawIwra.js\";import Blog from\"#framer/local/collection/v_Ak1omlQ/v_Ak1omlQ.js\";import*as sharedStyle from\"#framer/local/css/eORE4A9UB/eORE4A9UB.js\";import*as sharedStyle7 from\"#framer/local/css/GoYypVzwN/GoYypVzwN.js\";import*as sharedStyle5 from\"#framer/local/css/gPGO6kcD6/gPGO6kcD6.js\";import*as sharedStyle2 from\"#framer/local/css/kNkYxHW2g/kNkYxHW2g.js\";import*as sharedStyle1 from\"#framer/local/css/OiemQ21xd/OiemQ21xd.js\";import*as sharedStyle3 from\"#framer/local/css/QIybVV0gH/QIybVV0gH.js\";import*as sharedStyle6 from\"#framer/local/css/y_olt3QNm/y_olt3QNm.js\";import*as sharedStyle4 from\"#framer/local/css/z1BV5jxiu/z1BV5jxiu.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ElementsLabelFonts=getFonts(ElementsLabel);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const InputFonts=getFonts(Input);const ButtonFonts=getFonts(Button);const ImageWithFX=withFX(Image);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const MotionDivWithFX=withFX(motion.div);const CoinbaseFonts=getFonts(Coinbase);const KrakenFonts=getFonts(Kraken);const BitfinexFonts=getFonts(Bitfinex);const BinanceFonts=getFonts(Binance);const TickerFonts=getFonts(Ticker);const Testimonial2Fonts=getFonts(Testimonial2);const Badge2Fonts=getFonts(Badge2);const ButtonsFonts=getFonts(Buttons);const Buttons2Fonts=getFonts(Buttons2);const MotionSectionWithFX=withFX(motion.section);const MotionAWithFX=withFX(motion.a);const Footer2Fonts=getFonts(Footer2);const breakpoints={rZoq4fOw5:\"(min-width: 810px) and (max-width: 1199px)\",sxoaNYiuO:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-p6Y0G\";const variantClassNames={rZoq4fOw5:\"framer-v-7a09nj\",sxoaNYiuO:\"framer-v-liub87\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-70};const transition2={delay:.2,duration:.8,ease:[.44,0,.21,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transition3={damping:70,delay:0,mass:1,stiffness:210,type:\"spring\"};const animation5={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition4={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation5,startDelay:.2,tokenization:\"word\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const transition5={damping:70,delay:1,mass:1,stiffness:210,type:\"spring\"};const transition6={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition7={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:-150};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition8={damping:40,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition9={damping:30,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const transition10={damping:30,delay:.3,mass:1,stiffness:180,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const transition11={damping:40,delay:.3,mass:1,stiffness:180,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition12={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition13={delay:.3,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition14={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition15={damping:40,delay:.2,mass:1,stiffness:160,type:\"spring\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition16={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition16,x:0,y:50};const transition17={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition18={damping:40,delay:.4,mass:1,stiffness:160,type:\"spring\"};const transition19={damping:40,delay:.5,mass:1,stiffness:160,type:\"spring\"};const transition20={damping:40,delay:.3,mass:1,stiffness:150,type:\"spring\"};const transition21={damping:40,delay:.6,mass:1,stiffness:160,type:\"spring\"};const transition22={damping:40,delay:.7,mass:1,stiffness:160,type:\"spring\"};const transition23={damping:40,delay:.4,mass:1,stiffness:150,type:\"spring\"};const transition24={damping:40,delay:.8,mass:1,stiffness:160,type:\"spring\"};const transition25={damping:40,delay:.9,mass:1,stiffness:160,type:\"spring\"};const transition26={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transition27={delay:.6,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition28={delay:.8,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition29={delay:.4,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition30={delay:.4,duration:.6,ease:[.44,0,0,1],type:\"tween\"};const transition31={delay:.5,duration:.6,ease:[.44,0,0,1],type:\"tween\"};const transition32={damping:40,delay:.1,mass:1,stiffness:160,type:\"spring\"};const transition33={damping:40,delay:0,mass:1,stiffness:160,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"sxoaNYiuO\",Tablet:\"rZoq4fOw5\"};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,wR752i2OMvVZaRttGW,ZVhKDtWyEvVZaRttGW,Lx_TFXkL0vVZaRttGW,idvVZaRttGW,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onSubmit3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const XtFwpGasz1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();const elementId=useRouteElementId(\"VoZuv6REF\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"ZlTtx5UZP\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId2=useRouteElementId(\"My0qyc9Yn\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"hekc9iz_L\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"dWohjg438\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"CcTAhXHeW\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"lsy4ggRNa\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"ZUomZGQPz\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"XBgj9gKso\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"uG9Pp_FJO\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"SdJnzaJMc\");const ref12=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-7354084b-2f3d-4256-9942-cf21fcb19d60, rgb(249, 250, 251)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-wde3po-container\",\"data-framer-appear-id\":\"wde3po\",id:\"wde3po\",initial:animation1,layoutScroll:true,nodeId:\"tws5NSJQ1\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{variant:\"SheWRrjj3\"},sxoaNYiuO:{__framer__variantAppearEffectEnabled:undefined,variant:\"u1qo5SuxF\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"tws5NSJQ1\",layoutId:\"tws5NSJQ1\",style:{width:\"100%\"},variant:\"rWWuELBK1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-cyjsw4\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"Graphic element with blue to violet gradient shape\",fit:\"fill\",intrinsicHeight:382,intrinsicWidth:722,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1281.3-750.5),pixelHeight:375,pixelWidth:666,sizes:`calc(${componentViewport?.width||\"100vw\"} + 488px)`,src:\"https://framerusercontent.com/images/Pr9sX8w3DvlNHqHJf9nW0Rr3qs.png\",srcSet:\"https://framerusercontent.com/images/Pr9sX8w3DvlNHqHJf9nW0Rr3qs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pr9sX8w3DvlNHqHJf9nW0Rr3qs.png 666w\"}},sxoaNYiuO:{background:{alt:\"Graphic element with blue to violet gradient shape\",fit:\"fill\",intrinsicHeight:382,intrinsicWidth:722,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1204.3-581),pixelHeight:375,pixelWidth:666,sizes:`calc(${componentViewport?.width||\"100vw\"} + 488px)`,src:\"https://framerusercontent.com/images/Pr9sX8w3DvlNHqHJf9nW0Rr3qs.png\",srcSet:\"https://framerusercontent.com/images/Pr9sX8w3DvlNHqHJf9nW0Rr3qs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pr9sX8w3DvlNHqHJf9nW0Rr3qs.png 666w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"Graphic element with blue to violet gradient shape\",fit:\"fill\",intrinsicHeight:382,intrinsicWidth:722,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1246.3-893),pixelHeight:375,pixelWidth:666,sizes:`calc(${componentViewport?.width||\"100vw\"} + 488px)`,src:\"https://framerusercontent.com/images/Pr9sX8w3DvlNHqHJf9nW0Rr3qs.png\",srcSet:\"https://framerusercontent.com/images/Pr9sX8w3DvlNHqHJf9nW0Rr3qs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pr9sX8w3DvlNHqHJf9nW0Rr3qs.png 666w\"},className:\"framer-163734l\",\"data-framer-appear-id\":\"163734l\",\"data-framer-name\":\"hero_gradient\",initial:animation3,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jbetzo\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ijs6eg\",\"data-framer-name\":\"Heading Text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,y:(componentViewport?.y||0)+0+0+160+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xov8po-container\",nodeId:\"DdrKzakTN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsLabel,{height:\"100%\",id:\"DdrKzakTN\",layoutId:\"DdrKzakTN\",rq7tYFIEJ:\"New\",variant:\"WkJ9gzbNg\",width:\"100%\",XvQYy3ZyV:\"Smart AI Features\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17rf9gy\",\"data-styles-preset\":\"eORE4A9UB\",children:\"AI Scribe & Practice Solution, Built for Therapists\"})}),className:\"framer-1mjcaxt\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wwxjlc\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__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-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Save 6+ hours weekly on therapy notes, transforms session data into actionable clinical insights.\"})}),className:\"framer-1mlz7c2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1vffft4-container\",\"data-framer-appear-id\":\"1vffft4\",id:\"1vffft4\",initial:animation7,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Sx5HnUrk7\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{layout:\"vertical\"}},children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\",insetWhenDocked:5,isDocked:false,label:getLocalizedValue(\"v0\",activeLocale)??\"Get Early Access\",shouldAppear:true,widthWhenDocked:124},convertkitAPI:\"\",convertkitFormID:\"\",font:{fontFamily:'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},formsparkID:\"\",gap:10,getwaitlistAPI:\"17044\",height:\"100%\",id:\"Sx5HnUrk7\",input:{borderObject:{borderColor:\"rgba(200, 200, 200, 0.5)\",borderWidth:1},borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"Sx5HnUrk7\",loopsID:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",onSubmit:onSubmit3bnx0g({overlay}),redirectAs:\"overlay\",service:\"getwaitlist\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-19aehyv\"),\"data-framer-portal-id\":\"1vffft4\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"gASQkJ7BG\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation9,className:cx(scopingClassNames,\"framer-1xdoobr\"),\"data-framer-portal-id\":\"1vffft4\",exit:animation8,initial:animation10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\"},children:\"You're on the waitlist\"})}),className:\"framer-fft5gz\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\"},children:\"As soon as we're ready, you will receive an email invite to get started\"})}),className:\"framer-ne8mph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":My0qyc9Yn\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":My0qyc9Yn\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":My0qyc9Yn\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{width:\"267.5px\"},sxoaNYiuO:{width:\"535px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mtk9lv-container\",inComponentSlot:true,nodeId:\"rugijsA6k\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{cSvXw0UMF:resolvedLinks[1],style:{width:\"100%\"}},sxoaNYiuO:{cSvXw0UMF:resolvedLinks[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{cSvXw0UMF:resolvedLinks[0],cYr9gJc6L:\"Check\",height:\"100%\",id:\"rugijsA6k\",kJmFsDdbK:\"OK\",layoutId:\"rugijsA6k\",variant:\"bSFKSpqvB\",width:\"100%\",XtFwpGasz:XtFwpGasz1wnntms({overlay}),yVMvYjPHf:true})})})})})})]})]}),getContainer())})})]})})})})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1050,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-37y9gw\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:232,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+72.74307692307701),pixelHeight:402,pixelWidth:464,src:\"https://framerusercontent.com/images/3qm60Bn7e2tg1Nx9roO4oxhvwhY.jpg\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:232,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+28.913076923076986),pixelHeight:402,pixelWidth:464,src:\"https://framerusercontent.com/images/3qm60Bn7e2tg1Nx9roO4oxhvwhY.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:232,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+52.500000000000085),pixelHeight:402,pixelWidth:464,src:\"https://framerusercontent.com/images/3qm60Bn7e2tg1Nx9roO4oxhvwhY.jpg\"},className:\"framer-2j2hzr\",\"data-framer-name\":\"widget_0_2x\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+78.74307692307701),pixelHeight:341,pixelWidth:297,src:\"https://framerusercontent.com/images/V3qmBCB23szTEruxzw6IMA2eR9s.png\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+19.000000000000057),pixelHeight:341,pixelWidth:297,src:\"https://framerusercontent.com/images/V3qmBCB23szTEruxzw6IMA2eR9s.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation11,background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+58.500000000000085),pixelHeight:341,pixelWidth:297,src:\"https://framerusercontent.com/images/V3qmBCB23szTEruxzw6IMA2eR9s.png\"},className:\"framer-h1jhyf\",\"data-framer-appear-id\":\"h1jhyf\",\"data-framer-name\":\"widget_1_2x\",initial:animation12,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+66.8307692307693),pixelHeight:419,pixelWidth:376,src:\"https://framerusercontent.com/images/kgwm6rdlCiPoaLLSZmyOzfsz0.png\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+35.86384615384621),pixelHeight:419,pixelWidth:376,src:\"https://framerusercontent.com/images/kgwm6rdlCiPoaLLSZmyOzfsz0.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:animation13,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+45.00000000000006),pixelHeight:419,pixelWidth:376,src:\"https://framerusercontent.com/images/kgwm6rdlCiPoaLLSZmyOzfsz0.png\"},className:\"framer-1yrr43t\",\"data-framer-appear-id\":\"1yrr43t\",\"data-framer-name\":\"widget_2_2x\",initial:animation12,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:299,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+56.566153846153895),pixelHeight:471,pixelWidth:464,src:\"https://framerusercontent.com/images/B9r7ADST0sf6yLss4VHyW4.png\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:299,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+36.63615384615389),pixelHeight:471,pixelWidth:464,src:\"https://framerusercontent.com/images/B9r7ADST0sf6yLss4VHyW4.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation14,background:{alt:\"\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:299,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+35.00000000000006),pixelHeight:471,pixelWidth:464,src:\"https://framerusercontent.com/images/B9r7ADST0sf6yLss4VHyW4.png\"},className:\"framer-7xekhe\",\"data-framer-appear-id\":\"7xekhe\",\"data-framer-name\":\"widget_3_2x\",initial:animation12,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+73.0076923076924),pixelHeight:309,pixelWidth:264,src:\"https://framerusercontent.com/images/BlBASKsfeujtZq59H1saf38E.png\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+18.500000000000057),pixelHeight:309,pixelWidth:264,src:\"https://framerusercontent.com/images/BlBASKsfeujtZq59H1saf38E.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation11,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+52.500000000000085),pixelHeight:309,pixelWidth:264,src:\"https://framerusercontent.com/images/BlBASKsfeujtZq59H1saf38E.png\"},className:\"framer-48n6op\",\"data-framer-appear-id\":\"48n6op\",\"data-framer-name\":\"widget_4_2x\",initial:animation12,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+65.74307692307701),pixelHeight:419,pixelWidth:397,src:\"https://framerusercontent.com/images/KfGdUICT85npI1qAuALcYHUCg0.png\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+28.913076923076986),pixelHeight:419,pixelWidth:397,src:\"https://framerusercontent.com/images/KfGdUICT85npI1qAuALcYHUCg0.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:animation15,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+45.500000000000085),pixelHeight:419,pixelWidth:397,src:\"https://framerusercontent.com/images/KfGdUICT85npI1qAuALcYHUCg0.png\"},className:\"framer-12lsbrz\",\"data-framer-appear-id\":\"12lsbrz\",\"data-framer-name\":\"widget_6_2x\",initial:animation12,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:243.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+35.24307692307701),pixelHeight:471,pixelWidth:395,src:\"https://framerusercontent.com/images/hdEMS1Oh44MG1VHQMgtVxKrXtBE.png\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:243.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+19.64538461538467),pixelHeight:471,pixelWidth:395,src:\"https://framerusercontent.com/images/hdEMS1Oh44MG1VHQMgtVxKrXtBE.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:104,__perspectiveFX:false,__targetOpacity:1,animate:animation15,background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:243.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+15.000000000000085),pixelHeight:471,pixelWidth:395,src:\"https://framerusercontent.com/images/hdEMS1Oh44MG1VHQMgtVxKrXtBE.png\"},className:\"framer-vz11z2\",\"data-framer-appear-id\":\"vz11z2\",\"data-framer-name\":\"widget_7_2x\",initial:animation12,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:299.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+101.24307692307701),pixelHeight:245,pixelWidth:482,src:\"https://framerusercontent.com/images/KRWoMsXG6ASqUJglnAQdMkew4qc.png\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:299.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+28.913076923076986),pixelHeight:245,pixelWidth:482,src:\"https://framerusercontent.com/images/KRWoMsXG6ASqUJglnAQdMkew4qc.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:299.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+81.00000000000009),pixelHeight:245,pixelWidth:482,src:\"https://framerusercontent.com/images/KRWoMsXG6ASqUJglnAQdMkew4qc.png\"},className:\"framer-1wj7a3k\",\"data-framer-appear-id\":\"1wj7a3k\",\"data-framer-name\":\"widget_8_2x\",initial:animation12,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+59.566153846153895),pixelHeight:418,pixelWidth:415,src:\"https://framerusercontent.com/images/lLAhHjVnXyx4rZoI9pNDHs3NPYQ.png\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+18.87307692307698),pixelHeight:418,pixelWidth:415,src:\"https://framerusercontent.com/images/lLAhHjVnXyx4rZoI9pNDHs3NPYQ.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:92,__perspectiveFX:false,__targetOpacity:1,animate:animation11,background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+38.00000000000006),pixelHeight:418,pixelWidth:415,src:\"https://framerusercontent.com/images/lLAhHjVnXyx4rZoI9pNDHs3NPYQ.png\"},className:\"framer-q22748\",\"data-framer-appear-id\":\"q22748\",\"data-framer-name\":\"widget_5_2x\",initial:animation12,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:202.5,intrinsicWidth:163,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+713.3+82.80153846153854),pixelHeight:343,pixelWidth:303,src:\"https://framerusercontent.com/images/Ms9IDpNi4OFNtRfQ35AMJ0tP3us.png\"}},sxoaNYiuO:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:202.5,intrinsicWidth:163,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+458.5+35.09153846153852),pixelHeight:343,pixelWidth:303,src:\"https://framerusercontent.com/images/Ms9IDpNi4OFNtRfQ35AMJ0tP3us.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:97,__perspectiveFX:false,__targetOpacity:1,animate:animation15,background:{alt:\"\",fit:\"fill\",intrinsicHeight:202.5,intrinsicWidth:163,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+446.5+61.50000000000006),pixelHeight:343,pixelWidth:303,src:\"https://framerusercontent.com/images/Ms9IDpNi4OFNtRfQ35AMJ0tP3us.png\"},className:\"framer-1l0fcgt\",\"data-framer-appear-id\":\"1l0fcgt\",\"data-framer-name\":\"widget_9_2x\",initial:animation12,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-agvns1\",\"data-framer-name\":\"Brands\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1uzyeah\",\"data-styles-preset\":\"kNkYxHW2g\",style:{\"--framer-text-color\":\"var(--token-d1fa08ee-c247-459b-aaf3-d2091e9cede1, rgb(17, 24, 39))\"},children:\"Trusted by Healthcare Professionals\"})}),className:\"framer-f5hwnx\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vvp27g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SPCg7aYGJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:.5,id:\"SPCg7aYGJ\",layoutId:\"SPCg7aYGJ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"343px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uvarz5-container\",inComponentSlot:true,nodeId:\"t3dvkVaAn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Coinbase,{height:\"100%\",id:\"t3dvkVaAn\",layoutId:\"t3dvkVaAn\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,width:\"247px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1chnwyh-container\",inComponentSlot:true,nodeId:\"N0oapfdIW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Kraken,{height:\"100%\",id:\"N0oapfdIW\",layoutId:\"N0oapfdIW\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"343px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uvarz5-container\",inComponentSlot:true,nodeId:\"t3dvkVaAn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Coinbase,{height:\"100%\",id:\"t3dvkVaAn\",layoutId:\"t3dvkVaAn\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"709px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ish1ei-container\",inComponentSlot:true,nodeId:\"waAsA7nQs\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Bitfinex,{height:\"100%\",id:\"waAsA7nQs\",layoutId:\"waAsA7nQs\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"368px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1urfrkd-container\",inComponentSlot:true,nodeId:\"AVMub1gjw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Binance,{height:\"100%\",id:\"AVMub1gjw\",layoutId:\"AVMub1gjw\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-18fn4o8\",\"data-framer-name\":\"Testmonials\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lilnrz\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\"},children:\"Healthcare Teams, Is This You?\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\"},children:\"Healthcare Teams, Is This You?\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\"},children:\"Healthcare Teams, Is This You?\"})}),className:\"framer-ee8yod\",\"data-framer-name\":\"Don\u2019t take our word for it\",fonts:[\"GF;Poppins-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j7cmiz\",\"data-framer-name\":\"Rows\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-112tijh\",\"data-framer-name\":\"Row\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+1281.3+60+132.8+0+0+0},sxoaNYiuO:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1204.3+68+102+0+6.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"668px\",y:(componentViewport?.y||0)+0+1246.3+135+139.4+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-974,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p1oidp-container\",nodeId:\"vZ1fkST8a\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{style:{width:\"100%\"},variant:\"o76E8GGCk\"}},children:/*#__PURE__*/_jsx(Testimonial2,{height:\"100%\",id:\"vZ1fkST8a\",Jxq2GRK7M:getLocalizedValue(\"v7\",activeLocale)??\"Spending 2-3 hours daily on patient documentation instead of patient care\",layoutId:\"vZ1fkST8a\",lxoksPKf0:\"var(--token-2ec4cb2c-e133-48a9-b1c8-05da3a89efe0, rgb(203, 244, 231))\",style:{height:\"100%\",width:\"100%\"},variant:\"dwA0zBPoS\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+1281.3+60+132.8+0+0+0},sxoaNYiuO:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1204.3+68+102+0+6.5+0+384}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"668px\",y:(componentViewport?.y||0)+0+1246.3+135+139.4+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-984,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9oj60a-container\",nodeId:\"uLYoFDMx0\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{style:{width:\"100%\"},variant:\"o76E8GGCk\"}},children:/*#__PURE__*/_jsx(Testimonial2,{height:\"100%\",id:\"uLYoFDMx0\",Jxq2GRK7M:getLocalizedValue(\"v8\",activeLocale)??\"You're caught between being present with patients and taking notes\",layoutId:\"uLYoFDMx0\",lxoksPKf0:\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"dwA0zBPoS\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+1281.3+60+132.8+0+0+0},sxoaNYiuO:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1204.3+68+102+0+6.5+0+768}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"668px\",y:(componentViewport?.y||0)+0+1246.3+135+139.4+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-997,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gnrtya-container\",nodeId:\"SNw9ZT83w\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{style:{width:\"100%\"},variant:\"o76E8GGCk\"}},children:/*#__PURE__*/_jsx(Testimonial2,{height:\"100%\",id:\"SNw9ZT83w\",Jxq2GRK7M:getLocalizedValue(\"v9\",activeLocale)??\"Worried about missing important details during patient conversations\",layoutId:\"SNw9ZT83w\",lxoksPKf0:\"var(--token-5710ab6a-5dae-4c3d-8277-ea0039e7b772, rgb(218, 225, 246))\",style:{height:\"100%\",width:\"100%\"},variant:\"dwA0zBPoS\",width:\"100%\"})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1r9f5su\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtbWVkaXVt\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\"},children:\"Imagine Spending Every Moment Focused On What Truly Matters - Your Patients.\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtbWVkaXVt\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\"},children:\"Imagine Spending Every Moment Focused On What Truly Matters - Your Patients.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:false,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtbWVkaXVt\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, rgb(255, 255, 255))\"},children:\"Imagine Spending Every Moment Focused On What Truly Matters - Your Patients.\"})}),className:\"framer-13rs5io\",fonts:[\"FS;Urbanist-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q90kw1\",\"data-framer-name\":\"Overlay\"})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-4mqpuq\",\"data-framer-name\":\"Metrics\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qcobr8\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f7r3jr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+2589.1+60+0+0+0+0+0},sxoaNYiuO:{y:(componentViewport?.y||0)+0+3139.3+40+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+2652.7+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nxjvo4-container\",nodeId:\"ck76mLvqv\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge2,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"METRIC\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"ck76mLvqv\",j7oQQHdIz:\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241))\",layoutId:\"ck76mLvqv\",mQiWJf8Hp:\"var(--token-5710ab6a-5dae-4c3d-8277-ea0039e7b772, rgb(218, 225, 246))\",variant:\"dV5P1ggab\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"The Results\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qq5f37\",\"data-styles-preset\":\"QIybVV0gH\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Results\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"The Results\"})}),className:\"framer-1rp0pmn\",\"data-framer-name\":\"Numbers speaking for themselves\",fonts:[\"GF;Poppins-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vpwr7o\",\"data-framer-name\":\"Numbers\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7zxqpe\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175))\"},children:\"40%\"})})},sxoaNYiuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175))\"},children:\"40%\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175))\"},children:\"40%\"})}),className:\"framer-2wrv3i\",\"data-framer-name\":\"Number\",fonts:[\"GF;Be Vietnam Pro-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Less admin workload\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Less admin workload\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Less admin workload\"})}),className:\"framer-swfy82\",\"data-framer-name\":\"Text\",fonts:[\"GF;Be Vietnam Pro-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nh2hnf\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175))\"},children:\"12H\"})})},sxoaNYiuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175))\"},children:\"12H\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175))\"},children:\"12H\"})}),className:\"framer-1fhe1sx\",\"data-framer-name\":\"Number\",fonts:[\"GF;Be Vietnam Pro-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Hours saved on paperwork\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Hours saved on paperwork\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Hours saved on paperwork\"})}),className:\"framer-1rcoess\",\"data-framer-name\":\"Text\",fonts:[\"GF;Be Vietnam Pro-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18rnzgc\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175))\"},children:\"2X\"})})},sxoaNYiuO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175))\"},children:\"2X\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175))\"},children:\"2X\"})}),className:\"framer-1lyz8h0\",\"data-framer-name\":\"Number\",fonts:[\"GF;Be Vietnam Pro-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Patient satisfaction\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Patient satisfaction\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Patient satisfaction\"})}),className:\"framer-1tpy5fl\",\"data-framer-name\":\"Text\",fonts:[\"GF;Be Vietnam Pro-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-19hvudq\",\"data-framer-name\":\"Product\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t2obla\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m7w9cc\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lxaw75\",\"data-framer-name\":\"Row\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+0+40+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F9uVsKsmFzQDrdFPLvk4vG6o64.png\"}},sxoaNYiuO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+0+20+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F9uVsKsmFzQDrdFPLvk4vG6o64.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3509.7+0+0+0+0+0+0+373.6),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/F9uVsKsmFzQDrdFPLvk4vG6o64.png\"},className:\"framer-15561y6\",\"data-framer-name\":\"Visual-01\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-id8m6h\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-174hpu4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+0+40+80+0+0+0+0},sxoaNYiuO:{y:(componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+0+20+60+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+3509.7+0+0+0+0+0+0+80+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sf03sd-container\",nodeId:\"p3RBSUQCG\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge2,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"FEATURE\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"p3RBSUQCG\",j7oQQHdIz:\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241))\",layoutId:\"p3RBSUQCG\",mQiWJf8Hp:\"var(--token-5710ab6a-5dae-4c3d-8277-ea0039e7b772, rgb(218, 225, 246))\",variant:\"dV5P1ggab\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qq5f37\",\"data-styles-preset\":\"QIybVV0gH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"AI Medical Scribe and Documentation\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kihnbd\",\"data-styles-preset\":\"z1BV5jxiu\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"AI Medical Scribe and Documentation\"})}),className:\"framer-1doyef\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Focus on your patients while Copilot handles everything else. It not only converts conversations into clinical notes, but also generates structured documentation, complete SOAP notes, and integrates directly with your EHR\u2014all in Thai and English.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",children:\"Focus on your patients while Copilot handles everything else. It not only converts conversations into clinical notes, but also generates structured documentation, complete SOAP notes, and integrates directly with your EHR\u2014all in Thai and English.\"})}),className:\"framer-1sooyr9\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3xhwgs\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oyuhc1\",\"data-framer-name\":\"Item-Col\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ptru0p\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mz8v93\",\"data-framer-name\":\"chart-breakout-square\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-puyh06\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 11.667 2.5 L 7.4 2.5 C 5.16 2.5 4.04 2.5 3.184 2.936 C 2.431 3.32 1.819 3.932 1.436 4.684 C 1 5.54 1 6.66 1 8.9 L 1 20.1 C 1 22.341 1 23.461 1.436 24.316 C 1.819 25.069 2.431 25.681 3.184 26.064 C 4.04 26.5 5.16 26.5 7.4 26.5 L 18.6 26.5 C 20.84 26.5 21.96 26.5 22.816 26.064 C 23.569 25.681 24.18 25.069 24.564 24.316 C 25 23.461 25 22.341 25 20.1 L 25 15.834 M 13 9.167 L 18.333 9.167 L 18.333 14.5 M 17.667 3.167 L 17.667 1.167 M 22.919 4.581 L 24.333 3.167 M 24.347 9.834 L 26.347 9.834 M 1 16.297 C 1.869 16.431 2.76 16.5 3.667 16.5 C 9.515 16.5 14.687 13.604 17.826 9.167\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175)) /* {&quot;name&quot;:&quot;Green&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11426389148,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11hh4z1\",\"data-framer-name\":\"Heading and badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f33ov3\",\"data-styles-preset\":\"gPGO6kcD6\",children:\"Stop spending 40% of your day documenting\"})}),className:\"framer-1wg0tyt\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",children:\"Redirect the hours spent on notes back to patient care. Cura OS provides instant, structured clinical documentation after every session.\"})}),className:\"framer-1vhiyt2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1doehtm\",\"data-framer-name\":\"Item-Col\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kmq1f6\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mrkkgv\",\"data-framer-name\":\"chart-breakout-square\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8i4v2i\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 12.167 2.5 L 7.9 2.5 C 5.66 2.5 4.54 2.5 3.684 2.936 C 2.931 3.32 2.319 3.932 1.936 4.684 C 1.5 5.54 1.5 6.66 1.5 8.9 L 1.5 20.1 C 1.5 22.341 1.5 23.461 1.936 24.316 C 2.319 25.069 2.931 25.681 3.684 26.064 C 4.54 26.5 5.66 26.5 7.9 26.5 L 19.1 26.5 C 21.34 26.5 22.46 26.5 23.316 26.064 C 24.069 25.681 24.68 25.069 25.064 24.316 C 25.5 23.461 25.5 22.341 25.5 20.1 L 25.5 15.834 M 13.5 9.167 L 18.833 9.167 L 18.833 14.5 M 18.167 3.167 L 18.167 1.167 M 23.419 4.581 L 24.833 3.167 M 24.847 9.834 L 26.847 9.834 M 1.5 16.297 C 2.369 16.431 3.26 16.5 4.167 16.5 C 10.015 16.5 15.187 13.604 18.326 9.167\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10842807815,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f33ov3\",\"data-styles-preset\":\"gPGO6kcD6\",children:\"Elevate Care with Precision Documentation\"})}),className:\"framer-12bnuzb\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(55, 65, 81))\"},children:\"Capture the essence of each consultation accurately. With Cura OS, you can quickly synthesize and share concise, patient-centered notes, enhancing care continuity.\"})}),className:\"framer-824zh4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+0+40+80+0+538.2},sxoaNYiuO:{y:(componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+0+20+60+0+837.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+3509.7+0+0+0+0+0+0+80+0+538.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n2jsf7-container\",nodeId:\"i28PFogPS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"i28PFogPS\",layoutId:\"i28PFogPS\",variant:\"STGO00VYY\",vjZWklrqI:\"https://copilot.cura.so/\",width:\"100%\",xEfGs_njT:getLocalizedValue(\"v30\",activeLocale)??\"Try Scribe\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+747.2),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,src:\"https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png\",srcSet:\"https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png 1920w\"}},sxoaNYiuO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+986.4),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png\",srcSet:\"https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3509.7+0+0+0+0+0+747.2),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,src:\"https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png\",srcSet:\"https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IuE5A7RB5ebjsybV6fo1Zw3TVRM.png 1920w\"},className:\"framer-957gs1\",\"data-framer-name\":\"Scribe\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9cgby5\",\"data-framer-name\":\"Row\",id:elementId4,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k89vjp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+1147.2+40+180+0+0},sxoaNYiuO:{y:(componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+1186.4+20+60+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+3509.7+0+0+0+0+0+1479.2+80+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vfi75i-container\",nodeId:\"ir5nfeJEp\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge2,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"FEATURE\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"ir5nfeJEp\",j7oQQHdIz:\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241))\",layoutId:\"ir5nfeJEp\",mQiWJf8Hp:\"var(--token-5710ab6a-5dae-4c3d-8277-ea0039e7b772, rgb(218, 225, 246))\",variant:\"dV5P1ggab\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qq5f37\",\"data-styles-preset\":\"QIybVV0gH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Cura Copilot Smart Assistant\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kihnbd\",\"data-styles-preset\":\"z1BV5jxiu\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Cura Copilot Smart Assistant\"})}),className:\"framer-g7gbv0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Make better clinical decisions, instantly. Copilot is your 24/7 AI assistant that provides evidence-based recommendations right when you need them. Get smart alerts, treatment guidance, and medication insights\u2014helping you deliver the best possible care.\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Make better clinical decisions, instantly. Copilot is your 24/7 AI assistant that provides evidence-based recommendations right when you need them. Get smart alerts, treatment guidance, and medication insights\u2014helping you deliver the best possible care.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Make better clinical decisions, instantly. Copilot is your 24/7 AI assistant that provides evidence-based recommendations right when you need them. Get smart alerts, treatment guidance, and medication insights\u2014helping you deliver the best possible care.\"})}),className:\"framer-9yyqc7\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DMZePsiHM\"},implicitPathVariables:undefined},{href:{webPageId:\"DMZePsiHM\"},implicitPathVariables:undefined},{href:{webPageId:\"DMZePsiHM\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+1147.2+40+180+0+272.2},sxoaNYiuO:{y:(componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+1186.4+20+60+0+253.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+3509.7+0+0+0+0+0+1479.2+80+0+272.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-172yyt9-container\",nodeId:\"MuAf75zBk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{vjZWklrqI:resolvedLinks1[1]},sxoaNYiuO:{vjZWklrqI:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"MuAf75zBk\",layoutId:\"MuAf75zBk\",variant:\"v6hxeUBTd\",vjZWklrqI:resolvedLinks1[0],width:\"100%\",xEfGs_njT:getLocalizedValue(\"v0\",activeLocale)??\"Get Early Access\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+1147.2+40+0),pixelHeight:457,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4NBP1t0oURVN6oncX8OVF2gFaCg.png\"}},sxoaNYiuO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+1186.4+20+0),pixelHeight:457,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4NBP1t0oURVN6oncX8OVF2gFaCg.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3509.7+0+0+0+0+0+1479.2+190.6),pixelHeight:457,pixelWidth:468,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4NBP1t0oURVN6oncX8OVF2gFaCg.png\"},className:\"framer-6okh79\",\"data-framer-name\":\"Visual-02\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2g06y5\",\"data-framer-name\":\"Row\",id:elementId5,ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+1728.4+40+0),pixelHeight:462,pixelWidth:480,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u7sA5cGtngkYuPrtgtf2BDebbc.png\"}},sxoaNYiuO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+1588.8000000000002+20+0),pixelHeight:462,pixelWidth:480,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u7sA5cGtngkYuPrtgtf2BDebbc.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3509.7+0+0+0+0+0+1960.4+417.6),pixelHeight:462,pixelWidth:480,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u7sA5cGtngkYuPrtgtf2BDebbc.png\"},className:\"framer-54qbbx\",\"data-framer-name\":\"Visual-01\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zqoywu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8gr2s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+1728.4+40+80+0+0+0+0},sxoaNYiuO:{y:(componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+1588.8000000000002+20+60+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+3509.7+0+0+0+0+0+1960.4+80+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e5xow4-container\",nodeId:\"iZCUzGngW\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge2,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"FEATURE\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"iZCUzGngW\",j7oQQHdIz:\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241))\",layoutId:\"iZCUzGngW\",mQiWJf8Hp:\"var(--token-5710ab6a-5dae-4c3d-8277-ea0039e7b772, rgb(218, 225, 246))\",variant:\"dV5P1ggab\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qq5f37\",\"data-styles-preset\":\"QIybVV0gH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Patient Engagement AI Agent\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kihnbd\",\"data-styles-preset\":\"z1BV5jxiu\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Patient Engagement AI Agent\"})}),className:\"framer-miq83\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Keep your patients engaged and cared for, even between visits. Our AI Patient Engagement Agent maintains continuous connection through smart follow-ups, medication reminders, and friendly check-ins. From automatic health monitoring to compassionate elderly support, it ensures no patient feels alone in their healthcare journey.\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Keep your patients engaged and cared for, even between visits. Our AI Patient Engagement Agent maintains continuous connection through smart follow-ups, medication reminders, and friendly check-ins. From automatic health monitoring to compassionate elderly support, it ensures no patient feels alone in their healthcare journey.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Keep your patients engaged and cared for, even between visits. Our AI Patient Engagement Agent maintains continuous connection through smart follow-ups, medication reminders, and friendly check-ins. From automatic health monitoring to compassionate elderly support, it ensures no patient feels alone in their healthcare journey.\"})}),className:\"framer-1cyrzmh\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvaqwa\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1l1pagd\",\"data-framer-name\":\"Item-Col\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ynj3he\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n6pa9e\",\"data-framer-name\":\"chart-breakout-square\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f4do0y\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 11.667 2.5 L 7.4 2.5 C 5.16 2.5 4.04 2.5 3.184 2.936 C 2.431 3.32 1.819 3.932 1.436 4.684 C 1 5.54 1 6.66 1 8.9 L 1 20.1 C 1 22.341 1 23.461 1.436 24.316 C 1.819 25.069 2.431 25.681 3.184 26.064 C 4.04 26.5 5.16 26.5 7.4 26.5 L 18.6 26.5 C 20.84 26.5 21.96 26.5 22.816 26.064 C 23.569 25.681 24.18 25.069 24.564 24.316 C 25 23.461 25 22.341 25 20.1 L 25 15.834 M 13 9.167 L 18.333 9.167 L 18.333 14.5 M 17.667 3.167 L 17.667 1.167 M 22.919 4.581 L 24.333 3.167 M 24.347 9.834 L 26.347 9.834 M 1 16.297 C 1.869 16.431 2.76 16.5 3.667 16.5 C 9.515 16.5 14.687 13.604 17.826 9.167\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175)) /* {&quot;name&quot;:&quot;Green&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11426389148,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1grlndo\",\"data-framer-name\":\"Heading and badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f33ov3\",\"data-styles-preset\":\"gPGO6kcD6\",children:\"Automated Follow-ups\"})}),className:\"framer-svx6c4\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Intelligent follow-ups that automatically monitor patient progress after each visit via phone call or LINE.\"})}),className:\"framer-6bu82e\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a6vwn2\",\"data-framer-name\":\"Item-Col\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fcic4c\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ssi1e8\",\"data-framer-name\":\"chart-breakout-square\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c6onrc\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 12.167 2.5 L 7.9 2.5 C 5.66 2.5 4.54 2.5 3.684 2.936 C 2.931 3.32 2.319 3.932 1.936 4.684 C 1.5 5.54 1.5 6.66 1.5 8.9 L 1.5 20.1 C 1.5 22.341 1.5 23.461 1.936 24.316 C 2.319 25.069 2.931 25.681 3.684 26.064 C 4.54 26.5 5.66 26.5 7.9 26.5 L 19.1 26.5 C 21.34 26.5 22.46 26.5 23.316 26.064 C 24.069 25.681 24.68 25.069 25.064 24.316 C 25.5 23.461 25.5 22.341 25.5 20.1 L 25.5 15.834 M 13.5 9.167 L 18.833 9.167 L 18.833 14.5 M 18.167 3.167 L 18.167 1.167 M 23.419 4.581 L 24.833 3.167 M 24.847 9.834 L 26.847 9.834 M 1.5 16.297 C 2.369 16.431 3.26 16.5 4.167 16.5 C 10.015 16.5 15.187 13.604 18.326 9.167\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10842807815,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f33ov3\",\"data-styles-preset\":\"gPGO6kcD6\",children:\"Continuous Check-ins\"})}),className:\"framer-qxf8iq\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"AI-powered conversations that provide daily support and catch health concerns early.\"})}),className:\"framer-1n6hlaa\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DMZePsiHM\"},implicitPathVariables:undefined},{href:{webPageId:\"DMZePsiHM\"},implicitPathVariables:undefined},{href:{webPageId:\"DMZePsiHM\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+1728.4+40+80+0+626.2},sxoaNYiuO:{y:(componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+1588.8000000000002+20+60+0+837.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+3509.7+0+0+0+0+0+1960.4+80+0+626.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12vg9m6-container\",nodeId:\"dG4XxIinG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{vjZWklrqI:resolvedLinks2[1]},sxoaNYiuO:{vjZWklrqI:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"dG4XxIinG\",layoutId:\"dG4XxIinG\",variant:\"v6hxeUBTd\",vjZWklrqI:resolvedLinks2[0],width:\"100%\",xEfGs_njT:getLocalizedValue(\"v0\",activeLocale)??\"Get Early Access\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ktmibt\",\"data-framer-name\":\"Row\",id:elementId6,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y3ziiw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+2563.6000000000004+40+644+0+0},sxoaNYiuO:{y:(componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+2575.2000000000003+20+624+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+3509.7+0+0+0+0+0+2795.6000000000004+171.9+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wd9voi-container\",nodeId:\"KQ5KWLpWE\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge2,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"PRIVACY\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"KQ5KWLpWE\",j7oQQHdIz:\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241))\",layoutId:\"KQ5KWLpWE\",mQiWJf8Hp:\"var(--token-5710ab6a-5dae-4c3d-8277-ea0039e7b772, rgb(218, 225, 246))\",variant:\"dV5P1ggab\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qq5f37\",\"data-styles-preset\":\"QIybVV0gH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Your Privacy, Guaranteed\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kihnbd\",\"data-styles-preset\":\"z1BV5jxiu\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Your Privacy, Guaranteed\"})}),className:\"framer-vlvm8v\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"We understand the importance of privacy in the healthcare field. That's why we ensure that your data remains confidential. No audio recordings, transcripts, or notes are ever stored. Our system is designed to protect your information and safeguard the trust you place in us, handling all data with the highest standards of security and compliance.\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"We understand the importance of privacy in the healthcare field. That's why we ensure that your data remains confidential. No audio recordings, transcripts, or notes are ever stored. Our system is designed to protect your information and safeguard the trust you place in us, handling all data with the highest standards of security and compliance.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"We understand the importance of privacy in the healthcare field. That's why we ensure that your data remains confidential. No audio recordings, transcripts, or notes are ever stored. Our system is designed to protect your information and safeguard the trust you place in us, handling all data with the highest standards of security and compliance.\"})}),className:\"framer-fa39za\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2b9dv5\",\"data-framer-name\":\"Visual-02\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1153,intrinsicWidth:1110,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+2563.6000000000004+40+0+0+0),pixelHeight:1214,pixelWidth:1214,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,src:\"https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png\",srcSet:\"https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png?scale-down-to=512 512w,https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png 1214w\"}},sxoaNYiuO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1153,intrinsicWidth:1110,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+2575.2000000000003+20+0+0+0),pixelHeight:1214,pixelWidth:1214,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png\",srcSet:\"https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png?scale-down-to=512 512w,https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png 1214w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1153,intrinsicWidth:1110,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3509.7+0+0+0+0+0+2795.6000000000004+20+0+0),pixelHeight:1214,pixelWidth:1214,sizes:`max((${componentViewport?.width||\"100vw\"} - 240px) / 2, 1px)`,src:\"https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png\",srcSet:\"https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png?scale-down-to=512 512w,https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fB4jHwp33NKiF7rdH5n8myW2EA.png 1214w\"},className:\"framer-dsbeu3\",\"data-framer-name\":\"visual_02\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16pvi70\",\"data-framer-name\":\"Row\",id:elementId7,ref:ref9,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1saj0fn\",\"data-framer-name\":\"Visual-01\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1153,intrinsicWidth:1110,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+3547.8+40+0+0+0),pixelHeight:1024,pixelWidth:1440,positionX:\"right\",positionY:\"bottom\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,src:\"https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png\",srcSet:\"https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png 1440w\"}},sxoaNYiuO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1153,intrinsicWidth:1110,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+3480.6000000000004+20+0+0+0),pixelHeight:1024,pixelWidth:1440,positionX:\"right\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png\",srcSet:\"https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1153,intrinsicWidth:1110,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3509.7+0+0+0+0+0+3399.6000000000004+80+0+0),pixelHeight:1024,pixelWidth:1440,positionX:\"right\",positionY:\"bottom\",sizes:`max((${componentViewport?.width||\"100vw\"} - 240px) / 2, 1px)`,src:\"https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png\",srcSet:\"https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UPlsW9fWkWU5Lhk6J14Jc18tY0.png 1440w\"},className:\"framer-11o9w8w\",\"data-framer-name\":\"visual_03\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6l70dv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7egt5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+3290.3999999999996+0+0+0+0+0+3547.8+40+644+0+0+0+0},sxoaNYiuO:{y:(componentViewport?.y||0)+0+4702.200000000001+80+0+0+0+0+3480.6000000000004+20+624+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+3509.7+0+0+0+0+0+3399.6000000000004+80.89999999999998+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11tn9wj-container\",nodeId:\"WtkAS0GKk\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge2,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"ON-DEMAND\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"WtkAS0GKk\",j7oQQHdIz:\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241))\",layoutId:\"WtkAS0GKk\",mQiWJf8Hp:\"var(--token-5710ab6a-5dae-4c3d-8277-ea0039e7b772, rgb(218, 225, 246))\",variant:\"dV5P1ggab\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1qq5f37\",\"data-styles-preset\":\"QIybVV0gH\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Available everywhere\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kihnbd\",\"data-styles-preset\":\"z1BV5jxiu\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Available everywhere\"})}),className:\"framer-1lvg07z\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Cura OS syncs across devices, ensuring your patient notes and care plans are updated in real time, whether you're on the go or at your practice. Stay connected to your workflow on mobile, perfect for those moments away from your desk, and transition effortlessly to a full-featured desktop experience for in-depth session reviews and EHR integrations.\"})})},sxoaNYiuO:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Cura OS syncs across devices, ensuring your patient notes and care plans are updated in real time, whether you're on the go or at your practice. Stay connected to your workflow on mobile, perfect for those moments away from your desk, and transition effortlessly to a full-featured desktop experience for in-depth session reviews and EHR integrations.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Cura OS syncs across devices, ensuring your patient notes and care plans are updated in real time, whether you're on the go or at your practice. Stay connected to your workflow on mobile, perfect for those moments away from your desk, and transition effortlessly to a full-featured desktop experience for in-depth session reviews and EHR integrations.\"})}),className:\"framer-ru4mbz\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a0x8j5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10t6xod\",\"data-framer-name\":\"Item-Col\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oq3d45\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-njyic\",\"data-framer-name\":\"chart-breakout-square\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kgaari\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 11.667 2.5 L 7.4 2.5 C 5.16 2.5 4.04 2.5 3.184 2.936 C 2.431 3.32 1.819 3.932 1.436 4.684 C 1 5.54 1 6.66 1 8.9 L 1 20.1 C 1 22.341 1 23.461 1.436 24.316 C 1.819 25.069 2.431 25.681 3.184 26.064 C 4.04 26.5 5.16 26.5 7.4 26.5 L 18.6 26.5 C 20.84 26.5 21.96 26.5 22.816 26.064 C 23.569 25.681 24.18 25.069 24.564 24.316 C 25 23.461 25 22.341 25 20.1 L 25 15.834 M 13 9.167 L 18.333 9.167 L 18.333 14.5 M 17.667 3.167 L 17.667 1.167 M 22.919 4.581 L 24.333 3.167 M 24.347 9.834 L 26.347 9.834 M 1 16.297 C 1.869 16.431 2.76 16.5 3.667 16.5 C 9.515 16.5 14.687 13.604 17.826 9.167\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175)) /* {&quot;name&quot;:&quot;Green&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11990791618,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2pz9hy\",\"data-framer-name\":\"Heading and badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f33ov3\",\"data-styles-preset\":\"gPGO6kcD6\",children:\"Mobile\"})}),className:\"framer-1cyd63p\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Great when you're not at your desk. Notes are automatically sent to desktop.\"})}),className:\"framer-1mrnpkx\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref9,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tw9xu\",\"data-framer-name\":\"Item-Col\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8b4bsc\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10m7vbl\",\"data-framer-name\":\"chart-breakout-square\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-utmgyj\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 12.167 2.5 L 7.9 2.5 C 5.66 2.5 4.54 2.5 3.684 2.936 C 2.931 3.32 2.319 3.932 1.936 4.684 C 1.5 5.54 1.5 6.66 1.5 8.9 L 1.5 20.1 C 1.5 22.341 1.5 23.461 1.936 24.316 C 2.319 25.069 2.931 25.681 3.684 26.064 C 4.54 26.5 5.66 26.5 7.9 26.5 L 19.1 26.5 C 21.34 26.5 22.46 26.5 23.316 26.064 C 24.069 25.681 24.68 25.069 25.064 24.316 C 25.5 23.461 25.5 22.341 25.5 20.1 L 25.5 15.834 M 13.5 9.167 L 18.833 9.167 L 18.833 14.5 M 18.167 3.167 L 18.167 1.167 M 23.419 4.581 L 24.833 3.167 M 24.847 9.834 L 26.847 9.834 M 1.5 16.297 C 2.369 16.431 3.26 16.5 4.167 16.5 C 10.015 16.5 15.187 13.604 18.326 9.167\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10842807815,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1f33ov3\",\"data-styles-preset\":\"gPGO6kcD6\",children:\"Desktop\"})}),className:\"framer-1d5kufg\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"Works on all web browsers. Best to manage your sessions.\"})}),className:\"framer-1wwxizo\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1n76ab1\",\"data-framer-name\":\"Testimonials\",id:elementId8,ref:ref10,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g6ma67\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fexd4j\",\"data-framer-name\":\"Heading & badge\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t3fpmj\",\"data-framer-name\":\"Heading & Badge\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1qq5f37\",\"data-styles-preset\":\"QIybVV0gH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Practitioner Praise for Cura Copilot\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:100,ref:ref10,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kihnbd\",\"data-styles-preset\":\"z1BV5jxiu\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Practitioner Praise for Cura Copilot\"})}),className:\"framer-g31hxw\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19f1fbu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition30},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:100,ref:ref10,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-183cyj2\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mx4wi9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10776.4+96+0+0+113.2+0+0+0+0+0+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/hO3OAESQSQ4yjGdCOxxzajzNT70.jpeg\"}},sxoaNYiuO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9804.2+80+0+0+98.4+0+0+0+0+0+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/hO3OAESQSQ4yjGdCOxxzajzNT70.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7633.3+96+0+0+113.2+0+40+0+0+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/hO3OAESQSQ4yjGdCOxxzajzNT70.jpeg\"},className:\"framer-1ow082x\",\"data-framer-name\":\"avatar\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gv99vf\",\"data-styles-preset\":\"y_olt3QNm\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:\"\\\"With Cura, charting is no longer the dreadful end to my patient visits. Its intuitive voice recognition allows me to interact naturally with my patients while Copilot seamlessly organizes my thoughts into structured notes. Unlike other scribes I've tried, Cura adapts to my workflow, reducing after-hours charting by over 70%. It's truly set a new standard for efficiency in our clinic.\\\"\"})}),className:\"framer-1l7uack\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-93vyfr\",\"data-styles-preset\":\"GoYypVzwN\",style:{\"--framer-text-color\":\"var(--token-4d926bee-328f-497f-a3cd-ce0b138f5bc3, rgb(156, 163, 175))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Dr. Emily Harris\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Family Medicine Specialist\"]})}),className:\"framer-1c15k0q\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition31},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ovfdua\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13b9ep0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10776.4+96+0+0+113.2+0+405.4+0+0+0+0),pixelHeight:800,pixelWidth:800,sizes:\"80px\",src:\"https://framerusercontent.com/images/4PBs3KyXnmijEg0JzHd1X6lCDwc.jpeg\",srcSet:\"https://framerusercontent.com/images/4PBs3KyXnmijEg0JzHd1X6lCDwc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/4PBs3KyXnmijEg0JzHd1X6lCDwc.jpeg 800w\"}},sxoaNYiuO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9804.2+80+0+0+98.4+0+425.4+0+0+0+0),pixelHeight:800,pixelWidth:800,sizes:\"80px\",src:\"https://framerusercontent.com/images/4PBs3KyXnmijEg0JzHd1X6lCDwc.jpeg\",srcSet:\"https://framerusercontent.com/images/4PBs3KyXnmijEg0JzHd1X6lCDwc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/4PBs3KyXnmijEg0JzHd1X6lCDwc.jpeg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7633.3+96+0+0+113.2+0+40+0+0+0),pixelHeight:800,pixelWidth:800,sizes:\"80px\",src:\"https://framerusercontent.com/images/4PBs3KyXnmijEg0JzHd1X6lCDwc.jpeg\",srcSet:\"https://framerusercontent.com/images/4PBs3KyXnmijEg0JzHd1X6lCDwc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/4PBs3KyXnmijEg0JzHd1X6lCDwc.jpeg 800w\"},className:\"framer-19fn9nv\",\"data-framer-name\":\"avatar\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gv99vf\",\"data-styles-preset\":\"y_olt3QNm\",style:{\"--framer-text-color\":\"var(--token-994646e0-68ea-49d7-897a-104048558f6f, rgb(79, 88, 116))\"},children:'\"Cura has revolutionized the way we manage patient data. In a specialty where precision matters, Copilot\\'s error-free transcription and smart integration with our EHR system means more time for what matters: patient care. Copilot has become a critical member of our team, ensuring that critical information is captured accurately and securely, outshining other solutions in both reliability and user experience.\"'})}),className:\"framer-4ynoyp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-93vyfr\",\"data-styles-preset\":\"GoYypVzwN\",style:{\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:[\"Dr. Jason Wong\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4d926bee-328f-497f-a3cd-ce0b138f5bc3, rgb(156, 163, 175))\"},children:\"Cardiologist\"})]})}),className:\"framer-5zt2y9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tvj6bd\",\"data-framer-name\":\"Container\",id:elementId9,ref:ref11,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6dvenn\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mvf5s8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref11,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kihnbd\",\"data-styles-preset\":\"z1BV5jxiu\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Transform Your Workflow with Cura Scribe\"})}),className:\"framer-1gtggb9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",style:{\"--framer-text-alignment\":\"left\"},children:\"Experience unparalleled efficiency with Cura Scribe, your advanced AI documentation assistant. Whether you need to restructure notes, draft detailed referral letters, or fill out complex forms, Cura Scribe is equipped to handle your tasks with precision and speed.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref11,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-c3qouo\",\"data-styles-preset\":\"OiemQ21xd\",children:\"Experience unparalleled efficiency with Cura Scribe, your advanced AI documentation assistant. Whether you need to restructure notes, draft detailed referral letters, or fill out complex forms, Cura Scribe is equipped to handle your tasks with precision and speed.\"})}),className:\"framer-3tjxpq\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+10776.4+96+0+0+940+0+0+0+644+0+247.2},sxoaNYiuO:{y:(componentViewport?.y||0)+0+9804.2+80+0+0+929.1999999999999+0+0+0+624+0+247.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+7633.3+96+0+0+574.5999999999999+0+0+133.9+0+247.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h87q31-container\",nodeId:\"JoALghFUb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"JoALghFUb\",layoutId:\"JoALghFUb\",variant:\"STGO00VYY\",vjZWklrqI:\"https://copilot.cura.so/\",width:\"100%\",xEfGs_njT:getLocalizedValue(\"v30\",activeLocale)??\"Try Scribe\"})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bwdctg\",\"data-framer-name\":\"Visual-04\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"Graphic showing a composition of the app widgets/UI elements\",fit:\"fill\",intrinsicHeight:1153,intrinsicWidth:1110,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10776.4+96+0+0+940+0+0+0+0+0+0),pixelHeight:1428,pixelWidth:1450,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,src:\"https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png\",srcSet:\"https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png 1450w\"}},sxoaNYiuO:{background:{alt:\"Graphic showing a composition of the app widgets/UI elements\",fit:\"fill\",intrinsicHeight:1153,intrinsicWidth:1110,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9804.2+80+0+0+929.1999999999999+0+0+0+0+0+0),pixelHeight:1428,pixelWidth:1450,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1280px)`,src:\"https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png\",srcSet:\"https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png 1450w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Graphic showing a composition of the app widgets/UI elements\",fit:\"fill\",intrinsicHeight:1153,intrinsicWidth:1110,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7633.3+96+0+0+574.5999999999999+0+0+0+0+0),pixelHeight:1428,pixelWidth:1450,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 240px) / 2, 1px)`,src:\"https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png\",srcSet:\"https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QzaYhRYfOnnWjZfl8gnzpeOtUMg.png 1450w\"},className:\"framer-1su0214\",\"data-framer-name\":\"visual_04\"})})})]})})]})}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19zqph0\",\"data-framer-name\":\"CTA-Pricing\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16v17qo\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gkfivf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u7l4fm\",\"data-framer-name\":\"Row-L\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v63\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"Transform Your Practice With Cura OS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7VXJiYW5pc3Qtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"Transform Your Practice With Cura OS\"})}),className:\"framer-2xllus\",\"data-framer-name\":\"Create your messaing\",fonts:[\"FS;Urbanist-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(236, 241, 247))\"},children:\"Be among the first to transform your practice with Cura OS, where voice AI meets intelligent automation. Join leading healthcare providers on our waitlist to receive exclusive pricing.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(236, 241, 247))\"},children:\"Be among the first to transform your practice with Cura OS, where voice AI meets intelligent automation. Join leading healthcare providers on our waitlist to receive exclusive pricing.\"})}),className:\"framer-9r23hp\",\"data-framer-name\":\"Phosfluorescently en\",fonts:[\"GF;Be Vietnam Pro-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DMZePsiHM\"},implicitPathVariables:undefined},{href:{webPageId:\"DMZePsiHM\"},implicitPathVariables:undefined},{href:{webPageId:\"DMZePsiHM\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+12848.599999999999+80+0+60+0+75.1},sxoaNYiuO:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1180px) - 80px)`,y:(componentViewport?.y||0)+0+11813.6+40+0+40+0+0+261.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+8963.9+80+0+60+0+75.1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1228um9-container\",nodeId:\"A1lCcp8L3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{vjZWklrqI:resolvedLinks3[1]},sxoaNYiuO:{style:{width:\"100%\"},vjZWklrqI:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Buttons2,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"A1lCcp8L3\",layoutId:\"A1lCcp8L3\",variant:\"cVF8X5MLN\",vjZWklrqI:resolvedLinks3[0],width:\"100%\",xEfGs_njT:getLocalizedValue(\"v0\",activeLocale)??\"Get Early Access\"})})})})})})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-udlfp0\",\"data-framer-name\":\"Blog\",id:elementId10,ref:ref12,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fbqtm7\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qwmp7\",\"data-framer-name\":\"Heading & badge\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+13327.8+96+0+0+0+0+2.3999999999999986},sxoaNYiuO:{y:(componentViewport?.y||0)+0+12283.800000000001+40+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+9443.1+96+0+0+0+0+2.3999999999999986,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iizxul-container\",nodeId:\"BkDGu7XOe\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge2,{abNWj2a4p:\"var(--token-9d2364d3-21a1-4998-97d3-20b57b274609, rgb(87, 60, 255))\",DTEBE1LHR:\"BLOG\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"BkDGu7XOe\",j7oQQHdIz:\"var(--token-7b12d549-47f8-471b-ba53-5f59ede382cc, rgb(56, 72, 241))\",layoutId:\"BkDGu7XOe\",mQiWJf8Hp:\"var(--token-5710ab6a-5dae-4c3d-8277-ea0039e7b772, rgb(218, 225, 246))\",variant:\"dV5P1ggab\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{children:getLocalizedValue(\"v67\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kihnbd\",\"data-styles-preset\":\"z1BV5jxiu\",style:{\"--framer-text-alignment\":\"left\"},children:\"Insights and Updates\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kihnbd\",\"data-styles-preset\":\"z1BV5jxiu\",children:\"Insights and Updates\"})}),className:\"framer-w1f6wa\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+13327.8+96+0+0+52},sxoaNYiuO:{y:(componentViewport?.y||0)+0+12283.800000000001+40+0+0+142.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+9443.1+96+0+0+52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rcigs5-container\",nodeId:\"BFskCDrx1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"BFskCDrx1\",layoutId:\"BFskCDrx1\",variant:\"iesESeJ9X\",vjZWklrqI:\"https://copilot.cura.so/\",width:\"100%\",xEfGs_njT:\"All Articles\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f0dh58\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{query:{from:{alias:\"vVZaRttGW\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"vVZaRttGW\",name:\"wR752i2OM\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"ZVhKDtWyE\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"Lx_TFXkL0\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vVZaRttGW\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"vVZaRttGW\",name:\"wR752i2OM\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"ZVhKDtWyE\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"Lx_TFXkL0\",type:\"Identifier\"},{collection:\"vVZaRttGW\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idvVZaRttGW,Lx_TFXkL0:Lx_TFXkL0vVZaRttGW,wR752i2OM:wR752i2OMvVZaRttGW,ZVhKDtWyE:ZVhKDtWyEvVZaRttGW},index)=>{wR752i2OMvVZaRttGW??=\"\";Lx_TFXkL0vVZaRttGW??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vVZaRttGW-${idvVZaRttGW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{wR752i2OM:wR752i2OMvVZaRttGW},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{wR752i2OM:wR752i2OMvVZaRttGW},webPageId:\"TmptxIFWq\"},motionChild:true,nodeId:\"FF7N9z4eR\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition33},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oomehv framer-lux5qc\",\"data-framer-name\":\"Blog-Module\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13327.8+96+149+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 112px) / 2, 200px)`,...toResponsiveImage(ZVhKDtWyEvVZaRttGW)}},sxoaNYiuO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12283.800000000001+40+239.2+0+677.6+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(ZVhKDtWyEvVZaRttGW)}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9443.1+96+149+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) - 64px) / 3, 200px)`,...toResponsiveImage(ZVhKDtWyEvVZaRttGW)},className:\"framer-xmysw7\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l4ozdk\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dkkbgp\",\"data-framer-name\":\"Middle\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1uzyeah\",\"data-styles-preset\":\"kNkYxHW2g\",style:{\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"How to Take Effective Therapy Notes During Sessions Without Breaking Client Connection\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1uzyeah\",\"data-styles-preset\":\"kNkYxHW2g\",children:\"How to Take Effective Therapy Notes During Sessions Without Breaking Client Connection\"})}),className:\"framer-jtccqg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],text:Lx_TFXkL0vVZaRttGW,verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})},idvVZaRttGW);})})})})})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-5ag45n\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rZoq4fOw5:{y:(componentViewport?.y||0)+0+14314.4+40+64.5},sxoaNYiuO:{width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+13579.400000000001+60+44.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+10122.9+40+64.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ny3sp-container\",nodeId:\"tChs8ZK0Q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sxoaNYiuO:{variant:\"mcVzuSOHz\"}},children:/*#__PURE__*/_jsx(Footer2,{height:\"100%\",id:\"tChs8ZK0Q\",layoutId:\"tChs8ZK0Q\",style:{width:\"100%\"},variant:\"B4Ba3UcJA\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p6Y0G.framer-lux5qc, .framer-p6Y0G .framer-lux5qc { display: block; }\",\".framer-p6Y0G.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7354084b-2f3d-4256-9942-cf21fcb19d60, #f9fafb); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-p6Y0G .framer-wde3po-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-p6Y0G .framer-cyjsw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-163734l { aspect-ratio: 1.8900523560209423 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 893px); left: -243px; overflow: visible; position: absolute; right: -244px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-p6Y0G .framer-1jbetzo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1ijs6eg { 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: 100%; }\",\".framer-p6Y0G .framer-1xov8po-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-p6Y0G .framer-1mjcaxt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 770px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-p6Y0G .framer-wwxjlc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1mlz7c2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 690px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1vffft4-container { flex: none; height: auto; position: relative; width: 413px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-p6Y0G.framer-19aehyv { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-p6Y0G.framer-1xdoobr { align-content: center; align-items: center; background-color: var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, #000000); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 172px; justify-content: center; left: calc(50.50000000000002% - 575px / 2); overflow: hidden; padding: 14px 20px 14px 20px; position: fixed; top: 254px; width: 575px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-p6Y0G .framer-fft5gz, .framer-p6Y0G .framer-ne8mph, .framer-p6Y0G .framer-w1f6wa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p6Y0G .framer-mtk9lv-container, .framer-p6Y0G .framer-nxjvo4-container, .framer-p6Y0G .framer-1sf03sd-container, .framer-p6Y0G .framer-1n2jsf7-container, .framer-p6Y0G .framer-vfi75i-container, .framer-p6Y0G .framer-172yyt9-container, .framer-p6Y0G .framer-e5xow4-container, .framer-p6Y0G .framer-12vg9m6-container, .framer-p6Y0G .framer-wd9voi-container, .framer-p6Y0G .framer-11tn9wj-container, .framer-p6Y0G .framer-h87q31-container, .framer-p6Y0G .framer-1228um9-container, .framer-p6Y0G .framer-1iizxul-container, .framer-p6Y0G .framer-1rcigs5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-p6Y0G .framer-37y9gw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 325px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-2j2hzr { aspect-ratio: 1.154228855721393 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 201px); left: -357px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 232px; z-index: 1; }\",\".framer-p6Y0G .framer-h1jhyf { aspect-ratio: 0.9841269841269841 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 189px); left: -125px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 186px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-p6Y0G .framer-1yrr43t { aspect-ratio: 0.9768518518518519 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: 55px; overflow: visible; position: absolute; top: 51%; transform: translateY(-50%); width: 234px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-p6Y0G .framer-7xekhe { aspect-ratio: 1.171875 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 256px); left: 1344px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); width: 300px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-p6Y0G .framer-48n6op { aspect-ratio: 0.87 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 205px); left: 300px; overflow: visible; position: absolute; top: 48%; transform: translateY(-50%); width: 178px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-p6Y0G .framer-12lsbrz { aspect-ratio: 0.9813953488372092 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 215px); left: 1080px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 211px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-p6Y0G .framer-vz11z2 { aspect-ratio: 0.8840579710144928 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 276px); left: 478px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 244px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-p6Y0G .framer-1wj7a3k { aspect-ratio: 2.0833333333333335 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 144px); left: 1574px; overflow: visible; position: absolute; top: 47%; transform: translateY(-50%); width: 300px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-p6Y0G .framer-q22748 { aspect-ratio: 0.9029126213592233 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 251px); left: 706px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); width: 226px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-p6Y0G .framer-1l0fcgt { aspect-ratio: 0.8054794520547945 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: var(--framer-aspect-ratio-supported, 199px); left: 938px; overflow: visible; position: absolute; top: 50%; transform: translateY(-50%); width: 160px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-p6Y0G .framer-agvns1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-f5hwnx { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p6Y0G .framer-vvp27g-container { flex: none; height: 156px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-uvarz5-container { height: 64px; position: relative; width: 343px; }\",\".framer-p6Y0G .framer-1chnwyh-container { height: 59px; position: relative; width: 247px; }\",\".framer-p6Y0G .framer-ish1ei-container { height: 64px; position: relative; width: 709px; }\",\".framer-p6Y0G .framer-1urfrkd-container { height: 55px; position: relative; width: 368px; }\",\".framer-p6Y0G .framer-18fn4o8 { align-content: center; align-items: center; background-color: var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 135px 60px 135px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-p6Y0G .framer-1lilnrz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-ee8yod { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-p6Y0G .framer-1j7cmiz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 71%; }\",\".framer-p6Y0G .framer-112tijh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 360px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1p1oidp-container, .framer-p6Y0G .framer-9oj60a-container, .framer-p6Y0G .framer-1gnrtya-container { flex: none; height: 100%; position: relative; width: 668px; }\",'.framer-p6Y0G .framer-1r9f5su { align-content: center; align-items: center; background: radial-gradient(50% 50% at 50% 50%, var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, #40dfaf) /* {\"name\":\"Green\"} */ 0%, var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0)) /* {\"name\":\"ui-black\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 637px; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }',\".framer-p6Y0G .framer-13rs5io { --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; z-index: 1; }\",\".framer-p6Y0G .framer-1q90kw1 { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-p6Y0G .framer-4mqpuq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 60px 120px 60px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1qcobr8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1f7r3jr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1rp0pmn, .framer-p6Y0G .framer-2wrv3i, .framer-p6Y0G .framer-1fhe1sx, .framer-p6Y0G .framer-1lyz8h0, .framer-p6Y0G .framer-1doyef, .framer-p6Y0G .framer-g7gbv0, .framer-p6Y0G .framer-miq83, .framer-p6Y0G .framer-vlvm8v, .framer-p6Y0G .framer-1lvg07z, .framer-p6Y0G .framer-g31hxw, .framer-p6Y0G .framer-1gtggb9, .framer-p6Y0G .framer-2xllus, .framer-p6Y0G .framer-jtccqg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p6Y0G .framer-vpwr7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-7zxqpe, .framer-p6Y0G .framer-nh2hnf { --border-bottom-width: 0px; --border-color: #b9bed1; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p6Y0G .framer-swfy82, .framer-p6Y0G .framer-1rcoess, .framer-p6Y0G .framer-1tpy5fl, .framer-p6Y0G .framer-1sooyr9, .framer-p6Y0G .framer-9yyqc7, .framer-p6Y0G .framer-1cyrzmh, .framer-p6Y0G .framer-fa39za, .framer-p6Y0G .framer-ru4mbz, .framer-p6Y0G .framer-3tjxpq, .framer-p6Y0G .framer-9r23hp { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p6Y0G .framer-18rnzgc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p6Y0G .framer-19hvudq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-p6Y0G .framer-1t2obla { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1m7w9cc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1lxaw75 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-15561y6 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; min-height: 520px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6Y0G .framer-id8m6h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-p6Y0G .framer-174hpu4, .framer-p6Y0G .framer-1k8gr2s, .framer-p6Y0G .framer-1p7egt5, .framer-p6Y0G .framer-mx4wi9, .framer-p6Y0G .framer-13b9ep0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-3xhwgs, .framer-p6Y0G .framer-mvaqwa, .framer-p6Y0G .framer-1a0x8j5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1oyuhc1, .framer-p6Y0G .framer-1doehtm, .framer-p6Y0G .framer-1l1pagd, .framer-p6Y0G .framer-a6vwn2, .framer-p6Y0G .framer-10t6xod, .framer-p6Y0G .framer-tw9xu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p6Y0G .framer-ptru0p, .framer-p6Y0G .framer-1ynj3he, .framer-p6Y0G .framer-oq3d45 { aspect-ratio: 1 / 1; background-color: var(--token-2ec4cb2c-e133-48a9-b1c8-05da3a89efe0, #cbf4e7); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: hidden; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6Y0G .framer-mz8v93, .framer-p6Y0G .framer-1mrkkgv, .framer-p6Y0G .framer-1n6pa9e, .framer-p6Y0G .framer-ssi1e8, .framer-p6Y0G .framer-njyic, .framer-p6Y0G .framer-10m7vbl { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 50%; overflow: hidden; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 32px; }\",\".framer-p6Y0G .framer-puyh06, .framer-p6Y0G .framer-8i4v2i, .framer-p6Y0G .framer-f4do0y, .framer-p6Y0G .framer-c6onrc, .framer-p6Y0G .framer-utmgyj { flex: none; height: 28px; left: 3px; position: absolute; top: 1px; width: 28px; }\",\".framer-p6Y0G .framer-11hh4z1, .framer-p6Y0G .framer-1grlndo, .framer-p6Y0G .framer-2pz9hy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1wg0tyt, .framer-p6Y0G .framer-12bnuzb, .framer-p6Y0G .framer-svx6c4, .framer-p6Y0G .framer-qxf8iq, .framer-p6Y0G .framer-1cyd63p, .framer-p6Y0G .framer-1d5kufg, .framer-p6Y0G .framer-1l7uack, .framer-p6Y0G .framer-4ynoyp { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p6Y0G .framer-1vhiyt2, .framer-p6Y0G .framer-824zh4, .framer-p6Y0G .framer-6bu82e, .framer-p6Y0G .framer-1n6hlaa, .framer-p6Y0G .framer-1mrnpkx, .framer-p6Y0G .framer-1wwxizo { --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-p6Y0G .framer-1kmq1f6, .framer-p6Y0G .framer-fcic4c, .framer-p6Y0G .framer-8b4bsc { aspect-ratio: 1 / 1; background-color: var(--token-5710ab6a-5dae-4c3d-8277-ea0039e7b772, #dae1f6); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: hidden; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6Y0G .framer-957gs1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 732px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-9cgby5, .framer-p6Y0G .framer-2g06y5, .framer-p6Y0G .framer-16pvi70 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1k89vjp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p6Y0G .framer-6okh79 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; min-height: 484px; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6Y0G .framer-54qbbx { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; min-height: 498px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6Y0G .framer-zqoywu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-p6Y0G .framer-ktmibt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1y3ziiw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p6Y0G .framer-2b9dv5, .framer-p6Y0G .framer-1saj0fn, .framer-p6Y0G .framer-1bwdctg { align-content: center; align-items: center; background-color: #f5f5f5; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6Y0G .framer-dsbeu3, .framer-p6Y0G .framer-11o9w8w, .framer-p6Y0G .framer-1su0214 { aspect-ratio: 0.9627659574468085 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 499px); overflow: visible; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-6l70dv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-p6Y0G .framer-kgaari { background-color: rgba(0, 0, 0, 0); flex: none; height: 28px; left: 3px; position: absolute; top: 1px; width: 28px; }\",\".framer-p6Y0G .framer-1n76ab1 { align-content: center; align-items: center; background-color: var(--token-bf8bd38a-4575-40c0-9459-6a86668113f1, #f3f4f6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 0px 96px 0px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-p6Y0G .framer-1g6ma67 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1fexd4j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 61%; }\",\".framer-p6Y0G .framer-1t3fpmj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-19f1fbu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-183cyj2, .framer-p6Y0G .framer-ovfdua { align-content: flex-start; align-items: flex-start; background-color: #f3f4f6; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6Y0G .framer-1ow082x, .framer-p6Y0G .framer-19fn9nv { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 80px; }\",\".framer-p6Y0G .framer-1c15k0q, .framer-p6Y0G .framer-5zt2y9 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p6Y0G .framer-tvj6bd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-6dvenn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1mvf5s8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p6Y0G .framer-19zqph0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 100%; }\",'.framer-p6Y0G .framer-16v17qo { align-content: center; align-items: center; background: linear-gradient(95.9702452841855deg, var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, #000000) /* {\"name\":\"ui-black\"} */ 0%, var(--token-24a77869-6c1b-4d21-aeba-9fb695018ee3, rgb(64, 223, 175)) /* {\"name\":\"Green\"} */ 100%); 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: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: hidden; padding: 60px 80px 60px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }',\".framer-p6Y0G .framer-1gkfivf { 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-p6Y0G .framer-1u7l4fm { 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: 60%; }\",\".framer-p6Y0G .framer-udlfp0 { align-content: center; align-items: center; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 60px 96px 60px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-fbqtm7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-qwmp7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 101px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 501px; }\",\".framer-p6Y0G .framer-f0dh58 { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1280px; padding: 0px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1oomehv { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; 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: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-p6Y0G .framer-xmysw7 { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 254px); position: relative; width: 100%; }\",\".framer-p6Y0G .framer-1l4ozdk, .framer-p6Y0G .framer-1dkkbgp { 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-p6Y0G .framer-5ag45n { align-content: center; align-items: center; background-color: var(--token-33c8dbd0-eb94-4e90-8099-e7a3fee4ad2f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-p6Y0G .framer-4ny3sp-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-p6Y0G.framer-72rtr7, .framer-p6Y0G .framer-cyjsw4, .framer-p6Y0G .framer-1jbetzo, .framer-p6Y0G .framer-1ijs6eg, .framer-p6Y0G .framer-wwxjlc, .framer-p6Y0G.framer-1xdoobr, .framer-p6Y0G .framer-37y9gw, .framer-p6Y0G .framer-agvns1, .framer-p6Y0G .framer-18fn4o8, .framer-p6Y0G .framer-1lilnrz, .framer-p6Y0G .framer-1j7cmiz, .framer-p6Y0G .framer-112tijh, .framer-p6Y0G .framer-1r9f5su, .framer-p6Y0G .framer-4mqpuq, .framer-p6Y0G .framer-1qcobr8, .framer-p6Y0G .framer-1f7r3jr, .framer-p6Y0G .framer-vpwr7o, .framer-p6Y0G .framer-7zxqpe, .framer-p6Y0G .framer-nh2hnf, .framer-p6Y0G .framer-18rnzgc, .framer-p6Y0G .framer-19hvudq, .framer-p6Y0G .framer-1t2obla, .framer-p6Y0G .framer-1m7w9cc, .framer-p6Y0G .framer-1lxaw75, .framer-p6Y0G .framer-15561y6, .framer-p6Y0G .framer-id8m6h, .framer-p6Y0G .framer-174hpu4, .framer-p6Y0G .framer-3xhwgs, .framer-p6Y0G .framer-1oyuhc1, .framer-p6Y0G .framer-11hh4z1, .framer-p6Y0G .framer-1doehtm, .framer-p6Y0G .framer-957gs1, .framer-p6Y0G .framer-9cgby5, .framer-p6Y0G .framer-1k89vjp, .framer-p6Y0G .framer-6okh79, .framer-p6Y0G .framer-2g06y5, .framer-p6Y0G .framer-54qbbx, .framer-p6Y0G .framer-zqoywu, .framer-p6Y0G .framer-1k8gr2s, .framer-p6Y0G .framer-mvaqwa, .framer-p6Y0G .framer-1l1pagd, .framer-p6Y0G .framer-1grlndo, .framer-p6Y0G .framer-a6vwn2, .framer-p6Y0G .framer-ktmibt, .framer-p6Y0G .framer-1y3ziiw, .framer-p6Y0G .framer-2b9dv5, .framer-p6Y0G .framer-16pvi70, .framer-p6Y0G .framer-1saj0fn, .framer-p6Y0G .framer-6l70dv, .framer-p6Y0G .framer-1p7egt5, .framer-p6Y0G .framer-1a0x8j5, .framer-p6Y0G .framer-10t6xod, .framer-p6Y0G .framer-2pz9hy, .framer-p6Y0G .framer-tw9xu, .framer-p6Y0G .framer-1n76ab1, .framer-p6Y0G .framer-1g6ma67, .framer-p6Y0G .framer-1fexd4j, .framer-p6Y0G .framer-1t3fpmj, .framer-p6Y0G .framer-19f1fbu, .framer-p6Y0G .framer-183cyj2, .framer-p6Y0G .framer-mx4wi9, .framer-p6Y0G .framer-ovfdua, .framer-p6Y0G .framer-13b9ep0, .framer-p6Y0G .framer-tvj6bd, .framer-p6Y0G .framer-6dvenn, .framer-p6Y0G .framer-1mvf5s8, .framer-p6Y0G .framer-1bwdctg, .framer-p6Y0G .framer-19zqph0, .framer-p6Y0G .framer-16v17qo, .framer-p6Y0G .framer-1u7l4fm, .framer-p6Y0G .framer-udlfp0, .framer-p6Y0G .framer-qwmp7, .framer-p6Y0G .framer-1oomehv, .framer-p6Y0G .framer-1l4ozdk, .framer-p6Y0G .framer-1dkkbgp, .framer-p6Y0G .framer-5ag45n { gap: 0px; } .framer-p6Y0G.framer-72rtr7 > *, .framer-p6Y0G .framer-1m7w9cc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-p6Y0G.framer-72rtr7 > :first-child, .framer-p6Y0G .framer-cyjsw4 > :first-child, .framer-p6Y0G .framer-1jbetzo > :first-child, .framer-p6Y0G .framer-1ijs6eg > :first-child, .framer-p6Y0G .framer-wwxjlc > :first-child, .framer-p6Y0G.framer-1xdoobr > :first-child, .framer-p6Y0G .framer-agvns1 > :first-child, .framer-p6Y0G .framer-18fn4o8 > :first-child, .framer-p6Y0G .framer-1lilnrz > :first-child, .framer-p6Y0G .framer-1j7cmiz > :first-child, .framer-p6Y0G .framer-1r9f5su > :first-child, .framer-p6Y0G .framer-4mqpuq > :first-child, .framer-p6Y0G .framer-1qcobr8 > :first-child, .framer-p6Y0G .framer-1f7r3jr > :first-child, .framer-p6Y0G .framer-7zxqpe > :first-child, .framer-p6Y0G .framer-nh2hnf > :first-child, .framer-p6Y0G .framer-18rnzgc > :first-child, .framer-p6Y0G .framer-19hvudq > :first-child, .framer-p6Y0G .framer-1t2obla > :first-child, .framer-p6Y0G .framer-1m7w9cc > :first-child, .framer-p6Y0G .framer-15561y6 > :first-child, .framer-p6Y0G .framer-id8m6h > :first-child, .framer-p6Y0G .framer-174hpu4 > :first-child, .framer-p6Y0G .framer-1oyuhc1 > :first-child, .framer-p6Y0G .framer-11hh4z1 > :first-child, .framer-p6Y0G .framer-1doehtm > :first-child, .framer-p6Y0G .framer-1k89vjp > :first-child, .framer-p6Y0G .framer-6okh79 > :first-child, .framer-p6Y0G .framer-54qbbx > :first-child, .framer-p6Y0G .framer-zqoywu > :first-child, .framer-p6Y0G .framer-1k8gr2s > :first-child, .framer-p6Y0G .framer-1l1pagd > :first-child, .framer-p6Y0G .framer-1grlndo > :first-child, .framer-p6Y0G .framer-a6vwn2 > :first-child, .framer-p6Y0G .framer-1y3ziiw > :first-child, .framer-p6Y0G .framer-2b9dv5 > :first-child, .framer-p6Y0G .framer-1saj0fn > :first-child, .framer-p6Y0G .framer-6l70dv > :first-child, .framer-p6Y0G .framer-1p7egt5 > :first-child, .framer-p6Y0G .framer-10t6xod > :first-child, .framer-p6Y0G .framer-2pz9hy > :first-child, .framer-p6Y0G .framer-tw9xu > :first-child, .framer-p6Y0G .framer-1n76ab1 > :first-child, .framer-p6Y0G .framer-1g6ma67 > :first-child, .framer-p6Y0G .framer-1fexd4j > :first-child, .framer-p6Y0G .framer-1t3fpmj > :first-child, .framer-p6Y0G .framer-183cyj2 > :first-child, .framer-p6Y0G .framer-mx4wi9 > :first-child, .framer-p6Y0G .framer-ovfdua > :first-child, .framer-p6Y0G .framer-13b9ep0 > :first-child, .framer-p6Y0G .framer-tvj6bd > :first-child, .framer-p6Y0G .framer-1mvf5s8 > :first-child, .framer-p6Y0G .framer-1bwdctg > :first-child, .framer-p6Y0G .framer-19zqph0 > :first-child, .framer-p6Y0G .framer-16v17qo > :first-child, .framer-p6Y0G .framer-1u7l4fm > :first-child, .framer-p6Y0G .framer-udlfp0 > :first-child, .framer-p6Y0G .framer-qwmp7 > :first-child, .framer-p6Y0G .framer-1oomehv > :first-child, .framer-p6Y0G .framer-1l4ozdk > :first-child, .framer-p6Y0G .framer-1dkkbgp > :first-child, .framer-p6Y0G .framer-5ag45n > :first-child { margin-top: 0px; } .framer-p6Y0G.framer-72rtr7 > :last-child, .framer-p6Y0G .framer-cyjsw4 > :last-child, .framer-p6Y0G .framer-1jbetzo > :last-child, .framer-p6Y0G .framer-1ijs6eg > :last-child, .framer-p6Y0G .framer-wwxjlc > :last-child, .framer-p6Y0G.framer-1xdoobr > :last-child, .framer-p6Y0G .framer-agvns1 > :last-child, .framer-p6Y0G .framer-18fn4o8 > :last-child, .framer-p6Y0G .framer-1lilnrz > :last-child, .framer-p6Y0G .framer-1j7cmiz > :last-child, .framer-p6Y0G .framer-1r9f5su > :last-child, .framer-p6Y0G .framer-4mqpuq > :last-child, .framer-p6Y0G .framer-1qcobr8 > :last-child, .framer-p6Y0G .framer-1f7r3jr > :last-child, .framer-p6Y0G .framer-7zxqpe > :last-child, .framer-p6Y0G .framer-nh2hnf > :last-child, .framer-p6Y0G .framer-18rnzgc > :last-child, .framer-p6Y0G .framer-19hvudq > :last-child, .framer-p6Y0G .framer-1t2obla > :last-child, .framer-p6Y0G .framer-1m7w9cc > :last-child, .framer-p6Y0G .framer-15561y6 > :last-child, .framer-p6Y0G .framer-id8m6h > :last-child, .framer-p6Y0G .framer-174hpu4 > :last-child, .framer-p6Y0G .framer-1oyuhc1 > :last-child, .framer-p6Y0G .framer-11hh4z1 > :last-child, .framer-p6Y0G .framer-1doehtm > :last-child, .framer-p6Y0G .framer-1k89vjp > :last-child, .framer-p6Y0G .framer-6okh79 > :last-child, .framer-p6Y0G .framer-54qbbx > :last-child, .framer-p6Y0G .framer-zqoywu > :last-child, .framer-p6Y0G .framer-1k8gr2s > :last-child, .framer-p6Y0G .framer-1l1pagd > :last-child, .framer-p6Y0G .framer-1grlndo > :last-child, .framer-p6Y0G .framer-a6vwn2 > :last-child, .framer-p6Y0G .framer-1y3ziiw > :last-child, .framer-p6Y0G .framer-2b9dv5 > :last-child, .framer-p6Y0G .framer-1saj0fn > :last-child, .framer-p6Y0G .framer-6l70dv > :last-child, .framer-p6Y0G .framer-1p7egt5 > :last-child, .framer-p6Y0G .framer-10t6xod > :last-child, .framer-p6Y0G .framer-2pz9hy > :last-child, .framer-p6Y0G .framer-tw9xu > :last-child, .framer-p6Y0G .framer-1n76ab1 > :last-child, .framer-p6Y0G .framer-1g6ma67 > :last-child, .framer-p6Y0G .framer-1fexd4j > :last-child, .framer-p6Y0G .framer-1t3fpmj > :last-child, .framer-p6Y0G .framer-183cyj2 > :last-child, .framer-p6Y0G .framer-mx4wi9 > :last-child, .framer-p6Y0G .framer-ovfdua > :last-child, .framer-p6Y0G .framer-13b9ep0 > :last-child, .framer-p6Y0G .framer-tvj6bd > :last-child, .framer-p6Y0G .framer-1mvf5s8 > :last-child, .framer-p6Y0G .framer-1bwdctg > :last-child, .framer-p6Y0G .framer-19zqph0 > :last-child, .framer-p6Y0G .framer-16v17qo > :last-child, .framer-p6Y0G .framer-1u7l4fm > :last-child, .framer-p6Y0G .framer-udlfp0 > :last-child, .framer-p6Y0G .framer-qwmp7 > :last-child, .framer-p6Y0G .framer-1oomehv > :last-child, .framer-p6Y0G .framer-1l4ozdk > :last-child, .framer-p6Y0G .framer-1dkkbgp > :last-child, .framer-p6Y0G .framer-5ag45n > :last-child { margin-bottom: 0px; } .framer-p6Y0G .framer-cyjsw4 > *, .framer-p6Y0G .framer-1jbetzo > *, .framer-p6Y0G .framer-18fn4o8 > *, .framer-p6Y0G .framer-4mqpuq > *, .framer-p6Y0G .framer-1t2obla > *, .framer-p6Y0G .framer-183cyj2 > *, .framer-p6Y0G .framer-ovfdua > *, .framer-p6Y0G .framer-tvj6bd > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-p6Y0G .framer-1ijs6eg > *, .framer-p6Y0G .framer-1qcobr8 > *, .framer-p6Y0G .framer-174hpu4 > *, .framer-p6Y0G .framer-1k8gr2s > *, .framer-p6Y0G .framer-1y3ziiw > *, .framer-p6Y0G .framer-1p7egt5 > *, .framer-p6Y0G .framer-1fexd4j > *, .framer-p6Y0G .framer-mx4wi9 > *, .framer-p6Y0G .framer-13b9ep0 > *, .framer-p6Y0G .framer-1oomehv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-p6Y0G .framer-wwxjlc > *, .framer-p6Y0G .framer-15561y6 > *, .framer-p6Y0G .framer-6okh79 > *, .framer-p6Y0G .framer-54qbbx > *, .framer-p6Y0G .framer-2b9dv5 > *, .framer-p6Y0G .framer-1saj0fn > *, .framer-p6Y0G .framer-1bwdctg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-p6Y0G.framer-1xdoobr > *, .framer-p6Y0G .framer-agvns1 > *, .framer-p6Y0G .framer-19zqph0 > *, .framer-p6Y0G .framer-16v17qo > *, .framer-p6Y0G .framer-qwmp7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-p6Y0G .framer-37y9gw > *, .framer-p6Y0G .framer-957gs1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-p6Y0G .framer-37y9gw > :first-child, .framer-p6Y0G .framer-112tijh > :first-child, .framer-p6Y0G .framer-vpwr7o > :first-child, .framer-p6Y0G .framer-1lxaw75 > :first-child, .framer-p6Y0G .framer-3xhwgs > :first-child, .framer-p6Y0G .framer-957gs1 > :first-child, .framer-p6Y0G .framer-9cgby5 > :first-child, .framer-p6Y0G .framer-2g06y5 > :first-child, .framer-p6Y0G .framer-mvaqwa > :first-child, .framer-p6Y0G .framer-ktmibt > :first-child, .framer-p6Y0G .framer-16pvi70 > :first-child, .framer-p6Y0G .framer-1a0x8j5 > :first-child, .framer-p6Y0G .framer-19f1fbu > :first-child, .framer-p6Y0G .framer-6dvenn > :first-child { margin-left: 0px; } .framer-p6Y0G .framer-37y9gw > :last-child, .framer-p6Y0G .framer-112tijh > :last-child, .framer-p6Y0G .framer-vpwr7o > :last-child, .framer-p6Y0G .framer-1lxaw75 > :last-child, .framer-p6Y0G .framer-3xhwgs > :last-child, .framer-p6Y0G .framer-957gs1 > :last-child, .framer-p6Y0G .framer-9cgby5 > :last-child, .framer-p6Y0G .framer-2g06y5 > :last-child, .framer-p6Y0G .framer-mvaqwa > :last-child, .framer-p6Y0G .framer-ktmibt > :last-child, .framer-p6Y0G .framer-16pvi70 > :last-child, .framer-p6Y0G .framer-1a0x8j5 > :last-child, .framer-p6Y0G .framer-19f1fbu > :last-child, .framer-p6Y0G .framer-6dvenn > :last-child { margin-right: 0px; } .framer-p6Y0G .framer-1lilnrz > *, .framer-p6Y0G .framer-1f7r3jr > *, .framer-p6Y0G .framer-1oyuhc1 > *, .framer-p6Y0G .framer-1doehtm > *, .framer-p6Y0G .framer-1l1pagd > *, .framer-p6Y0G .framer-a6vwn2 > *, .framer-p6Y0G .framer-10t6xod > *, .framer-p6Y0G .framer-tw9xu > *, .framer-p6Y0G .framer-1u7l4fm > *, .framer-p6Y0G .framer-1l4ozdk > *, .framer-p6Y0G .framer-1dkkbgp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-p6Y0G .framer-1j7cmiz > *, .framer-p6Y0G .framer-udlfp0 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-p6Y0G .framer-112tijh > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-p6Y0G .framer-1r9f5su > *, .framer-p6Y0G .framer-id8m6h > *, .framer-p6Y0G .framer-1k89vjp > *, .framer-p6Y0G .framer-5ag45n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-p6Y0G .framer-vpwr7o > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-p6Y0G .framer-7zxqpe > *, .framer-p6Y0G .framer-nh2hnf > *, .framer-p6Y0G .framer-18rnzgc > *, .framer-p6Y0G .framer-11hh4z1 > *, .framer-p6Y0G .framer-1grlndo > *, .framer-p6Y0G .framer-2pz9hy > *, .framer-p6Y0G .framer-1t3fpmj > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-p6Y0G .framer-19hvudq > *, .framer-p6Y0G .framer-zqoywu > *, .framer-p6Y0G .framer-6l70dv > *, .framer-p6Y0G .framer-1n76ab1 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-p6Y0G .framer-1lxaw75 > *, .framer-p6Y0G .framer-19f1fbu > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-p6Y0G .framer-3xhwgs > *, .framer-p6Y0G .framer-mvaqwa > *, .framer-p6Y0G .framer-1a0x8j5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-p6Y0G .framer-9cgby5 > *, .framer-p6Y0G .framer-2g06y5 > *, .framer-p6Y0G .framer-ktmibt > *, .framer-p6Y0G .framer-16pvi70 > *, .framer-p6Y0G .framer-6dvenn > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-p6Y0G .framer-1g6ma67 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-p6Y0G .framer-1mvf5s8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-p6Y0G[data-border=\"true\"]::after, .framer-p6Y0G [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: 810px) and (max-width: 1199px) { .framer-p6Y0G.framer-72rtr7 { width: 810px; } .framer-p6Y0G .framer-163734l { bottom: -38px; height: var(--framer-aspect-ratio-supported, 687px); order: 0; } .framer-p6Y0G .framer-1jbetzo { max-width: unset; order: 1; padding: 0px 40px 0px 40px; } .framer-p6Y0G .framer-1ijs6eg { gap: 20px; } .framer-p6Y0G .framer-1xov8po-container { order: 0; } .framer-p6Y0G .framer-1mjcaxt { max-width: 430px; order: 1; width: 100%; } .framer-p6Y0G .framer-wwxjlc, .framer-p6Y0G .framer-agvns1 { order: 2; } .framer-p6Y0G .framer-1mlz7c2 { max-width: 500px; } .framer-p6Y0G .framer-1vffft4-container { width: 404px; } .framer-p6Y0G .framer-mtk9lv-container { width: 50%; } .framer-p6Y0G .framer-37y9gw { height: 368px; order: 3; } .framer-p6Y0G .framer-18fn4o8 { padding: 60px 40px 60px 40px; } .framer-p6Y0G .framer-ee8yod { width: 100%; } .framer-p6Y0G .framer-1j7cmiz { width: 70%; } .framer-p6Y0G .framer-1r9f5su { height: 695px; } .framer-p6Y0G .framer-4mqpuq { padding: 60px 40px 80px 40px; } .framer-p6Y0G .framer-1t2obla, .framer-p6Y0G .framer-mx4wi9 { padding: 0px 40px 0px 40px; } .framer-p6Y0G .framer-1m7w9cc { height: 7486px; max-width: 800px; padding: 0px; } .framer-p6Y0G .framer-1lxaw75 { flex-direction: column; padding: 40px 0px 40px 0px; } .framer-p6Y0G .framer-15561y6 { flex: none; width: 100%; } .framer-p6Y0G .framer-id8m6h { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-p6Y0G .framer-957gs1 { height: 400px; } .framer-p6Y0G .framer-9cgby5, .framer-p6Y0G .framer-2g06y5, .framer-p6Y0G .framer-ktmibt, .framer-p6Y0G .framer-16pvi70 { flex-direction: column; gap: 80px; padding: 40px 0px 40px 0px; } .framer-p6Y0G .framer-1k89vjp, .framer-p6Y0G .framer-1y3ziiw { flex: none; order: 1; width: 100%; } .framer-p6Y0G .framer-6okh79, .framer-p6Y0G .framer-54qbbx, .framer-p6Y0G .framer-2b9dv5, .framer-p6Y0G .framer-1saj0fn, .framer-p6Y0G .framer-1bwdctg { flex: none; order: 0; width: 100%; } .framer-p6Y0G .framer-zqoywu, .framer-p6Y0G .framer-6l70dv, .framer-p6Y0G .framer-1mvf5s8 { flex: none; order: 1; padding: 0px 20px 0px 20px; width: 100%; } .framer-p6Y0G .framer-1k8gr2s, .framer-p6Y0G .framer-1p7egt5 { align-content: center; align-items: center; } .framer-p6Y0G .framer-dsbeu3, .framer-p6Y0G .framer-11o9w8w { height: var(--framer-aspect-ratio-supported, 758px); } .framer-p6Y0G .framer-1g6ma67, .framer-p6Y0G .framer-tvj6bd, .framer-p6Y0G .framer-fbqtm7 { max-width: unset; } .framer-p6Y0G .framer-1fexd4j { width: 80%; } .framer-p6Y0G .framer-19f1fbu { flex-direction: column; gap: 40px; max-width: unset; } .framer-p6Y0G .framer-183cyj2 { flex: none; padding: 0px 0px 40px 0px; width: 100%; } .framer-p6Y0G .framer-ovfdua { flex: none; padding: 0px 20px 40px 20px; width: 100%; } .framer-p6Y0G .framer-6dvenn { flex-direction: column; gap: 80px; } .framer-p6Y0G .framer-1su0214 { height: var(--framer-aspect-ratio-supported, 717px); } .framer-p6Y0G .framer-udlfp0 { padding: 96px 40px 96px 40px; } .framer-p6Y0G .framer-f0dh58 { grid-template-columns: repeat(2, minmax(200px, 1fr)); max-width: unset; } .framer-p6Y0G .framer-xmysw7 { height: var(--framer-aspect-ratio-supported, 262px); } .framer-p6Y0G .framer-1l4ozdk { gap: 8px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-p6Y0G .framer-1ijs6eg, .framer-p6Y0G .framer-1lxaw75, .framer-p6Y0G .framer-9cgby5, .framer-p6Y0G .framer-2g06y5, .framer-p6Y0G .framer-ktmibt, .framer-p6Y0G .framer-16pvi70, .framer-p6Y0G .framer-19f1fbu, .framer-p6Y0G .framer-6dvenn, .framer-p6Y0G .framer-1l4ozdk { gap: 0px; } .framer-p6Y0G .framer-1ijs6eg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-p6Y0G .framer-1ijs6eg > :first-child, .framer-p6Y0G .framer-1lxaw75 > :first-child, .framer-p6Y0G .framer-9cgby5 > :first-child, .framer-p6Y0G .framer-2g06y5 > :first-child, .framer-p6Y0G .framer-ktmibt > :first-child, .framer-p6Y0G .framer-16pvi70 > :first-child, .framer-p6Y0G .framer-19f1fbu > :first-child, .framer-p6Y0G .framer-6dvenn > :first-child, .framer-p6Y0G .framer-1l4ozdk > :first-child { margin-top: 0px; } .framer-p6Y0G .framer-1ijs6eg > :last-child, .framer-p6Y0G .framer-1lxaw75 > :last-child, .framer-p6Y0G .framer-9cgby5 > :last-child, .framer-p6Y0G .framer-2g06y5 > :last-child, .framer-p6Y0G .framer-ktmibt > :last-child, .framer-p6Y0G .framer-16pvi70 > :last-child, .framer-p6Y0G .framer-19f1fbu > :last-child, .framer-p6Y0G .framer-6dvenn > :last-child, .framer-p6Y0G .framer-1l4ozdk > :last-child { margin-bottom: 0px; } .framer-p6Y0G .framer-1lxaw75 > *, .framer-p6Y0G .framer-9cgby5 > *, .framer-p6Y0G .framer-2g06y5 > *, .framer-p6Y0G .framer-ktmibt > *, .framer-p6Y0G .framer-16pvi70 > *, .framer-p6Y0G .framer-6dvenn > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-p6Y0G .framer-19f1fbu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-p6Y0G .framer-1l4ozdk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (max-width: 809px) { .framer-p6Y0G.framer-72rtr7 { width: 390px; } .framer-p6Y0G .framer-wde3po-container { will-change: unset; } .framer-p6Y0G .framer-cyjsw4 { gap: 100px; } .framer-p6Y0G .framer-163734l { bottom: 119px; height: var(--framer-aspect-ratio-supported, 462px); } .framer-p6Y0G .framer-1jbetzo { max-width: unset; padding: 0px 20px 0px 20px; } .framer-p6Y0G .framer-1ijs6eg { gap: 20px; } .framer-p6Y0G .framer-1mlz7c2 { order: 0; } .framer-p6Y0G .framer-1vffft4-container { order: 2; width: 100%; } .framer-p6Y0G .framer-mtk9lv-container, .framer-p6Y0G .framer-1fexd4j, .framer-p6Y0G .framer-1228um9-container { width: 100%; } .framer-p6Y0G .framer-37y9gw { height: 251px; } .framer-p6Y0G .framer-2j2hzr { aspect-ratio: 1.1568627450980393 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: -356px; width: 207px; } .framer-p6Y0G .framer-h1jhyf { aspect-ratio: 0.9859943977591037 / 1; height: var(--framer-aspect-ratio-supported, 178px); left: -88px; top: 43%; width: 176px; } .framer-p6Y0G .framer-1yrr43t { aspect-ratio: 0.9775910364145658 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 66px; top: 50%; width: 175px; } .framer-p6Y0G .framer-7xekhe { aspect-ratio: 1.173669467787115 / 1; height: var(--framer-aspect-ratio-supported, 179px); width: 210px; } .framer-p6Y0G .framer-48n6op { aspect-ratio: 0.8711484593837535 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 241px; top: 43%; width: 156px; } .framer-p6Y0G .framer-12lsbrz { aspect-ratio: 0.9831932773109243 / 1; height: var(--framer-aspect-ratio-supported, 179px); width: 176px; } .framer-p6Y0G .framer-vz11z2 { aspect-ratio: 0.8851540616246498 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 435px; top: 43%; width: 158px; } .framer-p6Y0G .framer-1wj7a3k { aspect-ratio: 2.0868347338935576 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 1664px; width: 373px; } .framer-p6Y0G .framer-q22748 { aspect-ratio: 0.9047619047619048 / 1; height: var(--framer-aspect-ratio-supported, 179px); left: 613px; top: 43%; width: 162px; } .framer-p6Y0G .framer-1l0fcgt { aspect-ratio: 0.8067226890756303 / 1; height: var(--framer-aspect-ratio-supported, 179px); width: 144px; } .framer-p6Y0G .framer-18fn4o8 { gap: 60px; padding: 68px 20px 68px 20px; } .framer-p6Y0G .framer-ee8yod { width: 90%; } .framer-p6Y0G .framer-1j7cmiz { height: 967px; width: 100%; } .framer-p6Y0G .framer-112tijh { flex-direction: column; gap: 24px; height: 954px; } .framer-p6Y0G .framer-1p1oidp-container, .framer-p6Y0G .framer-9oj60a-container, .framer-p6Y0G .framer-1gnrtya-container { height: auto; width: 100%; } .framer-p6Y0G .framer-1r9f5su { height: 730px; } .framer-p6Y0G .framer-4mqpuq { gap: 40px; padding: 40px 20px 60px 20px; } .framer-p6Y0G .framer-vpwr7o, .framer-p6Y0G .framer-3xhwgs, .framer-p6Y0G .framer-mvaqwa, .framer-p6Y0G .framer-1a0x8j5 { flex-direction: column; gap: 40px; } .framer-p6Y0G .framer-7zxqpe, .framer-p6Y0G .framer-nh2hnf { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; flex: none; width: 100%; } .framer-p6Y0G .framer-18rnzgc, .framer-p6Y0G .framer-1oyuhc1, .framer-p6Y0G .framer-1doehtm, .framer-p6Y0G .framer-1l1pagd, .framer-p6Y0G .framer-a6vwn2, .framer-p6Y0G .framer-10t6xod, .framer-p6Y0G .framer-tw9xu { flex: none; width: 100%; } .framer-p6Y0G .framer-19hvudq { padding: 80px 0px 80px 0px; } .framer-p6Y0G .framer-1t2obla { padding: 0px 20px 0px 20px; } .framer-p6Y0G .framer-1m7w9cc { order: 0; padding: 0px; } .framer-p6Y0G .framer-1lxaw75, .framer-p6Y0G .framer-9cgby5, .framer-p6Y0G .framer-2g06y5, .framer-p6Y0G .framer-16pvi70 { flex-direction: column; gap: 60px; padding: 20px 0px 20px 0px; } .framer-p6Y0G .framer-15561y6, .framer-p6Y0G .framer-54qbbx, .framer-p6Y0G .framer-1saj0fn { align-content: flex-start; align-items: flex-start; flex: none; gap: 20px; width: 100%; } .framer-p6Y0G .framer-id8m6h, .framer-p6Y0G .framer-zqoywu, .framer-p6Y0G .framer-6l70dv { flex: none; gap: 40px; width: 100%; } .framer-p6Y0G .framer-957gs1 { height: 200px; } .framer-p6Y0G .framer-1k89vjp, .framer-p6Y0G .framer-1y3ziiw, .framer-p6Y0G .framer-1mvf5s8 { flex: none; order: 1; width: 100%; } .framer-p6Y0G .framer-6okh79 { align-content: flex-start; align-items: flex-start; flex: none; gap: 20px; order: 0; padding: 0px; width: 100%; } .framer-p6Y0G .framer-ktmibt, .framer-p6Y0G .framer-6dvenn { flex-direction: column; gap: 60px; } .framer-p6Y0G .framer-2b9dv5, .framer-p6Y0G .framer-1bwdctg { align-content: flex-start; align-items: flex-start; flex: none; gap: 20px; order: 0; width: 100%; } .framer-p6Y0G .framer-dsbeu3, .framer-p6Y0G .framer-11o9w8w, .framer-p6Y0G .framer-1su0214 { height: var(--framer-aspect-ratio-supported, 208px); } .framer-p6Y0G .framer-1n76ab1 { padding: 80px 20px 80px 20px; } .framer-p6Y0G .framer-1g6ma67 { gap: 60px; max-width: unset; } .framer-p6Y0G .framer-19f1fbu { flex-direction: column; padding: 0px; } .framer-p6Y0G .framer-183cyj2, .framer-p6Y0G .framer-ovfdua { flex: none; padding: 0px 0px 20px 0px; width: 100%; } .framer-p6Y0G .framer-tvj6bd { padding: 0px; } .framer-p6Y0G .framer-19zqph0, .framer-p6Y0G .framer-udlfp0 { padding: 40px 20px 40px 20px; } .framer-p6Y0G .framer-16v17qo { padding: 40px; } .framer-p6Y0G .framer-1gkfivf { flex-direction: column; gap: 40px; justify-content: center; } .framer-p6Y0G .framer-1u7l4fm { gap: 40px; width: 100%; } .framer-p6Y0G .framer-fbqtm7 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-p6Y0G .framer-qwmp7 { gap: 24px; height: min-content; width: min-content; } .framer-p6Y0G .framer-w1f6wa { white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; } .framer-p6Y0G .framer-f0dh58 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; justify-content: flex-start; max-width: unset; } .framer-p6Y0G .framer-1oomehv { align-self: unset; gap: 16px; } .framer-p6Y0G .framer-xmysw7 { height: var(--framer-aspect-ratio-supported, 150px); } .framer-p6Y0G .framer-5ag45n { padding: 60px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-p6Y0G .framer-cyjsw4, .framer-p6Y0G .framer-1ijs6eg, .framer-p6Y0G .framer-18fn4o8, .framer-p6Y0G .framer-112tijh, .framer-p6Y0G .framer-4mqpuq, .framer-p6Y0G .framer-vpwr7o, .framer-p6Y0G .framer-1lxaw75, .framer-p6Y0G .framer-15561y6, .framer-p6Y0G .framer-id8m6h, .framer-p6Y0G .framer-3xhwgs, .framer-p6Y0G .framer-9cgby5, .framer-p6Y0G .framer-6okh79, .framer-p6Y0G .framer-2g06y5, .framer-p6Y0G .framer-54qbbx, .framer-p6Y0G .framer-zqoywu, .framer-p6Y0G .framer-mvaqwa, .framer-p6Y0G .framer-ktmibt, .framer-p6Y0G .framer-2b9dv5, .framer-p6Y0G .framer-16pvi70, .framer-p6Y0G .framer-1saj0fn, .framer-p6Y0G .framer-6l70dv, .framer-p6Y0G .framer-1a0x8j5, .framer-p6Y0G .framer-1g6ma67, .framer-p6Y0G .framer-19f1fbu, .framer-p6Y0G .framer-6dvenn, .framer-p6Y0G .framer-1bwdctg, .framer-p6Y0G .framer-1gkfivf, .framer-p6Y0G .framer-1u7l4fm, .framer-p6Y0G .framer-fbqtm7, .framer-p6Y0G .framer-qwmp7, .framer-p6Y0G .framer-f0dh58, .framer-p6Y0G .framer-1oomehv { gap: 0px; } .framer-p6Y0G .framer-cyjsw4 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-p6Y0G .framer-cyjsw4 > :first-child, .framer-p6Y0G .framer-1ijs6eg > :first-child, .framer-p6Y0G .framer-18fn4o8 > :first-child, .framer-p6Y0G .framer-112tijh > :first-child, .framer-p6Y0G .framer-4mqpuq > :first-child, .framer-p6Y0G .framer-vpwr7o > :first-child, .framer-p6Y0G .framer-1lxaw75 > :first-child, .framer-p6Y0G .framer-15561y6 > :first-child, .framer-p6Y0G .framer-id8m6h > :first-child, .framer-p6Y0G .framer-3xhwgs > :first-child, .framer-p6Y0G .framer-9cgby5 > :first-child, .framer-p6Y0G .framer-6okh79 > :first-child, .framer-p6Y0G .framer-2g06y5 > :first-child, .framer-p6Y0G .framer-54qbbx > :first-child, .framer-p6Y0G .framer-zqoywu > :first-child, .framer-p6Y0G .framer-mvaqwa > :first-child, .framer-p6Y0G .framer-ktmibt > :first-child, .framer-p6Y0G .framer-2b9dv5 > :first-child, .framer-p6Y0G .framer-16pvi70 > :first-child, .framer-p6Y0G .framer-1saj0fn > :first-child, .framer-p6Y0G .framer-6l70dv > :first-child, .framer-p6Y0G .framer-1a0x8j5 > :first-child, .framer-p6Y0G .framer-1g6ma67 > :first-child, .framer-p6Y0G .framer-19f1fbu > :first-child, .framer-p6Y0G .framer-6dvenn > :first-child, .framer-p6Y0G .framer-1bwdctg > :first-child, .framer-p6Y0G .framer-1gkfivf > :first-child, .framer-p6Y0G .framer-1u7l4fm > :first-child, .framer-p6Y0G .framer-fbqtm7 > :first-child, .framer-p6Y0G .framer-qwmp7 > :first-child, .framer-p6Y0G .framer-f0dh58 > :first-child, .framer-p6Y0G .framer-1oomehv > :first-child { margin-top: 0px; } .framer-p6Y0G .framer-cyjsw4 > :last-child, .framer-p6Y0G .framer-1ijs6eg > :last-child, .framer-p6Y0G .framer-18fn4o8 > :last-child, .framer-p6Y0G .framer-112tijh > :last-child, .framer-p6Y0G .framer-4mqpuq > :last-child, .framer-p6Y0G .framer-vpwr7o > :last-child, .framer-p6Y0G .framer-1lxaw75 > :last-child, .framer-p6Y0G .framer-15561y6 > :last-child, .framer-p6Y0G .framer-id8m6h > :last-child, .framer-p6Y0G .framer-3xhwgs > :last-child, .framer-p6Y0G .framer-9cgby5 > :last-child, .framer-p6Y0G .framer-6okh79 > :last-child, .framer-p6Y0G .framer-2g06y5 > :last-child, .framer-p6Y0G .framer-54qbbx > :last-child, .framer-p6Y0G .framer-zqoywu > :last-child, .framer-p6Y0G .framer-mvaqwa > :last-child, .framer-p6Y0G .framer-ktmibt > :last-child, .framer-p6Y0G .framer-2b9dv5 > :last-child, .framer-p6Y0G .framer-16pvi70 > :last-child, .framer-p6Y0G .framer-1saj0fn > :last-child, .framer-p6Y0G .framer-6l70dv > :last-child, .framer-p6Y0G .framer-1a0x8j5 > :last-child, .framer-p6Y0G .framer-1g6ma67 > :last-child, .framer-p6Y0G .framer-19f1fbu > :last-child, .framer-p6Y0G .framer-6dvenn > :last-child, .framer-p6Y0G .framer-1bwdctg > :last-child, .framer-p6Y0G .framer-1gkfivf > :last-child, .framer-p6Y0G .framer-1u7l4fm > :last-child, .framer-p6Y0G .framer-fbqtm7 > :last-child, .framer-p6Y0G .framer-qwmp7 > :last-child, .framer-p6Y0G .framer-f0dh58 > :last-child, .framer-p6Y0G .framer-1oomehv > :last-child { margin-bottom: 0px; } .framer-p6Y0G .framer-1ijs6eg > *, .framer-p6Y0G .framer-15561y6 > *, .framer-p6Y0G .framer-6okh79 > *, .framer-p6Y0G .framer-54qbbx > *, .framer-p6Y0G .framer-2b9dv5 > *, .framer-p6Y0G .framer-1saj0fn > *, .framer-p6Y0G .framer-1bwdctg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-p6Y0G .framer-18fn4o8 > *, .framer-p6Y0G .framer-1lxaw75 > *, .framer-p6Y0G .framer-9cgby5 > *, .framer-p6Y0G .framer-2g06y5 > *, .framer-p6Y0G .framer-ktmibt > *, .framer-p6Y0G .framer-16pvi70 > *, .framer-p6Y0G .framer-1g6ma67 > *, .framer-p6Y0G .framer-6dvenn > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-p6Y0G .framer-112tijh > *, .framer-p6Y0G .framer-qwmp7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-p6Y0G .framer-4mqpuq > *, .framer-p6Y0G .framer-vpwr7o > *, .framer-p6Y0G .framer-id8m6h > *, .framer-p6Y0G .framer-3xhwgs > *, .framer-p6Y0G .framer-zqoywu > *, .framer-p6Y0G .framer-mvaqwa > *, .framer-p6Y0G .framer-6l70dv > *, .framer-p6Y0G .framer-1a0x8j5 > *, .framer-p6Y0G .framer-1gkfivf > *, .framer-p6Y0G .framer-1u7l4fm > *, .framer-p6Y0G .framer-f0dh58 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-p6Y0G .framer-19f1fbu > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-p6Y0G .framer-fbqtm7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-p6Y0G .framer-1oomehv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10950.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rZoq4fOw5\":{\"layout\":[\"fixed\",\"auto\"]},\"sxoaNYiuO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"VoZuv6REF\":{\"pattern\":\":VoZuv6REF\",\"name\":\"testimonials\"},\"ZlTtx5UZP\":{\"pattern\":\":ZlTtx5UZP\",\"name\":\"metrics\"},\"My0qyc9Yn\":{\"pattern\":\":My0qyc9Yn\",\"name\":\"product\"},\"hekc9iz_L\":{\"pattern\":\":hekc9iz_L\",\"name\":\"product-a\"},\"dWohjg438\":{\"pattern\":\":dWohjg438\",\"name\":\"product-b\"},\"CcTAhXHeW\":{\"pattern\":\":CcTAhXHeW\",\"name\":\"product-c\"},\"lsy4ggRNa\":{\"pattern\":\":lsy4ggRNa\",\"name\":\"product-b\"},\"ZUomZGQPz\":{\"pattern\":\":ZUomZGQPz\",\"name\":\"product-c\"},\"XBgj9gKso\":{\"pattern\":\":XBgj9gKso\",\"name\":\"testimonials\"},\"uG9Pp_FJO\":{\"pattern\":\":uG9Pp_FJO\",\"name\":\"testimonials-b\"},\"SdJnzaJMc\":{\"pattern\":\":SdJnzaJMc\",\"name\":\"blog\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-p6Y0G\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10950.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Be Vietnam Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QMIUKUCANYOW3DZTE34ZMVXC7KRYZNCO/X3SZZ4Z5SZNM5K75FPPASQ2YRIJMIPUD/G2K4CBVGEH7VFVIC3T6GBHAWO2E2W7YQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/RFRIJEFDDNYP2G3SPLVDDAM6LQXTHLSW/F4KOPAGTNOYCQKYEBAKSIKS536ETV6GN/AEP5JZTJJB3JMLBFSBTZLRSVGYD73SDZ.woff2\",weight:\"500\"},{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\",weight:\"500\"},{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVPSTAyLFyeg_IDWvOJmVES_Ew1D3s6ZKAi.woff2\",weight:\"400\"},{family:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NWFQAWEPGN3FR4FYMX6PY5M2HVOQSZWU/IIWY67X24KIURE4HBNGWYFMHSEMIVC2G/QAJFELFQRETRXRXDQOALZZUXNPM2U5VX.woff2\",weight:\"600\"}]},...NavigationFonts,...ElementsLabelFonts,...InputFonts,...ButtonFonts,...CoinbaseFonts,...KrakenFonts,...BitfinexFonts,...BinanceFonts,...TickerFonts,...Testimonial2Fonts,...Badge2Fonts,...ButtonsFonts,...Buttons2Fonts,...Footer2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rZoq4fOw5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sxoaNYiuO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"10950.5\",\"framerScrollSections\":\"{\\\"VoZuv6REF\\\":{\\\"pattern\\\":\\\":VoZuv6REF\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"ZlTtx5UZP\\\":{\\\"pattern\\\":\\\":ZlTtx5UZP\\\",\\\"name\\\":\\\"metrics\\\"},\\\"My0qyc9Yn\\\":{\\\"pattern\\\":\\\":My0qyc9Yn\\\",\\\"name\\\":\\\"product\\\"},\\\"hekc9iz_L\\\":{\\\"pattern\\\":\\\":hekc9iz_L\\\",\\\"name\\\":\\\"product-a\\\"},\\\"dWohjg438\\\":{\\\"pattern\\\":\\\":dWohjg438\\\",\\\"name\\\":\\\"product-b\\\"},\\\"CcTAhXHeW\\\":{\\\"pattern\\\":\\\":CcTAhXHeW\\\",\\\"name\\\":\\\"product-c\\\"},\\\"lsy4ggRNa\\\":{\\\"pattern\\\":\\\":lsy4ggRNa\\\",\\\"name\\\":\\\"product-b\\\"},\\\"ZUomZGQPz\\\":{\\\"pattern\\\":\\\":ZUomZGQPz\\\",\\\"name\\\":\\\"product-c\\\"},\\\"XBgj9gKso\\\":{\\\"pattern\\\":\\\":XBgj9gKso\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"uG9Pp_FJO\\\":{\\\"pattern\\\":\\\":uG9Pp_FJO\\\",\\\"name\\\":\\\"testimonials-b\\\"},\\\"SdJnzaJMc\\\":{\\\"pattern\\\":\\\":SdJnzaJMc\\\",\\\"name\\\":\\\"blog\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "isFunction", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "d", "f", "l", "g", "glide", "u", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "L", "T", "M", "e", "k", "noopReturn", "B", "asTransformCssVar", "j", "T", "L", "t", "P", "j", "testAnimation", "e", "t", "C", "R", "H", "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", "U", "spring", "q", "glide", "K", "inView$1", "resolveElements", "onIntersectionChange", "isFunction", "G", "_", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "Z", "X", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "ae", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "ce", "le", "onPointerUp", "window", "onPointerDown", "fe", "ue", "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", "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", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichTextWithFXWithOptimizedAppearEffect", "css", "FrameracxHyFW09", "withCSS", "acxHyFW09_default", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "labelTag", "labelText", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XvQYy3ZyV", "rq7tYFIEJ", "PKvYSA5Uj", "XzdqXWE_7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerGgKQgUt9_", "withCSS", "GgKQgUt9_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichTextWithFXWithOptimizedAppearEffect", "css", "Framerl9cSOWaCs", "withCSS", "l9cSOWaCs_default", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "text", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "lxoksPKf0", "Jxq2GRK7M", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerMWPPU0pVu", "withCSS", "MWPPU0pVu_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichTextWithFXWithOptimizedAppearEffect", "css", "Framerpu20SwG4Z", "withCSS", "pu20SwG4Z_default", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichTextWithFXWithOptimizedAppearEffect", "css", "FramerY1WawIwra", "withCSS", "Y1WawIwra_default", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationFonts", "getFonts", "dtJGnPs3l_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ImageWithOptimizedAppearEffect", "Image2", "ElementsLabelFonts", "GgKQgUt9_default", "ContainerWithFX", "withFX", "RichTextWithFX", "RichText2", "InputFonts", "Input_default", "ButtonFonts", "QhdhLt5p5_default", "ImageWithFX", "ImageWithFXWithOptimizedAppearEffect", "MotionDivWithFX", "motion", "CoinbaseFonts", "l9cSOWaCs_default", "KrakenFonts", "acxHyFW09_default", "BitfinexFonts", "Y1WawIwra_default", "BinanceFonts", "pu20SwG4Z_default", "TickerFonts", "Ticker", "Testimonial2Fonts", "MWPPU0pVu_default", "Badge2Fonts", "x2BZgbyY4_default", "ButtonsFonts", "V_vHOGBwE_default", "Buttons2Fonts", "M5LBGV9Vr_default", "MotionSectionWithFX", "MotionAWithFX", "Footer2Fonts", "hA3skc3yy_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "transition4", "textEffect", "transition5", "transition6", "animation6", "animation7", "transition7", "animation8", "animation9", "animation10", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate2", "transition8", "animation11", "animation12", "transition9", "animation13", "transition10", "animation14", "transition11", "animation15", "animation16", "transition12", "transition13", "animation17", "animation18", "transition14", "animation19", "transition15", "animation20", "transition16", "animation21", "transition17", "animation22", "transition18", "transition19", "transition20", "transition21", "transition22", "transition23", "transition24", "transition25", "transition26", "transition27", "transition28", "transition29", "animation23", "transition30", "transition31", "transition32", "transition33", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "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", "wR752i2OMvVZaRttGW", "ZVhKDtWyEvVZaRttGW", "Lx_TFXkL0vVZaRttGW", "idvVZaRttGW", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmit3bnx0g", "overlay", "loadMore", "args", "XtFwpGasz1wnntms", "scopingClassNames", "cx", "usePreloadLocalizedValues", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "elementId8", "ref10", "elementId9", "ref11", "elementId10", "ref12", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "ContainerWithOptimizedAppearEffect", "NavigationWithVariantAppearEffect", "getLoadingLazyAtYPosition", "ImageWithOptimizedAppearEffect", "ContainerWithFX", "GgKQgUt9_default", "RichText2", "x", "RichTextWithFX", "l", "Input_default", "getLocalizedValue", "AnimatePresence", "Ga", "ResolveLinks", "resolvedLinks", "Container", "QhdhLt5p5_default", "MotionDivWithFX", "ImageWithFX", "ImageWithFXWithOptimizedAppearEffect", "Ticker", "l9cSOWaCs_default", "acxHyFW09_default", "Y1WawIwra_default", "pu20SwG4Z_default", "MWPPU0pVu_default", "x2BZgbyY4_default", "SVG", "V_vHOGBwE_default", "Image2", "resolvedLinks1", "resolvedLinks2", "MotionSectionWithFX", "resolvedLinks3", "M5LBGV9Vr_default", "ChildrenCanSuspend", "v_Ak1omlQ_default", "collection", "paginationInfo", "index", "PathVariablesContext", "Link", "MotionAWithFX", "hA3skc3yy_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "ElementsLabelFonts", "InputFonts", "ButtonFonts", "CoinbaseFonts", "KrakenFonts", "BitfinexFonts", "BinanceFonts", "TickerFonts", "Testimonial2Fonts", "Badge2Fonts", "ButtonsFonts", "Buttons2Fonts", "Footer2Fonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
