{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framer.com/m/feather-icons/home.js@0.0.29", "ssg:https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js", "ssg:https://framerusercontent.com/modules/0YhRygdxVYKgrd5LEajm/jZesC1OAo2vpEeitzbsM/NEjjUG3Mm.js", "ssg:https://framer.com/m/iconoir-icons/Home.js@0.0.11", "ssg:https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js", "ssg:https://framerusercontent.com/modules/uBDiWAYKEMhEdWJMIe71/ButVa4O7479nRHQHy5Xr/A3Y3AgHgK.js", "ssg:https://framerusercontent.com/modules/MtcHEzcfQNBrgoDqRr1G/nTPBBcy5KLo30EzyfZ6H/uDSpF58BS.js", "ssg:https://framerusercontent.com/modules/25vhv2pa409WYxwrfWRG/D0ul5PqnnDMndXqX6BIx/UW39sY8oE.js", "ssg:https://framerusercontent.com/modules/AVyEzi9GDYjsmF3YE007/DeBnyydNtaDyxm3zLelR/weQcm3TLQ.js", "ssg:https://framerusercontent.com/modules/bqZ7bJC6Rz3XPcLeY7Cc/41l2mbdoKoHdGkGoAUNR/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "let r;var s=o=>{if(!r){const n=o.forwardRef(({color:t=\"currentColor\",size:e=24,...i},l)=>o.createElement(\"svg\",{ref:l,xmlns:\"http://www.w3.org/2000/svg\",width:e,height:e,viewBox:\"0 0 24 24\",fill:\"none\",stroke:t,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",...i},o.createElement(\"path\",{d:\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"}),o.createElement(\"polyline\",{points:\"9 22 9 12 15 12 15 22\"})));n.displayName=\"Home\",r=n}return r};export{s as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/feather-icons/home.js@0.0.29\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"activity\",\"airplay\",\"alert-circle\",\"alert-octagon\",\"alert-triangle\",\"align-center\",\"align-justify\",\"align-left\",\"align-right\",\"anchor\",\"aperture\",\"archive\",\"arrow-down\",\"arrow-down-circle\",\"arrow-down-left\",\"arrow-down-right\",\"arrow-left\",\"arrow-left-circle\",\"arrow-right\",\"arrow-right-circle\",\"arrow-up\",\"arrow-up-circle\",\"arrow-up-left\",\"arrow-up-right\",\"at-sign\",\"award\",\"bar-chart\",\"bar-chart-2\",\"battery\",\"battery-charging\",\"bell\",\"bell-off\",\"bluetooth\",\"bold\",\"book\",\"book-open\",\"bookmark\",\"box\",\"briefcase\",\"calendar\",\"camera\",\"camera-off\",\"cast\",\"check\",\"check-circle\",\"check-square\",\"chevron-down\",\"chevron-left\",\"chevron-right\",\"chevron-up\",\"chevrons-down\",\"chevrons-left\",\"chevrons-right\",\"chevrons-up\",\"chrome\",\"circle\",\"clipboard\",\"clock\",\"cloud\",\"cloud-drizzle\",\"cloud-lightning\",\"cloud-off\",\"cloud-rain\",\"cloud-snow\",\"code\",\"codepen\",\"codesandbox\",\"coffee\",\"columns\",\"command\",\"compass\",\"copy\",\"corner-down-left\",\"corner-down-right\",\"corner-left-down\",\"corner-left-up\",\"corner-right-down\",\"corner-right-up\",\"corner-up-left\",\"corner-up-right\",\"cpu\",\"credit-card\",\"crop\",\"crosshair\",\"database\",\"delete\",\"disc\",\"divide\",\"divide-circle\",\"divide-square\",\"dollar-sign\",\"download\",\"download-cloud\",\"dribbble\",\"droplet\",\"edit\",\"edit-2\",\"edit-3\",\"external-link\",\"eye\",\"eye-off\",\"facebook\",\"fast-forward\",\"feather\",\"figma\",\"file\",\"file-minus\",\"file-plus\",\"file-text\",\"film\",\"filter\",\"flag\",\"folder\",\"folder-minus\",\"folder-plus\",\"framer\",\"frown\",\"gift\",\"git-branch\",\"git-commit\",\"git-merge\",\"git-pull-request\",\"github\",\"gitlab\",\"globe\",\"grid\",\"hard-drive\",\"hash\",\"headphones\",\"heart\",\"help-circle\",\"hexagon\",\"home\",\"image\",\"inbox\",\"info\",\"instagram\",\"italic\",\"key\",\"layers\",\"layout\",\"life-buoy\",\"link\",\"link-2\",\"linkedin\",\"list\",\"loader\",\"lock\",\"log-in\",\"log-out\",\"mail\",\"map\",\"map-pin\",\"maximize\",\"maximize-2\",\"meh\",\"menu\",\"message-circle\",\"message-square\",\"mic\",\"mic-off\",\"minimize\",\"minimize-2\",\"minus\",\"minus-circle\",\"minus-square\",\"monitor\",\"moon\",\"more-horizontal\",\"more-vertical\",\"mouse-pointer\",\"move\",\"music\",\"navigation\",\"navigation-2\",\"octagon\",\"package\",\"paperclip\",\"pause\",\"pause-circle\",\"pen-tool\",\"percent\",\"phone\",\"phone-call\",\"phone-forwarded\",\"phone-incoming\",\"phone-missed\",\"phone-off\",\"phone-outgoing\",\"pie-chart\",\"play\",\"play-circle\",\"plus\",\"plus-circle\",\"plus-square\",\"pocket\",\"power\",\"printer\",\"radio\",\"refresh-ccw\",\"refresh-cw\",\"repeat\",\"rewind\",\"rotate-ccw\",\"rotate-cw\",\"rss\",\"save\",\"scissors\",\"search\",\"send\",\"server\",\"settings\",\"share\",\"share-2\",\"shield\",\"shield-off\",\"shopping-bag\",\"shopping-cart\",\"shuffle\",\"sidebar\",\"skip-back\",\"skip-forward\",\"slack\",\"slash\",\"sliders\",\"smartphone\",\"smile\",\"speaker\",\"square\",\"star\",\"stop-circle\",\"sun\",\"sunrise\",\"sunset\",\"tablet\",\"tag\",\"target\",\"terminal\",\"thermometer\",\"thumbs-down\",\"thumbs-up\",\"toggle-left\",\"toggle-right\",\"tool\",\"trash\",\"trash-2\",\"trello\",\"trending-down\",\"trending-up\",\"triangle\",\"truck\",\"tv\",\"twitch\",\"twitter\",\"type\",\"umbrella\",\"underline\",\"unlock\",\"upload\",\"upload-cloud\",\"user\",\"user-check\",\"user-minus\",\"user-plus\",\"user-x\",\"users\",\"video\",\"video-off\",\"voicemail\",\"volume\",\"volume-1\",\"volume-2\",\"volume-x\",\"watch\",\"wifi\",\"wifi-off\",\"wind\",\"x\",\"x-circle\",\"x-octagon\",\"x-square\",\"youtube\",\"zap\",\"zap-off\",\"zoom-in\",\"zoom-out\",];const moduleBaseUrl=\"https://framer.com/m/feather-icons/\";const uppercaseIconKeys=iconKeys.map(name=>name.charAt(0).toUpperCase()+name.slice(1));const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * FEATHER\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){let active=true;// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.29`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);// console.log(module.default)\nif(active)setSelectedIcon(module.default(React));}catch(e){console.log(e);if(active)setSelectedIcon(null);}return()=>{active=false;};}// Import module when new style or icon is selected\nuseEffect(()=>{importModule();},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Feather\";Icon.defaultProps={width:24,height:24,iconSelection:\"home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,optionTitles:uppercaseIconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Feather site](https://feathericons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Feather.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"qZu64dstq\",\"BJaMV_bQj\",\"kzm2MXN1v\"];const serializationHash=\"framer-oXvFo\";const variantClassNames={BJaMV_bQj:\"framer-v-1hxqxo8\",kzm2MXN1v:\"framer-v-14t4ow3\",qZu64dstq:\"framer-v-1oe7ing\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"qZu64dstq\",HHA:\"BJaMV_bQj\",Payroll:\"kzm2MXN1v\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qZu64dstq\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qZu64dstq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearj8cbls=activeVariantCallback(async(...args)=>{setVariant(\"kzm2MXN1v\",true);});useOnVariantChange(baseVariant,{BJaMV_bQj:onAppearj8cbls});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1oe7ing\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qZu64dstq\",ref:refBinding,style:{...style},...addPropertyOverrides({BJaMV_bQj:{\"data-framer-name\":\"HHA\",\"data-highlight\":true},kzm2MXN1v:{\"data-framer-name\":\"Payroll\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lr843x\",\"data-framer-name\":\"int\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CUVi_d3x8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 527 458\"><path d=\"M 232.369 236.164 L 235.321 236.164 C 235.524 236.164 235.697 236.292 235.757 236.48 L 238.49 245.439 C 238.618 245.861 239.228 245.861 239.363 245.446 L 242.307 236.472 C 242.367 236.292 242.54 236.164 242.744 236.164 L 245.544 236.164 C 245.74 236.164 245.921 236.292 245.981 236.472 L 248.842 245.213 C 248.977 245.627 249.58 245.627 249.715 245.213 L 252.501 236.48 C 252.561 236.292 252.734 236.171 252.937 236.171 L 255.798 236.171 C 256.107 236.171 256.325 236.465 256.227 236.751 L 251.228 251.349 C 251.168 251.53 250.995 251.65 250.799 251.65 L 248.021 251.65 C 247.826 251.65 247.652 251.53 247.592 251.349 L 244.513 242.503 C 244.37 242.104 243.79 242.104 243.647 242.503 L 240.568 251.349 C 240.508 251.53 240.335 251.65 240.139 251.65 L 237.15 251.65 C 236.954 251.65 236.774 251.522 236.713 251.341 L 231.94 236.743 C 231.85 236.457 232.068 236.164 232.377 236.164 Z M 257.116 243.926 C 257.116 239.153 260.699 235.878 265.043 235.878 C 266.73 235.878 268.326 236.382 269.47 237.323 C 269.756 237.557 270.2 237.346 270.208 236.984 L 270.208 236.608 C 270.215 236.367 270.419 236.171 270.667 236.171 L 273.076 236.171 C 273.325 236.171 273.536 236.367 273.536 236.615 L 273.536 251.213 C 273.536 251.454 273.332 251.658 273.076 251.658 L 270.667 251.658 C 270.419 251.658 270.215 251.462 270.208 251.221 L 270.208 250.844 C 270.193 250.476 269.749 250.265 269.463 250.506 C 268.311 251.447 266.722 251.951 265.036 251.951 C 260.699 251.951 257.108 248.646 257.108 243.933 Z M 265.525 248.608 C 268.055 248.608 270.072 246.884 270.072 243.926 C 270.072 240.967 268.055 239.213 265.525 239.213 C 262.845 239.213 260.857 241.118 260.857 243.926 C 260.857 246.734 262.845 248.608 265.525 248.608 Z M 282.427 236.164 L 283.902 236.164 C 284.151 236.164 284.362 236.359 284.362 236.608 L 284.362 239.002 C 284.362 239.243 284.158 239.446 283.902 239.446 L 282.788 239.446 C 281.433 239.446 280.891 239.973 280.891 241.321 L 280.891 251.213 C 280.891 251.454 280.688 251.658 280.432 251.658 L 277.609 251.658 C 277.36 251.658 277.149 251.462 277.149 251.213 L 277.149 241.411 C 277.149 237.782 279.016 236.171 282.419 236.171 Z M 285.438 243.948 C 285.438 239.205 288.932 235.84 293.547 235.84 C 297.665 235.84 301.384 238.49 301.218 244.28 C 301.218 244.52 301.007 244.709 300.759 244.709 L 289.474 244.709 C 289.187 244.709 288.962 244.965 289.029 245.243 C 289.526 247.411 291.333 248.864 293.848 248.864 C 295.692 248.864 297.273 248.089 298.433 246.644 C 298.583 246.455 298.877 246.425 299.073 246.576 L 300.827 247.931 C 301.022 248.081 301.053 248.36 300.902 248.556 C 299.328 250.566 296.942 252.004 293.757 252.004 C 288.788 252.004 285.438 248.608 285.438 243.956 Z M 297.077 242.104 C 297.386 242.104 297.612 241.818 297.514 241.532 C 296.919 239.74 295.421 238.821 293.509 238.821 C 291.597 238.821 289.978 239.883 289.27 241.471 C 289.142 241.765 289.361 242.096 289.684 242.096 L 297.07 242.096 Z\" fill=\"rgb(241,89,58)\"></path><path d=\"M 225.804 220.956 C 225.692 220.67 225.91 220.354 226.234 220.354 L 229.32 220.354 C 229.511 220.35 229.683 220.468 229.749 220.647 L 233.1 229.847 C 233.243 230.239 233.815 230.239 233.958 229.847 L 237.278 220.647 C 237.346 220.467 237.511 220.354 237.707 220.354 L 240.583 220.354 C 240.899 220.354 241.118 220.662 241.012 220.949 L 235.418 235.546 C 235.351 235.72 235.185 235.833 234.989 235.833 L 231.918 235.833 C 231.729 235.833 231.556 235.72 231.489 235.546 L 225.804 220.949 Z M 241.84 228.146 C 241.84 223.403 245.334 220.038 249.949 220.038 C 254.067 220.038 257.786 222.688 257.62 228.477 C 257.62 228.718 257.409 228.906 257.161 228.906 L 245.876 228.906 C 245.59 228.906 245.364 229.162 245.431 229.441 C 245.928 231.609 247.735 233.062 250.25 233.062 C 252.094 233.062 253.675 232.287 254.835 230.841 C 254.985 230.653 255.279 230.623 255.475 230.773 L 257.236 232.128 C 257.432 232.279 257.462 232.558 257.312 232.753 C 255.738 234.763 253.351 236.201 250.167 236.201 C 245.198 236.201 241.848 232.806 241.848 228.153 Z M 253.479 226.301 C 253.788 226.301 254.014 226.015 253.916 225.729 C 253.321 223.937 251.823 223.019 249.911 223.019 C 247.999 223.019 246.38 224.08 245.672 225.669 C 245.544 225.963 245.763 226.294 246.086 226.294 L 253.472 226.294 Z M 284.723 228.146 C 284.723 223.403 288.216 220.038 292.831 220.038 C 296.949 220.038 300.669 222.688 300.503 228.477 C 300.503 228.718 300.292 228.906 300.044 228.906 L 288.758 228.906 C 288.472 228.906 288.246 229.162 288.314 229.441 C 288.811 231.609 290.618 233.062 293.132 233.062 C 294.977 233.062 296.558 232.287 297.717 230.841 C 297.868 230.653 298.162 230.623 298.357 230.773 L 300.111 232.128 C 300.307 232.279 300.337 232.558 300.187 232.753 C 298.613 234.763 296.227 236.201 293.042 236.201 C 288.073 236.201 284.723 232.806 284.723 228.153 Z M 296.362 226.301 C 296.671 226.301 296.897 226.015 296.799 225.729 C 296.204 223.937 294.706 223.019 292.794 223.019 C 290.881 223.019 289.263 224.08 288.555 225.669 C 288.427 225.963 288.645 226.294 288.969 226.294 L 296.355 226.294 Z M 280.153 220.655 L 276.833 229.855 C 276.69 230.246 276.118 230.246 275.975 229.855 L 272.625 220.655 C 272.557 220.477 272.386 220.36 272.195 220.361 L 265.766 220.361 C 262.363 220.361 260.496 221.972 260.496 225.601 L 260.496 235.403 C 260.496 235.644 260.699 235.848 260.955 235.848 L 263.779 235.848 C 264.027 235.848 264.238 235.652 264.238 235.403 L 264.238 225.511 C 264.238 224.163 264.78 223.636 266.135 223.636 L 269.417 223.636 C 269.606 223.636 269.779 223.749 269.847 223.922 L 274.371 235.554 C 274.439 235.727 274.605 235.84 274.8 235.84 L 277.872 235.84 C 278.06 235.84 278.233 235.727 278.301 235.554 L 283.895 220.956 C 284.008 220.67 283.782 220.361 283.466 220.361 L 280.59 220.361 C 280.399 220.358 280.227 220.476 280.161 220.655 Z\" fill=\"rgb(38,50,109)\"></path><path d=\"M 263.5 326.936 C 313.711 326.936 354.415 286.232 354.415 236.021 C 354.415 185.81 313.711 145.106 263.5 145.106 C 213.289 145.106 172.585 185.81 172.585 236.021 C 172.585 286.232 213.289 326.936 263.5 326.936 Z\" fill=\"transparent\" stroke-width=\"0.7528571428571429\" stroke=\"rgb(46,49,146)\" stroke-miterlimit=\"7.5285714285714285\" stroke-dasharray=\"\"></path><g transform=\"translate(279.604 142.757)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"rgb(208,41,39)\"></path><path d=\"M 34.353 29.015 C 34.349 30.446 33.779 31.816 32.767 32.828 C 31.756 33.839 30.385 34.409 28.955 34.413 L 26.877 34.413 L 26.877 32.042 L 28.955 32.042 C 30.626 32.042 31.981 30.687 31.981 29.015 C 31.981 27.344 30.626 25.989 28.955 25.989 L 26.877 25.989 L 26.877 23.617 L 28.955 23.617 C 30.385 23.621 31.756 24.191 32.767 25.203 C 33.779 26.214 34.349 27.585 34.353 29.015 Z M 22.842 23.617 L 22.842 28.006 L 19.108 28.006 L 17.745 30.378 L 25.221 30.378 L 25.221 23.617 Z M 49.779 26.997 C 49.779 31.093 46.459 34.413 42.363 34.413 L 42.363 38.448 L 35.956 38.448 L 35.956 35.301 C 34.172 37.327 31.594 38.475 28.895 38.448 L 22.842 38.448 L 22.842 34.413 L 18.099 34.413 L 15.727 38.448 L 8.251 38.448 L 19.228 19.582 L 28.955 19.582 C 31.643 19.604 34.202 20.741 36.017 22.729 L 36.017 19.582 L 42.423 19.582 C 46.496 19.604 49.786 22.925 49.779 26.997 Z M 28.955 36.077 C 31.69 36.079 34.182 34.509 35.362 32.042 L 38.388 32.042 L 38.388 36.077 L 40.052 36.077 L 40.052 32.042 L 42.423 32.042 C 45.202 32.042 47.46 29.791 47.468 27.013 L 47.468 26.997 C 47.444 24.198 45.163 21.944 42.363 21.953 L 38.328 21.953 L 38.328 28.006 L 35.956 28.006 C 35.429 24.543 32.463 21.976 28.955 21.953 L 20.651 21.953 L 12.407 36.069 L 14.365 36.069 L 16.736 32.034 L 25.221 32.034 L 25.221 36.069 L 28.955 36.069 Z M 42.363 23.617 L 39.992 23.617 L 39.992 25.989 L 42.363 25.989 C 42.92 25.989 43.372 26.433 43.372 26.982 L 43.372 26.997 C 43.365 27.262 43.256 27.515 43.068 27.702 C 42.88 27.89 42.628 27.999 42.363 28.006 L 39.992 28.006 L 39.992 30.378 L 42.363 30.378 C 44.23 30.378 45.744 28.864 45.744 26.997 C 45.721 25.138 44.223 23.632 42.363 23.617 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 45.683 37.266 C 45.683 37.793 45.262 38.215 44.735 38.215 C 44.208 38.215 43.786 37.793 43.786 37.266 C 43.786 36.739 44.208 36.318 44.735 36.318 C 45.254 36.318 45.676 36.724 45.683 37.244 Z M 45.924 37.266 C 45.924 36.611 45.39 36.077 44.735 36.077 C 44.08 36.077 43.545 36.611 43.545 37.266 C 43.545 37.921 44.08 38.456 44.735 38.456 C 45.39 38.456 45.924 37.921 45.924 37.266 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 44.795 36.732 C 44.923 36.732 45.036 36.837 45.036 36.965 C 45.036 37.093 44.931 37.206 44.803 37.206 L 44.562 37.206 L 44.562 36.732 L 44.803 36.732 Z M 45.089 36.672 C 45.007 36.599 44.904 36.557 44.795 36.551 L 44.321 36.551 L 44.321 37.974 L 44.501 37.974 L 44.501 37.44 L 44.742 37.44 L 45.036 37.974 L 45.277 37.974 L 44.923 37.379 C 44.983 37.379 45.043 37.319 45.104 37.259 C 45.149 37.191 45.171 37.108 45.164 37.018 C 45.217 36.899 45.193 36.759 45.104 36.664\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(260.308 294.917)\"><g><defs><linearGradient id=\"idss12662989983_10g384662880\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(247,143,38)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(236,37,39)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"url(#idss12662989983_10g384662880)\"></path></g></g><path d=\"M 277.548 325.023 C 277.488 325.039 277.435 325.084 277.435 325.151 L 277.435 325.204 C 278.67 331.332 282.186 335.759 286.342 335.759 C 287.667 335.759 291.792 335.759 293.178 326.778 C 293.2 326.612 292.997 326.552 292.952 326.702 C 292.304 328.908 290.987 332.484 289.323 332.484 C 288.126 332.484 286.741 330.64 285.288 325.114 C 285.273 325.06 285.229 325.02 285.175 325.008 L 277.556 325.023 Z M 294.299 325.023 C 294.239 325.023 294.186 325.076 294.186 325.136 C 293.712 329.864 292.508 333.297 290.43 335.195 C 290.369 335.247 290.369 335.345 290.415 335.398 L 290.452 335.435 C 291.055 335.624 291.672 335.729 292.297 335.729 C 296.475 335.729 299.991 331.219 301.203 325.144 C 301.203 325.069 301.15 325.016 301.09 325.001 L 294.299 325.016 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(277.435 325.008)\"><path d=\"M 0 0 L 23.79 0 L 23.79 10.736 L 0 10.736 Z\" fill=\"rgb(255,255,255)\"></path></g><path d=\"M 277.435 322.69 C 277.435 322.765 277.488 322.818 277.548 322.833 L 284.347 322.833 C 284.407 322.833 284.46 322.78 284.46 322.72 C 284.941 317.992 286.138 314.559 288.216 312.662 C 288.277 312.601 288.277 312.511 288.216 312.443 C 288.156 312.375 288.194 312.421 288.179 312.421 C 287.582 312.23 286.96 312.131 286.334 312.127 C 282.171 312.112 278.64 316.622 277.428 322.697 M 292.304 312.104 C 290.979 312.104 286.854 312.104 285.468 321.086 C 285.446 321.252 285.649 321.312 285.694 321.161 C 286.342 318.948 287.659 315.364 289.323 315.364 C 290.52 315.364 291.905 317.209 293.358 322.735 C 293.373 322.788 293.411 322.825 293.471 322.84 L 301.09 322.84 C 301.165 322.825 301.218 322.765 301.203 322.69 L 301.203 322.667 C 299.968 316.539 296.453 312.112 292.297 312.112 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(277.435 312.097)\"><path d=\"M 0 0 L 23.79 0 L 23.79 10.736 L 0 10.736 Z\" fill=\"rgb(255,255,255)\"></path></g><path d=\"M 263.5 440.173 C 376.25 440.173 467.652 348.771 467.652 236.021 C 467.652 123.271 376.25 31.868 263.5 31.868 C 150.75 31.868 59.348 123.271 59.348 236.021 C 59.348 348.771 150.75 440.173 263.5 440.173 Z\" fill=\"transparent\" stroke-width=\"0.7528571428571429\" stroke=\"rgb(46,49,146)\" stroke-miterlimit=\"7.5285714285714285\" stroke-dasharray=\"\"></path><g transform=\"translate(94.702 353.481)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"rgb(40,79,135)\"></path></g><path d=\"M 133.587 396.44 L 127.73 396.44 L 123.747 390.341 L 119.765 396.5 L 113.847 396.5 L 120.788 386.419 L 114.148 376.82 L 120.005 376.82 L 123.687 382.557 L 127.368 376.82 L 133.346 376.82 L 126.706 386.539 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.55\"></path><path d=\"M 127.85 372.717 C 127.85 375.073 125.976 376.941 123.627 376.941 C 121.278 376.941 119.403 375.066 119.403 372.717 C 119.403 370.368 121.278 368.493 123.627 368.493 C 125.976 368.493 127.85 370.368 127.85 372.717 Z M 118.071 386.6 C 118.071 387.744 117.107 388.715 115.955 388.715 C 114.803 388.715 113.84 387.752 113.84 386.6 C 113.84 385.448 114.803 384.484 115.955 384.484 C 117.107 384.484 118.071 385.448 118.071 386.6 Z M 133.226 386.6 C 133.226 387.744 132.262 388.715 131.11 388.715 C 129.958 388.715 128.995 387.752 128.995 386.6 C 128.995 385.448 129.958 384.484 131.11 384.484 C 132.262 384.484 133.226 385.448 133.226 386.6 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 123.807 390.341 L 119.825 396.44 L 113.847 396.44 L 120.788 386.359 L 114.148 376.76 L 119.945 376.76 L 123.687 382.497 L 126.706 386.479 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(294.134 18.114)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"rgb(121,62,152)\"></path></g><path d=\"M 322.584 46.557 L 311.721 46.557 L 311.721 35.693 L 322.584 35.693 Z\" fill=\"rgb(240,84,35)\"></path><path d=\"M 334.585 46.557 L 323.721 46.557 L 323.721 35.693 L 334.585 35.693 Z\" fill=\"rgb(132,196,65)\"></path><path d=\"M 322.584 58.557 L 311.721 58.557 L 311.721 47.694 L 322.584 47.694 Z\" fill=\"rgb(45,171,226)\"></path><path d=\"M 334.585 58.557 L 323.721 58.557 L 323.721 47.694 L 334.585 47.694 Z\" fill=\"rgb(249,188,21)\"></path><path d=\"M 263.5 381.796 C 344.01 381.796 409.276 316.531 409.276 236.021 C 409.276 155.511 344.01 90.245 263.5 90.245 C 182.99 90.245 117.724 155.511 117.724 236.021 C 117.724 316.531 182.99 381.796 263.5 381.796 Z\" fill=\"transparent\" stroke-width=\"0.7528571428571429\" stroke=\"rgb(46,49,146)\" stroke-miterlimit=\"7.5285714285714285\" stroke-dasharray=\"\"></path><g transform=\"translate(147.334 207.006)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"rgb(46,160,72)\"></path></g><path d=\"M 162.685 236.021 C 162.685 240.086 165.982 243.384 170.048 243.384 L 171.102 243.384 L 171.102 240.651 L 170.048 240.651 C 167.496 240.673 165.403 238.618 165.388 236.058 C 165.376 234.831 165.854 233.649 166.716 232.775 C 167.578 231.9 168.752 231.405 169.98 231.398 L 172.577 231.398 L 172.577 245.695 C 172.577 247.204 173.801 248.428 175.31 248.428 L 175.31 228.658 L 170.055 228.658 C 165.99 228.658 162.692 231.955 162.692 236.021 Z M 182.658 228.658 L 181.604 228.658 L 181.604 231.391 L 182.658 231.391 C 185.21 231.421 187.258 233.514 187.236 236.066 C 187.204 238.581 185.173 240.612 182.658 240.643 L 180.136 240.643 L 180.136 226.346 C 180.135 224.838 178.912 223.615 177.403 223.614 L 177.403 243.384 L 182.658 243.384 C 186.724 243.384 190.021 240.086 190.021 236.021 C 190.021 231.955 186.724 228.658 182.658 228.658 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(164.936 79.11)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"rgb(253,187,25)\"></path></g><path d=\"M 181.627 107.546 C 181.378 108.058 181.032 108.524 180.897 109.089 C 180.723 109.819 180.859 110.211 181.461 110.655 L 181.461 112.469 C 181.461 112.59 181.469 112.71 181.401 112.816 C 179.933 112.56 178.773 111.189 178.758 109.721 C 178.751 108.991 178.886 108.291 179.218 107.651 C 179.925 106.296 180.716 104.993 181.491 103.676 C 181.567 103.796 181.574 103.932 181.574 104.075 L 181.574 107.169 C 181.574 107.297 181.567 107.425 181.634 107.538 Z M 191.587 95.026 C 191.964 95.342 192.242 95.741 192.483 96.155 C 193.326 97.608 194.162 99.061 195.005 100.514 C 195.028 100.552 195.043 100.597 195.058 100.634 C 194.952 100.725 194.998 100.838 194.998 100.943 L 194.998 104.098 C 194.998 104.226 195.013 104.354 194.885 104.444 C 194.433 103.668 193.974 102.901 193.529 102.125 C 192.822 100.898 192.114 99.671 191.414 98.444 C 191.625 98.421 191.587 98.263 191.587 98.135 Z M 206.787 103.518 C 208.767 104.165 209.626 106.017 208.91 108.095 C 208.745 108.585 208.496 109.029 208.233 109.473 C 207.721 110.354 207.209 111.227 206.697 112.108 C 206.584 112.033 206.622 111.912 206.622 111.807 L 206.622 108.675 C 206.622 108.547 206.652 108.411 206.494 108.351 C 206.659 108.005 206.878 107.689 206.983 107.312 C 207.134 106.77 207.156 106.251 206.727 105.807 C 206.727 105.686 206.727 105.573 206.735 105.453 C 206.757 104.813 206.674 104.165 206.787 103.525 Z M 199.628 112.371 L 200.335 112.371 C 200.38 112.251 200.29 112.206 200.252 112.146 C 199.914 111.694 199.575 111.235 199.221 110.79 C 199.123 110.67 199.116 110.587 199.221 110.459 C 199.575 110.007 199.921 109.541 200.268 109.081 C 200.365 108.953 200.418 108.901 200.539 109.066 C 201.201 109.955 201.894 110.821 202.534 111.724 C 203.347 112.861 202.714 114.261 201.329 114.419 C 200.764 114.479 200.2 114.464 199.628 114.419 Z M 187.845 103.887 L 187.507 103.909 C 187.853 104.369 188.184 104.813 188.515 105.242 C 188.802 105.618 188.809 105.618 188.515 106.002 C 188.222 106.401 187.913 106.793 187.627 107.192 C 187.529 107.327 187.476 107.32 187.371 107.192 C 186.709 106.311 186.031 105.445 185.384 104.557 C 184.548 103.397 185.18 101.982 186.603 101.831 C 187.014 101.79 187.427 101.79 187.838 101.831 L 187.838 103.879 Z M 189.11 101.847 C 189.878 101.801 190.646 101.824 191.421 101.847 L 191.421 105.799 C 191.421 106.002 191.437 106.198 191.542 106.371 C 190.887 107.29 190.202 108.186 189.502 109.066 C 189.374 108.969 189.381 108.833 189.381 108.69 L 189.381 106.213 C 189.381 106.108 189.426 105.987 189.306 105.912 L 190.812 103.879 L 189.11 103.879 L 189.11 101.831 Z M 192.475 110.881 C 193.123 111.987 193.763 113.087 194.403 114.193 C 194.606 114.547 194.802 114.909 195.005 115.27 L 195.005 118.665 C 195.005 118.846 194.982 119.012 194.885 119.162 C 194.711 118.869 194.523 118.575 194.358 118.274 C 193.672 117.077 192.987 115.887 192.302 114.69 C 192.408 114.607 192.363 114.487 192.363 114.382 L 192.363 111.317 C 192.363 111.159 192.363 111.009 192.483 110.881 Z M 197.211 112.168 C 197.226 112.236 197.06 112.296 197.211 112.371 C 197.151 112.597 197.151 112.823 197.158 113.049 L 197.158 114.419 C 196.759 114.464 196.345 114.472 195.954 114.382 C 194.726 114.111 194.222 112.778 194.967 111.732 C 195.668 110.76 196.413 109.819 197.143 108.863 C 197.218 109.127 197.218 109.405 197.218 109.676 L 197.218 112.168 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 192.475 110.881 C 192.355 111.001 192.355 111.159 192.355 111.317 L 192.355 114.382 C 192.355 114.487 192.4 114.6 192.295 114.69 C 191.527 113.365 190.751 112.033 189.983 110.708 C 189.833 110.452 189.547 110.196 189.592 109.925 C 189.63 109.669 189.916 109.45 190.089 109.217 C 190.352 108.871 190.616 108.517 190.902 108.133 L 192.468 110.888 Z M 187.958 96.697 C 187.138 97.932 186.46 99.257 185.7 100.521 C 185.647 100.604 185.594 100.687 185.534 100.77 C 185.481 100.612 185.466 100.454 185.466 100.288 L 185.466 97.224 C 185.466 97.126 185.527 96.991 185.368 96.953 C 185.865 95.997 186.422 95.101 187.356 94.499 C 187.507 94.401 187.657 94.295 187.838 94.25 C 187.928 94.333 187.891 94.438 187.891 94.536 L 187.891 96.351 C 187.891 96.471 187.891 96.592 187.958 96.697 Z M 181.627 107.546 C 181.552 107.433 181.567 107.305 181.567 107.177 L 181.567 104.082 C 181.567 103.947 181.567 103.811 181.484 103.683 C 182.116 102.554 182.756 101.425 183.434 100.318 C 183.577 100.386 183.547 100.514 183.547 100.627 L 183.547 103.781 C 183.547 103.879 183.479 104.015 183.644 104.06 C 182.989 105.234 182.327 106.401 181.627 107.546 Z M 205.018 115.014 C 204.371 116.136 203.723 117.265 203.076 118.387 C 202.948 118.319 202.993 118.191 202.993 118.093 L 202.993 115.18 C 202.993 114.984 202.963 114.796 202.872 114.623 C 203.369 113.757 203.859 112.891 204.356 112.025 C 204.499 111.769 204.657 111.521 204.807 111.272 C 204.928 111.37 204.92 111.513 204.92 111.649 L 204.92 114.743 C 204.92 114.841 204.86 114.976 205.018 115.014 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 183.644 104.052 C 183.486 104.007 183.547 103.872 183.547 103.774 L 183.547 100.619 C 183.547 100.506 183.577 100.371 183.434 100.311 C 184.051 99.174 184.706 98.06 185.368 96.953 C 185.534 96.991 185.466 97.126 185.466 97.224 L 185.466 100.288 C 185.466 100.454 185.481 100.612 185.534 100.77 C 184.924 101.877 184.292 102.968 183.644 104.052 Z M 202.872 114.615 C 202.963 114.788 202.993 114.976 202.993 115.172 L 202.993 118.086 C 202.993 118.191 202.948 118.312 203.076 118.379 C 202.488 119.358 202.037 120.427 201.194 121.24 C 201.133 121.293 201.066 121.346 201.005 121.398 C 201.005 121.007 201.013 120.615 201.005 120.224 C 200.983 119.471 201.073 118.711 200.945 117.958 C 201.562 116.828 202.21 115.714 202.872 114.615 Z M 194.885 119.155 C 194.982 119.004 195.005 118.839 195.005 118.658 L 195.005 115.262 C 195.585 116.256 196.172 117.25 196.752 118.251 C 196.887 118.485 197.015 118.733 197.151 118.974 C 197.008 119.042 197.038 119.17 197.038 119.283 L 197.038 121.79 C 196.526 121.519 196.134 121.105 195.788 120.653 C 195.434 120.186 195.148 119.674 194.885 119.155 Z M 197.211 112.168 L 197.211 109.676 C 197.211 109.405 197.211 109.127 197.136 108.863 C 197.873 107.854 198.626 106.845 199.409 105.867 C 199.462 106.183 199.469 106.499 199.469 106.815 L 199.469 108.841 C 199.469 108.938 199.432 109.044 199.522 109.127 C 198.777 110.158 198.009 111.174 197.218 112.176 Z M 185.474 110.783 C 186.091 110.316 186.445 109.631 186.919 109.044 C 187.213 108.682 187.492 108.314 187.778 107.945 C 187.883 108.035 187.898 108.155 187.898 108.291 L 187.898 110.821 C 187.898 110.918 187.86 111.024 187.958 111.099 C 187.424 111.92 186.761 112.59 185.79 112.876 C 185.707 112.898 185.609 112.914 185.527 112.929 C 185.489 112.703 185.466 112.484 185.466 112.251 C 185.474 111.762 185.466 111.265 185.466 110.775 Z M 205.018 115.014 C 204.852 114.969 204.92 114.833 204.92 114.743 L 204.92 111.649 C 204.92 111.513 204.935 111.37 204.807 111.272 C 205.342 110.279 205.914 109.307 206.494 108.344 C 206.652 108.404 206.622 108.547 206.622 108.667 L 206.622 111.799 C 206.622 111.905 206.576 112.025 206.697 112.1 C 206.14 113.072 205.575 114.043 205.018 115.006 Z M 191.542 106.371 C 191.437 106.191 191.421 105.995 191.421 105.799 L 191.421 101.847 C 192.092 101.801 192.649 102.027 193.025 102.592 C 193.432 103.209 193.379 103.864 192.995 104.451 C 192.558 105.121 192.054 105.754 191.542 106.371 Z M 196.398 102.946 C 197.03 104.037 197.67 105.129 198.303 106.221 C 198.348 106.296 198.348 106.349 198.295 106.416 C 197.866 106.973 197.444 107.538 196.993 108.133 L 196.157 106.642 C 196.323 106.605 196.262 106.469 196.262 106.371 L 196.262 103.33 C 196.262 103.187 196.247 103.036 196.39 102.938 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 197.038 121.797 L 197.038 119.29 C 197.038 119.177 197.008 119.049 197.151 118.982 C 197.331 119.222 197.489 119.478 197.693 119.697 C 198.227 120.261 198.656 120.344 199.409 120.043 C 199.439 120.773 199.349 121.504 199.462 122.226 C 198.589 122.437 197.783 122.287 197.038 121.805 Z M 196.398 102.946 C 196.247 103.044 196.27 103.194 196.27 103.337 L 196.27 106.379 C 196.27 106.477 196.33 106.612 196.164 106.65 C 195.72 105.927 195.291 105.197 194.892 104.451 C 195.02 104.369 195.005 104.233 195.005 104.105 L 195.005 100.951 C 195.005 100.845 194.96 100.732 195.065 100.642 C 195.54 101.395 195.976 102.17 196.398 102.946 Z M 200.772 104.158 C 201.374 103.571 202.089 103.269 202.933 103.247 L 202.933 105.31 C 202.511 105.377 202.195 105.603 201.939 105.942 C 201.615 106.364 201.291 106.785 200.968 107.199 C 200.855 107.124 200.892 107.004 200.892 106.898 L 200.892 104.459 C 200.892 104.346 200.915 104.218 200.772 104.158 Z M 197.151 114.419 L 197.151 113.049 C 197.151 112.823 197.151 112.597 197.203 112.371 L 199.628 112.371 L 199.628 114.419 C 198.799 114.457 197.971 114.457 197.151 114.419 Z M 187.958 111.107 C 187.86 111.031 187.898 110.918 187.898 110.828 L 187.898 108.299 C 187.898 108.163 187.883 108.043 187.778 107.952 C 188.267 107.26 188.779 106.582 189.306 105.919 C 189.426 105.995 189.381 106.115 189.381 106.221 L 189.381 108.698 C 189.381 108.833 189.374 108.976 189.502 109.074 C 188.982 109.752 188.515 110.459 187.958 111.114 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 200.772 104.158 C 200.915 104.218 200.892 104.346 200.892 104.459 L 200.892 106.898 C 200.892 107.004 200.847 107.124 200.968 107.199 C 200.486 107.839 199.996 108.479 199.515 109.119 C 199.432 109.036 199.462 108.931 199.462 108.833 L 199.462 106.808 C 199.462 106.492 199.462 106.175 199.402 105.859 C 199.831 105.272 200.222 104.647 200.772 104.158 Z M 191.587 95.026 L 191.587 98.135 C 191.587 98.27 191.625 98.429 191.414 98.444 C 191.233 98.142 191.045 97.841 190.879 97.533 C 190.631 97.073 190.33 96.652 189.931 96.305 C 189.991 96.065 189.991 95.824 189.991 95.575 L 189.991 94.077 C 190.623 94.22 191.135 94.566 191.587 95.018 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 189.991 94.077 L 189.991 95.575 C 189.991 95.824 189.991 96.065 189.931 96.305 C 189.125 95.854 188.794 95.922 187.958 96.697 C 187.891 96.592 187.891 96.471 187.891 96.351 L 187.891 94.536 C 187.891 94.438 187.928 94.333 187.838 94.25 C 188.53 93.896 189.253 93.866 189.991 94.077 Z M 199.462 122.219 C 199.349 121.496 199.432 120.766 199.409 120.036 C 200.064 119.584 200.388 118.884 200.764 118.229 C 200.817 118.138 200.855 118.025 200.938 117.958 C 201.066 118.711 200.975 119.471 200.998 120.224 C 201.013 120.615 200.998 121.007 200.998 121.398 C 200.561 121.812 200.049 122.091 199.454 122.219 Z M 185.474 110.783 L 185.474 112.259 C 185.474 112.484 185.496 112.71 185.534 112.936 C 184.819 113.094 184.104 113.004 183.388 113.011 L 183.388 110.949 C 183.825 110.949 184.262 110.933 184.691 110.949 C 184.969 110.949 185.233 110.918 185.481 110.79 Z M 202.933 105.317 L 202.933 103.254 L 204.973 103.254 L 204.973 105.317 Z M 183.381 110.949 L 183.381 113.011 C 182.711 113.042 182.041 113.026 181.393 112.816 C 181.461 112.71 181.454 112.59 181.454 112.469 L 181.454 110.655 C 182.063 110.949 182.718 110.941 183.381 110.949 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 204.965 105.31 L 204.965 103.247 C 205.59 103.217 206.193 103.307 206.78 103.51 C 206.667 104.15 206.75 104.798 206.727 105.438 C 206.727 105.558 206.727 105.671 206.72 105.791 C 206.2 105.4 205.59 105.325 204.965 105.31 Z M 189.11 101.847 L 189.11 103.894 L 187.845 103.894 L 187.845 101.847 C 188.267 101.809 188.689 101.809 189.11 101.847 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(375.713 246.056)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"rgb(18,18,69)\"></path></g><path d=\"M 404.073 272.165 C 402.259 271.616 400.46 271.586 398.495 272.354 L 405.564 260.248 C 406.106 261.189 406.611 262.047 407.1 262.913 C 408.312 265.043 409.562 267.151 410.729 269.305 C 411.813 271.307 411.828 273.37 410.616 275.327 C 410.187 276.012 409.517 276.547 408.937 277.127 C 408.907 277.157 408.576 277.006 408.53 276.886 C 408.131 275.726 407.514 274.71 406.648 273.844 C 406.392 273.588 406.106 273.355 405.828 273.106 L 405.677 273.001 L 406.249 272.399 L 404.081 272.158 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 408.689 285.258 C 407.145 285.077 405.91 284.369 404.932 283.157 C 404.314 282.389 403.87 281.561 403.667 280.605 C 403.494 279.769 403.516 279.822 404.367 279.852 C 405.293 279.882 406.234 279.792 407.16 279.649 C 408.704 279.408 409.946 278.58 411 277.466 C 412.069 276.329 412.694 274.966 412.897 273.219 C 413.304 273.904 413.62 274.431 413.928 274.966 C 415.261 277.285 416.586 279.611 417.919 281.93 C 418.513 282.969 419.131 284 419.733 285.032 C 419.56 285.107 419.387 285.243 419.213 285.243 C 415.705 285.258 412.197 285.258 408.689 285.258 Z M 404.623 280.153 L 404.623 280.266 L 406.332 280.266 L 406.332 280.153 Z M 404.277 280.176 L 404.141 280.176 L 404.126 280.507 L 404.262 280.507 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 392.856 282.246 C 393.014 281.945 393.15 281.629 393.323 281.335 C 394.301 279.641 395.258 277.925 396.289 276.261 C 397.012 275.094 397.983 274.145 399.346 273.784 C 400.113 273.581 400.949 273.543 401.747 273.558 C 402.425 273.573 403.095 273.754 403.765 273.889 C 404.126 273.965 404.194 274.145 403.915 274.454 C 402.583 275.937 401.965 277.691 401.958 279.671 L 401.514 281.802 L 401.717 281.877 L 401.965 281.403 C 402.033 281.282 402.101 281.17 402.169 281.049 L 403.381 283.714 C 403.012 283.948 402.711 284.219 402.696 284.776 L 403.659 284.076 L 404.548 284.987 L 404.691 285.115 C 404.533 285.16 404.367 285.25 404.209 285.25 C 400.038 285.25 395.86 285.258 391.689 285.25 C 391.531 285.25 391.38 285.115 391.222 285.039 L 391.915 283.85 L 392.66 284.053 L 392.299 283.112 C 392.299 283.112 392.314 283.059 392.344 283.052 C 392.826 282.984 392.803 282.592 392.871 282.254 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 391.215 285.032 C 391.373 285.107 391.523 285.243 391.681 285.243 C 395.852 285.258 400.031 285.25 404.201 285.243 C 404.36 285.243 404.525 285.152 404.683 285.107 L 405.03 285.34 L 391.011 285.34 L 391.207 285.032 Z M 408.689 285.258 C 412.197 285.258 415.705 285.258 419.213 285.243 C 419.387 285.243 419.56 285.107 419.733 285.032 L 419.951 285.37 L 409.66 285.37 C 409.336 285.37 409.012 285.303 408.689 285.265 Z M 404.073 272.165 L 406.242 272.406 L 405.67 273.016 C 405.135 272.738 404.6 272.451 404.066 272.173 Z M 402.169 281.042 C 402.101 281.162 402.033 281.275 401.965 281.395 L 401.717 281.87 L 401.514 281.794 L 401.958 279.664 Z M 403.584 283.857 L 403.659 284.061 C 403.358 284.279 403.057 284.497 402.696 284.761 C 402.711 284.204 403.019 283.933 403.381 283.699 Z M 392.284 283.104 L 392.645 284.045 L 391.9 283.842 L 392.276 283.104 Z M 392.856 282.246 C 392.788 282.585 392.811 282.976 392.329 283.044 Z M 404.623 280.146 L 406.332 280.146 L 406.332 280.259 L 404.631 280.259 L 404.631 280.146 Z M 404.269 280.176 L 404.254 280.515 L 404.119 280.515 L 404.134 280.168 L 404.269 280.168 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 427.751 364.067 C 431.031 364.067 433.691 361.407 433.691 358.127 C 433.691 354.846 431.031 352.187 427.751 352.187 C 424.47 352.187 421.811 354.846 421.811 358.127 C 421.811 361.407 424.47 364.067 427.751 364.067 Z M 74.096 165.32 C 77.377 165.32 80.036 162.66 80.036 159.38 C 80.036 156.099 77.377 153.44 74.096 153.44 C 70.816 153.44 68.156 156.099 68.156 159.38 C 68.156 162.66 70.816 165.32 74.096 165.32 Z M 177.426 357.908 C 180.706 357.908 183.366 355.249 183.366 351.968 C 183.366 348.688 180.706 346.028 177.426 346.028 C 174.145 346.028 171.486 348.688 171.486 351.968 C 171.486 355.249 174.145 357.908 177.426 357.908 Z\" fill=\"rgb(33,64,154)\"></path></svg>',svgContentId:12662989983,withExternalLayout:true,...addPropertyOverrides({BJaMV_bQj:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 527 458\"><path d=\"M 232.369 236.164 L 235.321 236.164 C 235.524 236.164 235.697 236.292 235.757 236.48 L 238.49 245.439 C 238.618 245.861 239.228 245.861 239.363 245.446 L 242.307 236.472 C 242.367 236.292 242.54 236.164 242.744 236.164 L 245.544 236.164 C 245.74 236.164 245.921 236.292 245.981 236.472 L 248.842 245.213 C 248.977 245.627 249.58 245.627 249.715 245.213 L 252.501 236.48 C 252.561 236.292 252.734 236.171 252.937 236.171 L 255.798 236.171 C 256.107 236.171 256.325 236.465 256.227 236.751 L 251.228 251.349 C 251.168 251.53 250.995 251.65 250.799 251.65 L 248.021 251.65 C 247.826 251.65 247.652 251.53 247.592 251.349 L 244.513 242.503 C 244.37 242.104 243.79 242.104 243.647 242.503 L 240.568 251.349 C 240.508 251.53 240.335 251.65 240.139 251.65 L 237.15 251.65 C 236.954 251.65 236.774 251.522 236.713 251.341 L 231.94 236.743 C 231.85 236.457 232.068 236.164 232.377 236.164 Z M 257.116 243.926 C 257.116 239.153 260.699 235.878 265.043 235.878 C 266.73 235.878 268.326 236.382 269.47 237.323 C 269.756 237.557 270.2 237.346 270.208 236.984 L 270.208 236.608 C 270.215 236.367 270.419 236.171 270.667 236.171 L 273.076 236.171 C 273.325 236.171 273.536 236.367 273.536 236.615 L 273.536 251.213 C 273.536 251.454 273.332 251.658 273.076 251.658 L 270.667 251.658 C 270.419 251.658 270.215 251.462 270.208 251.221 L 270.208 250.844 C 270.193 250.476 269.749 250.265 269.463 250.506 C 268.311 251.447 266.722 251.951 265.036 251.951 C 260.699 251.951 257.108 248.646 257.108 243.933 Z M 265.525 248.608 C 268.055 248.608 270.072 246.884 270.072 243.926 C 270.072 240.967 268.055 239.213 265.525 239.213 C 262.845 239.213 260.857 241.118 260.857 243.926 C 260.857 246.734 262.845 248.608 265.525 248.608 Z M 282.427 236.164 L 283.902 236.164 C 284.151 236.164 284.362 236.359 284.362 236.608 L 284.362 239.002 C 284.362 239.243 284.158 239.446 283.902 239.446 L 282.788 239.446 C 281.433 239.446 280.891 239.973 280.891 241.321 L 280.891 251.213 C 280.891 251.454 280.688 251.658 280.432 251.658 L 277.609 251.658 C 277.36 251.658 277.149 251.462 277.149 251.213 L 277.149 241.411 C 277.149 237.782 279.016 236.171 282.419 236.171 Z M 285.438 243.948 C 285.438 239.205 288.932 235.84 293.547 235.84 C 297.665 235.84 301.384 238.49 301.218 244.28 C 301.218 244.52 301.007 244.709 300.759 244.709 L 289.474 244.709 C 289.187 244.709 288.962 244.965 289.029 245.243 C 289.526 247.411 291.333 248.864 293.848 248.864 C 295.692 248.864 297.273 248.089 298.433 246.644 C 298.583 246.455 298.877 246.425 299.073 246.576 L 300.827 247.931 C 301.022 248.081 301.053 248.36 300.902 248.556 C 299.328 250.566 296.942 252.004 293.757 252.004 C 288.788 252.004 285.438 248.608 285.438 243.956 Z M 297.077 242.104 C 297.386 242.104 297.612 241.818 297.514 241.532 C 296.919 239.74 295.421 238.821 293.509 238.821 C 291.597 238.821 289.978 239.883 289.27 241.471 C 289.142 241.765 289.361 242.096 289.684 242.096 L 297.07 242.096 Z\" fill=\"rgb(241,89,58)\"></path><path d=\"M 225.804 220.956 C 225.692 220.67 225.91 220.354 226.234 220.354 L 229.32 220.354 C 229.511 220.35 229.683 220.468 229.749 220.647 L 233.1 229.847 C 233.243 230.239 233.815 230.239 233.958 229.847 L 237.278 220.647 C 237.346 220.467 237.511 220.354 237.707 220.354 L 240.583 220.354 C 240.899 220.354 241.118 220.662 241.012 220.949 L 235.418 235.546 C 235.351 235.72 235.185 235.833 234.989 235.833 L 231.918 235.833 C 231.729 235.833 231.556 235.72 231.489 235.546 L 225.804 220.949 Z M 241.84 228.146 C 241.84 223.403 245.334 220.038 249.949 220.038 C 254.067 220.038 257.786 222.688 257.62 228.477 C 257.62 228.718 257.409 228.906 257.161 228.906 L 245.876 228.906 C 245.59 228.906 245.364 229.162 245.431 229.441 C 245.928 231.609 247.735 233.062 250.25 233.062 C 252.094 233.062 253.675 232.287 254.835 230.841 C 254.985 230.653 255.279 230.623 255.475 230.773 L 257.236 232.128 C 257.432 232.279 257.462 232.558 257.312 232.753 C 255.738 234.763 253.351 236.201 250.167 236.201 C 245.198 236.201 241.848 232.806 241.848 228.153 Z M 253.479 226.301 C 253.788 226.301 254.014 226.015 253.916 225.729 C 253.321 223.937 251.823 223.019 249.911 223.019 C 247.999 223.019 246.38 224.08 245.672 225.669 C 245.544 225.963 245.763 226.294 246.086 226.294 L 253.472 226.294 Z M 284.723 228.146 C 284.723 223.403 288.216 220.038 292.831 220.038 C 296.949 220.038 300.669 222.688 300.503 228.477 C 300.503 228.718 300.292 228.906 300.044 228.906 L 288.758 228.906 C 288.472 228.906 288.246 229.162 288.314 229.441 C 288.811 231.609 290.618 233.062 293.132 233.062 C 294.977 233.062 296.558 232.287 297.717 230.841 C 297.868 230.653 298.162 230.623 298.357 230.773 L 300.111 232.128 C 300.307 232.279 300.337 232.558 300.187 232.753 C 298.613 234.763 296.227 236.201 293.042 236.201 C 288.073 236.201 284.723 232.806 284.723 228.153 Z M 296.362 226.301 C 296.671 226.301 296.897 226.015 296.799 225.729 C 296.204 223.937 294.706 223.019 292.794 223.019 C 290.881 223.019 289.263 224.08 288.555 225.669 C 288.427 225.963 288.645 226.294 288.969 226.294 L 296.355 226.294 Z M 280.153 220.655 L 276.833 229.855 C 276.69 230.246 276.118 230.246 275.975 229.855 L 272.625 220.655 C 272.557 220.477 272.386 220.36 272.195 220.361 L 265.766 220.361 C 262.363 220.361 260.496 221.972 260.496 225.601 L 260.496 235.403 C 260.496 235.644 260.699 235.848 260.955 235.848 L 263.779 235.848 C 264.027 235.848 264.238 235.652 264.238 235.403 L 264.238 225.511 C 264.238 224.163 264.78 223.636 266.135 223.636 L 269.417 223.636 C 269.606 223.636 269.779 223.749 269.847 223.922 L 274.371 235.554 C 274.439 235.727 274.605 235.84 274.8 235.84 L 277.872 235.84 C 278.06 235.84 278.233 235.727 278.301 235.554 L 283.895 220.956 C 284.008 220.67 283.782 220.361 283.466 220.361 L 280.59 220.361 C 280.399 220.358 280.227 220.476 280.161 220.655 Z\" fill=\"rgb(38,50,109)\"></path><path d=\"M 263.5 326.936 C 313.711 326.936 354.415 286.232 354.415 236.021 C 354.415 185.81 313.711 145.106 263.5 145.106 C 213.289 145.106 172.585 185.81 172.585 236.021 C 172.585 286.232 213.289 326.936 263.5 326.936 Z\" fill=\"transparent\" stroke-width=\"0.7528571428571429\" stroke=\"rgb(46,49,146)\" stroke-miterlimit=\"7.5285714285714285\" stroke-dasharray=\"\"></path><g transform=\"translate(279.604 142.757)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path><path d=\"M 34.353 29.015 C 34.349 30.446 33.779 31.816 32.767 32.828 C 31.756 33.839 30.385 34.409 28.955 34.413 L 26.877 34.413 L 26.877 32.042 L 28.955 32.042 C 30.626 32.042 31.981 30.687 31.981 29.015 C 31.981 27.344 30.626 25.989 28.955 25.989 L 26.877 25.989 L 26.877 23.617 L 28.955 23.617 C 30.385 23.621 31.756 24.191 32.767 25.203 C 33.779 26.214 34.349 27.585 34.353 29.015 Z M 22.842 23.617 L 22.842 28.006 L 19.108 28.006 L 17.745 30.378 L 25.221 30.378 L 25.221 23.617 Z M 49.779 26.997 C 49.779 31.093 46.459 34.413 42.363 34.413 L 42.363 38.448 L 35.956 38.448 L 35.956 35.301 C 34.172 37.327 31.594 38.475 28.895 38.448 L 22.842 38.448 L 22.842 34.413 L 18.099 34.413 L 15.727 38.448 L 8.251 38.448 L 19.228 19.582 L 28.955 19.582 C 31.643 19.604 34.202 20.741 36.017 22.729 L 36.017 19.582 L 42.423 19.582 C 46.496 19.604 49.786 22.925 49.779 26.997 Z M 28.955 36.077 C 31.69 36.079 34.182 34.509 35.362 32.042 L 38.388 32.042 L 38.388 36.077 L 40.052 36.077 L 40.052 32.042 L 42.423 32.042 C 45.202 32.042 47.46 29.791 47.468 27.013 L 47.468 26.997 C 47.444 24.198 45.163 21.944 42.363 21.953 L 38.328 21.953 L 38.328 28.006 L 35.956 28.006 C 35.429 24.543 32.463 21.976 28.955 21.953 L 20.651 21.953 L 12.407 36.069 L 14.365 36.069 L 16.736 32.034 L 25.221 32.034 L 25.221 36.069 L 28.955 36.069 Z M 42.363 23.617 L 39.992 23.617 L 39.992 25.989 L 42.363 25.989 C 42.92 25.989 43.372 26.433 43.372 26.982 L 43.372 26.997 C 43.365 27.262 43.256 27.515 43.068 27.702 C 42.88 27.89 42.628 27.999 42.363 28.006 L 39.992 28.006 L 39.992 30.378 L 42.363 30.378 C 44.23 30.378 45.744 28.864 45.744 26.997 C 45.721 25.138 44.223 23.632 42.363 23.617 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 45.683 37.266 C 45.683 37.793 45.262 38.215 44.735 38.215 C 44.208 38.215 43.786 37.793 43.786 37.266 C 43.786 36.739 44.208 36.318 44.735 36.318 C 45.254 36.318 45.676 36.724 45.683 37.244 Z M 45.924 37.266 C 45.924 36.611 45.39 36.077 44.735 36.077 C 44.08 36.077 43.545 36.611 43.545 37.266 C 43.545 37.921 44.08 38.456 44.735 38.456 C 45.39 38.456 45.924 37.921 45.924 37.266 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 44.795 36.732 C 44.923 36.732 45.036 36.837 45.036 36.965 C 45.036 37.093 44.931 37.206 44.803 37.206 L 44.562 37.206 L 44.562 36.732 L 44.803 36.732 Z M 45.089 36.672 C 45.007 36.599 44.904 36.557 44.795 36.551 L 44.321 36.551 L 44.321 37.974 L 44.501 37.974 L 44.501 37.44 L 44.742 37.44 L 45.036 37.974 L 45.277 37.974 L 44.923 37.379 C 44.983 37.379 45.043 37.319 45.104 37.259 C 45.149 37.191 45.171 37.108 45.164 37.018 C 45.217 36.899 45.193 36.759 45.104 36.664\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(260.308 294.917)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path></g><path d=\"M 277.548 325.023 C 277.488 325.039 277.435 325.084 277.435 325.151 L 277.435 325.204 C 278.67 331.332 282.186 335.759 286.342 335.759 C 287.667 335.759 291.792 335.759 293.178 326.778 C 293.2 326.612 292.997 326.552 292.952 326.702 C 292.304 328.908 290.987 332.484 289.323 332.484 C 288.126 332.484 286.741 330.64 285.288 325.114 C 285.273 325.06 285.229 325.02 285.175 325.008 L 277.556 325.023 Z M 294.299 325.023 C 294.239 325.023 294.186 325.076 294.186 325.136 C 293.712 329.864 292.508 333.297 290.43 335.195 C 290.369 335.247 290.369 335.345 290.415 335.398 L 290.452 335.435 C 291.055 335.624 291.672 335.729 292.297 335.729 C 296.475 335.729 299.991 331.219 301.203 325.144 C 301.203 325.069 301.15 325.016 301.09 325.001 L 294.299 325.016 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(277.435 325.008)\"><path d=\"M 0 0 L 23.79 0 L 23.79 10.736 L 0 10.736 Z\" fill=\"rgb(255,255,255)\"></path></g><path d=\"M 277.435 322.69 C 277.435 322.765 277.488 322.818 277.548 322.833 L 284.347 322.833 C 284.407 322.833 284.46 322.78 284.46 322.72 C 284.941 317.992 286.138 314.559 288.216 312.662 C 288.277 312.601 288.277 312.511 288.216 312.443 C 288.156 312.375 288.194 312.421 288.179 312.421 C 287.582 312.23 286.96 312.131 286.334 312.127 C 282.171 312.112 278.64 316.622 277.428 322.697 M 292.304 312.104 C 290.979 312.104 286.854 312.104 285.468 321.086 C 285.446 321.252 285.649 321.312 285.694 321.161 C 286.342 318.948 287.659 315.364 289.323 315.364 C 290.52 315.364 291.905 317.209 293.358 322.735 C 293.373 322.788 293.411 322.825 293.471 322.84 L 301.09 322.84 C 301.165 322.825 301.218 322.765 301.203 322.69 L 301.203 322.667 C 299.968 316.539 296.453 312.112 292.297 312.112 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(277.435 312.097)\"><path d=\"M 0 0 L 23.79 0 L 23.79 10.736 L 0 10.736 Z\" fill=\"rgb(255,255,255)\"></path></g><path d=\"M 263.5 440.173 C 376.25 440.173 467.652 348.771 467.652 236.021 C 467.652 123.271 376.25 31.868 263.5 31.868 C 150.75 31.868 59.348 123.271 59.348 236.021 C 59.348 348.771 150.75 440.173 263.5 440.173 Z\" fill=\"transparent\" stroke-width=\"0.7528571428571429\" stroke=\"rgb(46,49,146)\" stroke-miterlimit=\"7.5285714285714285\" stroke-dasharray=\"\"></path><g transform=\"translate(94.702 353.481)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"rgb(40,79,135)\"></path></g><path d=\"M 133.587 396.44 L 127.73 396.44 L 123.747 390.341 L 119.765 396.5 L 113.847 396.5 L 120.788 386.419 L 114.148 376.82 L 120.005 376.82 L 123.687 382.557 L 127.368 376.82 L 133.346 376.82 L 126.706 386.539 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.55\"></path><path d=\"M 127.85 372.717 C 127.85 375.073 125.976 376.941 123.627 376.941 C 121.278 376.941 119.403 375.066 119.403 372.717 C 119.403 370.368 121.278 368.493 123.627 368.493 C 125.976 368.493 127.85 370.368 127.85 372.717 Z M 118.071 386.6 C 118.071 387.744 117.107 388.715 115.955 388.715 C 114.803 388.715 113.84 387.752 113.84 386.6 C 113.84 385.448 114.803 384.484 115.955 384.484 C 117.107 384.484 118.071 385.448 118.071 386.6 Z M 133.226 386.6 C 133.226 387.744 132.262 388.715 131.11 388.715 C 129.958 388.715 128.995 387.752 128.995 386.6 C 128.995 385.448 129.958 384.484 131.11 384.484 C 132.262 384.484 133.226 385.448 133.226 386.6 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 123.807 390.341 L 119.825 396.44 L 113.847 396.44 L 120.788 386.359 L 114.148 376.76 L 119.945 376.76 L 123.687 382.497 L 126.706 386.479 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(294.134 18.114)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path></g><path d=\"M 322.584 46.557 L 311.721 46.557 L 311.721 35.693 L 322.584 35.693 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 334.585 46.557 L 323.721 46.557 L 323.721 35.693 L 334.585 35.693 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 322.584 58.557 L 311.721 58.557 L 311.721 47.694 L 322.584 47.694 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 334.585 58.557 L 323.721 58.557 L 323.721 47.694 L 334.585 47.694 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 263.5 381.796 C 344.01 381.796 409.276 316.531 409.276 236.021 C 409.276 155.511 344.01 90.245 263.5 90.245 C 182.99 90.245 117.724 155.511 117.724 236.021 C 117.724 316.531 182.99 381.796 263.5 381.796 Z\" fill=\"transparent\" stroke-width=\"0.7528571428571429\" stroke=\"rgb(46,49,146)\" stroke-miterlimit=\"7.5285714285714285\" stroke-dasharray=\"\"></path><g transform=\"translate(147.334 207.006)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path></g><path d=\"M 162.685 236.021 C 162.685 240.086 165.982 243.384 170.048 243.384 L 171.102 243.384 L 171.102 240.651 L 170.048 240.651 C 167.496 240.673 165.403 238.618 165.388 236.058 C 165.376 234.831 165.854 233.649 166.716 232.775 C 167.578 231.9 168.752 231.405 169.98 231.398 L 172.577 231.398 L 172.577 245.695 C 172.577 247.204 173.801 248.428 175.31 248.428 L 175.31 228.658 L 170.055 228.658 C 165.99 228.658 162.692 231.955 162.692 236.021 Z M 182.658 228.658 L 181.604 228.658 L 181.604 231.391 L 182.658 231.391 C 185.21 231.421 187.258 233.514 187.236 236.066 C 187.204 238.581 185.173 240.612 182.658 240.643 L 180.136 240.643 L 180.136 226.346 C 180.135 224.838 178.912 223.615 177.403 223.614 L 177.403 243.384 L 182.658 243.384 C 186.724 243.384 190.021 240.086 190.021 236.021 C 190.021 231.955 186.724 228.658 182.658 228.658 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(164.936 79.11)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path></g><path d=\"M 181.627 107.546 C 181.378 108.058 181.032 108.524 180.897 109.089 C 180.723 109.819 180.859 110.211 181.461 110.655 L 181.461 112.469 C 181.461 112.59 181.469 112.71 181.401 112.816 C 179.933 112.56 178.773 111.189 178.758 109.721 C 178.751 108.991 178.886 108.291 179.218 107.651 C 179.925 106.296 180.716 104.993 181.491 103.676 C 181.567 103.796 181.574 103.932 181.574 104.075 L 181.574 107.169 C 181.574 107.297 181.567 107.425 181.634 107.538 Z M 191.587 95.026 C 191.964 95.342 192.242 95.741 192.483 96.155 C 193.326 97.608 194.162 99.061 195.005 100.514 C 195.028 100.552 195.043 100.597 195.058 100.634 C 194.952 100.725 194.998 100.838 194.998 100.943 L 194.998 104.098 C 194.998 104.226 195.013 104.354 194.885 104.444 C 194.433 103.668 193.974 102.901 193.529 102.125 C 192.822 100.898 192.114 99.671 191.414 98.444 C 191.625 98.421 191.587 98.263 191.587 98.135 Z M 206.787 103.518 C 208.767 104.165 209.626 106.017 208.91 108.095 C 208.745 108.585 208.496 109.029 208.233 109.473 C 207.721 110.354 207.209 111.227 206.697 112.108 C 206.584 112.033 206.622 111.912 206.622 111.807 L 206.622 108.675 C 206.622 108.547 206.652 108.411 206.494 108.351 C 206.659 108.005 206.878 107.689 206.983 107.312 C 207.134 106.77 207.156 106.251 206.727 105.807 C 206.727 105.686 206.727 105.573 206.735 105.453 C 206.757 104.813 206.674 104.165 206.787 103.525 Z M 199.628 112.371 L 200.335 112.371 C 200.38 112.251 200.29 112.206 200.252 112.146 C 199.914 111.694 199.575 111.235 199.221 110.79 C 199.123 110.67 199.116 110.587 199.221 110.459 C 199.575 110.007 199.921 109.541 200.268 109.081 C 200.365 108.953 200.418 108.901 200.539 109.066 C 201.201 109.955 201.894 110.821 202.534 111.724 C 203.347 112.861 202.714 114.261 201.329 114.419 C 200.764 114.479 200.2 114.464 199.628 114.419 Z M 187.845 103.887 L 187.507 103.909 C 187.853 104.369 188.184 104.813 188.515 105.242 C 188.802 105.618 188.809 105.618 188.515 106.002 C 188.222 106.401 187.913 106.793 187.627 107.192 C 187.529 107.327 187.476 107.32 187.371 107.192 C 186.709 106.311 186.031 105.445 185.384 104.557 C 184.548 103.397 185.18 101.982 186.603 101.831 C 187.014 101.79 187.427 101.79 187.838 101.831 L 187.838 103.879 Z M 189.11 101.847 C 189.878 101.801 190.646 101.824 191.421 101.847 L 191.421 105.799 C 191.421 106.002 191.437 106.198 191.542 106.371 C 190.887 107.29 190.202 108.186 189.502 109.066 C 189.374 108.969 189.381 108.833 189.381 108.69 L 189.381 106.213 C 189.381 106.108 189.426 105.987 189.306 105.912 L 190.812 103.879 L 189.11 103.879 L 189.11 101.831 Z M 192.475 110.881 C 193.123 111.987 193.763 113.087 194.403 114.193 C 194.606 114.547 194.802 114.909 195.005 115.27 L 195.005 118.665 C 195.005 118.846 194.982 119.012 194.885 119.162 C 194.711 118.869 194.523 118.575 194.358 118.274 C 193.672 117.077 192.987 115.887 192.302 114.69 C 192.408 114.607 192.363 114.487 192.363 114.382 L 192.363 111.317 C 192.363 111.159 192.363 111.009 192.483 110.881 Z M 197.211 112.168 C 197.226 112.236 197.06 112.296 197.211 112.371 C 197.151 112.597 197.151 112.823 197.158 113.049 L 197.158 114.419 C 196.759 114.464 196.345 114.472 195.954 114.382 C 194.726 114.111 194.222 112.778 194.967 111.732 C 195.668 110.76 196.413 109.819 197.143 108.863 C 197.218 109.127 197.218 109.405 197.218 109.676 L 197.218 112.168 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 192.475 110.881 C 192.355 111.001 192.355 111.159 192.355 111.317 L 192.355 114.382 C 192.355 114.487 192.4 114.6 192.295 114.69 C 191.527 113.365 190.751 112.033 189.983 110.708 C 189.833 110.452 189.547 110.196 189.592 109.925 C 189.63 109.669 189.916 109.45 190.089 109.217 C 190.352 108.871 190.616 108.517 190.902 108.133 L 192.468 110.888 Z M 187.958 96.697 C 187.138 97.932 186.46 99.257 185.7 100.521 C 185.647 100.604 185.594 100.687 185.534 100.77 C 185.481 100.612 185.466 100.454 185.466 100.288 L 185.466 97.224 C 185.466 97.126 185.527 96.991 185.368 96.953 C 185.865 95.997 186.422 95.101 187.356 94.499 C 187.507 94.401 187.657 94.295 187.838 94.25 C 187.928 94.333 187.891 94.438 187.891 94.536 L 187.891 96.351 C 187.891 96.471 187.891 96.592 187.958 96.697 Z M 181.627 107.546 C 181.552 107.433 181.567 107.305 181.567 107.177 L 181.567 104.082 C 181.567 103.947 181.567 103.811 181.484 103.683 C 182.116 102.554 182.756 101.425 183.434 100.318 C 183.577 100.386 183.547 100.514 183.547 100.627 L 183.547 103.781 C 183.547 103.879 183.479 104.015 183.644 104.06 C 182.989 105.234 182.327 106.401 181.627 107.546 Z M 205.018 115.014 C 204.371 116.136 203.723 117.265 203.076 118.387 C 202.948 118.319 202.993 118.191 202.993 118.093 L 202.993 115.18 C 202.993 114.984 202.963 114.796 202.872 114.623 C 203.369 113.757 203.859 112.891 204.356 112.025 C 204.499 111.769 204.657 111.521 204.807 111.272 C 204.928 111.37 204.92 111.513 204.92 111.649 L 204.92 114.743 C 204.92 114.841 204.86 114.976 205.018 115.014 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 183.644 104.052 C 183.486 104.007 183.547 103.872 183.547 103.774 L 183.547 100.619 C 183.547 100.506 183.577 100.371 183.434 100.311 C 184.051 99.174 184.706 98.06 185.368 96.953 C 185.534 96.991 185.466 97.126 185.466 97.224 L 185.466 100.288 C 185.466 100.454 185.481 100.612 185.534 100.77 C 184.924 101.877 184.292 102.968 183.644 104.052 Z M 202.872 114.615 C 202.963 114.788 202.993 114.976 202.993 115.172 L 202.993 118.086 C 202.993 118.191 202.948 118.312 203.076 118.379 C 202.488 119.358 202.037 120.427 201.194 121.24 C 201.133 121.293 201.066 121.346 201.005 121.398 C 201.005 121.007 201.013 120.615 201.005 120.224 C 200.983 119.471 201.073 118.711 200.945 117.958 C 201.562 116.828 202.21 115.714 202.872 114.615 Z M 194.885 119.155 C 194.982 119.004 195.005 118.839 195.005 118.658 L 195.005 115.262 C 195.585 116.256 196.172 117.25 196.752 118.251 C 196.887 118.485 197.015 118.733 197.151 118.974 C 197.008 119.042 197.038 119.17 197.038 119.283 L 197.038 121.79 C 196.526 121.519 196.134 121.105 195.788 120.653 C 195.434 120.186 195.148 119.674 194.885 119.155 Z M 197.211 112.168 L 197.211 109.676 C 197.211 109.405 197.211 109.127 197.136 108.863 C 197.873 107.854 198.626 106.845 199.409 105.867 C 199.462 106.183 199.469 106.499 199.469 106.815 L 199.469 108.841 C 199.469 108.938 199.432 109.044 199.522 109.127 C 198.777 110.158 198.009 111.174 197.218 112.176 Z M 185.474 110.783 C 186.091 110.316 186.445 109.631 186.919 109.044 C 187.213 108.682 187.492 108.314 187.778 107.945 C 187.883 108.035 187.898 108.155 187.898 108.291 L 187.898 110.821 C 187.898 110.918 187.86 111.024 187.958 111.099 C 187.424 111.92 186.761 112.59 185.79 112.876 C 185.707 112.898 185.609 112.914 185.527 112.929 C 185.489 112.703 185.466 112.484 185.466 112.251 C 185.474 111.762 185.466 111.265 185.466 110.775 Z M 205.018 115.014 C 204.852 114.969 204.92 114.833 204.92 114.743 L 204.92 111.649 C 204.92 111.513 204.935 111.37 204.807 111.272 C 205.342 110.279 205.914 109.307 206.494 108.344 C 206.652 108.404 206.622 108.547 206.622 108.667 L 206.622 111.799 C 206.622 111.905 206.576 112.025 206.697 112.1 C 206.14 113.072 205.575 114.043 205.018 115.006 Z M 191.542 106.371 C 191.437 106.191 191.421 105.995 191.421 105.799 L 191.421 101.847 C 192.092 101.801 192.649 102.027 193.025 102.592 C 193.432 103.209 193.379 103.864 192.995 104.451 C 192.558 105.121 192.054 105.754 191.542 106.371 Z M 196.398 102.946 C 197.03 104.037 197.67 105.129 198.303 106.221 C 198.348 106.296 198.348 106.349 198.295 106.416 C 197.866 106.973 197.444 107.538 196.993 108.133 L 196.157 106.642 C 196.323 106.605 196.262 106.469 196.262 106.371 L 196.262 103.33 C 196.262 103.187 196.247 103.036 196.39 102.938 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 197.038 121.797 L 197.038 119.29 C 197.038 119.177 197.008 119.049 197.151 118.982 C 197.331 119.222 197.489 119.478 197.693 119.697 C 198.227 120.261 198.656 120.344 199.409 120.043 C 199.439 120.773 199.349 121.504 199.462 122.226 C 198.589 122.437 197.783 122.287 197.038 121.805 Z M 196.398 102.946 C 196.247 103.044 196.27 103.194 196.27 103.337 L 196.27 106.379 C 196.27 106.477 196.33 106.612 196.164 106.65 C 195.72 105.927 195.291 105.197 194.892 104.451 C 195.02 104.369 195.005 104.233 195.005 104.105 L 195.005 100.951 C 195.005 100.845 194.96 100.732 195.065 100.642 C 195.54 101.395 195.976 102.17 196.398 102.946 Z M 200.772 104.158 C 201.374 103.571 202.089 103.269 202.933 103.247 L 202.933 105.31 C 202.511 105.377 202.195 105.603 201.939 105.942 C 201.615 106.364 201.291 106.785 200.968 107.199 C 200.855 107.124 200.892 107.004 200.892 106.898 L 200.892 104.459 C 200.892 104.346 200.915 104.218 200.772 104.158 Z M 197.151 114.419 L 197.151 113.049 C 197.151 112.823 197.151 112.597 197.203 112.371 L 199.628 112.371 L 199.628 114.419 C 198.799 114.457 197.971 114.457 197.151 114.419 Z M 187.958 111.107 C 187.86 111.031 187.898 110.918 187.898 110.828 L 187.898 108.299 C 187.898 108.163 187.883 108.043 187.778 107.952 C 188.267 107.26 188.779 106.582 189.306 105.919 C 189.426 105.995 189.381 106.115 189.381 106.221 L 189.381 108.698 C 189.381 108.833 189.374 108.976 189.502 109.074 C 188.982 109.752 188.515 110.459 187.958 111.114 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 200.772 104.158 C 200.915 104.218 200.892 104.346 200.892 104.459 L 200.892 106.898 C 200.892 107.004 200.847 107.124 200.968 107.199 C 200.486 107.839 199.996 108.479 199.515 109.119 C 199.432 109.036 199.462 108.931 199.462 108.833 L 199.462 106.808 C 199.462 106.492 199.462 106.175 199.402 105.859 C 199.831 105.272 200.222 104.647 200.772 104.158 Z M 191.587 95.026 L 191.587 98.135 C 191.587 98.27 191.625 98.429 191.414 98.444 C 191.233 98.142 191.045 97.841 190.879 97.533 C 190.631 97.073 190.33 96.652 189.931 96.305 C 189.991 96.065 189.991 95.824 189.991 95.575 L 189.991 94.077 C 190.623 94.22 191.135 94.566 191.587 95.018 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 189.991 94.077 L 189.991 95.575 C 189.991 95.824 189.991 96.065 189.931 96.305 C 189.125 95.854 188.794 95.922 187.958 96.697 C 187.891 96.592 187.891 96.471 187.891 96.351 L 187.891 94.536 C 187.891 94.438 187.928 94.333 187.838 94.25 C 188.53 93.896 189.253 93.866 189.991 94.077 Z M 199.462 122.219 C 199.349 121.496 199.432 120.766 199.409 120.036 C 200.064 119.584 200.388 118.884 200.764 118.229 C 200.817 118.138 200.855 118.025 200.938 117.958 C 201.066 118.711 200.975 119.471 200.998 120.224 C 201.013 120.615 200.998 121.007 200.998 121.398 C 200.561 121.812 200.049 122.091 199.454 122.219 Z M 185.474 110.783 L 185.474 112.259 C 185.474 112.484 185.496 112.71 185.534 112.936 C 184.819 113.094 184.104 113.004 183.388 113.011 L 183.388 110.949 C 183.825 110.949 184.262 110.933 184.691 110.949 C 184.969 110.949 185.233 110.918 185.481 110.79 Z M 202.933 105.317 L 202.933 103.254 L 204.973 103.254 L 204.973 105.317 Z M 183.381 110.949 L 183.381 113.011 C 182.711 113.042 182.041 113.026 181.393 112.816 C 181.461 112.71 181.454 112.59 181.454 112.469 L 181.454 110.655 C 182.063 110.949 182.718 110.941 183.381 110.949 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 204.965 105.31 L 204.965 103.247 C 205.59 103.217 206.193 103.307 206.78 103.51 C 206.667 104.15 206.75 104.798 206.727 105.438 C 206.727 105.558 206.727 105.671 206.72 105.791 C 206.2 105.4 205.59 105.325 204.965 105.31 Z M 189.11 101.847 L 189.11 103.894 L 187.845 103.894 L 187.845 101.847 C 188.267 101.809 188.689 101.809 189.11 101.847 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(375.713 246.056)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path></g><path d=\"M 404.073 272.165 C 402.259 271.616 400.46 271.586 398.495 272.354 L 405.564 260.248 C 406.106 261.189 406.611 262.047 407.1 262.913 C 408.312 265.043 409.562 267.151 410.729 269.305 C 411.813 271.307 411.828 273.37 410.616 275.327 C 410.187 276.012 409.517 276.547 408.937 277.127 C 408.907 277.157 408.576 277.006 408.53 276.886 C 408.131 275.726 407.514 274.71 406.648 273.844 C 406.392 273.588 406.106 273.355 405.828 273.106 L 405.677 273.001 L 406.249 272.399 L 404.081 272.158 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 408.689 285.258 C 407.145 285.077 405.91 284.369 404.932 283.157 C 404.314 282.389 403.87 281.561 403.667 280.605 C 403.494 279.769 403.516 279.822 404.367 279.852 C 405.293 279.882 406.234 279.792 407.16 279.649 C 408.704 279.408 409.946 278.58 411 277.466 C 412.069 276.329 412.694 274.966 412.897 273.219 C 413.304 273.904 413.62 274.431 413.928 274.966 C 415.261 277.285 416.586 279.611 417.919 281.93 C 418.513 282.969 419.131 284 419.733 285.032 C 419.56 285.107 419.387 285.243 419.213 285.243 C 415.705 285.258 412.197 285.258 408.689 285.258 Z M 404.623 280.153 L 404.623 280.266 L 406.332 280.266 L 406.332 280.153 Z M 404.277 280.176 L 404.141 280.176 L 404.126 280.507 L 404.262 280.507 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 392.856 282.246 C 393.014 281.945 393.15 281.629 393.323 281.335 C 394.301 279.641 395.258 277.925 396.289 276.261 C 397.012 275.094 397.983 274.145 399.346 273.784 C 400.113 273.581 400.949 273.543 401.747 273.558 C 402.425 273.573 403.095 273.754 403.765 273.889 C 404.126 273.965 404.194 274.145 403.915 274.454 C 402.583 275.937 401.965 277.691 401.958 279.671 L 401.514 281.802 L 401.717 281.877 L 401.965 281.403 C 402.033 281.282 402.101 281.17 402.169 281.049 L 403.381 283.714 C 403.012 283.948 402.711 284.219 402.696 284.776 L 403.659 284.076 L 404.548 284.987 L 404.691 285.115 C 404.533 285.16 404.367 285.25 404.209 285.25 C 400.038 285.25 395.86 285.258 391.689 285.25 C 391.531 285.25 391.38 285.115 391.222 285.039 L 391.915 283.85 L 392.66 284.053 L 392.299 283.112 C 392.299 283.112 392.314 283.059 392.344 283.052 C 392.826 282.984 392.803 282.592 392.871 282.254 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 391.215 285.032 C 391.373 285.107 391.523 285.243 391.681 285.243 C 395.852 285.258 400.031 285.25 404.201 285.243 C 404.36 285.243 404.525 285.152 404.683 285.107 L 405.03 285.34 L 391.011 285.34 L 391.207 285.032 Z M 408.689 285.258 C 412.197 285.258 415.705 285.258 419.213 285.243 C 419.387 285.243 419.56 285.107 419.733 285.032 L 419.951 285.37 L 409.66 285.37 C 409.336 285.37 409.012 285.303 408.689 285.265 Z M 404.073 272.165 L 406.242 272.406 L 405.67 273.016 C 405.135 272.738 404.6 272.451 404.066 272.173 Z M 402.169 281.042 C 402.101 281.162 402.033 281.275 401.965 281.395 L 401.717 281.87 L 401.514 281.794 L 401.958 279.664 Z M 403.584 283.857 L 403.659 284.061 C 403.358 284.279 403.057 284.497 402.696 284.761 C 402.711 284.204 403.019 283.933 403.381 283.699 Z M 392.284 283.104 L 392.645 284.045 L 391.9 283.842 L 392.276 283.104 Z M 392.856 282.246 C 392.788 282.585 392.811 282.976 392.329 283.044 Z M 404.623 280.146 L 406.332 280.146 L 406.332 280.259 L 404.631 280.259 L 404.631 280.146 Z M 404.269 280.176 L 404.254 280.515 L 404.119 280.515 L 404.134 280.168 L 404.269 280.168 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 427.751 364.067 C 431.031 364.067 433.691 361.407 433.691 358.127 C 433.691 354.846 431.031 352.187 427.751 352.187 C 424.47 352.187 421.811 354.846 421.811 358.127 C 421.811 361.407 424.47 364.067 427.751 364.067 Z M 74.096 165.32 C 77.377 165.32 80.036 162.66 80.036 159.38 C 80.036 156.099 77.377 153.44 74.096 153.44 C 70.816 153.44 68.156 156.099 68.156 159.38 C 68.156 162.66 70.816 165.32 74.096 165.32 Z M 177.426 357.908 C 180.706 357.908 183.366 355.249 183.366 351.968 C 183.366 348.688 180.706 346.028 177.426 346.028 C 174.145 346.028 171.486 348.688 171.486 351.968 C 171.486 355.249 174.145 357.908 177.426 357.908 Z\" fill=\"rgb(33,64,154)\"></path></svg>',svgContentId:11352669028},kzm2MXN1v:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 527 458\"><path d=\"M 232.369 236.164 L 235.321 236.164 C 235.524 236.164 235.697 236.292 235.757 236.48 L 238.49 245.439 C 238.618 245.861 239.228 245.861 239.363 245.446 L 242.307 236.472 C 242.367 236.292 242.54 236.164 242.744 236.164 L 245.544 236.164 C 245.74 236.164 245.921 236.292 245.981 236.472 L 248.842 245.213 C 248.977 245.627 249.58 245.627 249.715 245.213 L 252.501 236.48 C 252.561 236.292 252.734 236.171 252.937 236.171 L 255.798 236.171 C 256.107 236.171 256.325 236.465 256.227 236.751 L 251.228 251.349 C 251.168 251.53 250.995 251.65 250.799 251.65 L 248.021 251.65 C 247.826 251.65 247.652 251.53 247.592 251.349 L 244.513 242.503 C 244.37 242.104 243.79 242.104 243.647 242.503 L 240.568 251.349 C 240.508 251.53 240.335 251.65 240.139 251.65 L 237.15 251.65 C 236.954 251.65 236.774 251.522 236.713 251.341 L 231.94 236.743 C 231.85 236.457 232.068 236.164 232.377 236.164 Z M 257.116 243.926 C 257.116 239.153 260.699 235.878 265.043 235.878 C 266.73 235.878 268.326 236.382 269.47 237.323 C 269.756 237.557 270.2 237.346 270.208 236.984 L 270.208 236.608 C 270.215 236.367 270.419 236.171 270.667 236.171 L 273.076 236.171 C 273.325 236.171 273.536 236.367 273.536 236.615 L 273.536 251.213 C 273.536 251.454 273.332 251.658 273.076 251.658 L 270.667 251.658 C 270.419 251.658 270.215 251.462 270.208 251.221 L 270.208 250.844 C 270.193 250.476 269.749 250.265 269.463 250.506 C 268.311 251.447 266.722 251.951 265.036 251.951 C 260.699 251.951 257.108 248.646 257.108 243.933 Z M 265.525 248.608 C 268.055 248.608 270.072 246.884 270.072 243.926 C 270.072 240.967 268.055 239.213 265.525 239.213 C 262.845 239.213 260.857 241.118 260.857 243.926 C 260.857 246.734 262.845 248.608 265.525 248.608 Z M 282.427 236.164 L 283.902 236.164 C 284.151 236.164 284.362 236.359 284.362 236.608 L 284.362 239.002 C 284.362 239.243 284.158 239.446 283.902 239.446 L 282.788 239.446 C 281.433 239.446 280.891 239.973 280.891 241.321 L 280.891 251.213 C 280.891 251.454 280.688 251.658 280.432 251.658 L 277.609 251.658 C 277.36 251.658 277.149 251.462 277.149 251.213 L 277.149 241.411 C 277.149 237.782 279.016 236.171 282.419 236.171 Z M 285.438 243.948 C 285.438 239.205 288.932 235.84 293.547 235.84 C 297.665 235.84 301.384 238.49 301.218 244.28 C 301.218 244.52 301.007 244.709 300.759 244.709 L 289.474 244.709 C 289.187 244.709 288.962 244.965 289.029 245.243 C 289.526 247.411 291.333 248.864 293.848 248.864 C 295.692 248.864 297.273 248.089 298.433 246.644 C 298.583 246.455 298.877 246.425 299.073 246.576 L 300.827 247.931 C 301.022 248.081 301.053 248.36 300.902 248.556 C 299.328 250.566 296.942 252.004 293.757 252.004 C 288.788 252.004 285.438 248.608 285.438 243.956 Z M 297.077 242.104 C 297.386 242.104 297.612 241.818 297.514 241.532 C 296.919 239.74 295.421 238.821 293.509 238.821 C 291.597 238.821 289.978 239.883 289.27 241.471 C 289.142 241.765 289.361 242.096 289.684 242.096 L 297.07 242.096 Z\" fill=\"rgb(241,89,58)\"></path><path d=\"M 225.804 220.956 C 225.692 220.67 225.91 220.354 226.234 220.354 L 229.32 220.354 C 229.511 220.35 229.683 220.468 229.749 220.647 L 233.1 229.847 C 233.243 230.239 233.815 230.239 233.958 229.847 L 237.278 220.647 C 237.346 220.467 237.511 220.354 237.707 220.354 L 240.583 220.354 C 240.899 220.354 241.118 220.662 241.012 220.949 L 235.418 235.546 C 235.351 235.72 235.185 235.833 234.989 235.833 L 231.918 235.833 C 231.729 235.833 231.556 235.72 231.489 235.546 L 225.804 220.949 Z M 241.84 228.146 C 241.84 223.403 245.334 220.038 249.949 220.038 C 254.067 220.038 257.786 222.688 257.62 228.477 C 257.62 228.718 257.409 228.906 257.161 228.906 L 245.876 228.906 C 245.59 228.906 245.364 229.162 245.431 229.441 C 245.928 231.609 247.735 233.062 250.25 233.062 C 252.094 233.062 253.675 232.287 254.835 230.841 C 254.985 230.653 255.279 230.623 255.475 230.773 L 257.236 232.128 C 257.432 232.279 257.462 232.558 257.312 232.753 C 255.738 234.763 253.351 236.201 250.167 236.201 C 245.198 236.201 241.848 232.806 241.848 228.153 Z M 253.479 226.301 C 253.788 226.301 254.014 226.015 253.916 225.729 C 253.321 223.937 251.823 223.019 249.911 223.019 C 247.999 223.019 246.38 224.08 245.672 225.669 C 245.544 225.963 245.763 226.294 246.086 226.294 L 253.472 226.294 Z M 284.723 228.146 C 284.723 223.403 288.216 220.038 292.831 220.038 C 296.949 220.038 300.669 222.688 300.503 228.477 C 300.503 228.718 300.292 228.906 300.044 228.906 L 288.758 228.906 C 288.472 228.906 288.246 229.162 288.314 229.441 C 288.811 231.609 290.618 233.062 293.132 233.062 C 294.977 233.062 296.558 232.287 297.717 230.841 C 297.868 230.653 298.162 230.623 298.357 230.773 L 300.111 232.128 C 300.307 232.279 300.337 232.558 300.187 232.753 C 298.613 234.763 296.227 236.201 293.042 236.201 C 288.073 236.201 284.723 232.806 284.723 228.153 Z M 296.362 226.301 C 296.671 226.301 296.897 226.015 296.799 225.729 C 296.204 223.937 294.706 223.019 292.794 223.019 C 290.881 223.019 289.263 224.08 288.555 225.669 C 288.427 225.963 288.645 226.294 288.969 226.294 L 296.355 226.294 Z M 280.153 220.655 L 276.833 229.855 C 276.69 230.246 276.118 230.246 275.975 229.855 L 272.625 220.655 C 272.557 220.477 272.386 220.36 272.195 220.361 L 265.766 220.361 C 262.363 220.361 260.496 221.972 260.496 225.601 L 260.496 235.403 C 260.496 235.644 260.699 235.848 260.955 235.848 L 263.779 235.848 C 264.027 235.848 264.238 235.652 264.238 235.403 L 264.238 225.511 C 264.238 224.163 264.78 223.636 266.135 223.636 L 269.417 223.636 C 269.606 223.636 269.779 223.749 269.847 223.922 L 274.371 235.554 C 274.439 235.727 274.605 235.84 274.8 235.84 L 277.872 235.84 C 278.06 235.84 278.233 235.727 278.301 235.554 L 283.895 220.956 C 284.008 220.67 283.782 220.361 283.466 220.361 L 280.59 220.361 C 280.399 220.358 280.227 220.476 280.161 220.655 Z\" fill=\"rgb(38,50,109)\"></path><path d=\"M 263.5 326.936 C 313.711 326.936 354.415 286.232 354.415 236.021 C 354.415 185.81 313.711 145.106 263.5 145.106 C 213.289 145.106 172.585 185.81 172.585 236.021 C 172.585 286.232 213.289 326.936 263.5 326.936 Z\" fill=\"transparent\" stroke-width=\"0.7528571428571429\" stroke=\"rgb(46,49,146)\" stroke-miterlimit=\"7.5285714285714285\" stroke-dasharray=\"\"></path><g transform=\"translate(313.604 161.757)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"rgb(208,41,39)\"></path><path d=\"M 34.353 29.015 C 34.349 30.446 33.779 31.816 32.767 32.828 C 31.756 33.839 30.385 34.409 28.955 34.413 L 26.877 34.413 L 26.877 32.042 L 28.955 32.042 C 30.626 32.042 31.981 30.687 31.981 29.015 C 31.981 27.344 30.626 25.989 28.955 25.989 L 26.877 25.989 L 26.877 23.617 L 28.955 23.617 C 30.385 23.621 31.756 24.191 32.767 25.203 C 33.779 26.214 34.349 27.585 34.353 29.015 Z M 22.842 23.617 L 22.842 28.006 L 19.108 28.006 L 17.745 30.378 L 25.221 30.378 L 25.221 23.617 Z M 49.779 26.997 C 49.779 31.093 46.459 34.413 42.363 34.413 L 42.363 38.448 L 35.956 38.448 L 35.956 35.301 C 34.172 37.327 31.594 38.475 28.895 38.448 L 22.842 38.448 L 22.842 34.413 L 18.099 34.413 L 15.727 38.448 L 8.251 38.448 L 19.228 19.582 L 28.955 19.582 C 31.643 19.604 34.202 20.741 36.017 22.729 L 36.017 19.582 L 42.423 19.582 C 46.496 19.604 49.786 22.925 49.779 26.997 Z M 28.955 36.077 C 31.69 36.079 34.182 34.509 35.362 32.042 L 38.388 32.042 L 38.388 36.077 L 40.052 36.077 L 40.052 32.042 L 42.423 32.042 C 45.202 32.042 47.46 29.791 47.468 27.013 L 47.468 26.997 C 47.444 24.198 45.163 21.944 42.363 21.953 L 38.328 21.953 L 38.328 28.006 L 35.956 28.006 C 35.429 24.543 32.463 21.976 28.955 21.953 L 20.651 21.953 L 12.407 36.069 L 14.365 36.069 L 16.736 32.034 L 25.221 32.034 L 25.221 36.069 L 28.955 36.069 Z M 42.363 23.617 L 39.992 23.617 L 39.992 25.989 L 42.363 25.989 C 42.92 25.989 43.372 26.433 43.372 26.982 L 43.372 26.997 C 43.365 27.262 43.256 27.515 43.068 27.702 C 42.88 27.89 42.628 27.999 42.363 28.006 L 39.992 28.006 L 39.992 30.378 L 42.363 30.378 C 44.23 30.378 45.744 28.864 45.744 26.997 C 45.721 25.138 44.223 23.632 42.363 23.617 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 45.683 37.266 C 45.683 37.793 45.262 38.215 44.735 38.215 C 44.208 38.215 43.786 37.793 43.786 37.266 C 43.786 36.739 44.208 36.318 44.735 36.318 C 45.254 36.318 45.676 36.724 45.683 37.244 Z M 45.924 37.266 C 45.924 36.611 45.39 36.077 44.735 36.077 C 44.08 36.077 43.545 36.611 43.545 37.266 C 43.545 37.921 44.08 38.456 44.735 38.456 C 45.39 38.456 45.924 37.921 45.924 37.266 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 44.795 36.732 C 44.923 36.732 45.036 36.837 45.036 36.965 C 45.036 37.093 44.931 37.206 44.803 37.206 L 44.562 37.206 L 44.562 36.732 L 44.803 36.732 Z M 45.089 36.672 C 45.007 36.599 44.904 36.557 44.795 36.551 L 44.321 36.551 L 44.321 37.974 L 44.501 37.974 L 44.501 37.44 L 44.742 37.44 L 45.036 37.974 L 45.277 37.974 L 44.923 37.379 C 44.983 37.379 45.043 37.319 45.104 37.259 C 45.149 37.191 45.171 37.108 45.164 37.018 C 45.217 36.899 45.193 36.759 45.104 36.664\" fill=\"rgb(255,255,255)\"></path></g><g transform=\"translate(235.308 294.917)\"><g><defs><linearGradient id=\"idss10317360134_10g384662880\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(247,143,38)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(236,37,39)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"url(#idss10317360134_10g384662880)\"></path></g></g><path d=\"M 252.548 326.023 C 252.488 326.039 252.435 326.084 252.435 326.151 L 252.435 326.204 C 253.67 332.332 257.186 336.759 261.342 336.759 C 262.667 336.759 266.792 336.759 268.178 327.778 C 268.2 327.612 267.997 327.552 267.952 327.702 C 267.304 329.908 265.987 333.484 264.323 333.484 C 263.126 333.484 261.741 331.64 260.288 326.114 C 260.273 326.06 260.229 326.02 260.175 326.008 L 252.556 326.023 Z M 269.299 326.023 C 269.239 326.023 269.186 326.076 269.186 326.136 C 268.712 330.864 267.508 334.297 265.43 336.195 C 265.369 336.247 265.369 336.345 265.415 336.398 L 265.452 336.435 C 266.055 336.624 266.672 336.729 267.297 336.729 C 271.475 336.729 274.991 332.219 276.203 326.144 C 276.203 326.069 276.15 326.016 276.09 326.001 L 269.299 326.016 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 252.435 323.69 C 252.435 323.765 252.488 323.818 252.548 323.833 L 259.347 323.833 C 259.407 323.833 259.46 323.78 259.46 323.72 C 259.941 318.992 261.138 315.559 263.216 313.662 C 263.277 313.601 263.277 313.511 263.216 313.443 C 263.156 313.375 263.194 313.421 263.179 313.421 C 262.582 313.23 261.96 313.131 261.334 313.127 C 257.171 313.112 253.64 317.622 252.428 323.697 M 267.304 313.104 C 265.979 313.104 261.854 313.104 260.468 322.086 C 260.446 322.252 260.649 322.312 260.694 322.161 C 261.342 319.948 262.659 316.364 264.323 316.364 C 265.52 316.364 266.905 318.209 268.358 323.735 C 268.373 323.788 268.411 323.825 268.471 323.84 L 276.09 323.84 C 276.165 323.825 276.218 323.765 276.203 323.69 L 276.203 323.667 C 274.968 317.539 271.453 313.112 267.297 313.112 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 263.5 440.173 C 376.25 440.173 467.652 348.771 467.652 236.021 C 467.652 123.271 376.25 31.868 263.5 31.868 C 150.75 31.868 59.348 123.271 59.348 236.021 C 59.348 348.771 150.75 440.173 263.5 440.173 Z\" fill=\"transparent\" stroke-width=\"0.7528571428571429\" stroke=\"rgb(46,49,146)\" stroke-miterlimit=\"7.5285714285714285\" stroke-dasharray=\"\"></path><g transform=\"translate(94.702 353.481)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path></g><path d=\"M 133.587 396.44 L 127.73 396.44 L 123.747 390.341 L 119.765 396.5 L 113.847 396.5 L 120.788 386.419 L 114.148 376.82 L 120.005 376.82 L 123.687 382.557 L 127.368 376.82 L 133.346 376.82 L 126.706 386.539 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.55\"></path><path d=\"M 127.85 372.717 C 127.85 375.073 125.976 376.941 123.627 376.941 C 121.278 376.941 119.403 375.066 119.403 372.717 C 119.403 370.368 121.278 368.493 123.627 368.493 C 125.976 368.493 127.85 370.368 127.85 372.717 Z M 118.071 386.6 C 118.071 387.744 117.107 388.715 115.955 388.715 C 114.803 388.715 113.84 387.752 113.84 386.6 C 113.84 385.448 114.803 384.484 115.955 384.484 C 117.107 384.484 118.071 385.448 118.071 386.6 Z M 133.226 386.6 C 133.226 387.744 132.262 388.715 131.11 388.715 C 129.958 388.715 128.995 387.752 128.995 386.6 C 128.995 385.448 129.958 384.484 131.11 384.484 C 132.262 384.484 133.226 385.448 133.226 386.6 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 123.807 390.341 L 119.825 396.44 L 113.847 396.44 L 120.788 386.359 L 114.148 376.76 L 119.945 376.76 L 123.687 382.497 L 126.706 386.479 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(294.134 18.114)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path></g><path d=\"M 322.584 46.557 L 311.721 46.557 L 311.721 35.693 L 322.584 35.693 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 334.585 46.557 L 323.721 46.557 L 323.721 35.693 L 334.585 35.693 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 322.584 58.557 L 311.721 58.557 L 311.721 47.694 L 322.584 47.694 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 334.585 58.557 L 323.721 58.557 L 323.721 47.694 L 334.585 47.694 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 263.5 381.796 C 344.01 381.796 409.276 316.531 409.276 236.021 C 409.276 155.511 344.01 90.245 263.5 90.245 C 182.99 90.245 117.724 155.511 117.724 236.021 C 117.724 316.531 182.99 381.796 263.5 381.796 Z\" fill=\"transparent\" stroke-width=\"0.7528571428571429\" stroke=\"rgb(46,49,146)\" stroke-miterlimit=\"7.5285714285714285\" stroke-dasharray=\"\"></path><g transform=\"translate(153.334 178.006)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"rgb(46,160,72)\"></path></g><path d=\"M 168.685 207.021 C 168.685 211.086 171.982 214.384 176.048 214.384 L 177.102 214.384 L 177.102 211.651 L 176.048 211.651 C 173.496 211.673 171.403 209.618 171.388 207.058 C 171.376 205.831 171.854 204.649 172.716 203.775 C 173.578 202.9 174.752 202.405 175.98 202.398 L 178.577 202.398 L 178.577 216.695 C 178.577 218.204 179.801 219.428 181.31 219.428 L 181.31 199.658 L 176.055 199.658 C 171.99 199.658 168.692 202.955 168.692 207.021 Z M 188.658 199.658 L 187.604 199.658 L 187.604 202.391 L 188.658 202.391 C 191.21 202.421 193.258 204.514 193.236 207.066 C 193.204 209.581 191.173 211.612 188.658 211.643 L 186.136 211.643 L 186.136 197.346 C 186.135 195.838 184.912 194.615 183.403 194.614 L 183.403 214.384 L 188.658 214.384 C 192.724 214.384 196.021 211.086 196.021 207.021 C 196.021 202.955 192.724 199.658 188.658 199.658 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(164.936 79.11)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path></g><path d=\"M 181.627 107.546 C 181.378 108.058 181.032 108.524 180.897 109.089 C 180.723 109.819 180.859 110.211 181.461 110.655 L 181.461 112.469 C 181.461 112.59 181.469 112.71 181.401 112.816 C 179.933 112.56 178.773 111.189 178.758 109.721 C 178.751 108.991 178.886 108.291 179.218 107.651 C 179.925 106.296 180.716 104.993 181.491 103.676 C 181.567 103.796 181.574 103.932 181.574 104.075 L 181.574 107.169 C 181.574 107.297 181.567 107.425 181.634 107.538 Z M 191.587 95.026 C 191.964 95.342 192.242 95.741 192.483 96.155 C 193.326 97.608 194.162 99.061 195.005 100.514 C 195.028 100.552 195.043 100.597 195.058 100.634 C 194.952 100.725 194.998 100.838 194.998 100.943 L 194.998 104.098 C 194.998 104.226 195.013 104.354 194.885 104.444 C 194.433 103.668 193.974 102.901 193.529 102.125 C 192.822 100.898 192.114 99.671 191.414 98.444 C 191.625 98.421 191.587 98.263 191.587 98.135 Z M 206.787 103.518 C 208.767 104.165 209.626 106.017 208.91 108.095 C 208.745 108.585 208.496 109.029 208.233 109.473 C 207.721 110.354 207.209 111.227 206.697 112.108 C 206.584 112.033 206.622 111.912 206.622 111.807 L 206.622 108.675 C 206.622 108.547 206.652 108.411 206.494 108.351 C 206.659 108.005 206.878 107.689 206.983 107.312 C 207.134 106.77 207.156 106.251 206.727 105.807 C 206.727 105.686 206.727 105.573 206.735 105.453 C 206.757 104.813 206.674 104.165 206.787 103.525 Z M 199.628 112.371 L 200.335 112.371 C 200.38 112.251 200.29 112.206 200.252 112.146 C 199.914 111.694 199.575 111.235 199.221 110.79 C 199.123 110.67 199.116 110.587 199.221 110.459 C 199.575 110.007 199.921 109.541 200.268 109.081 C 200.365 108.953 200.418 108.901 200.539 109.066 C 201.201 109.955 201.894 110.821 202.534 111.724 C 203.347 112.861 202.714 114.261 201.329 114.419 C 200.764 114.479 200.2 114.464 199.628 114.419 Z M 187.845 103.887 L 187.507 103.909 C 187.853 104.369 188.184 104.813 188.515 105.242 C 188.802 105.618 188.809 105.618 188.515 106.002 C 188.222 106.401 187.913 106.793 187.627 107.192 C 187.529 107.327 187.476 107.32 187.371 107.192 C 186.709 106.311 186.031 105.445 185.384 104.557 C 184.548 103.397 185.18 101.982 186.603 101.831 C 187.014 101.79 187.427 101.79 187.838 101.831 L 187.838 103.879 Z M 189.11 101.847 C 189.878 101.801 190.646 101.824 191.421 101.847 L 191.421 105.799 C 191.421 106.002 191.437 106.198 191.542 106.371 C 190.887 107.29 190.202 108.186 189.502 109.066 C 189.374 108.969 189.381 108.833 189.381 108.69 L 189.381 106.213 C 189.381 106.108 189.426 105.987 189.306 105.912 L 190.812 103.879 L 189.11 103.879 L 189.11 101.831 Z M 192.475 110.881 C 193.123 111.987 193.763 113.087 194.403 114.193 C 194.606 114.547 194.802 114.909 195.005 115.27 L 195.005 118.665 C 195.005 118.846 194.982 119.012 194.885 119.162 C 194.711 118.869 194.523 118.575 194.358 118.274 C 193.672 117.077 192.987 115.887 192.302 114.69 C 192.408 114.607 192.363 114.487 192.363 114.382 L 192.363 111.317 C 192.363 111.159 192.363 111.009 192.483 110.881 Z M 197.211 112.168 C 197.226 112.236 197.06 112.296 197.211 112.371 C 197.151 112.597 197.151 112.823 197.158 113.049 L 197.158 114.419 C 196.759 114.464 196.345 114.472 195.954 114.382 C 194.726 114.111 194.222 112.778 194.967 111.732 C 195.668 110.76 196.413 109.819 197.143 108.863 C 197.218 109.127 197.218 109.405 197.218 109.676 L 197.218 112.168 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 192.475 110.881 C 192.355 111.001 192.355 111.159 192.355 111.317 L 192.355 114.382 C 192.355 114.487 192.4 114.6 192.295 114.69 C 191.527 113.365 190.751 112.033 189.983 110.708 C 189.833 110.452 189.547 110.196 189.592 109.925 C 189.63 109.669 189.916 109.45 190.089 109.217 C 190.352 108.871 190.616 108.517 190.902 108.133 L 192.468 110.888 Z M 187.958 96.697 C 187.138 97.932 186.46 99.257 185.7 100.521 C 185.647 100.604 185.594 100.687 185.534 100.77 C 185.481 100.612 185.466 100.454 185.466 100.288 L 185.466 97.224 C 185.466 97.126 185.527 96.991 185.368 96.953 C 185.865 95.997 186.422 95.101 187.356 94.499 C 187.507 94.401 187.657 94.295 187.838 94.25 C 187.928 94.333 187.891 94.438 187.891 94.536 L 187.891 96.351 C 187.891 96.471 187.891 96.592 187.958 96.697 Z M 181.627 107.546 C 181.552 107.433 181.567 107.305 181.567 107.177 L 181.567 104.082 C 181.567 103.947 181.567 103.811 181.484 103.683 C 182.116 102.554 182.756 101.425 183.434 100.318 C 183.577 100.386 183.547 100.514 183.547 100.627 L 183.547 103.781 C 183.547 103.879 183.479 104.015 183.644 104.06 C 182.989 105.234 182.327 106.401 181.627 107.546 Z M 205.018 115.014 C 204.371 116.136 203.723 117.265 203.076 118.387 C 202.948 118.319 202.993 118.191 202.993 118.093 L 202.993 115.18 C 202.993 114.984 202.963 114.796 202.872 114.623 C 203.369 113.757 203.859 112.891 204.356 112.025 C 204.499 111.769 204.657 111.521 204.807 111.272 C 204.928 111.37 204.92 111.513 204.92 111.649 L 204.92 114.743 C 204.92 114.841 204.86 114.976 205.018 115.014 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 183.644 104.052 C 183.486 104.007 183.547 103.872 183.547 103.774 L 183.547 100.619 C 183.547 100.506 183.577 100.371 183.434 100.311 C 184.051 99.174 184.706 98.06 185.368 96.953 C 185.534 96.991 185.466 97.126 185.466 97.224 L 185.466 100.288 C 185.466 100.454 185.481 100.612 185.534 100.77 C 184.924 101.877 184.292 102.968 183.644 104.052 Z M 202.872 114.615 C 202.963 114.788 202.993 114.976 202.993 115.172 L 202.993 118.086 C 202.993 118.191 202.948 118.312 203.076 118.379 C 202.488 119.358 202.037 120.427 201.194 121.24 C 201.133 121.293 201.066 121.346 201.005 121.398 C 201.005 121.007 201.013 120.615 201.005 120.224 C 200.983 119.471 201.073 118.711 200.945 117.958 C 201.562 116.828 202.21 115.714 202.872 114.615 Z M 194.885 119.155 C 194.982 119.004 195.005 118.839 195.005 118.658 L 195.005 115.262 C 195.585 116.256 196.172 117.25 196.752 118.251 C 196.887 118.485 197.015 118.733 197.151 118.974 C 197.008 119.042 197.038 119.17 197.038 119.283 L 197.038 121.79 C 196.526 121.519 196.134 121.105 195.788 120.653 C 195.434 120.186 195.148 119.674 194.885 119.155 Z M 197.211 112.168 L 197.211 109.676 C 197.211 109.405 197.211 109.127 197.136 108.863 C 197.873 107.854 198.626 106.845 199.409 105.867 C 199.462 106.183 199.469 106.499 199.469 106.815 L 199.469 108.841 C 199.469 108.938 199.432 109.044 199.522 109.127 C 198.777 110.158 198.009 111.174 197.218 112.176 Z M 185.474 110.783 C 186.091 110.316 186.445 109.631 186.919 109.044 C 187.213 108.682 187.492 108.314 187.778 107.945 C 187.883 108.035 187.898 108.155 187.898 108.291 L 187.898 110.821 C 187.898 110.918 187.86 111.024 187.958 111.099 C 187.424 111.92 186.761 112.59 185.79 112.876 C 185.707 112.898 185.609 112.914 185.527 112.929 C 185.489 112.703 185.466 112.484 185.466 112.251 C 185.474 111.762 185.466 111.265 185.466 110.775 Z M 205.018 115.014 C 204.852 114.969 204.92 114.833 204.92 114.743 L 204.92 111.649 C 204.92 111.513 204.935 111.37 204.807 111.272 C 205.342 110.279 205.914 109.307 206.494 108.344 C 206.652 108.404 206.622 108.547 206.622 108.667 L 206.622 111.799 C 206.622 111.905 206.576 112.025 206.697 112.1 C 206.14 113.072 205.575 114.043 205.018 115.006 Z M 191.542 106.371 C 191.437 106.191 191.421 105.995 191.421 105.799 L 191.421 101.847 C 192.092 101.801 192.649 102.027 193.025 102.592 C 193.432 103.209 193.379 103.864 192.995 104.451 C 192.558 105.121 192.054 105.754 191.542 106.371 Z M 196.398 102.946 C 197.03 104.037 197.67 105.129 198.303 106.221 C 198.348 106.296 198.348 106.349 198.295 106.416 C 197.866 106.973 197.444 107.538 196.993 108.133 L 196.157 106.642 C 196.323 106.605 196.262 106.469 196.262 106.371 L 196.262 103.33 C 196.262 103.187 196.247 103.036 196.39 102.938 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 197.038 121.797 L 197.038 119.29 C 197.038 119.177 197.008 119.049 197.151 118.982 C 197.331 119.222 197.489 119.478 197.693 119.697 C 198.227 120.261 198.656 120.344 199.409 120.043 C 199.439 120.773 199.349 121.504 199.462 122.226 C 198.589 122.437 197.783 122.287 197.038 121.805 Z M 196.398 102.946 C 196.247 103.044 196.27 103.194 196.27 103.337 L 196.27 106.379 C 196.27 106.477 196.33 106.612 196.164 106.65 C 195.72 105.927 195.291 105.197 194.892 104.451 C 195.02 104.369 195.005 104.233 195.005 104.105 L 195.005 100.951 C 195.005 100.845 194.96 100.732 195.065 100.642 C 195.54 101.395 195.976 102.17 196.398 102.946 Z M 200.772 104.158 C 201.374 103.571 202.089 103.269 202.933 103.247 L 202.933 105.31 C 202.511 105.377 202.195 105.603 201.939 105.942 C 201.615 106.364 201.291 106.785 200.968 107.199 C 200.855 107.124 200.892 107.004 200.892 106.898 L 200.892 104.459 C 200.892 104.346 200.915 104.218 200.772 104.158 Z M 197.151 114.419 L 197.151 113.049 C 197.151 112.823 197.151 112.597 197.203 112.371 L 199.628 112.371 L 199.628 114.419 C 198.799 114.457 197.971 114.457 197.151 114.419 Z M 187.958 111.107 C 187.86 111.031 187.898 110.918 187.898 110.828 L 187.898 108.299 C 187.898 108.163 187.883 108.043 187.778 107.952 C 188.267 107.26 188.779 106.582 189.306 105.919 C 189.426 105.995 189.381 106.115 189.381 106.221 L 189.381 108.698 C 189.381 108.833 189.374 108.976 189.502 109.074 C 188.982 109.752 188.515 110.459 187.958 111.114 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 200.772 104.158 C 200.915 104.218 200.892 104.346 200.892 104.459 L 200.892 106.898 C 200.892 107.004 200.847 107.124 200.968 107.199 C 200.486 107.839 199.996 108.479 199.515 109.119 C 199.432 109.036 199.462 108.931 199.462 108.833 L 199.462 106.808 C 199.462 106.492 199.462 106.175 199.402 105.859 C 199.831 105.272 200.222 104.647 200.772 104.158 Z M 191.587 95.026 L 191.587 98.135 C 191.587 98.27 191.625 98.429 191.414 98.444 C 191.233 98.142 191.045 97.841 190.879 97.533 C 190.631 97.073 190.33 96.652 189.931 96.305 C 189.991 96.065 189.991 95.824 189.991 95.575 L 189.991 94.077 C 190.623 94.22 191.135 94.566 191.587 95.018 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 189.991 94.077 L 189.991 95.575 C 189.991 95.824 189.991 96.065 189.931 96.305 C 189.125 95.854 188.794 95.922 187.958 96.697 C 187.891 96.592 187.891 96.471 187.891 96.351 L 187.891 94.536 C 187.891 94.438 187.928 94.333 187.838 94.25 C 188.53 93.896 189.253 93.866 189.991 94.077 Z M 199.462 122.219 C 199.349 121.496 199.432 120.766 199.409 120.036 C 200.064 119.584 200.388 118.884 200.764 118.229 C 200.817 118.138 200.855 118.025 200.938 117.958 C 201.066 118.711 200.975 119.471 200.998 120.224 C 201.013 120.615 200.998 121.007 200.998 121.398 C 200.561 121.812 200.049 122.091 199.454 122.219 Z M 185.474 110.783 L 185.474 112.259 C 185.474 112.484 185.496 112.71 185.534 112.936 C 184.819 113.094 184.104 113.004 183.388 113.011 L 183.388 110.949 C 183.825 110.949 184.262 110.933 184.691 110.949 C 184.969 110.949 185.233 110.918 185.481 110.79 Z M 202.933 105.317 L 202.933 103.254 L 204.973 103.254 L 204.973 105.317 Z M 183.381 110.949 L 183.381 113.011 C 182.711 113.042 182.041 113.026 181.393 112.816 C 181.461 112.71 181.454 112.59 181.454 112.469 L 181.454 110.655 C 182.063 110.949 182.718 110.941 183.381 110.949 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 204.965 105.31 L 204.965 103.247 C 205.59 103.217 206.193 103.307 206.78 103.51 C 206.667 104.15 206.75 104.798 206.727 105.438 C 206.727 105.558 206.727 105.671 206.72 105.791 C 206.2 105.4 205.59 105.325 204.965 105.31 Z M 189.11 101.847 L 189.11 103.894 L 187.845 103.894 L 187.845 101.847 C 188.267 101.809 188.689 101.809 189.11 101.847 Z\" fill=\"rgb(255,255,255)\"></path><g transform=\"translate(375.713 246.056)\"><path d=\"M 29.015 58.03 C 45.04 58.03 58.03 45.04 58.03 29.015 C 58.03 12.991 45.04 0 29.015 0 C 12.991 0 0 12.991 0 29.015 C 0 45.04 12.991 58.03 29.015 58.03 Z\" fill=\"var(--token-c3fde9d7-799d-46cc-bbdc-110efaf69027, rgb(105, 117, 134)) /* {&quot;name&quot;:&quot;Grey/ 500&quot;} */\"></path></g><path d=\"M 404.073 272.165 C 402.259 271.616 400.46 271.586 398.495 272.354 L 405.564 260.248 C 406.106 261.189 406.611 262.047 407.1 262.913 C 408.312 265.043 409.562 267.151 410.729 269.305 C 411.813 271.307 411.828 273.37 410.616 275.327 C 410.187 276.012 409.517 276.547 408.937 277.127 C 408.907 277.157 408.576 277.006 408.53 276.886 C 408.131 275.726 407.514 274.71 406.648 273.844 C 406.392 273.588 406.106 273.355 405.828 273.106 L 405.677 273.001 L 406.249 272.399 L 404.081 272.158 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 408.689 285.258 C 407.145 285.077 405.91 284.369 404.932 283.157 C 404.314 282.389 403.87 281.561 403.667 280.605 C 403.494 279.769 403.516 279.822 404.367 279.852 C 405.293 279.882 406.234 279.792 407.16 279.649 C 408.704 279.408 409.946 278.58 411 277.466 C 412.069 276.329 412.694 274.966 412.897 273.219 C 413.304 273.904 413.62 274.431 413.928 274.966 C 415.261 277.285 416.586 279.611 417.919 281.93 C 418.513 282.969 419.131 284 419.733 285.032 C 419.56 285.107 419.387 285.243 419.213 285.243 C 415.705 285.258 412.197 285.258 408.689 285.258 Z M 404.623 280.153 L 404.623 280.266 L 406.332 280.266 L 406.332 280.153 Z M 404.277 280.176 L 404.141 280.176 L 404.126 280.507 L 404.262 280.507 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 392.856 282.246 C 393.014 281.945 393.15 281.629 393.323 281.335 C 394.301 279.641 395.258 277.925 396.289 276.261 C 397.012 275.094 397.983 274.145 399.346 273.784 C 400.113 273.581 400.949 273.543 401.747 273.558 C 402.425 273.573 403.095 273.754 403.765 273.889 C 404.126 273.965 404.194 274.145 403.915 274.454 C 402.583 275.937 401.965 277.691 401.958 279.671 L 401.514 281.802 L 401.717 281.877 L 401.965 281.403 C 402.033 281.282 402.101 281.17 402.169 281.049 L 403.381 283.714 C 403.012 283.948 402.711 284.219 402.696 284.776 L 403.659 284.076 L 404.548 284.987 L 404.691 285.115 C 404.533 285.16 404.367 285.25 404.209 285.25 C 400.038 285.25 395.86 285.258 391.689 285.25 C 391.531 285.25 391.38 285.115 391.222 285.039 L 391.915 283.85 L 392.66 284.053 L 392.299 283.112 C 392.299 283.112 392.314 283.059 392.344 283.052 C 392.826 282.984 392.803 282.592 392.871 282.254 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 391.215 285.032 C 391.373 285.107 391.523 285.243 391.681 285.243 C 395.852 285.258 400.031 285.25 404.201 285.243 C 404.36 285.243 404.525 285.152 404.683 285.107 L 405.03 285.34 L 391.011 285.34 L 391.207 285.032 Z M 408.689 285.258 C 412.197 285.258 415.705 285.258 419.213 285.243 C 419.387 285.243 419.56 285.107 419.733 285.032 L 419.951 285.37 L 409.66 285.37 C 409.336 285.37 409.012 285.303 408.689 285.265 Z M 404.073 272.165 L 406.242 272.406 L 405.67 273.016 C 405.135 272.738 404.6 272.451 404.066 272.173 Z M 402.169 281.042 C 402.101 281.162 402.033 281.275 401.965 281.395 L 401.717 281.87 L 401.514 281.794 L 401.958 279.664 Z M 403.584 283.857 L 403.659 284.061 C 403.358 284.279 403.057 284.497 402.696 284.761 C 402.711 284.204 403.019 283.933 403.381 283.699 Z M 392.284 283.104 L 392.645 284.045 L 391.9 283.842 L 392.276 283.104 Z M 392.856 282.246 C 392.788 282.585 392.811 282.976 392.329 283.044 Z M 404.623 280.146 L 406.332 280.146 L 406.332 280.259 L 404.631 280.259 L 404.631 280.146 Z M 404.269 280.176 L 404.254 280.515 L 404.119 280.515 L 404.134 280.168 L 404.269 280.168 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 427.751 364.067 C 431.031 364.067 433.691 361.407 433.691 358.127 C 433.691 354.846 431.031 352.187 427.751 352.187 C 424.47 352.187 421.811 354.846 421.811 358.127 C 421.811 361.407 424.47 364.067 427.751 364.067 Z M 74.096 165.32 C 77.377 165.32 80.036 162.66 80.036 159.38 C 80.036 156.099 77.377 153.44 74.096 153.44 C 70.816 153.44 68.156 156.099 68.156 159.38 C 68.156 162.66 70.816 165.32 74.096 165.32 Z M 177.426 357.908 C 180.706 357.908 183.366 355.249 183.366 351.968 C 183.366 348.688 180.706 346.028 177.426 346.028 C 174.145 346.028 171.486 348.688 171.486 351.968 C 171.486 355.249 174.145 357.908 177.426 357.908 Z\" fill=\"rgb(33,64,154)\"></path></svg>',svgContentId:10317360134}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oXvFo.framer-nf1enc, .framer-oXvFo .framer-nf1enc { display: block; }\",\".framer-oXvFo.framer-1oe7ing { height: 458px; overflow: hidden; position: relative; width: 527px; }\",\".framer-oXvFo .framer-1lr843x { flex: none; height: 458px; left: calc(49.905123339658466% - 527px / 2); position: absolute; top: calc(50.00000000000002% - 458px / 2); width: 527px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 458\n * @framerIntrinsicWidth 527\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BJaMV_bQj\":{\"layout\":[\"fixed\",\"fixed\"]},\"kzm2MXN1v\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNEjjUG3Mm=withCSS(Component,css,\"framer-oXvFo\");export default FramerNEjjUG3Mm;FramerNEjjUG3Mm.displayName=\"integrations-solar-sys\";FramerNEjjUG3Mm.defaultProps={height:458,width:527};addPropertyControls(FramerNEjjUG3Mm,{variant:{options:[\"qZu64dstq\",\"BJaMV_bQj\",\"kzm2MXN1v\"],optionTitles:[\"Variant 1\",\"HHA\",\"Payroll\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNEjjUG3Mm,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNEjjUG3Mm\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"458\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BJaMV_bQj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kzm2MXN1v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"527\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NEjjUG3Mm.map", "let e;var f=r=>{if(!e){let o=function(t,n){return r.createElement(\"svg\",{width:\"100%\",height:\"1.5em\",strokeWidth:1.5,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",color:\"currentColor\",ref:n,...t},r.createElement(\"path\",{d:\"M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))};e=r.forwardRef(o)}return e};export{f as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/iconoir-icons/Home.js@0.0.11\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"Accessibility\",\"AccessibilitySign\",\"AccessibilityTech\",\"Activity\",\"AddCircledOutline\",\"AddDatabaseScript\",\"AddFolder\",\"AddFrame\",\"AddHexagon\",\"AddKeyframe\",\"AddKeyframeAlt\",\"AddKeyframes\",\"AddLens\",\"AddPage\",\"AddPinAlt\",\"AddSelection\",\"AddSquare\",\"AddToCart\",\"AddUser\",\"Airplane\",\"AirplaneHelix\",\"AirplaneHelix45Deg\",\"AirplaneOff\",\"AirplaneRotation\",\"Airplay\",\"Alarm\",\"Album\",\"AlbumCarousel\",\"AlbumList\",\"AlbumOpen\",\"AlignBottomBox\",\"AlignCenter\",\"AlignJustify\",\"AlignLeft\",\"AlignLeftBox\",\"AlignRight\",\"AlignRightBox\",\"AlignTopBox\",\"Antenna\",\"AntennaOff\",\"AntennaSignal\",\"AppNotification\",\"Apple\",\"AppleHalf\",\"AppleHalfAlt\",\"AppleImac2021\",\"AppleImac2021Side\",\"AppleSwift\",\"ArSymbol\",\"Archery\",\"Archive\",\"AreaSearch\",\"ArrowArchery\",\"ArrowDown\",\"ArrowDownCircled\",\"ArrowLeft\",\"ArrowLeftCircled\",\"ArrowRight\",\"ArrowRightCircled\",\"ArrowSeparate\",\"ArrowUnion\",\"ArrowUnionVertical\",\"ArrowUp\",\"ArrowUpCircled\",\"Asana\",\"Attachment\",\"AutoFlash\",\"Bag\",\"BasketBall\",\"BasketBallAlt\",\"BasketballField\",\"Battery25\",\"Battery50\",\"Battery75\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryIndicator\",\"BatteryWarning\",\"BeachBag\",\"BeachBagBig\",\"Bell\",\"BellNotification\",\"BellOff\",\"Bicycle\",\"Bin\",\"BinAdd\",\"BinFull\",\"BinHalf\",\"BinMinus\",\"Bluetooth\",\"Bold\",\"BoldSquareOutline\",\"BookmarkCircled\",\"BookmarkEmpty\",\"BorderBl\",\"BorderBottom\",\"BorderBr\",\"BorderInner\",\"BorderLeft\",\"BorderOut\",\"BorderRight\",\"BorderTl\",\"BorderTop\",\"BorderTr\",\"BounceLeft\",\"BounceRight\",\"BowlingBall\",\"Box\",\"BoxIso\",\"BoxingGlove\",\"BubbleDownload\",\"BubbleError\",\"BubbleIncome\",\"BubbleOutcome\",\"BubbleSearch\",\"BubbleStar\",\"BubbleUpload\",\"BubbleWarning\",\"Building\",\"BusOutline\",\"BusStop\",\"Calculator\",\"Calendar\",\"Camera\",\"Cancel\",\"CarOutline\",\"Cart\",\"CartAlt\",\"Cash\",\"Cell4X4\",\"CenterAlign\",\"ChatAdd\",\"ChatBubble\",\"ChatBubbleCheck\",\"ChatBubbleCheck1\",\"ChatBubbleEmpty\",\"ChatBubbleError\",\"ChatBubbleQuestion\",\"ChatBubbleTranslate\",\"ChatBubbleWarning\",\"ChatLines\",\"ChatRemove\",\"Check\",\"CheckCircledOutline\",\"Chocolate\",\"Chromecast\",\"ChromecastActive\",\"Church\",\"ChurchAlt\",\"CinemaOld\",\"Circle\",\"City\",\"ClockOutline\",\"Closet\",\"Cloud\",\"CloudBookAlt\",\"CloudCheck\",\"CloudDesync\",\"CloudDownload\",\"CloudError\",\"CloudSunny\",\"CloudSync\",\"CloudUpload\",\"Code\",\"Codepen\",\"Coin\",\"CollageFrame\",\"Collapse\",\"ColorFilter\",\"ColorPicker\",\"ColorPickerEmpty\",\"Combine\",\"CompactDisc\",\"Compress\",\"CompressLines\",\"Computer\",\"ControlSlider\",\"Copy\",\"Copyright\",\"CornerBottomLeft\",\"CornerBottomRight\",\"CornerTopLeft\",\"CornerTopRight\",\"Cpu\",\"CpuWarning\",\"CrackedEgg\",\"CreativeCommons\",\"CreditCard\",\"CreditCard2\",\"Crop\",\"CropRotateBl\",\"CropRotateBr\",\"CropRotateTl\",\"CropRotateTr\",\"Css3\",\"CursorPointer\",\"Cut\",\"CutAlt\",\"Cycling\",\"DashFlag\",\"Dashboard\",\"DashboardDots\",\"DashboardSpeed\",\"DataTransferBoth\",\"DataTransferCheck\",\"DataTransferDown\",\"DataTransferUp\",\"DataTransferWarning\",\"DatabaseBackup\",\"DatabaseExport\",\"DatabaseMonitor\",\"DatabaseRestore\",\"DatabaseScript\",\"DatabaseSettings\",\"DatabaseStar\",\"DatabaseStats\",\"Db\",\"DbCheck\",\"DbError\",\"DbSearch\",\"DbStar\",\"DbWarning\",\"DeCompress\",\"DeleteCircledOutline\",\"DesignPencil\",\"Dialpad\",\"Display4K\",\"DivideSelection1\",\"DivideSelection2\",\"DocSearch\",\"DocSearchAlt\",\"DocStar\",\"DocStarAlt\",\"Dollar\",\"DomoticIssue\",\"Donate\",\"DoubleCheck\",\"DownRoundArrow\",\"Download\",\"DragHandGesture\",\"Drawer\",\"Dribbble\",\"Droplet\",\"DropletHalf\",\"EaseIn\",\"EaseInControlPoint\",\"EaseInOut\",\"EaseOut\",\"EaseOutControlPoint\",\"Edit\",\"EditPencil\",\"Egg\",\"Eject\",\"ElectronicsChip\",\"Emoji\",\"EmojiBall\",\"EmojiBlinkLeft\",\"EmojiBlinkRight\",\"EmojiLookBottom\",\"EmojiLookLeft\",\"EmojiLookRight\",\"EmojiLookTop\",\"EmojiQuite\",\"EmojiReally\",\"EmojiSad\",\"EmojiSatisfied\",\"EmojiSingLeft\",\"EmojiSingLeftNote\",\"EmojiSingRight\",\"EmojiSingRightNote\",\"EmojiSurprise\",\"EmojiSurpriseAlt\",\"EmojiTalkingAngry\",\"EmojiTalkingHappy\",\"EmojiThinkLeft\",\"EmojiThinkRight\",\"EmptyPage\",\"Enlarge\",\"EnlargeRoundArrow\",\"Euro\",\"EuroSquare\",\"EvCharge\",\"EvChargeAlt\",\"EvPlug\",\"EvPlugCharging\",\"EvPlugError\",\"EvStation\",\"Exclude\",\"Expand\",\"ExpandLines\",\"EyeAlt\",\"EyeClose\",\"EyeEmpty\",\"EyeOff\",\"FaceId\",\"Facebook\",\"FacebookSquared\",\"Farm\",\"FastArrowDown\",\"FastArrowDownBox\",\"FastArrowLeft\",\"FastArrowLeftBox\",\"FastArrowRight\",\"FastArrowRightBox\",\"FastArrowTop\",\"FastArrowUpBox\",\"FastBottomCircle\",\"FastLeftCircle\",\"FastRightCircle\",\"FastTopCircle\",\"Female\",\"Figma\",\"FileNotFound\",\"Filter\",\"FilterAlt\",\"Finder\",\"Fingerprint\",\"FingerprintCircled\",\"FingerprintCircledOk\",\"FingerprintPhone\",\"FingerprintScan\",\"FingerprintSquared\",\"Fishing\",\"Flare\",\"Flash\",\"FlashOff\",\"Flip\",\"FlipReverse\",\"Flower\",\"Fog\",\"Folder\",\"FolderAlert\",\"FontSize\",\"Football\",\"FootballBall\",\"ForwardOutline\",\"Frame\",\"FrameAlt\",\"FrameAltEmpty\",\"FrameSelect\",\"FrameSimple\",\"FrameTool\",\"Fridge\",\"Fx\",\"Garage\",\"Gas\",\"GasTank\",\"GasTankDrop\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitHub\",\"GitHubOutline\",\"GitLabFull\",\"GitMerge\",\"GlassEmpty\",\"GlassHalf\",\"GlassHalfAlt\",\"Glasses\",\"Golf\",\"Google\",\"GoogleCircled\",\"GoogleDocs\",\"GoogleDrive\",\"GoogleDriveCheck\",\"GoogleDriveSync\",\"GoogleDriveWarning\",\"GoogleHome\",\"GoogleOne\",\"Gps\",\"GraphDown\",\"GraphUp\",\"GridAdd\",\"GridMinus\",\"GridRemove\",\"Group\",\"Gym\",\"HalfMoon\",\"HandBrake\",\"Handbag\",\"HardDrive\",\"Hat\",\"Hd\",\"Hdr\",\"Headset\",\"HeadsetCharge\",\"HeadsetHelp\",\"HeadsetIssue\",\"HealthShield\",\"Healthcare\",\"Heart\",\"HeavyRain\",\"Heptagon\",\"HerSlips\",\"HesaWarningOutline\",\"Hexagon\",\"HexagonAlt\",\"HighPriority\",\"HistoricShield\",\"HistoricShieldAlt\",\"Home\",\"HomeAlt\",\"HomeAltSlim\",\"HomeAltSlimHoriz\",\"HomeHospital\",\"HomeSimple\",\"HomeSimpleDoor\",\"HomeUser\",\"Hospital\",\"HospitalSign\",\"Hourglass\",\"Html5\",\"Iconoir\",\"Import\",\"Industry\",\"InfoEmpty\",\"InputField\",\"InputSearch\",\"Instagram\",\"Intersect\",\"IntersectAlt\",\"IosSettings\",\"IrisScan\",\"Italic\",\"ItalicSquareOutline\",\"Journal\",\"JournalPage\",\"KeyAlt\",\"KeyAltBack\",\"KeyAltMinus\",\"KeyAltPlus\",\"KeyAltRemove\",\"Keyframe\",\"KeyframeAlignCenter\",\"KeyframePosition\",\"Keyframes\",\"KeyframesCouple\",\"LabelOutline\",\"Lamp\",\"Language\",\"Laptop\",\"LaptopCharging\",\"LaptopFix\",\"LaptopIssue\",\"LargeSuitcase\",\"LayoutLeft\",\"LayoutRight\",\"Leaderboard\",\"LeaderboardStar\",\"LeftRoundArrow\",\"Lens\",\"Lifebelt\",\"LightBulb\",\"LightBulbOff\",\"LightBulbOn\",\"LineSpace\",\"Linear\",\"Link\",\"LinkedIn\",\"List\",\"LoadActionFloppy\",\"Lock\",\"LockKey\",\"LogDenied\",\"LogIn\",\"LogOut\",\"LongArrowDownLeft\",\"LongArrowDownRight\",\"LongArrowLeftDown\",\"LongArrowLeftUp\",\"LongArrowRightDown\",\"LongArrowRightUp\",\"LongArrowRightUp1\",\"LongArrowUpLeft\",\"LongArrowUpRight\",\"LotOfCash\",\"MacControlKey\",\"MacDock\",\"MacOptionKey\",\"MacOsWindow\",\"Mail\",\"MailOpened\",\"Male\",\"Map\",\"MapIssue\",\"MapsArrow\",\"MapsArrowDiagonal\",\"MapsArrowIssue\",\"MapsGoStraight\",\"MapsTurnBack\",\"MapsTurnLeft\",\"MapsTurnRight\",\"MaskSquare\",\"Maximize\",\"Medal\",\"Medal1St\",\"Medium\",\"Megaphone\",\"Menu\",\"MenuScale\",\"Message\",\"MessageAlert\",\"MessageText\",\"Metro\",\"Mic\",\"MicAdd\",\"MicCheck\",\"MicMute\",\"MicRemove\",\"MicSpeaking\",\"MicWarning\",\"Minus\",\"Minus1\",\"MinusHexagon\",\"MinusPinAlt\",\"MinusSquare\",\"MissingFont\",\"ModernTv\",\"ModernTv4K\",\"MoneySquare\",\"MoonSat\",\"MoreHoriz\",\"MoreVert\",\"MouseButtonLeft\",\"MouseButtonRight\",\"MouseScrollWheel\",\"MoveDown\",\"MoveLeft\",\"MoveRight\",\"MoveRuler\",\"MoveUp\",\"Movie\",\"MultiBubble\",\"MultiMacOsWindow\",\"MultiWindow\",\"MultiplePages\",\"MultiplePagesAdd\",\"MultiplePagesDelete\",\"MultiplePagesEmpty\",\"MultiplePagesRemove\",\"Music1\",\"Music1Add\",\"Music2\",\"Music2Add\",\"NavArrowDown\",\"NavArrowLeft\",\"NavArrowRight\",\"NavArrowUp\",\"Navigator\",\"NavigatorAlt\",\"Network\",\"NetworkAlt\",\"NetworkLeft\",\"NetworkRight\",\"NoBattery\",\"NoCoin\",\"NoCreditCard\",\"NoLock\",\"NoSmoking\",\"Notes\",\"Octagon\",\"OilIndustry\",\"OpenInBrowser\",\"OpenInWindow\",\"OpenVpn\",\"OrangeHalf\",\"OrangeSlice\",\"OrangeSliceAlt\",\"Page\",\"PageFlip\",\"PageSearch\",\"PageStar\",\"Palette\",\"PanoramaEnlarge\",\"PanoramaReduce\",\"Pants\",\"PantsAlt\",\"PasswordCursor\",\"PasswordError\",\"PasswordPass\",\"PauseOutline\",\"PcMouse\",\"PenConnectBluetooth\",\"PenConnectWifi\",\"PenTablet\",\"PenTabletConnectUsb\",\"PenTabletConnectWifi\",\"Pentagon\",\"Percentage\",\"PercentageRound\",\"PercentageSquare\",\"PharmacyCircledCross\",\"PharmacySquaredCross\",\"Phone\",\"PhoneAdd\",\"PhoneDelete\",\"PhoneDisabled\",\"PhoneIncome\",\"PhoneOutcome\",\"PhonePaused\",\"PhoneRemove\",\"Pin\",\"PinAlt\",\"PizzaSlice\",\"Planet\",\"PlanetAlt\",\"PlanetSat\",\"PlayOutline\",\"Playlist\",\"PlaylistAdd\",\"PlaylistPlay\",\"PlugTypeA\",\"PlugTypeC\",\"PlugTypeG\",\"PlugTypeL\",\"Plus\",\"Pocket\",\"Position\",\"PositionAlign\",\"Pound\",\"PrecisionTool\",\"Printer\",\"PrinterAlt\",\"PrintingPage\",\"PriorityDown\",\"PriorityUp\",\"ProfileCircled\",\"Prohibition\",\"QuestionMark\",\"QuestionMarkCircle\",\"Rain\",\"ReceiveDollars\",\"ReceiveEuros\",\"ReceivePounds\",\"ReceiveYens\",\"Redo\",\"RedoAction\",\"RedoCircle\",\"Reduce\",\"ReduceRoundArrow\",\"Refresh\",\"RefreshCircular\",\"RefreshDouble\",\"ReminderHandGesture\",\"RemoveDatabaseScript\",\"RemoveEmpty\",\"RemoveFolder\",\"RemoveFrame\",\"RemoveFromCart\",\"RemoveKeyframe\",\"RemoveKeyframeAlt\",\"RemoveKeyframes\",\"RemovePage\",\"RemovePinAlt\",\"RemoveSelection\",\"RemoveSquare\",\"RemoveUser\",\"Repeat\",\"RepeatOnce\",\"ReportColumns\",\"Reports\",\"RewindOutline\",\"Rhombus\",\"RightRoundArrow\",\"Rings\",\"RotateCameraLeft\",\"RotateCameraRight\",\"RssFeed\",\"RssFeedSquared\",\"Ruler\",\"RulerAdd\",\"RulerCombine\",\"RulerRemove\",\"Running\",\"Sandals\",\"SaveActionFloppy\",\"SaveFloppyDisk\",\"ScaleFrameEnlarge\",\"ScaleFrameReduce\",\"Scanning\",\"Scarf\",\"Scissor\",\"ScissorAlt\",\"SeaAndSun\",\"SeaWaves\",\"Search\",\"SearchFont\",\"SecurityPass\",\"Selection\",\"SelectiveTool\",\"SendDollars\",\"SendEuros\",\"SendPounds\",\"SendYens\",\"Server\",\"ServerConnection\",\"Settings\",\"SettingsCloud\",\"SettingsProfiles\",\"ShareAndroid\",\"ShareIos\",\"Shield\",\"ShieldAdd\",\"ShieldAlert\",\"ShieldAlt\",\"ShieldBroken\",\"ShieldCheck\",\"ShieldCross\",\"ShieldDownload\",\"ShieldEye\",\"ShieldLoading\",\"ShieldMinus\",\"ShieldQuestion\",\"ShieldSearch\",\"ShieldUpload\",\"Shop\",\"ShopAlt\",\"ShoppingBag\",\"ShoppingBagAdd\",\"ShoppingBagAlt\",\"ShoppingBagArrowDown\",\"ShoppingBagArrowUp\",\"ShoppingBagCheck\",\"ShoppingBagIssue\",\"ShoppingBagRemove\",\"ShoppingCode\",\"ShoppingCodeCheck\",\"ShoppingCodeError\",\"ShortPants\",\"ShortPantsAlt\",\"Shuffle\",\"SimpleCart\",\"SingleTapGesture\",\"Skateboard\",\"Skateboarding\",\"SkipNextOutline\",\"SkipPrevOutline\",\"SmallShop\",\"SmallShopAlt\",\"SmartphoneDevice\",\"Smoking\",\"Snow\",\"SnowFlake\",\"Soap\",\"SoccerBall\",\"SortDown\",\"SortUp\",\"SoundHigh\",\"SoundLow\",\"SoundMin\",\"SoundOff\",\"SpockHandGesture\",\"Square\",\"StarDashed\",\"StarHalfDashed\",\"StarOutline\",\"StatDown\",\"StatUp\",\"StatsReport\",\"StatsSquareDown\",\"StatsSquareUp\",\"Stretching\",\"StyleBorder\",\"Substract\",\"Suggestion\",\"SunLight\",\"Swimming\",\"SwipeDownGesture\",\"SwipeLeftGesture\",\"SwipeRightGesture\",\"SwipeUpGesture\",\"SwitchOffOutline\",\"SwitchOnOutline\",\"SystemRestart\",\"SystemShut\",\"Table\",\"Table2Columns\",\"TableRows\",\"Telegram\",\"TelegramCircled\",\"TennisBall\",\"TennisBallAlt\",\"TerminalOutline\",\"TerminalSimple\",\"Text\",\"TextAlt\",\"TextSize\",\"ThreeStars\",\"Thunderstorm\",\"TikTok\",\"Timer\",\"TimerOff\",\"Tower\",\"TowerCheck\",\"TowerNoAccess\",\"TowerWarning\",\"Trademark\",\"TrainOutline\",\"Tram\",\"TransitionBottom\",\"TransitionLeft\",\"TransitionRight\",\"TransitionTop\",\"Translate\",\"Trash\",\"Treadmill\",\"Trekking\",\"Trello\",\"Triangle\",\"TriangleFlag\",\"TriangleFlagCircle\",\"TriangleFlagFull\",\"Trophy\",\"Tunnel\",\"Tv\",\"TvFix\",\"TvIssue\",\"Twitter\",\"TwitterVerifiedBadge\",\"Type\",\"UmbrellaFull\",\"Underline\",\"Undo\",\"UndoAction\",\"UndoCircle\",\"Union\",\"UnionAlt\",\"UnionHorizAlt\",\"Unity\",\"Unity5\",\"UpRoundArrow\",\"Upload\",\"UploadSquareOutline\",\"Usb\",\"User\",\"UserBag\",\"UserCart\",\"UserCircleAlt\",\"UserScan\",\"UserSquareAlt\",\"VerifiedBadge\",\"VerifiedUser\",\"VideoCamera\",\"VideoCameraOff\",\"ViewColumns2\",\"ViewColumns3\",\"ViewGrid\",\"ViewStructureDown\",\"ViewStructureUp\",\"Voice\",\"VoiceCircled\",\"VoiceCircledLock\",\"VoiceError\",\"VoiceOk\",\"VoicePhone\",\"VoiceScan\",\"VoiceSquared\",\"VrSymbol\",\"Waist\",\"Walking\",\"WarningSquareOutline\",\"WebWindow\",\"WebWindowClose\",\"Weight\",\"WeightAlt\",\"WhiteFlag\",\"Wifi\",\"WifiIssue\",\"WifiOff\",\"WifiSignalNone\",\"Wind\",\"WrapText\",\"Wristwatch\",\"Yen\",\"YenSquare\",\"Yoga\",\"YouTube\",\"ZoomIn\",\"ZoomOut\",];const moduleBaseUrl=\"https://framer.com/m/iconoir-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * ICONOIR\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.11`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{size:\"100$%\",style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Iconoir\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Iconoir site](https://iconoir.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Iconoir.map", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-pXcb0 .framer-styles-preset-egmt4d:not(.rich-text-wrapper), .framer-pXcb0 .framer-styles-preset-egmt4d.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 170%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-aeeed792-0661-41de-ae1a-a4c529e6c58f, #121926); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-pXcb0\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/uBDiWAYKEMhEdWJMIe71/ButVa4O7479nRHQHy5Xr/A3Y3AgHgK.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/i067HAbHxciP7z98HrRS/Cl6yKdiVotFBtbyfTdxd/h_xFaQJq3.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rk10eDks5Pg3eP8NSk02/nkzRcMi1z4CPRzrmrIIO/PGZSagJf1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2fDmbLsn9hZ9LW7qpmXs/9CKciLYtwPIWhqbjXiaJ/VKXgg_ZgQ.js\";import Button from\"https://framerusercontent.com/modules/jvjKeO9fFXzYqao6XwOd/qOlp4k90HcbfjWGBwy9z/msHF_hmMB.js\";const IconoirFonts=getFonts(Iconoir);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const IconoirControls=getPropertyControls(Iconoir);const cycleOrder=[\"g6jp6e0HS\",\"UNefLeU8y\",\"cO5zMemAg\",\"g7dyxDMoT\"];const serializationHash=\"framer-FClfR\";const variantClassNames={cO5zMemAg:\"framer-v-413eax\",g6jp6e0HS:\"framer-v-1iw9qlt\",g7dyxDMoT:\"framer-v-1d6di2a\",UNefLeU8y:\"framer-v-1hmtdw3\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:50,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"g7dyxDMoT\",Desktop:\"g6jp6e0HS\",Phone:\"cO5zMemAg\",Tablet:\"UNefLeU8y\"};const getProps=({content,height,icon,id,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,Nq0Pk6nil:(_ref=icon!==null&&icon!==void 0?icon:props.Nq0Pk6nil)!==null&&_ref!==void 0?_ref:\"Home\",QKHMKR9Zy:(_ref1=content!==null&&content!==void 0?content:props.QKHMKR9Zy)!==null&&_ref1!==void 0?_ref1:\"Multiple color-coded views, schedule by client or caregiver, recurring visits in one click, map and directions to client\u2019s house, notification to caregiver for schedules, caregiver suggestion and more.\",QQ_81ePOM:(_ref2=title!==null&&title!==void 0?title:props.QQ_81ePOM)!==null&&_ref2!==void 0?_ref2:\"Scheduling\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"g6jp6e0HS\"};};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,QQ_81ePOM,QKHMKR9Zy,Nq0Pk6nil,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"g6jp6e0HS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1iw9qlt\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"g6jp6e0HS\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cO5zMemAg:{\"data-framer-name\":\"Phone\"},g7dyxDMoT:{\"data-framer-name\":\"Variant 4\"},UNefLeU8y:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-wrsycn\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"cYy9Gtdhf\",style:{backgroundColor:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(245, 250, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({UNefLeU8y:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r68gb5-container\",layoutDependency:layoutDependency,layoutId:\"NSJhrRVfl-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\",height:\"100%\",iconSearch:\"Home\",iconSelection:Nq0Pk6nil,id:\"NSJhrRVfl\",layoutId:\"NSJhrRVfl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-2c536n\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"Uhge1GvXd\",...addPropertyOverrides({UNefLeU8y:{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-58rw1u\",\"data-styles-preset\":\"VKXgg_ZgQ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141)))\"},children:\"Scheduling\"})}),className:\"framer-dmwn1x\",\"data-framer-name\":\"Take into account all sales\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u8gGwUeVa\",style:{\"--extracted-1eung3n\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\"},text:QQ_81ePOM,variants:{g7dyxDMoT:{\"--extracted-a0htzi\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({g7dyxDMoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141)))\"},children:\"Scheduling\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-102jfeq\",\"data-styles-preset\":\"h_xFaQJq3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101)))\"},children:\"Multiple color-coded views, schedule by client or caregiver, recurring visits in one click, map and directions to client\u2019s house, notification to caregiver for schedules, caregiver suggestion and more.\"})}),className:\"framer-l2jb06\",\"data-framer-name\":\"All forms of your sales ranging from daily, monthly, and yearly will be recorded in the form of a graphic system that contains detailed information about your business.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aOrU9GZTM\",style:{\"--extracted-r6o4lv\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\"},text:QKHMKR9Zy,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({g7dyxDMoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-egmt4d\",\"data-styles-preset\":\"A3Y3AgHgK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101)))\"},children:\"Multiple color-coded views, schedule by client or caregiver, recurring visits in one click, map and directions to client\u2019s house, notification to caregiver for schedules, caregiver suggestion and more.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||366)-40-356.8)/2+34+32)+0+245.8,...addPropertyOverrides({cO5zMemAg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||420)-40-318.8)/2+34+18)+0+221.8},g7dyxDMoT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||396)-40-389.4)/2+40+32)+0+272.4},UNefLeU8y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||397)-40-356.8)/2+34+32)+0+245.8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3dnts5-container\",layoutDependency:layoutDependency,layoutId:\"DTprbR7sY-container\",children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Learn More\",height:\"100%\",id:\"DTprbR7sY\",layoutId:\"DTprbR7sY\",variant:\"tC__QrhX9\",veRuDb6NA:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({cO5zMemAg:{veRuDb6NA:resolvedLinks[2]},g7dyxDMoT:{veRuDb6NA:resolvedLinks[3]},UNefLeU8y:{veRuDb6NA:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FClfR.framer-tbh2ji, .framer-FClfR .framer-tbh2ji { display: block; }\",\".framer-FClfR.framer-1iw9qlt { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 612px; }\",\".framer-FClfR .framer-wrsycn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); overflow: hidden; position: relative; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FClfR .framer-r68gb5-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-FClfR .framer-2c536n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FClfR .framer-dmwn1x, .framer-FClfR .framer-l2jb06 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 572px; word-break: break-word; word-wrap: break-word; }\",\".framer-FClfR .framer-3dnts5-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FClfR.framer-1iw9qlt, .framer-FClfR .framer-2c536n { gap: 0px; } .framer-FClfR.framer-1iw9qlt > *, .framer-FClfR .framer-2c536n > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-FClfR.framer-1iw9qlt > :first-child, .framer-FClfR .framer-2c536n > :first-child { margin-top: 0px; } .framer-FClfR.framer-1iw9qlt > :last-child, .framer-FClfR .framer-2c536n > :last-child { margin-bottom: 0px; } }\",\".framer-FClfR.framer-v-1hmtdw3.framer-1iw9qlt { width: min-content; }\",\".framer-FClfR.framer-v-1hmtdw3 .framer-2c536n { align-self: stretch; width: auto; }\",\".framer-FClfR.framer-v-1hmtdw3 .framer-dmwn1x { order: 0; width: 100%; }\",\".framer-FClfR.framer-v-1hmtdw3 .framer-l2jb06 { order: 1; width: 400px; }\",\".framer-FClfR.framer-v-1hmtdw3 .framer-3dnts5-container { order: 2; }\",\".framer-FClfR.framer-v-413eax.framer-1iw9qlt { gap: 18px; width: 320px; }\",\".framer-FClfR.framer-v-413eax .framer-2c536n { gap: 20px; width: 280px; }\",\".framer-FClfR.framer-v-413eax .framer-dmwn1x, .framer-FClfR.framer-v-413eax .framer-l2jb06 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FClfR.framer-v-413eax.framer-1iw9qlt, .framer-FClfR.framer-v-413eax .framer-2c536n { gap: 0px; } .framer-FClfR.framer-v-413eax.framer-1iw9qlt > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-FClfR.framer-v-413eax.framer-1iw9qlt > :first-child, .framer-FClfR.framer-v-413eax .framer-2c536n > :first-child { margin-top: 0px; } .framer-FClfR.framer-v-413eax.framer-1iw9qlt > :last-child, .framer-FClfR.framer-v-413eax .framer-2c536n > :last-child { margin-bottom: 0px; } .framer-FClfR.framer-v-413eax .framer-2c536n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-FClfR.framer-v-1d6di2a .framer-wrsycn { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 366\n * @framerIntrinsicWidth 612\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UNefLeU8y\":{\"layout\":[\"auto\",\"auto\"]},\"cO5zMemAg\":{\"layout\":[\"fixed\",\"auto\"]},\"g7dyxDMoT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"QQ_81ePOM\":\"title\",\"QKHMKR9Zy\":\"content\",\"Nq0Pk6nil\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruDSpF58BS=withCSS(Component,css,\"framer-FClfR\");export default FrameruDSpF58BS;FrameruDSpF58BS.displayName=\"Features Card\";FrameruDSpF58BS.defaultProps={height:366,width:612};addPropertyControls(FrameruDSpF58BS,{variant:{options:[\"g6jp6e0HS\",\"UNefLeU8y\",\"cO5zMemAg\",\"g7dyxDMoT\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},QQ_81ePOM:{defaultValue:\"Scheduling\",displayTextArea:false,title:\"Title\",type:ControlType.String},QKHMKR9Zy:{defaultValue:\"Multiple color-coded views, schedule by client or caregiver, recurring visits in one click, map and directions to client\u2019s house, notification to caregiver for schedules, caregiver suggestion and more.\",displayTextArea:true,title:\"Content\",type:ControlType.String},Nq0Pk6nil:(IconoirControls===null||IconoirControls===void 0?void 0:IconoirControls[\"iconSelection\"])&&{...IconoirControls[\"iconSelection\"],defaultValue:\"Home\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FrameruDSpF58BS,[{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\"}]},...IconoirFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruDSpF58BS\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"QQ_81ePOM\\\":\\\"title\\\",\\\"QKHMKR9Zy\\\":\\\"content\\\",\\\"Nq0Pk6nil\\\":\\\"icon\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UNefLeU8y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cO5zMemAg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g7dyxDMoT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"612\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"366\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5053712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9z0fX8lKFRer7pODVczI/EoLTmUiJvsy0QpQDrlxT/LLoQlBZuZ.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/9g8m9LSdvMEoiLMmpem3/yusZVpRhcCeiolrjYRRa/nApXiDo4Q.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gRUTAAKw2d4h4pj42AdH/RLbvLCYUcs3gZPXtmnKB/QjxwWaS0y.js\";const HeroFonts=getFonts(Hero);const cycleOrder=[\"BjGKunZoz\"];const serializationHash=\"framer-on87j\";const variantClassNames={BjGKunZoz:\"framer-v-1nzsi8l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,name1,text,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,FAgm7G3Wt:(_ref=text!==null&&text!==void 0?text:props.FAgm7G3Wt)!==null&&_ref!==void 0?_ref:\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",IYzhQJrGl:(_ref1=title!==null&&title!==void 0?title:props.IYzhQJrGl)!==null&&_ref1!==void 0?_ref1:\"General Manager\",WYi8QwBZf:(_ref2=name1!==null&&name1!==void 0?name1:props.WYi8QwBZf)!==null&&_ref2!==void 0?_ref2:\"William Neat\"};};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,FAgm7G3Wt,WYi8QwBZf,IYzhQJrGl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BjGKunZoz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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-1nzsi8l\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BjGKunZoz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(237, 237, 237)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 4px 8px 0px rgba(158, 158, 158, 0.15)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bm9nli\",layoutDependency:layoutDependency,layoutId:\"pidNfTWfF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2x1dsx\",layoutDependency:layoutDependency,layoutId:\"u7qsF_AXL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15nzywo\",layoutDependency:layoutDependency,layoutId:\"YOpkNzrAF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zimb8x-container\",layoutDependency:layoutDependency,layoutId:\"oFXnSgRuL-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 227, 46)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"oFXnSgRuL\",layoutId:\"oFXnSgRuL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rephpj-container\",layoutDependency:layoutDependency,layoutId:\"a2dSDvCvY-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 227, 46)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"a2dSDvCvY\",layoutId:\"a2dSDvCvY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hkbaud-container\",layoutDependency:layoutDependency,layoutId:\"ogFHE8B9A-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 227, 46)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"ogFHE8B9A\",layoutId:\"ogFHE8B9A\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19ap7r6-container\",layoutDependency:layoutDependency,layoutId:\"TyzkKwuoq-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 227, 46)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"TyzkKwuoq\",layoutId:\"TyzkKwuoq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xelqg7-container\",layoutDependency:layoutDependency,layoutId:\"JKwPG3LxB-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 227, 46)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"JKwPG3LxB\",layoutId:\"JKwPG3LxB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-h4lrnd\",\"data-styles-preset\":\"LLoQlBZuZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(94, 74, 74))\"},children:\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\"})}),className:\"framer-d2m4ao\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k7mbif570\",style:{\"--extracted-r6o4lv\":\"rgb(94, 74, 74)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:FAgm7G3Wt,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mjra21\",layoutDependency:layoutDependency,layoutId:\"eHxiStMIq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s94beg\",layoutDependency:layoutDependency,layoutId:\"xQ821EHnN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-xb4dd2\",\"data-styles-preset\":\"QjxwWaS0y\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(16, 24, 40)))\"},children:\"William Neat\"})}),className:\"framer-574kc4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y7xwE8mHn\",style:{\"--extracted-1w1cjl5\":\"var(--token-23ac8a8a-b8fb-4215-aa5f-899901ca3b47, rgb(16, 24, 40))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WYi8QwBZf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rfde6y\",\"data-styles-preset\":\"nApXiDo4Q\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf21f051-895e-40b8-8dc5-e5cf5fec44a8, rgb(102, 112, 133)))\"},children:\"General Manager\"})}),className:\"framer-92h2co\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XqjEdf0ZR\",style:{\"--extracted-r6o4lv\":\"var(--token-cf21f051-895e-40b8-8dc5-e5cf5fec44a8, rgb(102, 112, 133))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IYzhQJrGl,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-on87j.framer-1c92f9x, .framer-on87j .framer-1c92f9x { display: block; }\",\".framer-on87j.framer-1nzsi8l { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 450px; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-on87j .framer-bm9nli { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; height: 1px; justify-content: space-between; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-on87j .framer-2x1dsx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-on87j .framer-15nzywo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-on87j .framer-zimb8x-container, .framer-on87j .framer-1rephpj-container, .framer-on87j .framer-1hkbaud-container, .framer-on87j .framer-19ap7r6-container, .framer-on87j .framer-1xelqg7-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-on87j .framer-d2m4ao, .framer-on87j .framer-574kc4, .framer-on87j .framer-92h2co { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-on87j .framer-1mjra21 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-on87j .framer-s94beg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-on87j.framer-1nzsi8l, .framer-on87j .framer-2x1dsx, .framer-on87j .framer-15nzywo, .framer-on87j .framer-1mjra21, .framer-on87j .framer-s94beg { gap: 0px; } .framer-on87j.framer-1nzsi8l > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-on87j.framer-1nzsi8l > :first-child, .framer-on87j .framer-2x1dsx > :first-child, .framer-on87j .framer-s94beg > :first-child { margin-top: 0px; } .framer-on87j.framer-1nzsi8l > :last-child, .framer-on87j .framer-2x1dsx > :last-child, .framer-on87j .framer-s94beg > :last-child { margin-bottom: 0px; } .framer-on87j .framer-2x1dsx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-on87j .framer-15nzywo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-on87j .framer-15nzywo > :first-child, .framer-on87j .framer-1mjra21 > :first-child { margin-left: 0px; } .framer-on87j .framer-15nzywo > :last-child, .framer-on87j .framer-1mjra21 > :last-child { margin-right: 0px; } .framer-on87j .framer-1mjra21 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-on87j .framer-s94beg > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-on87j[data-border=\"true\"]::after, .framer-on87j [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 450\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"FAgm7G3Wt\":\"text\",\"WYi8QwBZf\":\"name1\",\"IYzhQJrGl\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUW39sY8oE=withCSS(Component,css,\"framer-on87j\");export default FramerUW39sY8oE;FramerUW39sY8oE.displayName=\"Testimonial\";FramerUW39sY8oE.defaultProps={height:450,width:400};addPropertyControls(FramerUW39sY8oE,{FAgm7G3Wt:{defaultValue:\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",displayTextArea:true,title:\"Text\",type:ControlType.String},WYi8QwBZf:{defaultValue:\"William Neat\",displayTextArea:false,title:\"Name\",type:ControlType.String},IYzhQJrGl:{defaultValue:\"General Manager\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerUW39sY8oE,[{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\"}]},...HeroFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUW39sY8oE\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"450\",\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"FAgm7G3Wt\\\":\\\"text\\\",\\\"WYi8QwBZf\\\":\\\"name1\\\",\\\"IYzhQJrGl\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/uBDiWAYKEMhEdWJMIe71/ButVa4O7479nRHQHy5Xr/A3Y3AgHgK.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/i067HAbHxciP7z98HrRS/Cl6yKdiVotFBtbyfTdxd/h_xFaQJq3.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/9z0fX8lKFRer7pODVczI/EoLTmUiJvsy0QpQDrlxT/LLoQlBZuZ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rk10eDks5Pg3eP8NSk02/nkzRcMi1z4CPRzrmrIIO/PGZSagJf1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2fDmbLsn9hZ9LW7qpmXs/9CKciLYtwPIWhqbjXiaJ/VKXgg_ZgQ.js\";const IconoirFonts=getFonts(Iconoir);const IconoirControls=getPropertyControls(Iconoir);const cycleOrder=[\"QOBcPBSyQ\",\"BdcH7hybl\",\"ixnhAMmgD\",\"Gve5rnh58\"];const serializationHash=\"framer-ICdxC\";const variantClassNames={BdcH7hybl:\"framer-v-kdcbjf\",Gve5rnh58:\"framer-v-82gdxa\",ixnhAMmgD:\"framer-v-v9qxs6\",QOBcPBSyQ:\"framer-v-13j776p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 4\":\"Gve5rnh58\",Desktop:\"QOBcPBSyQ\",Mobile:\"BdcH7hybl\",Tablet:\"ixnhAMmgD\"};const getProps=({content,heading3,height,icon,id,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,clFUjnGQV:(_ref=heading3!==null&&heading3!==void 0?heading3:props.clFUjnGQV)!==null&&_ref!==void 0?_ref:\"Design Philosophy\",FhoU6ADwj:(_ref1=content!==null&&content!==void 0?content:props.FhoU6ADwj)!==null&&_ref1!==void 0?_ref1:\"Design is more than just aesthetics; it's about solving problems and making experiences better. I believe in the power of user-centered design, where every pixel serves a purpose. It's about finding that perfect balance between form and function, creating designs that not only look great but also work seamlessly.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"QOBcPBSyQ\",VEAs4PZrf:(_ref3=icon!==null&&icon!==void 0?icon:props.VEAs4PZrf)!==null&&_ref3!==void 0?_ref3:\"Dollar\"};};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,clFUjnGQV,FhoU6ADwj,VEAs4PZrf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QOBcPBSyQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.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-13j776p\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"QOBcPBSyQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({BdcH7hybl:{\"data-framer-name\":\"Mobile\"},Gve5rnh58:{\"data-framer-name\":\"Variant 4\"},ixnhAMmgD:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10rc6px\",layoutDependency:layoutDependency,layoutId:\"RS_nu8maB\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tg8u16\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"BcpGaYyAR\",style:{backgroundColor:\"var(--token-84c034a3-3497-48f5-b126-ccb1fbb5eba6, rgb(247, 247, 247))\",borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cxrs3v\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"zmvqFUvF6\",style:{backgroundColor:\"var(--token-c7b3ea08-a5d3-4947-8863-496913e639b7, rgb(245, 250, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-diqv1z-container\",layoutDependency:layoutDependency,layoutId:\"EzfYD2KDY-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\",height:\"100%\",iconSearch:\"Home\",iconSelection:VEAs4PZrf,id:\"EzfYD2KDY\",layoutId:\"EzfYD2KDY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-58rw1u\",\"data-styles-preset\":\"VKXgg_ZgQ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141)))\"},children:\"Design Philosophy\"})}),className:\"framer-6dvwta\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oPFMgXdGp\",style:{\"--extracted-1eung3n\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:clFUjnGQV,variants:{Gve5rnh58:{\"--extracted-a0htzi\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Gve5rnh58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141)))\"},children:\"Design Philosophy\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p7xkcc\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"KCi_py8GY\",style:{backgroundColor:\"var(--token-84c034a3-3497-48f5-b126-ccb1fbb5eba6, rgb(247, 247, 247))\",borderBottomLeftRadius:16,borderBottomRightRadius:16},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-102jfeq\",\"data-styles-preset\":\"h_xFaQJq3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101)))\"},children:\"Design is more than just aesthetics; it's about solving problems and making experiences better. I believe in the power of user-centered design, where every pixel serves a purpose. It's about finding that perfect balance between form and function, creating designs that not only look great but also work seamlessly.\"})}),className:\"framer-gikjy8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GWVI8foEY\",style:{\"--extracted-r6o4lv\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:FhoU6ADwj,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BdcH7hybl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-h4lrnd\",\"data-styles-preset\":\"LLoQlBZuZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101)))\"},children:\"Design is more than just aesthetics; it's about solving problems and making experiences better. I believe in the power of user-centered design, where every pixel serves a purpose. It's about finding that perfect balance between form and function, creating designs that not only look great but also work seamlessly.\"})})},Gve5rnh58:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-egmt4d\",\"data-styles-preset\":\"A3Y3AgHgK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101)))\"},children:\"Design is more than just aesthetics; it's about solving problems and making experiences better. I believe in the power of user-centered design, where every pixel serves a purpose. It's about finding that perfect balance between form and function, creating designs that not only look great but also work seamlessly.\"})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ICdxC.framer-1at2ifu, .framer-ICdxC .framer-1at2ifu { display: block; }\",\".framer-ICdxC.framer-13j776p { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 413px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ICdxC .framer-10rc6px { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-ICdxC .framer-1tg8u16 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px; position: relative; width: 528px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ICdxC .framer-cxrs3v { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); overflow: hidden; position: relative; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ICdxC .framer-diqv1z-container { flex: none; height: 28px; left: 3px; position: absolute; top: calc(50.00000000000002% - 28px / 2); width: 28px; }\",\".framer-ICdxC .framer-6dvwta { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ICdxC .framer-p7xkcc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 528px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ICdxC .framer-gikjy8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 432px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ICdxC.framer-13j776p, .framer-ICdxC .framer-10rc6px, .framer-ICdxC .framer-1tg8u16, .framer-ICdxC .framer-p7xkcc { gap: 0px; } .framer-ICdxC.framer-13j776p > *, .framer-ICdxC .framer-10rc6px > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ICdxC.framer-13j776p > :first-child, .framer-ICdxC .framer-10rc6px > :first-child { margin-top: 0px; } .framer-ICdxC.framer-13j776p > :last-child, .framer-ICdxC .framer-10rc6px > :last-child { margin-bottom: 0px; } .framer-ICdxC .framer-1tg8u16 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ICdxC .framer-1tg8u16 > :first-child, .framer-ICdxC .framer-p7xkcc > :first-child { margin-left: 0px; } .framer-ICdxC .framer-1tg8u16 > :last-child, .framer-ICdxC .framer-p7xkcc > :last-child { margin-right: 0px; } .framer-ICdxC .framer-p7xkcc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-ICdxC.framer-v-kdcbjf.framer-13j776p { height: 439px; width: 300px; }\",\".framer-ICdxC.framer-v-kdcbjf .framer-10rc6px { align-self: unset; width: 100%; }\",\".framer-ICdxC.framer-v-kdcbjf .framer-1tg8u16 { justify-content: center; padding: 24px 20px 24px 20px; width: 100%; }\",\".framer-ICdxC.framer-v-kdcbjf .framer-cxrs3v { aspect-ratio: unset; height: 32px; width: 32px; }\",\".framer-ICdxC.framer-v-kdcbjf .framer-diqv1z-container { height: 24px; left: 4px; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-ICdxC.framer-v-kdcbjf .framer-p7xkcc { padding: 30px 20px 30px 20px; width: 100%; }\",\".framer-ICdxC.framer-v-kdcbjf .framer-gikjy8, .framer-ICdxC.framer-v-v9qxs6 .framer-gikjy8 { flex: 1 0 0px; width: 1px; }\",\".framer-ICdxC.framer-v-v9qxs6.framer-13j776p { height: 349px; }\",\".framer-ICdxC.framer-v-v9qxs6 .framer-10rc6px { align-self: unset; width: 500px; }\",\".framer-ICdxC.framer-v-v9qxs6 .framer-1tg8u16, .framer-ICdxC.framer-v-v9qxs6 .framer-p7xkcc { padding: 24px; width: 100%; }\",\".framer-ICdxC.framer-v-82gdxa.framer-13j776p { height: min-content; }\",\".framer-ICdxC.framer-v-82gdxa .framer-cxrs3v { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\",\".framer-ICdxC.framer-v-82gdxa .framer-diqv1z-container { left: 6px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 413\n * @framerIntrinsicWidth 528\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"BdcH7hybl\":{\"layout\":[\"fixed\",\"fixed\"]},\"ixnhAMmgD\":{\"layout\":[\"auto\",\"fixed\"]},\"Gve5rnh58\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"clFUjnGQV\":\"heading3\",\"FhoU6ADwj\":\"content\",\"VEAs4PZrf\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerweQcm3TLQ=withCSS(Component,css,\"framer-ICdxC\");export default FramerweQcm3TLQ;FramerweQcm3TLQ.displayName=\"About Card\";FramerweQcm3TLQ.defaultProps={height:413,width:528};addPropertyControls(FramerweQcm3TLQ,{variant:{options:[\"QOBcPBSyQ\",\"BdcH7hybl\",\"ixnhAMmgD\",\"Gve5rnh58\"],optionTitles:[\"Desktop\",\"Mobile\",\"Tablet\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},clFUjnGQV:{defaultValue:\"Design Philosophy\",displayTextArea:true,title:\"Heading3\",type:ControlType.String},FhoU6ADwj:{defaultValue:\"Design is more than just aesthetics; it's about solving problems and making experiences better. I believe in the power of user-centered design, where every pixel serves a purpose. It's about finding that perfect balance between form and function, creating designs that not only look great but also work seamlessly.\",displayTextArea:false,title:\"Content\",type:ControlType.String},VEAs4PZrf:(IconoirControls===null||IconoirControls===void 0?void 0:IconoirControls[\"iconSelection\"])&&{...IconoirControls[\"iconSelection\"],defaultValue:\"Dollar\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerweQcm3TLQ,[{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\"}]},...IconoirFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerweQcm3TLQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"413\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"528\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"clFUjnGQV\\\":\\\"heading3\\\",\\\"FhoU6ADwj\\\":\\\"content\\\",\\\"VEAs4PZrf\\\":\\\"icon\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"BdcH7hybl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ixnhAMmgD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Gve5rnh58\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./weQcm3TLQ.map", "// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import ByTheNumbers from\"#framer/local/canvasComponent/DmDvwE7zy/DmDvwE7zy.js\";import Button from\"#framer/local/canvasComponent/msHF_hmMB/msHF_hmMB.js\";import IntegrationsSolarSys from\"#framer/local/canvasComponent/NEjjUG3Mm/NEjjUG3Mm.js\";import Footer from\"#framer/local/canvasComponent/OPLn15tGb/OPLn15tGb.js\";import FeaturesCard from\"#framer/local/canvasComponent/uDSpF58BS/uDSpF58BS.js\";import Testimonial from\"#framer/local/canvasComponent/UW39sY8oE/UW39sY8oE.js\";import AboutCard from\"#framer/local/canvasComponent/weQcm3TLQ/weQcm3TLQ.js\";import NavigationBar from\"#framer/local/canvasComponent/YyjvDALzo/YyjvDALzo.js\";import*as sharedStyle3 from\"#framer/local/css/A3Y3AgHgK/A3Y3AgHgK.js\";import*as sharedStyle8 from\"#framer/local/css/DWFe7mv5Y/DWFe7mv5Y.js\";import*as sharedStyle6 from\"#framer/local/css/h_xFaQJq3/h_xFaQJq3.js\";import*as sharedStyle2 from\"#framer/local/css/JNvsk5bqQ/JNvsk5bqQ.js\";import*as sharedStyle7 from\"#framer/local/css/LLoQlBZuZ/LLoQlBZuZ.js\";import*as sharedStyle9 from\"#framer/local/css/nBFEewc9a/nBFEewc9a.js\";import*as sharedStyle4 from\"#framer/local/css/PGZSagJf1/PGZSagJf1.js\";import*as sharedStyle5 from\"#framer/local/css/qTrZzhaCk/qTrZzhaCk.js\";import*as sharedStyle1 from\"#framer/local/css/rNnhaf8xT/rNnhaf8xT.js\";import*as sharedStyle from\"#framer/local/css/VEWRitDpv/VEWRitDpv.js\";import*as sharedStyle10 from\"#framer/local/css/VKXgg_ZgQ/VKXgg_ZgQ.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationBarFonts=getFonts(NavigationBar);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const FeatherFonts=getFonts(Feather);const ImageWithFX=withFX(Image);const AboutCardFonts=getFonts(AboutCard);const IntegrationsSolarSysFonts=getFonts(IntegrationsSolarSys);const FeaturesCardFonts=getFonts(FeaturesCard);const ContainerWithFX=withFX(Container);const ByTheNumbersFonts=getFonts(ByTheNumbers);const TestimonialFonts=getFonts(Testimonial);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const breakpoints={m_jc43S_j:\"(min-width: 2000px)\",nfoLtj4ui:\"(min-width: 810px) and (max-width: 1199px)\",PZtQslMcU:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px) and (max-width: 1999px)\",X_Cd7TSE1:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ROZu9\";const variantClassNames={m_jc43S_j:\"framer-v-tzwcz7\",nfoLtj4ui:\"framer-v-8i92r2\",PZtQslMcU:\"framer-v-5ypxkc\",WQLkyLRf1:\"framer-v-72rtr7\",X_Cd7TSE1:\"framer-v-1nemynj\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition1={damping:80,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:80};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:2.5,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:.6,rotate:60,rotateX:0,rotateY:0,scale:1.6,skewX:0,skewY:0,x:100,y:100};const transition3={delay:0,duration:3.5,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:.5,rotate:5,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:-100,y:-100};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:100};const transition4={damping:40,delay:.1,mass:1,stiffness:200,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition4,x:0,y:100};const transition5={damping:40,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition5,x:0,y:100};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:100};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition6={damping:80,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:80};const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:40,y:80};const transition7={damping:80,delay:1.2,mass:1,stiffness:200,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:40,y:80};const transition8={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:40,y:-60};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:40,y:-60};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:12};const animation18={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-100,y:0};const transition9={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation19={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-100,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const transition10={damping:90,delay:.4,mass:1.5,stiffness:500,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition11={delay:.2,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation23={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition12={damping:30,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation24={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:0};const animation25={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-100,y:0};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:60,y:0};const transition13={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-60,y:0};const animation28={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Big Desktop\":\"m_jc43S_j\",\"Desktop 2\":\"X_Cd7TSE1\",Desktop:\"WQLkyLRf1\",Phone:\"PZtQslMcU\",Tablet:\"nfoLtj4ui\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"X_Cd7TSE1\",\"nfoLtj4ui\",\"PZtQslMcU\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"Suirr3ii9\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"AwQ4sBe3m\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"eVer0qMwN\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"flwDYj05V\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"AGEEOLKcL\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"gsbHebIdv\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"ls2XqHvht\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"CXef9sjub\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"HztGNHAeK\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"EBXOI2JRw\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"vO_LMgp2f\");const ref11=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: none; }\"}),/*#__PURE__*/_jsxs(Image,{...restProps,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1670,pixelWidth:543,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/CWg13FGwmLp9W0gOUVuzp2TbOGA.svg\",srcSet:\"https://framerusercontent.com/images/CWg13FGwmLp9W0gOUVuzp2TbOGA.svg 543w\"},className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:93,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mfqv5l-container\",nodeId:\"uR1HUeK7k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{variant:\"vHGSNIrZu\"},PZtQslMcU:{variant:\"isHp2s9Uc\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"uR1HUeK7k\",layoutId:\"uR1HUeK7k\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"fY6Hznw7j\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-98tswf\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bfr7nw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iuzc7w\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{style:{scale:.8},transformTemplate:undefined},PZtQslMcU:{style:{scale:.6},transformTemplate:undefined},X_Cd7TSE1:{style:{scale:.8}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nmcw1e\",\"data-framer-name\":\"Artwork\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s97w8q\",\"data-framer-name\":\"Gradient\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.5,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1emnlbz\",\"data-framer-name\":\"color\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ekctro\",\"data-framer-name\":\"color\",transformTemplate:transformTemplate1})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17xj8kn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mthk70\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aeqjo8\",\"data-framer-name\":\"Title & Subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-rb5sx5\",\"data-styles-preset\":\"rNnhaf8xT\",style:{\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"Easy Visit Verification\"})})},PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-oyppf9\",\"data-styles-preset\":\"VEWRitDpv\",style:{\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"Easy Visit Verification\"})}),className:\"framer-1ll60mz\",\"data-framer-name\":\"Easy and reliable way to manage your business\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-egmt4d\",\"data-styles-preset\":\"A3Y3AgHgK\",style:{\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"With Vervecare, handling Electronic Visit Verification (EVV) becomes effortless. Our service is precisely constructed to simplify the task of confirming visits and delivering claims to IDoA and MCOs. Our platform provides an easy-to-use layout and instinctive procedures which allow care providers to effortlessly log in and out of appointments, at the same time granting coordinators instant access to visit information. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-egmt4d\",\"data-styles-preset\":\"A3Y3AgHgK\",style:{\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"Bid farewell to convoluted and labor-intensive EVV procedures and embrace well-organized processes and amplified productivity.\"})]})},PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined},X_Cd7TSE1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n4xn0z\",\"data-styles-preset\":\"JNvsk5bqQ\",children:\"With Vervecare, handling Electronic Visit Verification (EVV) becomes effortless. Our service is precisely constructed to simplify the task of confirming visits and delivering claims to IDoA and MCOs. Our platform provides an easy-to-use layout and instinctive procedures which allow care providers to effortlessly log in and out of appointments, at the same time granting coordinators instant access to visit information. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n4xn0z\",\"data-styles-preset\":\"JNvsk5bqQ\",children:\"Bid farewell to convoluted and labor-intensive EVV procedures and embrace well-organized processes and amplified productivity.\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n4xn0z\",\"data-styles-preset\":\"JNvsk5bqQ\",style:{\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"With Vervecare, handling Electronic Visit Verification (EVV) becomes effortless. Our service is precisely constructed to simplify the task of confirming visits and delivering claims to IDoA and MCOs. Our platform provides an easy-to-use layout and instinctive procedures which allow care providers to effortlessly log in and out of appointments, at the same time granting coordinators instant access to visit information. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-n4xn0z\",\"data-styles-preset\":\"JNvsk5bqQ\",style:{\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"Bid farewell to convoluted and labor-intensive EVV procedures and embrace well-organized processes and amplified productivity.\"})]}),className:\"framer-1tgrjg0\",\"data-framer-name\":\"We are a platform that provides services regarding business processing warehouses.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ygezw5\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-12fob4g-container\",\"data-framer-appear-id\":\"12fob4g\",initial:animation8,nodeId:\"XpCmbrfkr\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{veRuDb6NA:resolvedLinks[4]},nfoLtj4ui:{veRuDb6NA:resolvedLinks[2]},PZtQslMcU:{veRuDb6NA:resolvedLinks[3]},X_Cd7TSE1:{veRuDb6NA:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Request Demo\",height:\"100%\",id:\"XpCmbrfkr\",layoutId:\"XpCmbrfkr\",variant:\"Mz6Pk7UUN\",veRuDb6NA:resolvedLinks[0],width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Suirr3ii9\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Suirr3ii9\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Suirr3ii9\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Suirr3ii9\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Suirr3ii9\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1u3wz5q-container\",\"data-framer-appear-id\":\"1u3wz5q\",initial:animation8,nodeId:\"CshBHW_ey\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{veRuDb6NA:resolvedLinks1[4]},nfoLtj4ui:{veRuDb6NA:resolvedLinks1[2]},PZtQslMcU:{veRuDb6NA:resolvedLinks1[3]},X_Cd7TSE1:{veRuDb6NA:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Learn More\",height:\"100%\",id:\"CshBHW_ey\",layoutId:\"CshBHW_ey\",variant:\"wEFmay8pV\",veRuDb6NA:resolvedLinks1[0],width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{style:{scale:1.2}},nfoLtj4ui:{style:{scale:.9}},PZtQslMcU:{style:{scale:.7}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ja6sej\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{style:{scale:.8},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-loqo70\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3026ha\",\"data-framer-name\":\"Glass\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bawbb7\",\"data-framer-name\":\"Glass\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mwbirk\",\"data-framer-name\":\"Glass\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qf7pfl\",\"data-framer-name\":\"Glass\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wq0bcx\",\"data-framer-name\":\"Glass\"})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1unxgul hidden-1nemynj hidden-8i92r2 hidden-5ypxkc\",transformTemplate:transformTemplate3}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{transformTemplate:transformTemplate2},PZtQslMcU:{style:{scale:.8},transformTemplate:transformTemplate2},X_Cd7TSE1:{style:{scale:.8},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dtjzev\",\"data-framer-name\":\"Phone\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18csx80\",\"data-framer-name\":\"Menu\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pub6zz\",\"data-framer-name\":\"logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 33.75 20\"><path d=\"M 29.817 1.035 L 25.938 13.053 L 22.802 3.625 C 22.802 3.625 22.791 3.591 22.791 3.58 C 21.88 1.601 19.69 1.013 18.422 0.846 C 18.183 0.808 17.942 0.785 17.7 0.779 L 13.509 13.364 L 11.685 7.471 L 10.64 4.092 L 10.54 3.792 C 9.375 0.822 5.415 0.766 5.16 0.766 L 4.915 0.766 L 10.985 19.066 L 15.354 19.066 L 19.69 6.791 L 24.026 19.066 L 28.139 19.066 L 33.386 3.979 C 32.764 2.156 31.13 1.366 29.817 1.034 Z\" fill=\"rgb(248,250,252)\"></path><path d=\"M 17.7 0.779 L 14.031 0.779 L 11.685 7.482 L 9.606 13.408 L 5.15 0.779 L 0.479 0.779 L 7.394 19.079 L 11.652 19.079 L 18.423 0.855 C 18.183 0.817 17.942 0.795 17.7 0.789 Z\" fill=\"rgb(255,87,51)\"></path><path d=\"M 29.817 1.035 L 25.938 13.053 L 22.802 3.625 C 22.802 3.625 22.791 3.591 22.791 3.58 C 21.88 1.601 19.69 1.013 18.422 0.846 C 18.183 0.808 17.942 0.785 17.7 0.779 L 13.509 13.364 L 11.685 7.471 L 10.64 4.092 L 10.54 3.792 C 9.375 0.822 5.415 0.766 5.16 0.766 L 4.915 0.766 L 10.985 19.066 L 15.354 19.066 L 19.69 6.791 L 24.026 19.066 L 28.139 19.066 L 33.386 3.979 C 32.764 2.156 31.13 1.366 29.817 1.034 Z\" fill=\"rgb(29,47,111)\"></path><path d=\"M 17.7 0.779 L 14.031 0.779 L 11.685 7.482 L 9.606 13.408 L 5.15 0.779 L 0.479 0.779 L 7.394 19.079 L 11.652 19.079 L 18.423 0.855 C 18.183 0.817 17.942 0.795 17.7 0.789 Z\" fill=\"rgb(255,87,51)\"></path></svg>',svgContentId:10479645306,withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-krj94c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Dr4n8SFZI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"menu\",id:\"Dr4n8SFZI\",layoutId:\"Dr4n8SFZI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kaydiw\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:108,pixelHeight:108,pixelWidth:108,src:\"https://framerusercontent.com/images/B1gxlasPZkyo59XFzXMbpIqz2Vg.png\"},className:\"framer-axrcii\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0xi0\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sxjha8\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qgku2i\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pd8qrx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xhf9oq\",\"data-framer-name\":\"Progress State\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 101, 154)\"},children:\"NOT STARTED\"})}),className:\"framer-u49k67\",\"data-framer-name\":\"NOTSTARTED\",fonts:[\"GF;Rubik-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g27jz4\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14j22ky\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7stfvb\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12mhdor\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1er20ou\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lyclan\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1of7cn6\",\"data-framer-name\":\"Schedule Buttons\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-abr25u\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstNTAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(248, 250, 252)\"},children:\"Clock In\"})}),className:\"framer-4tj1wh\",\"data-framer-name\":\"Button\",fonts:[\"GF;Rubik-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17xnunw\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstNTAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(248, 250, 252)\"},children:\"Clock Out\"})}),className:\"framer-7irab3\",\"data-framer-name\":\"Button\",fonts:[\"GF;Rubik-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k61uxg\",\"data-framer-name\":\"Care Plan\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18g5jmm\",\"data-framer-name\":\"Frame 32\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-exh6pp\",\"data-framer-name\":\"Care Plan\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cl7t3q\",\"data-framer-name\":\"Frame 26\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b5zpsq\",\"data-framer-name\":\"Frame 24\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yomvw7\",\"data-framer-name\":\"Care plan icons\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-m54zg5\",\"data-framer-name\":\"Icons/134\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t0syxb\",\"data-framer-name\":\"Bathing\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"24\" viewBox=\"0 0 26 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.6981 10.9306H22.7799V9.9759C22.7799 9.82165 22.6643 9.69658 22.5218 9.69658H16.6708C16.5283 9.69658 16.4127 9.82165 16.4127 9.9759V10.9306H3.30874V3.25134C3.30874 2.17157 4.12148 1.28775 5.12296 1.28775C5.91259 1.28775 6.62519 1.8589 6.8563 2.68019L6.93719 2.96785L6.66756 3.03455C5.6237 3.2972 4.86489 4.33111 4.86489 5.49425C4.86489 5.6485 4.98044 5.77357 5.12296 5.77357H9.26756C9.41007 5.77357 9.52563 5.6485 9.52563 5.49425C9.52563 4.28108 8.72444 3.23466 7.62281 3.01371L7.44948 2.98036L7.41867 2.79275C7.21452 1.60042 6.2477 0.733276 5.12681 0.733276C3.8403 0.733276 2.79644 1.86307 2.79644 3.25551V10.9348H1.29422C0.58163 10.9348 0 11.5643 0 12.3355V13.457C0 17.6301 3.13541 21.0237 6.99111 21.0237H7.56118V21.8658C7.56118 22.6371 8.14281 23.2666 8.85541 23.2666H9.37156C9.79911 23.2666 10.1496 22.8914 10.1496 22.4245V21.0237H15.8465V22.4245C15.8465 22.8872 16.1932 23.2666 16.6246 23.2666H17.1407C17.8533 23.2666 18.435 22.6371 18.435 21.8658V21.0237H19.005C20.8732 21.0237 22.6296 20.2358 23.9508 18.8058C25.272 17.3758 26 15.4748 26 13.4528V12.3314C26 11.5601 25.4184 10.9306 24.7058 10.9306H24.6981ZM16.9289 10.2594H22.2637V14.2408H16.9289V10.2594ZM16.9289 14.7994H22.2637V15.6415C22.2637 16.1043 21.917 16.4837 21.4856 16.4837H17.7031C17.2756 16.4837 16.925 16.1085 16.925 15.6415V14.7994H16.9289Z\" fill=\"#26326D\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9g5gq1\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ftekzt\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t8lmnb\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3vzhy1\",\"data-framer-name\":\"Frame 26\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u8r0dg\",\"data-framer-name\":\"Frame 24\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mf57dt\",\"data-framer-name\":\"Care plan icons\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kq7wym\",\"data-framer-name\":\"Icons/129\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qu431k\",\"data-framer-name\":\"Eating\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"24\" viewBox=\"0 0 26 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.5018 19.0261L16.2389 13.5549L13.2549 16.8581L18.6369 22.8138C19.1511 23.4115 19.9025 23.751 20.7042 23.751C21.4268 23.751 22.1315 23.4645 22.642 22.9659C23.1633 22.4531 23.451 21.774 23.451 21.0526C23.451 20.2745 23.1022 19.5318 22.5018 19.0225V19.0261Z\" fill=\"#26326D\"/>\\n<path d=\"M8.11948 10.9797C8.28742 10.9691 8.43345 11.0295 8.54663 11.1502L9.80617 12.5353L12.7451 9.99594L11.157 8.62857C11.0292 8.51492 10.9635 8.36575 10.9744 8.19528C11.0986 6.00393 10.4816 4.19616 9.14902 2.82169C6.76501 0.371081 3.10322 0.300049 3.06671 0.300049C1.98241 0.300049 1.19018 0.704932 0.810487 1.08851C0.416196 1.45787 0 2.22857 0 3.2834C0 3.31892 0.0693661 6.88118 2.5921 9.20393C4.00498 10.5003 5.85961 11.1005 8.12313 10.9797H8.11948Z\" fill=\"#26326D\"/>\\n<path d=\"M25.8386 3.9792L25.2714 3.41542L20.6616 8.18781C20.4713 8.38531 20.1553 8.39249 19.9543 8.19858L19.9004 8.14472C19.703 7.9544 19.6958 7.63839 19.8897 7.4373L24.5102 2.65414L23.663 1.80667L18.7408 6.29896C18.5362 6.48569 18.2202 6.47133 18.0371 6.26664L17.9869 6.20919C17.8002 6.0045 17.8145 5.6885 18.0192 5.50536L22.9054 1.04539L22.3166 0.45647C22.13 0.266149 21.8284 0.248194 21.6166 0.409788L16.7662 4.1408C16.102 4.6543 15.6568 5.42636 15.5527 6.26305L15.3014 8.29195C15.2835 8.42122 15.2224 8.53972 15.1255 8.62591L3.50047 18.9463C2.89373 19.4598 2.54907 20.2139 2.54907 21.0147C2.54907 22.5229 3.77333 23.751 5.2812 23.751C6.08182 23.751 6.83576 23.4027 7.34556 22.803L17.6745 11.1719C17.7571 11.0749 17.8792 11.0139 18.0048 10.9959L20.0369 10.7446C20.8734 10.6368 21.6453 10.1952 22.1587 9.52724L25.8889 4.67944C26.054 4.46757 26.0325 4.16593 25.8422 3.97561L25.8386 3.9792Z\" fill=\"#26326D\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lkeh7g\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fj48om\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hg60sq\"})]})]})})]})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:708,pixelWidth:492,sizes:\"210px\",src:\"https://framerusercontent.com/images/3cX6SvoyJ2XRyTgzPsjB5lOHc.png\",srcSet:\"https://framerusercontent.com/images/3cX6SvoyJ2XRyTgzPsjB5lOHc.png 492w\"},className:\"framer-kx1l3d\",\"data-framer-name\":\"Rectangle 358\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{style:{scale:.8}},PZtQslMcU:{style:{scale:.6}},X_Cd7TSE1:{style:{scale:.8}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__loop:animation14,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:456,pixelWidth:1056,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/DcPJvz6KErh7br3VwGxhdGk4aI.png\",srcSet:\"https://framerusercontent.com/images/DcPJvz6KErh7br3VwGxhdGk4aI.png?scale-down-to=512 512w,https://framerusercontent.com/images/DcPJvz6KErh7br3VwGxhdGk4aI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DcPJvz6KErh7br3VwGxhdGk4aI.png 1056w\"},className:\"framer-4dkqm8\",\"data-framer-name\":\"hero2 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{style:{scale:.8}},PZtQslMcU:{style:{scale:.6}},X_Cd7TSE1:{style:{scale:.8}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__loop:animation17,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kktbzx\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kwti5k\",\"data-framer-name\":\"hero4 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:94,intrinsicWidth:209,svg:'<svg width=\"209\" height=\"94\" viewBox=\"0 0 209 94\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_555_155)\">\\n<path d=\"M199 0H10C4.47715 0 0 4.47715 0 10V84C0 89.5229 4.47715 94 10 94H199C204.523 94 209 89.5229 209 84V10C209 4.47715 204.523 0 199 0Z\" fill=\"white\"/>\\n<path opacity=\"0.5\" d=\"M23.6959 27.192H25.5999V27.272C25.5999 29.8 23.9199 31.16 21.2479 31.16C18.5759 31.16 16.8799 29.752 16.8799 27.112V23.672C16.8799 21.048 18.5759 19.64 21.2799 19.64C23.9199 19.64 25.5999 21 25.5999 23.528V23.592H23.6959V23.528C23.6959 22.088 22.7679 21.288 21.2799 21.288C19.7279 21.288 18.7839 22.136 18.7839 23.672V27.112C18.7839 28.664 19.7279 29.496 21.2479 29.496C22.7679 29.496 23.6959 28.712 23.6959 27.272V27.192ZM34.1353 27.112V23.672C34.1353 22.136 33.1753 21.288 31.6553 21.288C30.1033 21.288 29.1433 22.136 29.1433 23.672V27.112C29.1433 28.664 30.1033 29.496 31.6233 29.496C33.1753 29.496 34.1353 28.664 34.1353 27.112ZM36.0393 23.672V27.112C36.0393 29.752 34.3273 31.16 31.6233 31.16C28.9513 31.16 27.2393 29.752 27.2393 27.112V23.672C27.2393 21.048 28.9513 19.64 31.6553 19.64C34.3273 19.64 36.0393 21.048 36.0393 23.672ZM45.9778 31V23.544L42.9218 29.304L39.8658 23.544V31H37.9618V19.8H39.8018L42.9218 25.688L46.0418 19.8H47.8818V31H45.9778ZM49.9618 31V19.8H54.3778C56.6178 19.8 58.0738 20.872 58.0738 23.4C58.0738 25.928 56.6338 27.016 54.3778 27.016H51.8658V31H49.9618ZM51.8658 21.448V25.368H54.3138C55.4178 25.368 56.1218 24.824 56.1218 23.4C56.1218 21.976 55.4018 21.448 54.3138 21.448H51.8658ZM59.5087 31V19.8H61.4127V29.336H67.0287V31H59.5087ZM68.3837 31V19.8H70.2877V31H68.3837ZM77.552 19.8L81.456 31H79.392L78.512 28.376H74.096L73.216 31H71.328L75.232 19.8H77.552ZM76.304 21.816L74.608 26.728H78L76.304 21.816ZM89.357 31L84.397 23.288V31H82.493V19.8H84.269L89.229 27.512V19.8H91.133V31H89.357ZM99.8678 27.192H101.772V27.272C101.772 29.8 100.092 31.16 97.4198 31.16C94.7478 31.16 93.0518 29.752 93.0518 27.112V23.672C93.0518 21.048 94.7478 19.64 97.4518 19.64C100.092 19.64 101.772 21 101.772 23.528V23.592H99.8678V23.528C99.8678 22.088 98.9398 21.288 97.4518 21.288C95.8998 21.288 94.9558 22.136 94.9558 23.672V27.112C94.9558 28.664 95.8998 29.496 97.4198 29.496C98.9398 29.496 99.8678 28.712 99.8678 27.272V27.192ZM103.571 31V19.8H111.091V21.448H105.475V24.568H110.291V26.216H105.475V29.336H111.091V31H103.571Z\" fill=\"#1D2F6F\"/>\\n<path d=\"M24.64 45.2V62H20.92V48.968L16.72 51.968V48.2L20.92 45.2H24.64ZM35.5821 45.2L30.5661 55.712H33.6381V52.472H37.3581V55.712H39.3261V58.952H37.3581V62H33.6381V58.952H26.7981V55.712L31.6941 45.2H35.5821ZM39.0389 64.688L46.3829 42.512H49.4309L42.0869 64.688H39.0389ZM57.0541 45.2V62H53.3341V48.968L49.1341 51.968V48.2L53.3341 45.2H57.0541ZM67.9962 45.2L62.9802 55.712H66.0522V52.472H69.7722V55.712H71.7402V58.952H69.7722V62H66.0522V58.952H59.2122V55.712L64.1082 45.2H67.9962Z\" fill=\"#1D2F6F\"/>\\n<path d=\"M193 47C193 29.8792 179.121 16 162 16C144.879 16 131 29.8792 131 47C131 64.1208 144.879 78 162 78C179.121 78 193 64.1208 193 47Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M158 33H153.5C152.119 33 151 34.12 151 35.5V58.5C151 59.88 152.12 61 153.5 61H170.5C171.88 61 173 59.88 173 58.5V48C173 46.6739 172.473 45.4021 171.536 44.4645C170.598 43.5268 169.326 43 168 43H165.5C164.837 43 164.201 42.7366 163.732 42.2678C163.263 41.7989 163 41.163 163 40.5V38C163 36.6739 162.473 35.4021 161.536 34.4645C160.598 33.5268 159.326 33 158 33ZM166.813 47.5813C166.893 47.4747 166.951 47.3532 166.984 47.2239C167.016 47.0946 167.022 46.9602 167.002 46.8285C166.981 46.6968 166.935 46.5704 166.865 46.4569C166.795 46.3434 166.703 46.245 166.595 46.1675C166.487 46.09 166.364 46.035 166.234 46.0056C166.104 45.9763 165.969 45.9732 165.838 45.9966C165.707 46.02 165.582 46.0694 165.47 46.1419C165.358 46.2144 165.262 46.3085 165.187 46.4187L160.872 52.4587L158.707 50.2933C158.517 50.1167 158.266 50.0205 158.007 50.0251C157.748 50.0297 157.501 50.1346 157.318 50.3178C157.135 50.5011 157.03 50.7482 157.025 51.0073C157.021 51.2664 157.117 51.5171 157.293 51.7067L160.293 54.7067C160.396 54.8092 160.52 54.8882 160.656 54.9382C160.792 54.9881 160.938 55.0078 161.082 54.9959C161.227 54.984 161.367 54.9407 161.494 54.8691C161.62 54.7975 161.729 54.6993 161.813 54.5813L166.813 47.5813Z\" fill=\"#1D2F6F\"/>\\n<path d=\"M163.295 33.4213C164.397 34.6919 165.002 36.3181 165 38V40.5C165 40.776 165.224 41 165.5 41H168C169.682 40.9977 171.308 41.6033 172.579 42.7053C171.992 40.4744 170.823 38.4393 169.192 36.8081C167.561 35.177 165.526 34.0082 163.295 33.4213Z\" fill=\"#1D2F6F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_555_155\">\\n<rect width=\"209\" height=\"94\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{style:{scale:.8}},PZtQslMcU:{style:{scale:.6}},X_Cd7TSE1:{style:{scale:.8}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__loop:animation17,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1331n4n\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8z2v03\",\"data-framer-name\":\"hero3 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 190 190\"><path d=\"M 95 177.685 C 140.666 177.685 177.685 140.666 177.685 95 C 177.685 49.334 140.666 12.315 95 12.315 C 49.334 12.315 12.315 49.334 12.315 95 C 12.315 140.666 49.334 177.685 95 177.685 Z\" fill=\"rgb(254,254,255)\"></path><path d=\"M 111.535 16.535 C 154.87 25.667 182.597 68.2 173.465 111.535 C 164.333 154.87 121.8 182.597 78.465 173.465 C 35.13 164.333 7.403 121.8 16.535 78.465 C 25.667 35.13 68.2 7.403 111.535 16.535 Z M 81.772 157.772 C 116.44 165.078 150.466 142.896 157.772 108.228 C 165.078 73.56 142.896 39.534 108.228 32.228 C 73.56 24.922 39.534 47.104 32.228 81.772 C 24.922 116.44 47.104 150.466 81.772 157.772 Z\" fill=\"rgb(217,217,217)\"></path><path d=\"M 94.928 22.83 C 94.924 18.401 98.519 14.766 102.926 15.204 C 115.959 16.498 128.52 20.97 139.484 28.281 C 152.68 37.079 162.97 49.592 169.054 64.239 C 175.138 78.885 176.742 95.007 173.663 110.565 C 170.585 126.123 162.962 140.419 151.759 151.644 C 140.555 162.87 126.275 170.522 110.723 173.631 C 95.171 176.741 79.046 175.169 64.388 169.114 C 49.729 163.06 37.195 152.794 28.371 139.616 C 21.039 128.667 16.541 116.115 15.221 103.085 C 14.774 98.679 18.402 95.076 22.831 95.072 C 27.26 95.067 30.802 98.668 31.358 103.061 C 32.606 112.914 36.13 122.38 41.697 130.693 C 48.756 141.235 58.783 149.448 70.51 154.291 C 82.237 159.135 95.137 160.393 107.578 157.905 C 120.02 155.417 131.444 149.296 140.407 140.315 C 149.37 131.335 155.468 119.898 157.931 107.452 C 160.394 95.005 159.11 82.108 154.243 70.391 C 149.376 58.673 141.144 48.663 130.587 41.624 C 122.264 36.075 112.79 32.57 102.935 31.341 C 98.54 30.794 94.933 27.259 94.928 22.83 Z\" fill=\"rgb(68,111,177)\"></path><path d=\"M 107.707 34.698 C 141.011 41.716 162.32 74.404 155.302 107.707 C 148.284 141.011 115.596 162.32 82.293 155.302 C 48.989 148.284 27.68 115.596 34.698 82.293 C 41.716 48.989 74.404 27.68 107.707 34.698 Z M 85.469 140.226 C 110.447 145.49 134.963 129.508 140.226 104.531 C 145.49 79.553 129.508 55.037 104.531 49.774 C 79.553 44.51 55.037 60.492 49.774 85.469 C 44.51 110.447 60.492 134.963 85.469 140.226 Z\" fill=\"rgb(217,217,217)\"></path><path d=\"M 93.235 41.105 C 93.096 36.853 96.442 33.243 100.678 33.635 C 111.869 34.671 122.617 38.754 131.721 45.509 C 142.897 53.801 150.937 65.632 154.533 79.075 C 158.129 92.519 157.069 106.784 151.526 119.548 C 147.01 129.946 139.735 138.85 130.556 145.334 C 127.081 147.789 122.38 146.331 120.377 142.578 C 118.375 138.824 119.847 134.204 123.216 131.607 C 129.371 126.863 134.266 120.615 137.394 113.411 C 141.552 103.838 142.347 93.139 139.65 83.056 C 136.953 72.974 130.923 64.101 122.541 57.881 C 116.234 53.201 108.874 50.231 101.172 49.194 C 96.956 48.626 93.374 45.358 93.235 41.105 Z\" fill=\"rgb(76,185,68)\"></path><path d=\"M 63.699 91 C 67.013 91 69.699 88.314 69.699 85 C 69.699 81.686 67.013 79 63.699 79 C 60.385 79 57.699 81.686 57.699 85 C 57.699 88.314 60.385 91 63.699 91 Z\" fill=\"rgb(76,185,68)\"></path><path d=\"M 78.509 85.62 L 79.699 85.62 L 79.699 85.67 C 79.699 87.25 78.649 88.1 76.979 88.1 C 75.309 88.1 74.249 87.22 74.249 85.57 L 74.249 83.42 C 74.249 81.78 75.309 80.9 76.999 80.9 C 78.649 80.9 79.699 81.75 79.699 83.33 L 79.699 83.37 L 78.509 83.37 L 78.509 83.33 C 78.509 82.43 77.929 81.93 76.999 81.93 C 76.029 81.93 75.439 82.46 75.439 83.42 L 75.439 85.57 C 75.439 86.54 76.029 87.06 76.979 87.06 C 77.929 87.06 78.509 86.57 78.509 85.67 Z M 85.064 84.74 L 85.064 86.11 C 85.064 87.43 84.204 88.1 82.874 88.1 C 81.554 88.1 80.684 87.43 80.684 86.11 L 80.684 84.74 C 80.684 83.42 81.554 82.75 82.884 82.75 C 84.204 82.75 85.064 83.42 85.064 84.74 Z M 83.954 86.18 L 83.954 84.67 C 83.954 84.02 83.534 83.71 82.884 83.71 C 82.234 83.71 81.804 84.02 81.804 84.67 L 81.804 86.18 C 81.804 86.83 82.234 87.14 82.874 87.14 C 83.534 87.14 83.954 86.83 83.954 86.18 Z M 93.114 88 L 92.004 88 L 92.004 84.54 C 92.004 83.96 91.664 83.71 91.134 83.71 C 90.604 83.71 90.224 83.99 90.224 84.57 L 90.224 88 L 89.114 88 L 89.114 84.54 C 89.114 83.96 88.774 83.71 88.244 83.71 C 87.724 83.71 87.344 83.99 87.344 84.57 L 87.344 88 L 86.234 88 L 86.234 82.85 L 87.084 82.85 L 87.224 83.34 C 87.514 82.95 87.984 82.75 88.564 82.75 C 89.204 82.75 89.714 82.99 89.984 83.48 C 90.274 83 90.784 82.75 91.424 82.75 C 92.454 82.75 93.114 83.35 93.114 84.57 Z M 98.758 84.74 L 98.758 86.11 C 98.758 87.41 98.028 88.1 96.868 88.1 C 96.288 88.1 95.818 87.94 95.488 87.62 L 95.488 90 L 94.378 90 L 94.378 82.85 L 95.228 82.85 L 95.378 83.38 C 95.708 82.97 96.228 82.75 96.878 82.75 C 98.028 82.75 98.758 83.44 98.758 84.74 Z M 97.648 86.18 L 97.648 84.67 C 97.648 84.04 97.238 83.71 96.588 83.71 C 95.928 83.71 95.488 84.05 95.488 84.69 L 95.488 86.16 C 95.488 86.8 95.928 87.14 96.578 87.14 C 97.238 87.14 97.648 86.81 97.648 86.18 Z M 107.123 88 L 107.123 85.01 L 104.103 85.01 L 104.103 88 L 102.913 88 L 102.913 81 L 104.103 81 L 104.103 83.98 L 107.123 83.98 L 107.123 81 L 108.313 81 L 108.313 88 Z M 109.613 88 L 109.613 81 L 112.493 81 C 113.893 81 114.813 81.67 114.813 83.25 C 114.813 84.39 114.343 85.06 113.553 85.35 L 114.883 88 L 113.513 88 L 112.313 85.51 L 110.803 85.51 L 110.803 88 Z M 110.803 82.03 L 110.803 84.48 L 112.453 84.48 C 113.143 84.48 113.583 84.14 113.583 83.25 C 113.583 82.36 113.143 82.03 112.453 82.03 Z M 119.761 86.06 C 119.761 85.54 119.401 85.24 118.861 85.14 L 117.621 84.92 C 116.481 84.71 115.791 84.07 115.791 82.99 C 115.791 81.6 116.751 80.9 118.381 80.9 C 120.001 80.9 120.961 81.61 120.961 83.02 L 120.961 83.15 L 119.771 83.15 L 119.771 83.02 C 119.771 82.3 119.281 81.93 118.381 81.93 C 117.471 81.93 117.011 82.25 117.011 82.91 C 117.011 83.42 117.371 83.73 117.911 83.83 L 119.151 84.05 C 120.341 84.27 120.981 84.91 120.981 85.97 C 120.981 87.4 119.991 88.1 118.371 88.1 C 116.751 88.1 115.761 87.39 115.761 85.98 L 115.761 85.85 L 116.951 85.85 L 116.951 85.98 C 116.951 86.7 117.471 87.06 118.371 87.06 C 119.281 87.06 119.761 86.76 119.761 86.06 Z\" fill=\"rgb(29,47,111)\"></path><path d=\"M 129.009 81 L 129.009 88 L 127.829 88 L 127.829 82.2 L 126.029 83.49 L 126.029 82.29 L 127.829 81 Z M 135.104 82.93 C 135.104 83.7 134.694 84.32 134.134 84.83 L 131.874 86.96 L 135.164 86.96 L 135.164 88 L 130.314 88 L 130.314 86.96 L 133.314 84.14 C 133.704 83.77 133.914 83.35 133.914 82.96 C 133.914 82.31 133.434 81.93 132.724 81.93 C 131.964 81.93 131.504 82.32 131.504 83.08 L 131.504 83.47 L 130.314 83.47 L 130.314 83.08 C 130.314 81.64 131.244 80.9 132.724 80.9 C 134.154 80.9 135.104 81.64 135.104 82.93 Z\" fill=\"rgb(76,185,68)\"></path><path d=\"M 63.699 111 C 67.013 111 69.699 108.314 69.699 105 C 69.699 101.686 67.013 99 63.699 99 C 60.385 99 57.699 101.686 57.699 105 C 57.699 108.314 60.385 111 63.699 111 Z\" fill=\"rgb(68,111,177)\"></path><path d=\"M 78.199 106.06 C 78.199 105.54 77.839 105.24 77.299 105.14 L 76.059 104.92 C 74.919 104.71 74.229 104.07 74.229 102.99 C 74.229 101.6 75.189 100.9 76.819 100.9 C 78.439 100.9 79.399 101.61 79.399 103.02 L 79.399 103.15 L 78.209 103.15 L 78.209 103.02 C 78.209 102.3 77.719 101.93 76.819 101.93 C 75.909 101.93 75.449 102.25 75.449 102.91 C 75.449 103.42 75.809 103.73 76.349 103.83 L 77.589 104.05 C 78.779 104.27 79.419 104.91 79.419 105.97 C 79.419 107.4 78.429 108.1 76.809 108.1 C 75.189 108.1 74.199 107.39 74.199 105.98 L 74.199 105.85 L 75.389 105.85 L 75.389 105.98 C 75.389 106.7 75.909 107.06 76.809 107.06 C 77.719 107.06 78.199 106.76 78.199 106.06 Z M 83.7 106.15 L 84.81 106.15 L 84.81 106.16 C 84.81 107.42 83.96 108.1 82.63 108.1 C 81.29 108.1 80.43 107.41 80.43 106.1 L 80.43 104.75 C 80.43 103.44 81.29 102.75 82.64 102.75 C 83.96 102.75 84.81 103.43 84.81 104.69 L 84.81 104.7 L 83.7 104.7 L 83.7 104.62 C 83.7 104.03 83.3 103.71 82.64 103.71 C 81.96 103.71 81.55 104.04 81.55 104.67 L 81.55 106.17 C 81.55 106.81 81.96 107.14 82.63 107.14 C 83.3 107.14 83.7 106.82 83.7 106.23 Z M 90.262 108 L 89.152 108 L 89.152 104.64 C 89.152 104 88.742 103.71 88.092 103.71 C 87.442 103.71 86.992 104.02 86.992 104.67 L 86.992 108 L 85.882 108 L 85.882 100.6 L 86.992 100.6 L 86.992 103.25 C 87.322 102.92 87.802 102.75 88.382 102.75 C 89.522 102.75 90.262 103.4 90.262 104.72 Z M 91.527 108 L 91.527 106.56 L 92.787 106.56 L 92.787 108 Z M 101.293 108 L 101.293 105.01 L 98.273 105.01 L 98.273 108 L 97.083 108 L 97.083 101 L 98.273 101 L 98.273 103.98 L 101.293 103.98 L 101.293 101 L 102.483 101 L 102.483 108 Z M 103.783 108 L 103.783 101 L 106.663 101 C 108.063 101 108.983 101.67 108.983 103.25 C 108.983 104.39 108.513 105.06 107.723 105.35 L 109.053 108 L 107.683 108 L 106.483 105.51 L 104.973 105.51 L 104.973 108 Z M 104.973 102.03 L 104.973 104.48 L 106.623 104.48 C 107.313 104.48 107.753 104.14 107.753 103.25 C 107.753 102.36 107.313 102.03 106.623 102.03 Z M 113.931 106.06 C 113.931 105.54 113.571 105.24 113.031 105.14 L 111.791 104.92 C 110.651 104.71 109.961 104.07 109.961 102.99 C 109.961 101.6 110.921 100.9 112.551 100.9 C 114.171 100.9 115.131 101.61 115.131 103.02 L 115.131 103.15 L 113.941 103.15 L 113.941 103.02 C 113.941 102.3 113.451 101.93 112.551 101.93 C 111.641 101.93 111.181 102.25 111.181 102.91 C 111.181 103.42 111.541 103.73 112.081 103.83 L 113.321 104.05 C 114.511 104.27 115.151 104.91 115.151 105.97 C 115.151 107.4 114.161 108.1 112.541 108.1 C 110.921 108.1 109.931 107.39 109.931 105.98 L 109.931 105.85 L 111.121 105.85 L 111.121 105.98 C 111.121 106.7 111.641 107.06 112.541 107.06 C 113.451 107.06 113.931 106.76 113.931 106.06 Z\" fill=\"rgb(29,47,111)\"></path><path d=\"M 122.319 105.01 L 122.319 103.98 L 122.779 103.98 C 123.509 103.98 123.899 103.56 123.899 102.99 C 123.899 102.34 123.509 101.93 122.729 101.93 C 121.939 101.93 121.509 102.31 121.509 102.96 L 121.509 103.17 L 120.329 103.17 L 120.329 102.84 C 120.329 101.68 121.179 100.9 122.729 100.9 C 124.269 100.9 125.129 101.68 125.129 102.85 C 125.129 103.64 124.749 104.2 124.069 104.49 C 124.759 104.76 125.149 105.31 125.149 106.13 C 125.149 107.32 124.289 108.1 122.749 108.1 C 121.179 108.1 120.329 107.32 120.329 106.15 L 120.329 105.82 L 121.509 105.82 L 121.509 106.03 C 121.509 106.69 121.949 107.06 122.749 107.06 C 123.529 107.06 123.929 106.65 123.929 106.01 C 123.929 105.37 123.489 105.01 122.779 105.01 Z M 131.242 102.93 C 131.242 103.7 130.832 104.32 130.272 104.83 L 128.012 106.96 L 131.302 106.96 L 131.302 108 L 126.452 108 L 126.452 106.96 L 129.452 104.14 C 129.842 103.77 130.052 103.35 130.052 102.96 C 130.052 102.31 129.572 101.93 128.862 101.93 C 128.102 101.93 127.642 102.32 127.642 103.08 L 127.642 103.47 L 126.452 103.47 L 126.452 103.08 C 126.452 101.64 127.382 100.9 128.862 100.9 C 130.292 100.9 131.242 101.64 131.242 102.93 Z\" fill=\"rgb(68,111,177)\"></path></svg>',svgContentId:10688324558,withExternalLayout:true})})})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12yg2is\",\"data-framer-name\":\"Mission\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4g6msp\",\"data-framer-name\":\"Content\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sj9czl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{background:{alt:\"\",pixelHeight:360,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"630px\",src:\"https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif\",srcSet:\"https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif?scale-down-to=512 512w,https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif 640w\"}},PZtQslMcU:{__framer__animateOnce:false,__framer__enter:animation19,background:{alt:\"\",pixelHeight:360,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1440px) - 60px, 1px)`,src:\"https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif\",srcSet:\"https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif?scale-down-to=512 512w,https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif 640w\"},style:{}},X_Cd7TSE1:{background:{alt:\"\",pixelHeight:360,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"480px\",src:\"https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif\",srcSet:\"https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif?scale-down-to=512 512w,https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif 640w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",pixelHeight:360,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif\",srcSet:\"https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif?scale-down-to=512 512w,https://framerusercontent.com/images/TOf9ImkjFuzGfgMEBfqAmnn059Y.gif 640w\"},className:\"framer-a6xbq6\",\"data-framer-name\":\"mockup-1 1\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n3w63n\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r9ctbk\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1d8ywli\",\"data-styles-preset\":\"qTrZzhaCk\",style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"Built by Home Care Providers for Home Care Providers\"})})},PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"Built by Home Care Providers for Home Care Providers\"})}),className:\"framer-1r095hh\",\"data-framer-name\":\"We are here in the best dedication\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-egmt4d\",\"data-styles-preset\":\"A3Y3AgHgK\",style:{\"--framer-text-color\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\"},children:\"We are a dedicated Chicago-based team with 10 years in Homecare. Frustrated by current tools, we aim to revolutionize the industry with user-friendly technology that simplifies processes and improves client care.\"})})},PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h4lrnd\",\"data-styles-preset\":\"LLoQlBZuZ\",style:{\"--framer-text-color\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\"},children:\"We are a dedicated Chicago-based team with 10 years in Homecare. Frustrated by current tools, we aim to revolutionize the industry with user-friendly technology that simplifies processes and improves client care.\"})}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-102jfeq\",\"data-styles-preset\":\"h_xFaQJq3\",style:{\"--framer-text-color\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\"},children:\"We are a dedicated Chicago-based team with 10 years in Homecare. Frustrated by current tools, we aim to revolutionize the industry with user-friendly technology that simplifies processes and improves client care.\"})}),className:\"framer-gujdx5\",\"data-framer-name\":\"Formed from our motivation. Seeing the form of spending with a system and flow that is less systematic, detailed, and clear makes it feel more complex than usual. Resales is here as an answer to existing problems to manage your business warehouse.\",fonts:[\"Inter\"],id:\"gujdx5\",style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xtuw0b\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rmdpch\",\"data-framer-name\":\"Experience\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1d8ywli\",\"data-styles-preset\":\"qTrZzhaCk\",style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"10+ years\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"10+ years\"})}),className:\"framer-1uo6d1v\",\"data-framer-name\":\"35 years\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-egmt4d\",\"data-styles-preset\":\"A3Y3AgHgK\",style:{\"--framer-text-color\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\"},children:\"Experience in the field\"})})},nfoLtj4ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-102jfeq\",\"data-styles-preset\":\"h_xFaQJq3\",style:{\"--framer-text-color\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\"},children:\"Experience in the field\"})})},PZtQslMcU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h4lrnd\",\"data-styles-preset\":\"LLoQlBZuZ\",style:{\"--framer-text-color\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\"},children:\"Experience in the field\"})})},X_Cd7TSE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-102jfeq\",\"data-styles-preset\":\"h_xFaQJq3\",style:{\"--framer-text-color\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\"},children:\"Experience in the field\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wn4dtj\",\"data-styles-preset\":\"DWFe7mv5Y\",style:{\"--framer-text-color\":\"var(--token-cfcb37c3-23d6-4770-a5e2-1f77b7da3fb7, rgb(75, 85, 101))\"},children:\"Experience in the field\"})}),className:\"framer-asg9m3\",\"data-framer-name\":\"35 years of experience in the field\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-oklaka\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dkjkzc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlbjlb\",\"data-framer-name\":\"Title\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{__framer__enter:animation22},PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3bb1yu\",\"data-styles-preset\":\"nBFEewc9a\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\"},children:\"WHY CHOOSE VERVEWARE\"})}),className:\"framer-1f2zs4k\",\"data-framer-name\":\"We Provide The Best of Everything\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1d8ywli\",\"data-styles-preset\":\"qTrZzhaCk\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"End-to-end cloud based solution with modern \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"API integrations\"})]})})},nfoLtj4ui:{__framer__enter:animation22},PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:[\"End-to-end cloud based solution with modern \",/*#__PURE__*/_jsx(\"br\",{}),\"API integrations\"]})}),className:\"framer-l14f59\",\"data-framer-name\":\"With the advantages that we provide are suitable and suitable for the needs of all businesses\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cuerwc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dzpalh\",\"data-framer-name\":\"About rows\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 70px, 1440px) - 60px)`},PZtQslMcU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 40px)`},X_Cd7TSE1:{width:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"576px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hben36-container\",nodeId:\"x4vvq_7ST\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{variant:\"Gve5rnh58\"},nfoLtj4ui:{variant:\"ixnhAMmgD\"},PZtQslMcU:{FhoU6ADwj:\"Already integrated with the State Aggregator, we utilize their Edit and Memo Codes to ensure you can go live from day one. Rest easy  with Verveware.\",variant:\"BdcH7hybl\"},X_Cd7TSE1:{variant:\"ixnhAMmgD\"}},children:/*#__PURE__*/_jsx(AboutCard,{clFUjnGQV:\"Connected to HHAeXchange\",FhoU6ADwj:\"Already integrated with the State Aggregator, we utilize their edit and memo codes to ensure you can go live from day one. Rest easy with Verveware.\",height:\"100%\",id:\"x4vvq_7ST\",layoutId:\"x4vvq_7ST\",style:{height:\"100%\",width:\"100%\"},variant:\"QOBcPBSyQ\",VEAs4PZrf:\"Cloud\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 70px, 1440px) - 60px)`},PZtQslMcU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 40px)`},X_Cd7TSE1:{width:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"576px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-91380n-container\",id:elementId3,nodeId:\"flwDYj05V\",ref:ref4,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{variant:\"Gve5rnh58\"},nfoLtj4ui:{variant:\"ixnhAMmgD\"},PZtQslMcU:{variant:\"BdcH7hybl\"},X_Cd7TSE1:{variant:\"ixnhAMmgD\"}},children:/*#__PURE__*/_jsx(AboutCard,{clFUjnGQV:\"Streamlined Payroll\",FhoU6ADwj:\"Pay caregivers using ADP, Paylocity, QuickBooks, and more, with labor hours directly from Verveware. No matter your agency\u2019s workflow, Verveware has you covered.\",height:\"100%\",id:\"flwDYj05V\",layoutId:\"flwDYj05V\",style:{height:\"100%\",width:\"100%\"},variant:\"QOBcPBSyQ\",VEAs4PZrf:\"Dollar\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 70px, 1440px) - 60px)`},PZtQslMcU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 40px)`},X_Cd7TSE1:{width:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"576px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kow7sk-container\",nodeId:\"cjb7ft21A\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{variant:\"Gve5rnh58\"},nfoLtj4ui:{variant:\"ixnhAMmgD\"},PZtQslMcU:{FhoU6ADwj:\"Submit claims through Availity, Trizetto, and other clearing houses directly via Verveware, and receive remittance within Verveware. Create IDOA Batch files and enjoy First in Class IDOA Remittance support.\\xa0\",variant:\"BdcH7hybl\"},X_Cd7TSE1:{variant:\"ixnhAMmgD\"}},children:/*#__PURE__*/_jsx(AboutCard,{clFUjnGQV:\"Automated and Connected Billing\",FhoU6ADwj:\"Submit claims through Availity, Trizetto, and other clearinghouses directly via Verveware, and receive remittance within Verveware. Create IDOA batch files and enjoy first-in-class IDOA remittance support.\",height:\"100%\",id:\"cjb7ft21A\",layoutId:\"cjb7ft21A\",style:{height:\"100%\",width:\"100%\"},variant:\"QOBcPBSyQ\",VEAs4PZrf:\"Network\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 70px, 1440px) - 60px)`},PZtQslMcU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 40px)`},X_Cd7TSE1:{width:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"576px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bw5kc2-container\",nodeId:\"wDPBz3hra\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{variant:\"Gve5rnh58\"},nfoLtj4ui:{variant:\"ixnhAMmgD\"},PZtQslMcU:{variant:\"BdcH7hybl\"},X_Cd7TSE1:{variant:\"ixnhAMmgD\"}},children:/*#__PURE__*/_jsx(AboutCard,{clFUjnGQV:\"Single Sign On\",FhoU6ADwj:\"Experience seamless access with Verveware\u2019s Single Sign-On, integrating effortlessly with your existing systems. Enjoy a unified login for all your homecare management needs, ensuring both security and convenience.\",height:\"100%\",id:\"wDPBz3hra\",layoutId:\"wDPBz3hra\",style:{height:\"100%\",width:\"100%\"},variant:\"QOBcPBSyQ\",VEAs4PZrf:\"KeyAltBack\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:false,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6izkfl\",\"data-framer-name\":\"About Description\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:458,width:\"527px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s7vb0h-container\",nodeId:\"pkUBLFXjy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IntegrationsSolarSys,{height:\"100%\",id:\"pkUBLFXjy\",layoutId:\"pkUBLFXjy\",style:{height:\"100%\",width:\"100%\"},variant:\"qZu64dstq\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hbi4h\",\"data-framer-name\":\"Features\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1loqouw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nuvb19\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3bb1yu\",\"data-styles-preset\":\"nBFEewc9a\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\"},children:\"EXPLORE OUR FEATURES\"})}),className:\"framer-1igjz61\",\"data-framer-name\":\"We Provide The Best of Everything\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1d8ywli\",\"data-styles-preset\":\"qTrZzhaCk\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"The benefits we offer are appropriate and fitting \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"for the requirements of all companies\"})]})})},PZtQslMcU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-58rw1u\",\"data-styles-preset\":\"VKXgg_ZgQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:[\"The benefits we offer are appropriate and fitting \",/*#__PURE__*/_jsx(\"br\",{}),\"for the requirements of all companies\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:[\"The benefits we offer are appropriate and fitting \",/*#__PURE__*/_jsx(\"br\",{}),\"for the requirements of all companies\"]})}),className:\"framer-sywdzb\",\"data-framer-name\":\"With the advantages that we provide are suitable and suitable for the needs of all businesses\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11xcy69\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r9g3i1\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{background:{alt:\"\",fit:\"fit\",pixelHeight:2220,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"280px\",src:\"https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png\",srcSet:\"https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png 2832w\"}},PZtQslMcU:{background:{alt:\"\",fit:\"fit\",pixelHeight:2220,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png\",srcSet:\"https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png 2832w\"}},X_Cd7TSE1:{__framer__animateOnce:false,background:{alt:\"\",fit:\"fit\",pixelHeight:2220,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png\",srcSet:\"https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png 2832w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:2220,pixelWidth:2832,positionX:\"center\",positionY:\"center\",sizes:\"464px\",src:\"https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png\",srcSet:\"https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8HUmf6412Bqyqx5nupx2cdT4C8.png 2832w\"},className:\"framer-1fa11e4\",\"data-framer-name\":\"schedule3 1\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{width:\"310px\"},PZtQslMcU:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1200px)`},X_Cd7TSE1:{width:\"496px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:`max(min(${componentViewport?.width||\"100vw\"} - 280px, 1200px) - 524px, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-erixv4-container\",nodeId:\"cpxQIdLN1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{variant:\"g7dyxDMoT\"},nfoLtj4ui:{variant:\"cO5zMemAg\"},PZtQslMcU:{variant:\"cO5zMemAg\"},X_Cd7TSE1:{variant:\"UNefLeU8y\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{height:\"100%\",id:\"cpxQIdLN1\",layoutId:\"cpxQIdLN1\",Nq0Pk6nil:\"ClockOutline\",QKHMKR9Zy:\"Multiple color-coded views, scheduling by client or caregiver, recurring visits with one click, maps and directions to clients' homes, notifications to caregivers for schedules, caregiver suggestions, and more.\",QQ_81ePOM:\"Scheduling\",style:{width:\"100%\"},variant:\"g6jp6e0HS\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16f0cyq\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{width:undefined},PZtQslMcU:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1200px)`},X_Cd7TSE1:{width:`max(min(${componentViewport?.width||\"100vw\"} - 256px, 1200px) - 448px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:`max(min(${componentViewport?.width||\"100vw\"} - 280px, 1200px) - 551.4327px, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-htrik3-container\",nodeId:\"T_roEwgfe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{variant:\"g7dyxDMoT\"},nfoLtj4ui:{variant:\"cO5zMemAg\"},PZtQslMcU:{variant:\"cO5zMemAg\"},X_Cd7TSE1:{variant:\"UNefLeU8y\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{height:\"100%\",id:\"T_roEwgfe\",layoutId:\"T_roEwgfe\",Nq0Pk6nil:\"PinAlt\",QKHMKR9Zy:\"Automatically calculates caregivers' work hours based on punch-in/punch-out, records real-time location of caregivers, supports offline mode, and offers client signature or voice verification options.\",QQ_81ePOM:\"Easy Visit Verification\",style:{width:\"100%\"},variant:\"g6jp6e0HS\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{background:{alt:\"\",fit:\"fit\",pixelHeight:2228,pixelWidth:3008,positionX:\"center\",positionY:\"center\",sizes:\"297.0197px\",src:\"https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png\",srcSet:\"https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png 3008w\"}},PZtQslMcU:{background:{alt:\"\",fit:\"fit\",pixelHeight:2228,pixelWidth:3008,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png\",srcSet:\"https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png 3008w\"}},X_Cd7TSE1:{background:{alt:\"\",fit:\"fit\",pixelHeight:2228,pixelWidth:3008,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png\",srcSet:\"https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png 3008w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation28,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:2228,pixelWidth:3008,positionX:\"center\",positionY:\"center\",sizes:\"491.4327px\",src:\"https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png\",srcSet:\"https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gn3GLReKjfAARLHWMIYoJ0hxW1M.png 3008w\"},className:\"framer-sol4b\",\"data-framer-name\":\"evv3 1\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1haf8by\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{background:{alt:\"\",fit:\"fit\",pixelHeight:2228,pixelWidth:3188,positionX:\"center\",positionY:\"center\",sizes:\"314.7935px\",src:\"https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png\",srcSet:\"https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=512 512w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png 3188w\"}},PZtQslMcU:{background:{alt:\"\",fit:\"fit\",pixelHeight:2228,pixelWidth:3188,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png\",srcSet:\"https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=512 512w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png 3188w\"}},X_Cd7TSE1:{__framer__animateOnce:false,background:{alt:\"\",fit:\"fit\",pixelHeight:2228,pixelWidth:3188,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png\",srcSet:\"https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=512 512w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png 3188w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:2228,pixelWidth:3188,positionX:\"center\",positionY:\"center\",sizes:\"520px\",src:\"https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png\",srcSet:\"https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=512 512w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/goOkvdh0gz8xXDZeCdrG7kWGo.png 3188w\"},className:\"framer-13pi122\",\"data-framer-name\":\"compliance3 1\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{width:`max(min(${componentViewport?.width||\"100vw\"} - 150px, 1200px) - 344.7935px, 1px)`},PZtQslMcU:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1200px)`},X_Cd7TSE1:{width:`max(min(${componentViewport?.width||\"100vw\"} - 256px, 1200px) - 460px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:`max(min(${componentViewport?.width||\"100vw\"} - 280px, 1200px) - 580px, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-91yar-container\",nodeId:\"Kg8uLdlNz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{variant:\"g7dyxDMoT\"},nfoLtj4ui:{variant:\"cO5zMemAg\"},PZtQslMcU:{variant:\"cO5zMemAg\"},X_Cd7TSE1:{variant:\"UNefLeU8y\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{height:\"100%\",id:\"Kg8uLdlNz\",layoutId:\"Kg8uLdlNz\",Nq0Pk6nil:\"StatUp\",QKHMKR9Zy:\"Guarantee compliance with our comprehensive toolset. TTP Reporting tracks HCA information, Case Notes organizes and makes case records readily accessible, Document Manager allows seamless file storage, and Compliance Manager ensures audit compliance, offering peace of mind every step of the way.\",QQ_81ePOM:\"TTP/Audit Compliance\",style:{width:\"100%\"},variant:\"g6jp6e0HS\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ts9vf9\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{width:`max(min(${componentViewport?.width||\"100vw\"} - 150px, 1200px) - 321.223px, 1px)`},PZtQslMcU:{width:\"282px\"},X_Cd7TSE1:{width:`max(min(${componentViewport?.width||\"100vw\"} - 256px, 1200px) - 460px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:366,width:`max(min(${componentViewport?.width||\"100vw\"} - 280px, 1200px) - 541.8417px, 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5uux6-container\",nodeId:\"xfUsooQ00\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{variant:\"g7dyxDMoT\"},nfoLtj4ui:{variant:\"cO5zMemAg\"},PZtQslMcU:{variant:\"cO5zMemAg\"},X_Cd7TSE1:{variant:\"UNefLeU8y\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{height:\"100%\",id:\"xfUsooQ00\",layoutId:\"xfUsooQ00\",Nq0Pk6nil:\"Suggestion\",QKHMKR9Zy:\"Easily view upcoming schedules and client care plans, with options for client signatures and voice verification. Enjoy multilingual support for effortless communication. Caregivers can create ad hoc shifts, receive push notifications for important updates, and enter notes about visits, even in offline mode.\",QQ_81ePOM:\"Smart Mobile App with Multilanguage Support\\xa0\",style:{width:\"100%\"},variant:\"g6jp6e0HS\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{background:{alt:\"\",fit:\"fit\",pixelHeight:2224,pixelWidth:2944,positionX:\"center\",positionY:\"center\",sizes:\"291.223px\",src:\"https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png\",srcSet:\"https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png 2944w\"}},PZtQslMcU:{background:{alt:\"\",fit:\"fit\",pixelHeight:2224,pixelWidth:2944,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png\",srcSet:\"https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png 2944w\"}},X_Cd7TSE1:{background:{alt:\"\",fit:\"fit\",pixelHeight:2224,pixelWidth:2944,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png\",srcSet:\"https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png 2944w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation28,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:2224,pixelWidth:2944,positionX:\"center\",positionY:\"center\",sizes:\"481.8417px\",src:\"https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png\",srcSet:\"https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VLeEJFp1Qv4jOTlwl7J5NirY.png 2944w\"},className:\"framer-1h2s3ur\",\"data-framer-name\":\"language3 1\",style:{transformPerspective:1200}})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1spl4co\",\"data-framer-name\":\"Metrics\",id:elementId9,ref:ref10,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ae3lcn\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y9vvid\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3bb1yu\",\"data-styles-preset\":\"nBFEewc9a\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\"},children:\"VERVEWARE BY NUMBERS\"})}),className:\"framer-g17f6r\",\"data-framer-name\":\"We Provide The Best of Everything\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1d8ywli\",\"data-styles-preset\":\"qTrZzhaCk\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"We've achieved some incredible results with our \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"incredible services\"})]})})},nfoLtj4ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"We've achieved some incredible results  with our \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"incredible services\"})]})})},PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"We've achieved some incredible results with our incredible services\"})})},X_Cd7TSE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:[\"We've achieved some incredible results \",/*#__PURE__*/_jsx(\"br\",{}),\"with our incredible services\"]})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"We've achieved some incredible results with our \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"incredible services\"})]})}),className:\"framer-1ryuvwt\",\"data-framer-name\":\"With the advantages that we provide are suitable and suitable for the needs of all businesses\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 70px, 1440px) - 60px)`},PZtQslMcU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1440px) - 40px)`},X_Cd7TSE1:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:`calc(min(${componentViewport?.width||\"100vw\"} - 100px, 1440px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-50qu5n-container\",nodeId:\"OFD80xDBw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{variant:\"hy_zn4AbV\"},PZtQslMcU:{variant:\"w4pljtiQO\"}},children:/*#__PURE__*/_jsx(ByTheNumbers,{height:\"100%\",id:\"OFD80xDBw\",layoutId:\"OFD80xDBw\",style:{width:\"100%\"},variant:\"LK_rhJJxe\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kqzum9\",\"data-framer-name\":\"Testimonial\",id:elementId10,ref:ref11,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10xtbwn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pd45l8\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3bb1yu\",\"data-styles-preset\":\"nBFEewc9a\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-65763904-f5c4-4d6c-a422-a3a11a2775b4, rgb(41, 63, 141))\"},children:\"OUR CLIENTS\"})}),className:\"framer-uopmis\",\"data-framer-name\":\"We are here in the best dedication\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1d8ywli\",\"data-styles-preset\":\"qTrZzhaCk\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"Our testimonials reflect the satisfaction our \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"clients have in our services\"})]})})},PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-58rw1u\",\"data-styles-preset\":\"VKXgg_ZgQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 47, 111)\"},children:\"Our testimonials reflect the satisfaction our clients have in our services\"})})},X_Cd7TSE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:[\"Our testimonials reflect the satisfaction our \",/*#__PURE__*/_jsx(\"br\",{}),\"clients have in our services\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"Our testimonials reflect the satisfaction our \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b168c6d4-8095-4a62-bdb7-2d35ca1178e3, rgb(29, 47, 111))\"},children:\"clients have in our services\"})]})}),className:\"framer-1t80oyu\",\"data-framer-name\":\"Formed from our motivation. Seeing the form of spending with a system and flow that is less systematic, detailed, and clear makes it feel more complex than usual. Resales is here as an answer to existing problems to manage your business warehouse.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{style:{scale:.6}},PZtQslMcU:{style:{scale:.7}},X_Cd7TSE1:{style:{scale:.8}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-4b4bz2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ipn8zZa1K\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{speed:40}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.6,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"ipn8zZa1K\",layoutId:\"ipn8zZa1K\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12dos4v-container\",\"data-framer-name\":\"Testimonial 1\",inComponentSlot:true,name:\"Testimonial 1\",nodeId:\"PqN8mZaNN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{FAgm7G3Wt:\"I am so glad that our company has Verveware. My life used to be so stressful because the billing process was long and tedious. With Verveware, it's now so easy to manage. It saves me so much time, allowing me to focus on other important tasks. It\u2019s a timesaver and makes tracking denied claims and outstanding claim amounts quick and easy.\",height:\"100%\",id:\"PqN8mZaNN\",IYzhQJrGl:\"Billing Supervisor\",layoutId:\"PqN8mZaNN\",name:\"Testimonial 1\",width:\"100%\",WYi8QwBZf:\"Balkrishn\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uhrafg-container\",\"data-framer-name\":\"Testimonial 2\",inComponentSlot:true,name:\"Testimonial 2\",nodeId:\"yVVB6fbuB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{FAgm7G3Wt:\"The billing, intake system, and scheduling have become very easy for supervisors with Verveware. Verveware has truly automated our company\u2019s processes, allowing us to spend less time on manual work. Thanks to its scheduling feature, everything is now very easy for us.\",height:\"100%\",id:\"yVVB6fbuB\",IYzhQJrGl:\"Intake Manager\",layoutId:\"yVVB6fbuB\",name:\"Testimonial 2\",width:\"100%\",WYi8QwBZf:\"Khyati\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lsmofa-container\",\"data-framer-name\":\"Testimonial 3\",inComponentSlot:true,name:\"Testimonial 3\",nodeId:\"pu19yeIej\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{FAgm7G3Wt:\"I was amazed by how easy the Verware app is to use. It guides users step-by-step through each task, making it user-friendly for both participants and Homecare Aides. The app's multilingual accessibility boosts HCAs' confidence. Verware effectively tracks reports and schedules, providing a 100% accurate EVV system for tracking HCAs' schedules and hours worked.\",height:\"100%\",id:\"pu19yeIej\",IYzhQJrGl:\"Program Director\",layoutId:\"pu19yeIej\",name:\"Testimonial 3\",width:\"100%\",WYi8QwBZf:\"Awilda\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fbzuu4-container\",\"data-framer-name\":\"Testimonial 4\",inComponentSlot:true,name:\"Testimonial 4\",nodeId:\"unKaV4v70\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{FAgm7G3Wt:\"My experience with Verveware has been very positive due to its simplicity and convenience. The platform has significantly benefited my organization by providing numerous reports, which have been incredibly useful. \",height:\"100%\",id:\"unKaV4v70\",IYzhQJrGl:\"General Manager\",layoutId:\"unKaV4v70\",name:\"Testimonial 4\",width:\"100%\",WYi8QwBZf:\"Oksana \"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bg0fat-container\",\"data-framer-name\":\"Testimonial 5\",inComponentSlot:true,name:\"Testimonial 5\",nodeId:\"xKFbQMMCT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{FAgm7G3Wt:\"I\u2019m really happy with the software and the support from the implementation team. It's such a relief to finally have something that meets IDOA requirements. We've saved a ton of time on MCO/IDOA billing, and it\u2019s super easy to use and track submissions.\",height:\"100%\",id:\"xKFbQMMCT\",IYzhQJrGl:\"Administrator\",layoutId:\"xKFbQMMCT\",name:\"Testimonial 5\",width:\"100%\",WYi8QwBZf:\"Mohammad\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7zr3uz-container\",\"data-framer-name\":\"Testimonial 6\",inComponentSlot:true,name:\"Testimonial 6\",nodeId:\"MOFeNlx7i\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{FAgm7G3Wt:\"Verveware is an exceptionally user-friendly platform that enhances the efficiency and simplicity of scheduling, billing, and compliance processes. I had the opportunity to collaborate closely with Sagar, one of the founders, as well as his outstanding team members, Krunal and Arpan. Their professionalism, patience, and extensive expertise significantly contributed to a seamless experience.\",height:\"100%\",id:\"MOFeNlx7i\",IYzhQJrGl:\"Agency Owner \",layoutId:\"MOFeNlx7i\",name:\"Testimonial 6\",width:\"100%\",WYi8QwBZf:\"Rowaida\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1670,pixelWidth:543,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/CWg13FGwmLp9W0gOUVuzp2TbOGA.svg\",srcSet:\"https://framerusercontent.com/images/CWg13FGwmLp9W0gOUVuzp2TbOGA.svg 543w\"},className:\"framer-blxyyo\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"header\",{className:\"framer-g34mm5\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined},X_Cd7TSE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3bb1yu\",\"data-styles-preset\":\"nBFEewc9a\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"LET'S TALK\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3bb1yu\",\"data-styles-preset\":\"nBFEewc9a\",style:{\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"LET'S TALK\"})}),className:\"framer-l290fo\",\"data-framer-name\":\"With the advantages that we provide are suitable and suitable for the needs of all businesses\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1d8ywli\",\"data-styles-preset\":\"qTrZzhaCk\",style:{\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"Ready to start? Book a demo and speak with us\"})})},PZtQslMcU:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-58rw1u\",\"data-styles-preset\":\"VKXgg_ZgQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to start? Book a demo and speak with us\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-3d0e7k\",\"data-styles-preset\":\"PGZSagJf1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, rgb(248, 250, 252))\"},children:\"Ready to start? Book a demo and speak with us\"})}),className:\"framer-d8tbl4\",\"data-framer-name\":\"We Provide The Best of Everything\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lsrh40\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined},{href:{webPageId:\"wpAZYn9pv\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qer05q-container\",nodeId:\"H2DBv8zob\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m_jc43S_j:{veRuDb6NA:resolvedLinks2[4]},nfoLtj4ui:{veRuDb6NA:resolvedLinks2[2]},PZtQslMcU:{veRuDb6NA:resolvedLinks2[3]},X_Cd7TSE1:{veRuDb6NA:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{aVAUdqOwT:\"Schedule Demo\",height:\"100%\",id:\"H2DBv8zob\",layoutId:\"H2DBv8zob\",variant:\"Mz6Pk7UUN\",veRuDb6NA:resolvedLinks2[0],width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u2qen2-container\",nodeId:\"Be9wMFpxR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfoLtj4ui:{variant:\"cEIYfdjjA\"},PZtQslMcU:{variant:\"VwCh7EoI0\"},X_Cd7TSE1:{variant:\"cEIYfdjjA\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Be9wMFpxR\",layoutId:\"Be9wMFpxR\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"AIJPeW_V0\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ROZu9.framer-lux5qc, .framer-ROZu9 .framer-lux5qc { display: block; }\",\".framer-ROZu9.framer-72rtr7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-ROZu9 .framer-mfqv5l-container { flex: none; height: auto; max-width: 100%; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-ROZu9 .framer-98tswf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-1bfr7nw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-1iuzc7w { flex: none; height: 100vh; overflow: hidden; position: absolute; right: -130px; top: calc(50.00000000000002% - 100vh / 2); width: 2000px; }\",\".framer-ROZu9 .framer-1nmcw1e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 563px; min-width: 1137px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: min-content; z-index: 1; }\",\".framer-ROZu9 .framer-s97w8q { bottom: -96px; flex: none; left: 333px; overflow: visible; position: absolute; top: -95px; width: 667px; z-index: 0; }\",\".framer-ROZu9 .framer-1emnlbz { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: #639aff; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 460px); left: 70px; overflow: hidden; position: absolute; top: 50%; transform: translateY(-50%); width: 460px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ROZu9 .framer-1ekctro { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: #f75ccb; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 460px); overflow: hidden; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: 460px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ROZu9 .framer-17xj8kn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 100vh; justify-content: space-between; max-width: 1440px; overflow: hidden; padding: 30px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-ROZu9 .framer-mthk70 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: min-content; }\",\".framer-ROZu9 .framer-aeqjo8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ROZu9 .framer-1ll60mz, .framer-ROZu9 .framer-d8tbl4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ROZu9 .framer-1tgrjg0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 620px; word-break: break-word; word-wrap: break-word; }\",\".framer-ROZu9 .framer-1ygezw5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 1380px; }\",\".framer-ROZu9 .framer-12fob4g-container, .framer-ROZu9 .framer-1u3wz5q-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ROZu9 .framer-ja6sej { flex: none; height: 510px; left: calc(75.85185185185188% - 600px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 510px / 2); width: 600px; z-index: 1; }\",\".framer-ROZu9 .framer-loqo70 { align-content: center; align-items: center; bottom: -12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 495px; justify-content: center; left: -30px; overflow: visible; padding: 0px; position: absolute; right: -30px; }\",\".framer-ROZu9 .framer-3026ha { bottom: -23px; flex: none; left: calc(50.00000000000002% - 650px / 2); overflow: hidden; position: absolute; top: -22px; width: 650px; z-index: 1; }\",\".framer-ROZu9 .framer-1bawbb7 { background-color: #ffffff; border-bottom-left-radius: 38px; border-bottom-right-radius: 38px; border-top-left-radius: 38px; border-top-right-radius: 38px; box-shadow: 0.857519805431366px 1.715039610862732px 31.728233337402344px 0px rgba(0, 0, 0, 0.04); flex: none; height: 200px; left: 332px; opacity: 0.1; position: absolute; top: calc(48.14814814814817% - 200px / 2); width: 200px; }\",\".framer-ROZu9 .framer-1mwbirk { background-color: #ffffff; border-bottom-left-radius: 38px; border-bottom-right-radius: 38px; border-top-left-radius: 38px; border-top-right-radius: 38px; box-shadow: 0.857519805431366px 1.715039610862732px 31.728233337402344px 0px rgba(0, 0, 0, 0.04); flex: none; height: 200px; left: 117px; opacity: 0.1; position: absolute; top: calc(48.14814814814817% - 200.29629629629628px / 2); width: 200px; }\",\".framer-ROZu9 .framer-qf7pfl { aspect-ratio: 0.5185185185185185 / 1; background-color: #ffffff; border-bottom-left-radius: 38px; border-bottom-right-radius: 38px; border-top-left-radius: 38px; border-top-right-radius: 38px; box-shadow: 0.857519805431366px 1.715039610862732px 31.728233337402344px 0px rgba(0, 0, 0, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 320px); left: 150px; opacity: 0.2; position: absolute; top: 50%; transform: translateY(-50%); width: 166px; }\",\".framer-ROZu9 .framer-1wq0bcx { aspect-ratio: 0.5185185185185185 / 1; background-color: #ffffff; border-bottom-left-radius: 38px; border-bottom-right-radius: 38px; border-top-left-radius: 38px; border-top-right-radius: 38px; box-shadow: 0.857519805431366px 1.715039610862732px 31.728233337402344px 0px rgba(0, 0, 0, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 320px); left: 334px; opacity: 0.2; position: absolute; top: 50%; transform: translateY(-50%); width: 166px; }\",\".framer-ROZu9 .framer-1unxgul { aspect-ratio: 0.5274509803921569 / 1; bottom: 0px; flex: none; left: 50%; overflow: hidden; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 269px); z-index: 1; }\",\".framer-ROZu9 .framer-dtjzev { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.5274509803921569 / 1; background-color: #ffffff; border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; border-top-left-radius: 44px; border-top-right-radius: 44px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 510px); justify-content: flex-start; left: 50%; overflow: hidden; padding: 28px; position: absolute; top: 0px; transform: translateX(-50%); width: 269px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-ROZu9 .framer-18csx80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-pub6zz { flex: none; height: 20px; position: relative; width: 34px; }\",\".framer-ROZu9 .framer-krj94c-container { flex: none; height: 26px; position: relative; width: 26px; }\",\".framer-ROZu9 .framer-kaydiw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ROZu9 .framer-axrcii { flex: none; height: 39px; position: relative; width: 39px; }\",\".framer-ROZu9 .framer-n0xi0, .framer-ROZu9 .framer-g27jz4, .framer-ROZu9 .framer-9g5gq1, .framer-ROZu9 .framer-lkeh7g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; }\",\".framer-ROZu9 .framer-sxjha8, .framer-ROZu9 .framer-1er20ou, .framer-ROZu9 .framer-fj48om { background-color: #d9d9d9; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 6px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ROZu9 .framer-qgku2i, .framer-ROZu9 .framer-1t8lmnb, .framer-ROZu9 .framer-1hg60sq { background-color: #d9d9d9; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 6px; overflow: hidden; position: relative; width: 57px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ROZu9 .framer-1pd8qrx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-1xhf9oq { align-content: center; align-items: center; background-color: #e3e7ef; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: center; overflow: visible; padding: 6px 16px 6px 16px; position: relative; width: 80px; }\",\".framer-ROZu9 .framer-u49k67, .framer-ROZu9 .framer-4tj1wh, .framer-ROZu9 .framer-7irab3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ROZu9 .framer-14j22ky { background-color: #f3f3f7; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 6px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ROZu9 .framer-7stfvb { background-color: #f3f3f7; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 6px; overflow: hidden; position: relative; width: 57px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ROZu9 .framer-12mhdor { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-1lyclan { background-color: #d9d9d9; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 6px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ROZu9 .framer-1of7cn6 { 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-ROZu9 .framer-abr25u { align-content: center; align-items: center; background-color: #1d2f6f; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5.999999523162842px; height: 22px; justify-content: center; overflow: visible; padding: 7px 15px 7px 15px; position: relative; width: 67px; }\",\".framer-ROZu9 .framer-17xnunw { align-content: center; align-items: center; background-color: #1d2f6f; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 22px; justify-content: center; overflow: visible; padding: 7px 15px 7px 15px; position: relative; width: 67px; }\",\".framer-ROZu9 .framer-k61uxg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 305px; }\",\".framer-ROZu9 .framer-18g5jmm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ROZu9 .framer-exh6pp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 209px; }\",\".framer-ROZu9 .framer-1cl7t3q, .framer-ROZu9 .framer-3vzhy1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ROZu9 .framer-1b5zpsq, .framer-ROZu9 .framer-u8r0dg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ROZu9 .framer-1yomvw7 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 26px; }\",\".framer-ROZu9 .framer-m54zg5 { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; gap: 0px; height: 26px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-ROZu9 .framer-t0syxb { bottom: 2px; flex: none; left: 0px; position: absolute; right: 0px; top: 1px; }\",\".framer-ROZu9 .framer-ftekzt { background-color: #d9d9d9; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 6px; overflow: hidden; position: relative; width: 120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ROZu9 .framer-mf57dt { flex: none; gap: 0px; height: 26px; overflow: visible; position: relative; width: 26px; }\",\".framer-ROZu9 .framer-1kq7wym { bottom: 0px; flex: none; gap: 0px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-ROZu9 .framer-qu431k { flex: none; height: 24px; left: 0px; position: absolute; top: 1px; width: 26px; }\",\".framer-ROZu9 .framer-kx1l3d { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 111px; position: relative; width: 210px; }\",\".framer-ROZu9 .framer-4dkqm8 { aspect-ratio: 2.3157894736842106 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 87px); left: 40px; position: absolute; top: 146px; width: 200px; z-index: 1; }\",\".framer-ROZu9 .framer-kktbzx { bottom: 46px; flex: none; height: 81px; left: 351px; overflow: hidden; position: absolute; width: 180px; z-index: 1; }\",\".framer-ROZu9 .framer-1kwti5k { aspect-ratio: 2.223404255319149 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ROZu9 .framer-1331n4n { flex: none; height: 190px; left: 340px; overflow: hidden; position: absolute; top: 25px; width: 190px; z-index: 1; }\",\".framer-ROZu9 .framer-8z2v03 { flex: none; height: 190px; left: calc(50.00000000000002% - 190px / 2); position: absolute; top: calc(50.00000000000002% - 190px / 2); width: 190px; }\",\".framer-ROZu9 .framer-12yg2is { align-content: center; align-items: center; background-color: var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-4g6msp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 40px; position: relative; width: 1px; }\",\".framer-ROZu9 .framer-1sj9czl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 450px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ROZu9 .framer-a6xbq6 { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 600px); }\",\".framer-ROZu9 .framer-n3w63n { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ROZu9 .framer-r9ctbk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-1r095hh, .framer-ROZu9 .framer-gujdx5, .framer-ROZu9 .framer-1uo6d1v, .framer-ROZu9 .framer-asg9m3, .framer-ROZu9 .framer-1f2zs4k, .framer-ROZu9 .framer-1igjz61, .framer-ROZu9 .framer-g17f6r, .framer-ROZu9 .framer-uopmis, .framer-ROZu9 .framer-1t80oyu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ROZu9 .framer-xtuw0b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-rmdpch { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ROZu9 .framer-oklaka { align-content: center; align-items: center; background-color: var(--token-84c034a3-3497-48f5-b126-ccb1fbb5eba6, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-dkjkzc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-rlbjlb, .framer-ROZu9 .framer-1nuvb19, .framer-ROZu9 .framer-1y9vvid, .framer-ROZu9 .framer-1pd45l8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-l14f59, .framer-ROZu9 .framer-sywdzb, .framer-ROZu9 .framer-1ryuvwt { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ROZu9 .framer-1cuerwc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ROZu9 .framer-dzpalh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ROZu9 .framer-hben36-container, .framer-ROZu9 .framer-kow7sk-container, .framer-ROZu9 .framer-bw5kc2-container { flex: none; height: 100vh; position: sticky; top: 30px; width: 100%; z-index: 1; }\",\".framer-ROZu9 .framer-91380n-container { flex: none; height: 100vh; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-ROZu9 .framer-6izkfl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-ROZu9 .framer-1s7vb0h-container { flex: none; height: 458px; position: relative; width: 527px; }\",\".framer-ROZu9 .framer-16hbi4h { align-content: center; align-items: center; background-color: var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, #f8fafc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-1loqouw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-11xcy69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-r9g3i1, .framer-ROZu9 .framer-16f0cyq, .framer-ROZu9 .framer-1haf8by, .framer-ROZu9 .framer-ts9vf9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-1fa11e4 { aspect-ratio: 1.2756756756756757 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 364px); position: relative; width: 464px; }\",\".framer-ROZu9 .framer-erixv4-container, .framer-ROZu9 .framer-htrik3-container, .framer-ROZu9 .framer-91yar-container, .framer-ROZu9 .framer-5uux6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ROZu9 .framer-sol4b { aspect-ratio: 1.3500897666068223 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 364px); position: relative; width: 491px; }\",\".framer-ROZu9 .framer-13pi122 { aspect-ratio: 1.4308797127468582 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 364px); position: relative; width: 520px; }\",\".framer-ROZu9 .framer-1h2s3ur { aspect-ratio: 1.3237410071942446 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 364px); position: relative; width: 482px; }\",\".framer-ROZu9 .framer-1spl4co { align-content: center; align-items: center; background-color: var(--token-84c034a3-3497-48f5-b126-ccb1fbb5eba6, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-1ae3lcn { 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: 1440px; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-50qu5n-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-kqzum9 { align-content: center; align-items: center; background-color: var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-10xtbwn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 60px 40px 60px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-4b4bz2-container { flex: none; height: 450px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-12dos4v-container, .framer-ROZu9 .framer-uhrafg-container, .framer-ROZu9 .framer-1lsmofa-container, .framer-ROZu9 .framer-1fbzuu4-container, .framer-ROZu9 .framer-1bg0fat-container, .framer-ROZu9 .framer-7zr3uz-container { height: auto; position: relative; width: auto; }\",\".framer-ROZu9 .framer-blxyyo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 50px 20px 50px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-g34mm5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; }\",\".framer-ROZu9 .framer-l290fo { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-ROZu9 .framer-1lsrh40 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-ROZu9 .framer-qer05q-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ROZu9 .framer-u2qen2-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-ROZu9[data-border=\"true\"]::after, .framer-ROZu9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-ROZu9.framer-72rtr7 { width: 1200px; } .framer-ROZu9 .framer-98tswf { padding: 80px 0px 80px 0px; } .framer-ROZu9 .framer-1bfr7nw { max-width: 1200px; padding: 30px 0px 30px 30px; } .framer-ROZu9 .framer-1iuzc7w { left: -50px; right: -350px; width: unset; } .framer-ROZu9 .framer-1nmcw1e { left: 440px; min-width: unset; right: unset; top: 48%; width: 1000px; } .framer-ROZu9 .framer-s97w8q { left: calc(50.00000000000002% - 667px / 2); } .framer-ROZu9 .framer-1emnlbz { left: 50px; } .framer-ROZu9 .framer-1ekctro { right: -10px; top: 50%; } .framer-ROZu9 .framer-mthk70 { flex: 1 0 0px; gap: 30px; padding: 20px 0px 20px 20px; width: 1px; } .framer-ROZu9 .framer-1tgrjg0 { width: 470px; } .framer-ROZu9 .framer-1ygezw5, .framer-ROZu9 .framer-k61uxg, .framer-ROZu9 .framer-1cuerwc, .framer-ROZu9 .framer-l290fo { width: 100%; } .framer-ROZu9 .framer-ja6sej { height: 660px; left: 443px; top: calc(46.50000000000002% - 660px / 2); width: 836px; } .framer-ROZu9 .framer-loqo70 { bottom: unset; top: calc(50.00000000000002% - 495px / 2); } .framer-ROZu9 .framer-3026ha { left: calc(50.059737156511375% - 504px / 2); width: 504px; } .framer-ROZu9 .framer-1bawbb7 { left: 212px; top: calc(50.00000000000002% - 200px / 2); } .framer-ROZu9 .framer-1mwbirk { height: 200px; left: 92px; top: calc(50.00000000000002% - 200px / 2); } .framer-ROZu9 .framer-qf7pfl { left: 113px; width: 166px; } .framer-ROZu9 .framer-1wq0bcx { left: 223px; width: 166px; } .framer-ROZu9 .framer-dtjzev { height: var(--framer-aspect-ratio-supported, 508px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 268px; } .framer-ROZu9 .framer-4dkqm8 { left: 179px; top: 216px; } .framer-ROZu9 .framer-kktbzx { aspect-ratio: 2.2222222222222223 / 1; bottom: 156px; height: var(--framer-aspect-ratio-supported, 81px); left: 439px; } .framer-ROZu9 .framer-1331n4n { left: 454px; overflow: visible; top: 135px; } .framer-ROZu9 .framer-12yg2is, .framer-ROZu9 .framer-oklaka, .framer-ROZu9 .framer-1spl4co, .framer-ROZu9 .framer-kqzum9, .framer-ROZu9 .framer-blxyyo { padding: 80px 48px 80px 48px; } .framer-ROZu9 .framer-4g6msp, .framer-ROZu9 .framer-dkjkzc, .framer-ROZu9 .framer-1ae3lcn, .framer-ROZu9 .framer-10xtbwn, .framer-ROZu9 .framer-g34mm5 { padding: 30px; } .framer-ROZu9 .framer-1sj9czl { height: 380px; } .framer-ROZu9 .framer-a6xbq6 { aspect-ratio: unset; height: 78%; width: 480px; } .framer-ROZu9 .framer-r9ctbk { gap: 20px; } .framer-ROZu9 .framer-rmdpch { gap: 16px; } .framer-ROZu9 .framer-1uo6d1v { order: 0; } .framer-ROZu9 .framer-asg9m3 { order: 1; } .framer-ROZu9 .framer-hben36-container, .framer-ROZu9 .framer-kow7sk-container, .framer-ROZu9 .framer-bw5kc2-container { top: 20px; } .framer-ROZu9 .framer-6izkfl { flex: none; width: min-content; } .framer-ROZu9 .framer-16hbi4h { gap: 200px; padding: 80px 48px 80px 48px; } .framer-ROZu9 .framer-1loqouw { gap: 80px; } .framer-ROZu9 .framer-11xcy69 { padding: 40px; } .framer-ROZu9 .framer-1fa11e4 { height: var(--framer-aspect-ratio-supported, 314px); width: 400px; } .framer-ROZu9 .framer-erixv4-container { flex: none; width: 496px; } .framer-ROZu9 .framer-16f0cyq { gap: 48px; } .framer-ROZu9 .framer-sol4b { height: var(--framer-aspect-ratio-supported, 296px); width: 400px; } .framer-ROZu9 .framer-13pi122 { height: var(--framer-aspect-ratio-supported, 280px); width: 400px; } .framer-ROZu9 .framer-1h2s3ur { height: var(--framer-aspect-ratio-supported, 302px); width: 400px; } .framer-ROZu9 .framer-d8tbl4 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ROZu9.framer-72rtr7 { width: 810px; } .framer-ROZu9 .framer-mfqv5l-container { order: 0; } .framer-ROZu9 .framer-98tswf { height: 1080px; justify-content: flex-start; order: 1; } .framer-ROZu9 .framer-1bfr7nw { flex-direction: column; gap: 20px; height: 1080px; justify-content: flex-start; } .framer-ROZu9 .framer-1iuzc7w { bottom: -160px; height: 1080px; left: -290px; order: 0; right: -290px; top: unset; width: unset; } .framer-ROZu9 .framer-1nmcw1e { aspect-ratio: 2.0202020202020203 / 1; bottom: 93px; height: var(--framer-aspect-ratio-supported, 811px); left: -124px; min-height: unset; min-width: unset; right: -124px; top: unset; transform: unset; width: unset; } .framer-ROZu9 .framer-s97w8q { left: calc(49.949949949949975% - 667px / 2); } .framer-ROZu9 .framer-17xj8kn { flex: none; flex-direction: column; gap: 10px; height: 1080px; justify-content: flex-start; order: 1; padding: 0px; width: 100%; } .framer-ROZu9 .framer-mthk70 { gap: 20px; padding: 60px; width: 100%; } .framer-ROZu9 .framer-aeqjo8 { padding: 10px; width: 100%; } .framer-ROZu9 .framer-1tgrjg0, .framer-ROZu9 .framer-1ygezw5, .framer-ROZu9 .framer-l290fo { width: 100%; } .framer-ROZu9 .framer-ja6sej { height: 524px; left: calc(50.00000000000002% - 600px / 2); top: 473px; } .framer-ROZu9 .framer-loqo70 { bottom: unset; top: calc(50.00000000000002% - 495px / 2); } .framer-ROZu9 .framer-1bawbb7 { left: 322px; } .framer-ROZu9 .framer-1mwbirk { left: 127px; } .framer-ROZu9 .framer-qf7pfl { left: 160px; } .framer-ROZu9 .framer-1wq0bcx { left: 324px; } .framer-ROZu9 .framer-dtjzev { top: 50%; transform: translate(-50%, -50%); } .framer-ROZu9 .framer-4dkqm8 { left: 66px; } .framer-ROZu9 .framer-kktbzx { bottom: 48px; left: 326px; } .framer-ROZu9 .framer-1331n4n { left: 325px; top: 77px; } .framer-ROZu9 .framer-12yg2is { gap: 100px; order: 4; padding: 70px 35px 70px 35px; } .framer-ROZu9 .framer-4g6msp { flex-direction: column; padding: 30px; } .framer-ROZu9 .framer-1sj9czl { flex: none; gap: 0px; height: min-content; width: min-content; } .framer-ROZu9 .framer-a6xbq6 { aspect-ratio: unset; height: 450px; width: 630px; } .framer-ROZu9 .framer-n3w63n { flex: none; padding: 20px; width: 100%; } .framer-ROZu9 .framer-r9ctbk { gap: 18px; } .framer-ROZu9 .framer-rmdpch { gap: 12px; } .framer-ROZu9 .framer-oklaka { order: 5; padding: 70px 35px 70px 35px; } .framer-ROZu9 .framer-dkjkzc, .framer-ROZu9 .framer-1loqouw { padding: 30px; } .framer-ROZu9 .framer-1cuerwc { flex-direction: column; width: 100%; } .framer-ROZu9 .framer-dzpalh { flex: none; gap: 60px; order: 1; width: 100%; } .framer-ROZu9 .framer-hben36-container { order: 0; top: 10px; } .framer-ROZu9 .framer-91380n-container { order: 1; } .framer-ROZu9 .framer-kow7sk-container { order: 2; top: 10px; } .framer-ROZu9 .framer-bw5kc2-container { order: 3; top: 10px; } .framer-ROZu9 .framer-6izkfl { flex: none; height: min-content; order: 0; position: relative; top: unset; width: 100%; } .framer-ROZu9 .framer-16hbi4h { order: 6; padding: 70px 35px 70px 35px; } .framer-ROZu9 .framer-11xcy69 { gap: 100px; padding: 40px 10px 40px 10px; } .framer-ROZu9 .framer-r9g3i1, .framer-ROZu9 .framer-16f0cyq, .framer-ROZu9 .framer-1haf8by, .framer-ROZu9 .framer-ts9vf9 { gap: 30px; } .framer-ROZu9 .framer-1fa11e4 { height: var(--framer-aspect-ratio-supported, 220px); width: 280px; } .framer-ROZu9 .framer-erixv4-container { flex: none; width: 310px; } .framer-ROZu9 .framer-htrik3-container { flex: none; width: auto; } .framer-ROZu9 .framer-sol4b { height: var(--framer-aspect-ratio-supported, 220px); width: 297px; } .framer-ROZu9 .framer-13pi122 { height: var(--framer-aspect-ratio-supported, 220px); width: 315px; } .framer-ROZu9 .framer-1h2s3ur { height: var(--framer-aspect-ratio-supported, 220px); width: 291px; } .framer-ROZu9 .framer-1spl4co { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; order: 8; padding: 70px 35px 70px 35px; } .framer-ROZu9 .framer-1ae3lcn { gap: 34px; padding: 30px; } .framer-ROZu9 .framer-kqzum9 { background-color: var(--token-dc4e1860-b2d5-4bac-af66-42f382a73c31, #f8fafc); gap: 32px; max-width: unset; order: 9; padding: 70px 35px 70px 35px; } .framer-ROZu9 .framer-10xtbwn { gap: 0px; order: 0; padding: 0px; } .framer-ROZu9 .framer-1pd45l8 { padding: 20px 0px 20px 0px; } .framer-ROZu9 .framer-4b4bz2-container { width: 940px; } .framer-ROZu9 .framer-blxyyo { order: 13; padding: 40px 35px 40px 35px; } .framer-ROZu9 .framer-g34mm5 { order: 0; padding: 30px; } .framer-ROZu9 .framer-d8tbl4 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-ROZu9 .framer-u2qen2-container { order: 14; }}\",\"@media (max-width: 809px) { .framer-ROZu9.framer-72rtr7 { width: 390px; } .framer-ROZu9 .framer-mfqv5l-container { order: 0; } .framer-ROZu9 .framer-98tswf { height: min-content; order: 1; } .framer-ROZu9 .framer-1bfr7nw { flex-direction: column; gap: 60px; height: 866px; justify-content: flex-start; order: 0; } .framer-ROZu9 .framer-1iuzc7w { bottom: 0px; height: unset; left: calc(50.00000000000002% - 390px / 2); right: unset; top: -7px; width: 390px; } .framer-ROZu9 .framer-1nmcw1e { aspect-ratio: 2.0202020202020203 / 1; bottom: -29px; height: var(--framer-aspect-ratio-supported, 495px); left: -295px; min-height: unset; min-width: unset; right: -315px; top: unset; transform: unset; width: unset; } .framer-ROZu9 .framer-s97w8q { aspect-ratio: 1.5843230403800475 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 421px); left: 50%; top: 50%; transform: translate(-50%, -50%); } .framer-ROZu9 .framer-17xj8kn { flex: none; flex-direction: column; height: 844px; width: 100%; } .framer-ROZu9 .framer-mthk70 { align-content: center; align-items: center; gap: 20px; padding: 0px; width: 100%; } .framer-ROZu9 .framer-aeqjo8, .framer-ROZu9 .framer-1tgrjg0, .framer-ROZu9 .framer-1ygezw5, .framer-ROZu9 .framer-l290fo { width: 100%; } .framer-ROZu9 .framer-1ll60mz, .framer-ROZu9 .framer-d8tbl4 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-ROZu9 .framer-12fob4g-container, .framer-ROZu9 .framer-1u3wz5q-container { will-change: unset; } .framer-ROZu9 .framer-ja6sej { height: 598px; left: -83px; right: -84px; top: 358px; width: unset; } .framer-ROZu9 .framer-loqo70 { aspect-ratio: 1 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 576px); left: 50%; right: unset; top: 50%; transform: translate(-50%, -50%); width: 576px; } .framer-ROZu9 .framer-3026ha { bottom: 0px; left: 0px; right: 0px; top: 0px; width: unset; } .framer-ROZu9 .framer-1bawbb7 { left: 296px; top: calc(50.00000000000002% - 200px / 2); } .framer-ROZu9 .framer-1mwbirk { height: 201px; left: 86px; top: calc(50.00000000000002% - 201px / 2); } .framer-ROZu9 .framer-qf7pfl { height: var(--framer-aspect-ratio-supported, 318px); left: 112px; top: 50%; width: 165px; } .framer-ROZu9 .framer-1wq0bcx { height: var(--framer-aspect-ratio-supported, 318px); left: 302px; top: 50%; width: 165px; } .framer-ROZu9 .framer-dtjzev { height: var(--framer-aspect-ratio-supported, 508px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 268px; } .framer-ROZu9 .framer-4dkqm8 { left: 69px; top: 236px; } .framer-ROZu9 .framer-kktbzx { aspect-ratio: 2.2222222222222223 / 1; bottom: 155px; height: var(--framer-aspect-ratio-supported, 81px); left: 287px; } .framer-ROZu9 .framer-1331n4n { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 190px); left: 293px; top: 139px; } .framer-ROZu9 .framer-12yg2is { order: 5; padding: 40px 24px 40px 24px; } .framer-ROZu9 .framer-4g6msp { flex-direction: column; padding: 30px; } .framer-ROZu9 .framer-1sj9czl { flex: none; height: min-content; width: 100%; } .framer-ROZu9 .framer-a6xbq6 { aspect-ratio: unset; flex: 1 0 0px; height: 212px; width: 1px; } .framer-ROZu9 .framer-n3w63n { flex: none; gap: 24px; width: 100%; } .framer-ROZu9 .framer-r9ctbk { gap: 24px; } .framer-ROZu9 .framer-xtuw0b { gap: 20px; } .framer-ROZu9 .framer-rmdpch { gap: 8px; } .framer-ROZu9 .framer-oklaka { order: 6; padding: 40px 24px 40px 24px; } .framer-ROZu9 .framer-dkjkzc, .framer-ROZu9 .framer-1loqouw, .framer-ROZu9 .framer-11xcy69 { gap: 60px; padding: 20px; } .framer-ROZu9 .framer-rlbjlb, .framer-ROZu9 .framer-1y9vvid { gap: 18px; } .framer-ROZu9 .framer-1cuerwc { flex-direction: column; gap: 0px; width: 100%; } .framer-ROZu9 .framer-dzpalh, .framer-ROZu9 .framer-erixv4-container, .framer-ROZu9 .framer-htrik3-container, .framer-ROZu9 .framer-91yar-container { flex: none; order: 1; width: 100%; } .framer-ROZu9 .framer-hben36-container { order: 0; top: 10px; } .framer-ROZu9 .framer-91380n-container { order: 1; } .framer-ROZu9 .framer-kow7sk-container { order: 2; top: 10px; } .framer-ROZu9 .framer-bw5kc2-container { order: 3; top: 10px; } .framer-ROZu9 .framer-6izkfl { flex: none; height: min-content; order: 0; position: relative; top: unset; width: 100%; } .framer-ROZu9 .framer-16hbi4h { order: 7; padding: 40px 24px 40px 24px; } .framer-ROZu9 .framer-1nuvb19, .framer-ROZu9 .framer-1pd45l8 { gap: 18px; padding: 0px 5px 0px 5px; } .framer-ROZu9 .framer-sywdzb, .framer-ROZu9 .framer-1ryuvwt { max-width: unset; } .framer-ROZu9 .framer-r9g3i1, .framer-ROZu9 .framer-16f0cyq, .framer-ROZu9 .framer-1haf8by, .framer-ROZu9 .framer-ts9vf9 { flex-direction: column; gap: 20px; } .framer-ROZu9 .framer-1fa11e4 { height: var(--framer-aspect-ratio-supported, 157px); order: 0; width: 200px; } .framer-ROZu9 .framer-sol4b { height: var(--framer-aspect-ratio-supported, 148px); order: 0; width: 200px; } .framer-ROZu9 .framer-13pi122 { height: var(--framer-aspect-ratio-supported, 140px); order: 0; width: 200px; } .framer-ROZu9 .framer-5uux6-container { flex: none; order: 1; width: 282px; } .framer-ROZu9 .framer-1h2s3ur { height: var(--framer-aspect-ratio-supported, 152px); order: 0; width: 200px; } .framer-ROZu9 .framer-1spl4co { order: 8; padding: 40px 24px 40px 24px; } .framer-ROZu9 .framer-1ae3lcn { gap: 50px; order: 0; padding: 20px; } .framer-ROZu9 .framer-kqzum9 { order: 10; padding: 40px 24px 40px 24px; } .framer-ROZu9 .framer-10xtbwn { gap: 0px; padding: 20px; } .framer-ROZu9 .framer-4b4bz2-container { width: 360px; } .framer-ROZu9 .framer-blxyyo { order: 13; padding: 40px 24px 40px 24px; } .framer-ROZu9 .framer-g34mm5 { gap: 18px; padding: 20px; } .framer-ROZu9 .framer-u2qen2-container { order: 14; }}\",\"@media (min-width: 2000px) { .framer-ROZu9.framer-72rtr7 { width: 2000px; } .framer-ROZu9 .framer-1nmcw1e { left: 602px; right: unset; } .framer-ROZu9 .framer-17xj8kn { flex: none; max-width: 1950px; padding: 30px 30px 0px 100px; width: 1950px; } .framer-ROZu9 .framer-mthk70 { justify-content: center; width: 100%; } .framer-ROZu9 .framer-aeqjo8 { width: 793px; } .framer-ROZu9 .framer-1ll60mz { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-ROZu9 .framer-1tgrjg0 { width: 100%; } .framer-ROZu9 .framer-1ygezw5 { width: 540px; } .framer-ROZu9 .framer-ja6sej { left: calc(71.02564102564105% - 600px / 2); } .framer-ROZu9 .framer-13pi122 { height: var(--framer-aspect-ratio-supported, 363px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12109\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"X_Cd7TSE1\":{\"layout\":[\"fixed\",\"auto\"]},\"nfoLtj4ui\":{\"layout\":[\"fixed\",\"auto\"]},\"PZtQslMcU\":{\"layout\":[\"fixed\",\"auto\"]},\"m_jc43S_j\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Suirr3ii9\":{\"pattern\":\":Suirr3ii9\",\"name\":\"mission\"},\"AwQ4sBe3m\":{\"pattern\":\":AwQ4sBe3m\",\"name\":\"about\"},\"eVer0qMwN\":{\"pattern\":\":eVer0qMwN\",\"name\":\"integration\"},\"flwDYj05V\":{\"pattern\":\":flwDYj05V\",\"name\":\"payroll\"},\"AGEEOLKcL\":{\"pattern\":\":AGEEOLKcL\",\"name\":\"features\"},\"gsbHebIdv\":{\"pattern\":\":gsbHebIdv\",\"name\":\"feature-1\"},\"ls2XqHvht\":{\"pattern\":\":ls2XqHvht\",\"name\":\"feature-1\"},\"CXef9sjub\":{\"pattern\":\":CXef9sjub\",\"name\":\"feature-1\"},\"HztGNHAeK\":{\"pattern\":\":HztGNHAeK\",\"name\":\"feature-1\"},\"EBXOI2JRw\":{\"pattern\":\":EBXOI2JRw\",\"name\":\"metrics\"},\"vO_LMgp2f\":{\"pattern\":\":vO_LMgp2f\",\"name\":\"testimonial\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-ROZu9\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12109,width:1440};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:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v30/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1VU80V4bVkA.woff2\",weight:\"600\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v30/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1VU80V4bVkA.woff2\",weight:\"500\"}]},...NavigationBarFonts,...ButtonFonts,...FeatherFonts,...AboutCardFonts,...IntegrationsSolarSysFonts,...FeaturesCardFonts,...ByTheNumbersFonts,...TestimonialFonts,...TickerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"Suirr3ii9\\\":{\\\"pattern\\\":\\\":Suirr3ii9\\\",\\\"name\\\":\\\"mission\\\"},\\\"AwQ4sBe3m\\\":{\\\"pattern\\\":\\\":AwQ4sBe3m\\\",\\\"name\\\":\\\"about\\\"},\\\"eVer0qMwN\\\":{\\\"pattern\\\":\\\":eVer0qMwN\\\",\\\"name\\\":\\\"integration\\\"},\\\"flwDYj05V\\\":{\\\"pattern\\\":\\\":flwDYj05V\\\",\\\"name\\\":\\\"payroll\\\"},\\\"AGEEOLKcL\\\":{\\\"pattern\\\":\\\":AGEEOLKcL\\\",\\\"name\\\":\\\"features\\\"},\\\"gsbHebIdv\\\":{\\\"pattern\\\":\\\":gsbHebIdv\\\",\\\"name\\\":\\\"feature-1\\\"},\\\"ls2XqHvht\\\":{\\\"pattern\\\":\\\":ls2XqHvht\\\",\\\"name\\\":\\\"feature-1\\\"},\\\"CXef9sjub\\\":{\\\"pattern\\\":\\\":CXef9sjub\\\",\\\"name\\\":\\\"feature-1\\\"},\\\"HztGNHAeK\\\":{\\\"pattern\\\":\\\":HztGNHAeK\\\",\\\"name\\\":\\\"feature-1\\\"},\\\"EBXOI2JRw\\\":{\\\"pattern\\\":\\\":EBXOI2JRw\\\",\\\"name\\\":\\\"metrics\\\"},\\\"vO_LMgp2f\\\":{\\\"pattern\\\":\\\":vO_LMgp2f\\\",\\\"name\\\":\\\"testimonial\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"X_Cd7TSE1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nfoLtj4ui\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PZtQslMcU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m_jc43S_j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"12109\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "c", "i", "h", "d", "f", "l", "g", "glide", "a", "o", "u", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "r", "s", "o", "n", "t", "e", "i", "l", "iconKeys", "moduleBaseUrl", "uppercaseIconKeys", "name", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "s", "npm_react_18_2_exports", "importModule", "active", "module", "e", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearj8cbls", "args", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "SVG", "css", "FramerNEjjUG3Mm", "withCSS", "NEjjUG3Mm_default", "addPropertyControls", "ControlType", "addFonts", "e", "f", "r", "o", "t", "n", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "f", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "fontStore", "fonts", "css", "className", "IconoirFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "msHF_hmMB_default", "IconoirControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "content", "height", "icon", "id", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "QQ_81ePOM", "QKHMKR9Zy", "Nq0Pk6nil", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "ResolveLinks", "resolvedLinks", "css", "FrameruDSpF58BS", "withCSS", "uDSpF58BS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HeroFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "name1", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "FAgm7G3Wt", "WYi8QwBZf", "IYzhQJrGl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "ComponentViewportProvider", "Icon", "RichText", "css", "FramerUW39sY8oE", "withCSS", "UW39sY8oE_default", "addPropertyControls", "ControlType", "addFonts", "HeroFonts", "getFontsFromSharedStyle", "fonts", "IconoirFonts", "getFonts", "Icon", "IconoirControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "heading3", "height", "icon", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "clFUjnGQV", "FhoU6ADwj", "VEAs4PZrf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText", "css", "FramerweQcm3TLQ", "withCSS", "weQcm3TLQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationBarFonts", "getFonts", "YyjvDALzo_default", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText", "ButtonFonts", "msHF_hmMB_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "FeatherFonts", "Icon", "ImageWithFX", "Image2", "AboutCardFonts", "weQcm3TLQ_default", "IntegrationsSolarSysFonts", "NEjjUG3Mm_default", "FeaturesCardFonts", "uDSpF58BS_default", "ContainerWithFX", "ByTheNumbersFonts", "DmDvwE7zy_default", "TestimonialFonts", "UW39sY8oE_default", "TickerFonts", "Ticker", "FooterFonts", "OPLn15tGb_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "animation", "transition1", "animation1", "transformTemplate2", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "transition5", "animation6", "animation7", "animation8", "animation9", "animation10", "transition6", "animation11", "transformTemplate3", "animation12", "transition7", "animation13", "transition8", "animation14", "animation15", "animation16", "animation17", "animation18", "transition9", "animation19", "animation20", "transition10", "animation21", "animation22", "transition11", "animation23", "transition12", "animation24", "animation25", "animation26", "transition13", "animation27", "animation28", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "SVG", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
