{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.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/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/sBMK1pKTkWhaMWM4Mhjy/Jlds0A1n9sSo7txi4CRJ/Kym4ifyAB.js", "ssg:https://framerusercontent.com/modules/smLMv7resvQc1c7AHjut/ao6dH1Rd2Xb2AeTSlChP/FppqJ4e2S.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 isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);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 r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}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,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\";\nimport { Children, useEffect, useState, useRef, useMemo, createRef, useCallback, cloneElement } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport { useAnimationFrame, useReducedMotion, LayoutGroup, useInView, useMotionValue, useTransform, motion, wrap } from \"framer-motion\";\nimport { resize } from \"@motionone/dom\";\nconst directionTransformers = {\n  left: offset => `translateX(-${offset}px)`,\n  right: offset => `translateX(${offset}px)`,\n  top: offset => `translateY(-${offset}px)`,\n  bottom: offset => `translateY(${offset}px)`\n};\nconst 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                                                                                                                                        */\nexport default function Ticker(props) {\n  /* Props */let {\n    slots,\n    gap,\n    padding,\n    paddingPerSide,\n    paddingTop,\n    paddingRight,\n    paddingBottom,\n    paddingLeft,\n    speed,\n    hoverFactor,\n    direction,\n    alignment,\n    sizingOptions,\n    fadeOptions,\n    style\n  } = props;\n  const {\n    fadeContent,\n    overflow,\n    fadeWidth,\n    fadeInset,\n    fadeAlpha\n  } = fadeOptions;\n  const {\n    widthType,\n    heightType\n  } = sizingOptions;\n  const paddingValue = paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : `${padding}px`; /* Checks */\n  const isCanvas = RenderTarget.current() === RenderTarget.canvas;\n  const numChildren = Children.count(slots);\n  const hasChildren = numChildren > 0;\n  if (direction === true) {\n    direction = \"left\";\n  }\n  const isHorizontal = direction === \"left\" || direction === \"right\";\n  const offset = useMotionValue(0);\n  const transformer = directionTransformers[direction];\n  const transform = useTransform(offset, transformer); /* Refs and State */\n  const parentRef = useRef(null);\n  const childrenRef = useMemo(() => {\n    return [/*#__PURE__*/createRef(), /*#__PURE__*/createRef()];\n  }, []);\n  const [size, setSize] = useState({\n    parent: null,\n    children: null\n  }); /* Arrays */\n  let clonedChildren = [];\n  let dupedChildren = []; /* Duplicate value */\n  let duplicateBy = 0;\n  let opacity = 0;\n  if (isCanvas) {\n    // duplicateBy = 10\n    duplicateBy = numChildren ? Math.floor(10 / numChildren) : 0;\n    opacity = 1;\n  }\n  if (!isCanvas && hasChildren && size.parent) {\n    duplicateBy = Math.round(size.parent / size.children * 2) + 1;\n    opacity = 1;\n  } /* Measure parent and child */\n  const measure = useCallback(() => {\n    if (hasChildren && parentRef.current) {\n      const parentLength = isHorizontal ? parentRef.current.offsetWidth : parentRef.current.offsetHeight;\n      const start = childrenRef[0].current ? isHorizontal ? childrenRef[0].current.offsetLeft : childrenRef[0].current.offsetTop : 0;\n      const end = childrenRef[1].current ? isHorizontal ? childrenRef[1].current.offsetLeft + childrenRef[1].current.offsetWidth : childrenRef[1].current.offsetTop + childrenRef[1].current.offsetHeight : 0;\n      const childrenLength = end - start + gap;\n      setSize({\n        parent: parentLength,\n        children: childrenLength\n      });\n    }\n  }, []);\n  const childrenStyles = isCanvas ? {\n    contentVisibility: \"auto\"\n  } : {}; /* Add refs to first and last child */\n  if (hasChildren) {\n    // TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\n    if (!isCanvas) {\n      /**\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      */\n      let initialResize = useRef(true);\n      useEffect(() => {\n        measure();\n        return resize(parentRef.current, ({\n          contentSize\n        }) => {\n          if (!initialResize.current && (contentSize.width || contentSize.height)) {\n            measure();\n          }\n          initialResize.current = false;\n        });\n      }, []);\n    }\n    clonedChildren = Children.map(slots, (child, index) => {\n      var ref, ref1, ref2, ref3;\n      let ref4;\n      if (index === 0) {\n        ref4 = childrenRef[0];\n      }\n      if (index === slots.length - 1) {\n        ref4 = childrenRef[1];\n      }\n      const size = {\n        width: widthType ? (ref = child.props) === null || ref === void 0 ? void 0 : ref.width : \"100%\",\n        height: heightType ? (ref1 = child.props) === null || ref1 === void 0 ? void 0 : ref1.height : \"100%\"\n      };\n      return /*#__PURE__*/_jsx(LayoutGroup, {\n        inherit: \"id\",\n        children: /*#__PURE__*/_jsx(\"li\", {\n          ref: ref4,\n          style: size,\n          children: /*#__PURE__*/cloneElement(child, {\n            style: {\n              ...((ref2 = child.props) === null || ref2 === void 0 ? void 0 : ref2.style),\n              ...size,\n              flexShrink: 0,\n              ...childrenStyles\n            },\n            layoutId: child.props.layoutId ? child.props.layoutId + \"-original-\" + index : undefined\n          }, (ref3 = child.props) === null || ref3 === void 0 ? void 0 : ref3.children)\n        })\n      });\n    });\n  }\n  if (!isCanvas) {\n    for (let i = 0; i < duplicateBy; i++) {\n      dupedChildren = [...dupedChildren, ...Children.map(slots, (child, childIndex) => {\n        var ref, ref1, ref2, ref3;\n        return /*#__PURE__*/_jsx(LayoutGroup, {\n          inherit: \"id\",\n          children: /*#__PURE__*/_jsx(\"li\", {\n            style: {\n              display: \"contents\"\n            },\n            \"aria-hidden\": true,\n            children: /*#__PURE__*/cloneElement(child, {\n              key: i + \" \" + childIndex,\n              style: {\n                ...((ref = child.props) === null || ref === void 0 ? void 0 : ref.style),\n                width: widthType ? (ref1 = child.props) === null || ref1 === void 0 ? void 0 : ref1.width : \"100%\",\n                height: heightType ? (ref2 = child.props) === null || ref2 === void 0 ? void 0 : ref2.height : \"100%\",\n                flexShrink: 0,\n                ...childrenStyles\n              },\n              layoutId: child.props.layoutId ? child.props.layoutId + \"-dupe-\" + i : undefined\n            }, (ref3 = child.props) === null || ref3 === void 0 ? void 0 : ref3.children)\n          }, i + \"li\" + childIndex)\n        }, i + \"lg\" + childIndex);\n      })];\n    }\n  }\n  const animateToValue = size.children + size.children * Math.round(size.parent / size.children);\n  const initialTime = useRef(null);\n  const prevTime = useRef(null);\n  const xOrY = useRef(0);\n  const isHover = useRef(false);\n  const isInView = useInView(parentRef);\n  const isReducedMotion = useReducedMotion();\n  const listRef = useRef(null);\n  const animationRef = useRef(null); /**\n                                     * Setup animations\n                                     */\n  if (!isCanvas) {\n    /**\n    * If this is an animation we can hardware accelerate, animate with WAAPI\n    */\n    if (supportsAcceleratedAnimations) {\n      useEffect(() => {\n        if (isReducedMotion || !animateToValue || !speed) {\n          return;\n        }\n        animationRef.current = listRef.current.animate({\n          transform: [transformer(0), transformer(animateToValue)]\n        }, {\n          duration: Math.abs(animateToValue) / speed * 1e3,\n          iterations: Infinity,\n          easing: \"linear\"\n        });\n        return () => animationRef.current.cancel();\n      }, [hoverFactor, animateToValue, speed]);\n    } else {\n      /**\n      * If we can't accelerate this animation because we have a hoverFactor defined\n      * animate with a rAF loop.\n      */\n      useAnimationFrame(t => {\n        if (!animateToValue || isReducedMotion || supportsAcceleratedAnimations) {\n          return;\n        } /**\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          */\n        if (initialTime.current === null) {\n          initialTime.current = t;\n        }\n        t = t - initialTime.current;\n        const timeSince = prevTime.current === null ? 0 : t - prevTime.current;\n        let delta = timeSince * (speed / 1e3);\n        if (isHover.current) {\n          delta *= hoverFactor;\n        }\n        xOrY.current += delta;\n        xOrY.current = wrap(0, animateToValue, xOrY.current);\n        prevTime.current = t;\n        if (!isInView) return;\n        offset.set(xOrY.current);\n      });\n    }\n  } /* Fades */\n  const fadeDirection = isHorizontal ? \"to right\" : \"to bottom\";\n  const fadeWidthStart = fadeWidth / 2;\n  const fadeWidthEnd = 100 - fadeWidth / 2;\n  const fadeInsetStart = clamp(fadeInset, 0, fadeWidthStart);\n  const fadeInsetEnd = 100 - fadeInset;\n  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 */\n  if (!hasChildren) {\n    return /*#__PURE__*/_jsxs(\"section\", {\n      style: placeholderStyles,\n      children: [/*#__PURE__*/_jsx(\"div\", {\n        style: emojiStyles,\n        children: \"\u2728\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: titleStyles,\n        children: \"Connect to Content\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: subtitleStyles,\n        children: \"Add layers or components to infinitely loop on your page.\"\n      })]\n    });\n  }\n  return /*#__PURE__*/_jsx(\"section\", {\n    style: {\n      ...containerStyle,\n      opacity: opacity,\n      WebkitMaskImage: fadeContent ? fadeMask : undefined,\n      MozMaskImage: fadeContent ? fadeMask : undefined,\n      maskImage: fadeContent ? fadeMask : undefined,\n      overflow: overflow ? \"visible\" : \"hidden\",\n      padding: paddingValue\n    },\n    ref: parentRef,\n    children: /*#__PURE__*/_jsxs(motion.ul, {\n      ref: listRef,\n      style: {\n        ...containerStyle,\n        gap: gap,\n        top: direction === \"bottom\" && isValidNumber(animateToValue) ? -animateToValue : undefined,\n        left: direction === \"right\" && isValidNumber(animateToValue) ? -animateToValue : undefined,\n        placeItems: alignment,\n        position: \"relative\",\n        flexDirection: isHorizontal ? \"row\" : \"column\",\n        ...style,\n        transform: supportsAcceleratedAnimations ? undefined : transform,\n        willChange: \"transform\"\n      },\n      onMouseEnter: () => {\n        isHover.current = true;\n        if (animationRef.current) {\n          animationRef.current.updatePlaybackRate(hoverFactor);\n        }\n      },\n      onMouseLeave: () => {\n        isHover.current = false;\n        if (animationRef.current) {\n          animationRef.current.updatePlaybackRate(1);\n        }\n      },\n      children: [clonedChildren, dupedChildren]\n    })\n  });\n}\n; /* Default Properties */\nTicker.defaultProps = {\n  gap: 10,\n  padding: 10,\n  sizingOptions: {\n    widthType: true,\n    heightType: true\n  },\n  fadeOptions: {\n    fadeContent: true,\n    overflow: false,\n    fadeWidth: 25,\n    fadeAlpha: 0,\n    fadeInset: 0\n  },\n  direction: true\n}; /* Property Controls */\naddPropertyControls(Ticker, {\n  slots: {\n    type: ControlType.Array,\n    title: \"Children\",\n    control: {\n      type: ControlType.ComponentInstance\n    }\n  },\n  speed: {\n    type: ControlType.Number,\n    title: \"Speed\",\n    min: 0,\n    max: 1e3,\n    defaultValue: 100,\n    unit: \"%\",\n    displayStepper: true,\n    step: 5\n  },\n  direction: {\n    type: ControlType.Enum,\n    title: \"Direction\",\n    options: [\"left\", \"right\", \"top\", \"bottom\"],\n    optionIcons: [\"direction-left\", \"direction-right\", \"direction-up\", \"direction-down\"],\n    optionTitles: [\"Left\", \"Right\", \"Top\", \"Bottom\"],\n    defaultValue: \"left\",\n    displaySegmentedControl: true\n  },\n  alignment: {\n    type: ControlType.Enum,\n    title: \"Align\",\n    options: [\"flex-start\", \"center\", \"flex-end\"],\n    optionIcons: {\n      direction: {\n        right: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        left: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        top: [\"align-left\", \"align-center\", \"align-right\"],\n        bottom: [\"align-left\", \"align-center\", \"align-right\"]\n      }\n    },\n    defaultValue: \"center\",\n    displaySegmentedControl: true\n  },\n  gap: {\n    type: ControlType.Number,\n    title: \"Gap\"\n  },\n  padding: {\n    title: \"Padding\",\n    type: ControlType.FusedNumber,\n    toggleKey: \"paddingPerSide\",\n    toggleTitles: [\"Padding\", \"Padding per side\"],\n    valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n    valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n    min: 0\n  },\n  sizingOptions: {\n    type: ControlType.Object,\n    title: \"Sizing\",\n    controls: {\n      widthType: {\n        type: ControlType.Boolean,\n        title: \"Width\",\n        enabledTitle: \"Auto\",\n        disabledTitle: \"Stretch\",\n        defaultValue: true\n      },\n      heightType: {\n        type: ControlType.Boolean,\n        title: \"Height\",\n        enabledTitle: \"Auto\",\n        disabledTitle: \"Stretch\",\n        defaultValue: true\n      }\n    }\n  },\n  fadeOptions: {\n    type: ControlType.Object,\n    title: \"Clipping\",\n    controls: {\n      fadeContent: {\n        type: ControlType.Boolean,\n        title: \"Fade\",\n        defaultValue: true\n      },\n      overflow: {\n        type: ControlType.Boolean,\n        title: \"Overflow\",\n        enabledTitle: \"Show\",\n        disabledTitle: \"Hide\",\n        defaultValue: false,\n        hidden(props) {\n          return props.fadeContent === true;\n        }\n      },\n      fadeWidth: {\n        type: ControlType.Number,\n        title: \"Width\",\n        defaultValue: 25,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeInset: {\n        type: ControlType.Number,\n        title: \"Inset\",\n        defaultValue: 0,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeAlpha: {\n        type: ControlType.Number,\n        title: \"Opacity\",\n        defaultValue: 0,\n        min: 0,\n        max: 1,\n        step: .05,\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      }\n    }\n  },\n  hoverFactor: {\n    type: ControlType.Number,\n    title: \"Hover\",\n    min: 0,\n    max: 1,\n    unit: \"x\",\n    defaultValue: 1,\n    step: .1,\n    displayStepper: true,\n    description: \"Slows down the speed while you are hovering.\"\n  }\n}); /* Placeholder Styles */\nconst containerStyle = {\n  display: \"flex\",\n  width: \"100%\",\n  height: \"100%\",\n  maxWidth: \"100%\",\n  maxHeight: \"100%\",\n  placeItems: \"center\",\n  margin: 0,\n  padding: 0,\n  listStyleType: \"none\",\n  textIndent: \"none\"\n}; /* Styles */\nconst placeholderStyles = {\n  display: \"flex\",\n  width: \"100%\",\n  height: \"100%\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  flexDirection: \"column\",\n  color: \"#96F\",\n  background: \"rgba(136, 85, 255, 0.1)\",\n  fontSize: 11,\n  overflow: \"hidden\",\n  padding: \"20px 20px 30px 20px\"\n};\nconst emojiStyles = {\n  fontSize: 32,\n  marginBottom: 10\n};\nconst titleStyles = {\n  margin: 0,\n  marginBottom: 10,\n  fontWeight: 600,\n  textAlign: \"center\"\n};\nconst subtitleStyles = {\n  margin: 0,\n  opacity: .7,\n  maxWidth: 150,\n  lineHeight: 1.5,\n  textAlign: \"center\"\n}; /* Clamp function, used for fadeInset */\nconst clamp = (num, min, max) => Math.min(Math.max(num, min), max);\nconst isValidNumber = value => typeof value === \"number\" && !isNaN(value);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Ticker\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"400\",\n        \"framerIntrinsicHeight\": \"200\",\n        \"framerDisableUnlink\": \"*\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (10753fe)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, getPropertyControls, RichText, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Icon as Phosphor } from \"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/n6k2v4UkzRSH8irZSMsJ/785Npw2RbxvH4sgOIwQu/xZndidUCt.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/vhbYalBBvrqamgJgJQrG/m4Mtfgqcy9WydniOYo3x/YckFIlg3V.js\";\nimport CTA from \"https://framerusercontent.com/modules/vNwR9SdUynU8akJsBbSP/GpnRJavwqKMrmbg0EfVo/OlTWqYMo3.js\";\nconst PhosphorFonts = getFonts(Phosphor);\nconst CTAFonts = getFonts(CTA);\nconst PhosphorControls = getPropertyControls(Phosphor);\nconst cycleOrder = [\"KeWUWSw2t\", \"hUO6W9Cv4\", \"oO6m8pK61\", \"tV1BuQ2YI\", \"voyA507f3\", \"rnz703G5_\"];\nconst variantClassNames = {\n  hUO6W9Cv4: \"framer-v-gnn78v\",\n  KeWUWSw2t: \"framer-v-fvxdms\",\n  oO6m8pK61: \"framer-v-119wxul\",\n  rnz703G5_: \"framer-v-pi222v\",\n  tV1BuQ2YI: \"framer-v-5b3x7\",\n  voyA507f3: \"framer-v-1ehagk6\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {\n  \"Center Color\": \"voyA507f3\",\n  \"Left Alternative\": \"hUO6W9Cv4\",\n  \"Left Color Alternative\": \"rnz703G5_\",\n  \"Left Color\": \"tV1BuQ2YI\",\n  Center: \"oO6m8pK61\",\n  Left: \"KeWUWSw2t\"\n};\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"KeWUWSw2t\",\n  icon: J2X4hmGjs = true,\n  icon1: SXDgbTQKy = \"Cube\",\n  title: g56HeEMzh = \"60 Components\",\n  text: HQlsDHpqI = true,\n  text1: fsUmuS24I = \"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\",\n  cTA: qKOBsbAyJ = true,\n  cTA1: EgEa9J473 = \"Learn more\",\n  link: eZ5aNjZIy,\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"KeWUWSw2t\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const isDisplayed = () => {\n    if (baseVariant === \"oO6m8pK61\") return true;\n    return HQlsDHpqI;\n  };\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-Pcniw\", sharedStyle.className, sharedStyle1.className, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        className: cx(\"framer-fvxdms\", className),\n        \"data-border\": true,\n        \"data-framer-name\": \"Left\",\n        layoutDependency: layoutDependency,\n        layoutId: \"KeWUWSw2t\",\n        ref: ref,\n        style: {\n          \"--border-bottom-width\": \"1px\",\n          \"--border-color\": \"rgba(0, 0, 0, 0.08)\",\n          \"--border-left-width\": \"1px\",\n          \"--border-right-width\": \"1px\",\n          \"--border-style\": \"solid\",\n          \"--border-top-width\": \"1px\",\n          backgroundColor: \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\n          borderBottomLeftRadius: 20,\n          borderBottomRightRadius: 20,\n          borderTopLeftRadius: 20,\n          borderTopRightRadius: 20,\n          boxShadow: \"0px 10px 30px -20px rgba(0, 0, 0, 0.25)\",\n          ...style\n        },\n        transition: transition,\n        variants: {\n          rnz703G5_: {\n            backgroundColor: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"\n          },\n          tV1BuQ2YI: {\n            backgroundColor: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"\n          },\n          voyA507f3: {\n            backgroundColor: \"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"\n          }\n        },\n        ...addPropertyOverrides({\n          hUO6W9Cv4: {\n            \"data-framer-name\": \"Left Alternative\"\n          },\n          oO6m8pK61: {\n            \"data-framer-name\": \"Center\"\n          },\n          rnz703G5_: {\n            \"data-framer-name\": \"Left Color Alternative\"\n          },\n          tV1BuQ2YI: {\n            \"data-framer-name\": \"Left Color\"\n          },\n          voyA507f3: {\n            \"data-framer-name\": \"Center Color\"\n          }\n        }, baseVariant, gestureVariant),\n        children: [J2X4hmGjs && /*#__PURE__*/_jsx(motion.div, {\n          className: \"framer-uucjd2\",\n          layoutDependency: layoutDependency,\n          layoutId: \"F95f36hha\",\n          style: {\n            backgroundColor: \"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",\n            borderBottomLeftRadius: 10,\n            borderBottomRightRadius: 10,\n            borderTopLeftRadius: 10,\n            borderTopRightRadius: 10\n          },\n          transition: transition,\n          variants: {\n            rnz703G5_: {\n              backgroundColor: \"rgba(0, 0, 0, 0.2)\"\n            },\n            tV1BuQ2YI: {\n              backgroundColor: \"rgba(0, 0, 0, 0.2)\"\n            },\n            voyA507f3: {\n              backgroundColor: \"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\"\n            }\n          },\n          children: /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-kqmbbe-container\",\n            layoutDependency: layoutDependency,\n            layoutId: \"Ty5tyHJHr-container\",\n            transition: transition,\n            children: /*#__PURE__*/_jsx(Phosphor, {\n              color: 'var(--token-4741f72e-3b36-49cf-851b-1e44fa9a054a, rgb(245, 102, 135)) /* {\"name\":\"Red\"} */',\n              height: \"100%\",\n              iconSearch: \"House\",\n              iconSelection: SXDgbTQKy,\n              id: \"Ty5tyHJHr\",\n              layoutId: \"Ty5tyHJHr\",\n              mirrored: false,\n              selectByList: true,\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              weight: \"fill\",\n              width: \"100%\",\n              ...addPropertyOverrides({\n                oO6m8pK61: {\n                  color: 'var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) /* {\"name\":\"Purple\"} */'\n                },\n                rnz703G5_: {\n                  color: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */'\n                },\n                tV1BuQ2YI: {\n                  color: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */'\n                },\n                voyA507f3: {\n                  color: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */'\n                }\n              }, baseVariant, gestureVariant)\n            })\n          })\n        }), /*#__PURE__*/_jsxs(motion.div, {\n          className: \"framer-la8y0v\",\n          layoutDependency: layoutDependency,\n          layoutId: \"bYmYnzPr_\",\n          transition: transition,\n          children: [/*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-z5nbjq\",\n            layoutDependency: layoutDependency,\n            layoutId: \"RTForIbu1\",\n            transition: transition,\n            children: [/*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.h3, {\n                  className: \"framer-styles-preset-12lj5ox\",\n                  \"data-styles-preset\": \"YckFIlg3V\",\n                  children: \"60 Components\"\n                })\n              }),\n              className: \"framer-1uxjwyq\",\n              layoutDependency: layoutDependency,\n              layoutId: \"hB6nuKfjq\",\n              style: {\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              text: g56HeEMzh,\n              transition: transition,\n              variants: {\n                rnz703G5_: {\n                  \"--extracted-a0htzi\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"\n                },\n                tV1BuQ2YI: {\n                  \"--extracted-a0htzi\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"\n                },\n                voyA507f3: {\n                  \"--extracted-a0htzi\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"\n                }\n              },\n              verticalAlignment: \"top\",\n              withExternalLayout: true,\n              ...addPropertyOverrides({\n                hUO6W9Cv4: {\n                  verticalAlignment: \"center\"\n                },\n                oO6m8pK61: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.h3, {\n                      className: \"framer-styles-preset-12lj5ox\",\n                      \"data-styles-preset\": \"YckFIlg3V\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\"\n                      },\n                      children: \"60 Components\"\n                    })\n                  })\n                },\n                rnz703G5_: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.h3, {\n                      className: \"framer-styles-preset-12lj5ox\",\n                      \"data-styles-preset\": \"YckFIlg3V\",\n                      style: {\n                        \"--framer-text-color\": \"var(--extracted-a0htzi)\"\n                      },\n                      children: \"60 Components\"\n                    })\n                  }),\n                  verticalAlignment: \"center\"\n                },\n                tV1BuQ2YI: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.h3, {\n                      className: \"framer-styles-preset-12lj5ox\",\n                      \"data-styles-preset\": \"YckFIlg3V\",\n                      style: {\n                        \"--framer-text-color\": \"var(--extracted-a0htzi)\"\n                      },\n                      children: \"60 Components\"\n                    })\n                  })\n                },\n                voyA507f3: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.h3, {\n                      className: \"framer-styles-preset-12lj5ox\",\n                      \"data-styles-preset\": \"YckFIlg3V\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--extracted-a0htzi)\"\n                      },\n                      children: \"60 Components\"\n                    })\n                  })\n                }\n              }, baseVariant, gestureVariant)\n            }), isDisplayed() && /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.p, {\n                  className: \"framer-styles-preset-21ogod\",\n                  \"data-styles-preset\": \"xZndidUCt\",\n                  children: \"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"\n                })\n              }),\n              className: \"framer-1im8s97\",\n              layoutDependency: layoutDependency,\n              layoutId: \"R_F67sjlM\",\n              style: {\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\",\n                opacity: 1\n              },\n              text: fsUmuS24I,\n              transition: transition,\n              variants: {\n                oO6m8pK61: {\n                  \"--extracted-r6o4lv\": \"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"\n                },\n                rnz703G5_: {\n                  \"--extracted-r6o4lv\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\n                  opacity: .8\n                },\n                tV1BuQ2YI: {\n                  \"--extracted-r6o4lv\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\n                  opacity: .8\n                },\n                voyA507f3: {\n                  \"--extracted-r6o4lv\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\n                  opacity: .8\n                }\n              },\n              verticalAlignment: \"top\",\n              withExternalLayout: true,\n              ...addPropertyOverrides({\n                oO6m8pK61: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.p, {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--extracted-r6o4lv)\"\n                      },\n                      children: \"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"\n                    })\n                  })\n                },\n                rnz703G5_: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.p, {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      style: {\n                        \"--framer-text-color\": \"var(--extracted-r6o4lv)\"\n                      },\n                      children: \"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"\n                    })\n                  })\n                },\n                tV1BuQ2YI: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.p, {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      style: {\n                        \"--framer-text-color\": \"var(--extracted-r6o4lv)\"\n                      },\n                      children: \"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"\n                    })\n                  })\n                },\n                voyA507f3: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.p, {\n                      className: \"framer-styles-preset-21ogod\",\n                      \"data-styles-preset\": \"xZndidUCt\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--extracted-r6o4lv)\"\n                      },\n                      children: \"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"\n                    })\n                  })\n                }\n              }, baseVariant, gestureVariant)\n            })]\n          }), qKOBsbAyJ && /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-bhxmgd-container\",\n            layoutDependency: layoutDependency,\n            layoutId: \"oe7WZP7JM-container\",\n            transition: transition,\n            children: /*#__PURE__*/_jsx(CTA, {\n              color: 'var(--token-b2ff2c70-0d32-4ed9-a6c5-3efed310ef07, rgb(255, 102, 102)) /* {\"name\":\"solwix-red\"} */',\n              height: \"100%\",\n              id: \"oe7WZP7JM\",\n              layoutId: \"oe7WZP7JM\",\n              link: eZ5aNjZIy,\n              title: EgEa9J473,\n              variant: \"DT5wJl0k7\",\n              width: \"100%\",\n              ...addPropertyOverrides({\n                rnz703G5_: {\n                  color: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */'\n                },\n                tV1BuQ2YI: {\n                  color: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */'\n                },\n                voyA507f3: {\n                  color: 'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */'\n                }\n              }, baseVariant, gestureVariant)\n            })\n          })]\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-Pcniw [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-Pcniw .framer-1dk5uem { display: block; }\", \".framer-Pcniw .framer-fvxdms { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 490px; will-change: transform; }\", \".framer-Pcniw .framer-uucjd2 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 56px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 56px; will-change: transform; }\", \".framer-Pcniw .framer-kqmbbe-container { flex: none; height: 32px; position: relative; width: 32px; }\", \".framer-Pcniw .framer-la8y0v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Pcniw .framer-z5nbjq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 90%; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-Pcniw .framer-1uxjwyq, .framer-Pcniw .framer-1im8s97 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-Pcniw .framer-bhxmgd-container { flex: none; height: auto; position: relative; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Pcniw .framer-fvxdms, .framer-Pcniw .framer-uucjd2, .framer-Pcniw .framer-la8y0v, .framer-Pcniw .framer-z5nbjq { gap: 0px; } .framer-Pcniw .framer-fvxdms > *, .framer-Pcniw .framer-la8y0v > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Pcniw .framer-fvxdms > :first-child, .framer-Pcniw .framer-la8y0v > :first-child, .framer-Pcniw .framer-z5nbjq > :first-child { margin-top: 0px; } .framer-Pcniw .framer-fvxdms > :last-child, .framer-Pcniw .framer-la8y0v > :last-child, .framer-Pcniw .framer-z5nbjq > :last-child { margin-bottom: 0px; } .framer-Pcniw .framer-uucjd2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Pcniw .framer-uucjd2 > :first-child { margin-left: 0px; } .framer-Pcniw .framer-uucjd2 > :last-child { margin-right: 0px; } .framer-Pcniw .framer-z5nbjq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\", \".framer-Pcniw.framer-v-gnn78v .framer-fvxdms, .framer-Pcniw.framer-v-pi222v .framer-fvxdms { flex-direction: row; }\", \".framer-Pcniw.framer-v-gnn78v .framer-la8y0v, .framer-Pcniw.framer-v-pi222v .framer-la8y0v { flex: 1 0 0px; width: 1px; }\", \".framer-Pcniw.framer-v-gnn78v .framer-1uxjwyq, .framer-Pcniw.framer-v-pi222v .framer-1uxjwyq { height: 56px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Pcniw.framer-v-gnn78v .framer-fvxdms { gap: 0px; } .framer-Pcniw.framer-v-gnn78v .framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-Pcniw.framer-v-gnn78v .framer-fvxdms > :first-child { margin-left: 0px; } .framer-Pcniw.framer-v-gnn78v .framer-fvxdms > :last-child { margin-right: 0px; } }\", \".framer-Pcniw.framer-v-119wxul .framer-fvxdms, .framer-Pcniw.framer-v-119wxul .framer-la8y0v, .framer-Pcniw.framer-v-1ehagk6 .framer-fvxdms, .framer-Pcniw.framer-v-1ehagk6 .framer-la8y0v { align-content: center; align-items: center; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Pcniw.framer-v-pi222v .framer-fvxdms { gap: 0px; } .framer-Pcniw.framer-v-pi222v .framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-Pcniw.framer-v-pi222v .framer-fvxdms > :first-child { margin-left: 0px; } .framer-Pcniw.framer-v-pi222v .framer-fvxdms > :last-child { margin-right: 0px; } }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerIntrinsicHeight 362\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerIntrinsicWidth 490\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hUO6W9Cv4\":{\"layout\":[\"fixed\",\"auto\"]},\"oO6m8pK61\":{\"layout\":[\"fixed\",\"auto\"]},\"tV1BuQ2YI\":{\"layout\":[\"fixed\",\"auto\"]},\"voyA507f3\":{\"layout\":[\"fixed\",\"auto\"]},\"rnz703G5_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerVariables {\"J2X4hmGjs\":\"icon\",\"SXDgbTQKy\":\"icon1\",\"g56HeEMzh\":\"title\",\"HQlsDHpqI\":\"text\",\"fsUmuS24I\":\"text1\",\"qKOBsbAyJ\":\"cTA\",\"EgEa9J473\":\"cTA1\",\"eZ5aNjZIy\":\"link\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            */\nconst FramerKym4ifyAB = withCSS(Component, css, \"framer-Pcniw\");\nexport default FramerKym4ifyAB;\nFramerKym4ifyAB.displayName = \"Feature Card\";\nFramerKym4ifyAB.defaultProps = {\n  height: 362,\n  width: 490\n};\naddPropertyControls(FramerKym4ifyAB, {\n  variant: {\n    options: [\"KeWUWSw2t\", \"hUO6W9Cv4\", \"oO6m8pK61\", \"tV1BuQ2YI\", \"voyA507f3\", \"rnz703G5_\"],\n    optionTitles: [\"Left\", \"Left Alternative\", \"Center\", \"Left Color\", \"Center Color\", \"Left Color Alternative\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  J2X4hmGjs: {\n    defaultValue: true,\n    title: \"Icon\",\n    type: ControlType.Boolean\n  },\n  SXDgbTQKy: (PhosphorControls === null || PhosphorControls === void 0 ? void 0 : PhosphorControls[\"iconSelection\"]) && {\n    ...PhosphorControls[\"iconSelection\"],\n    defaultValue: \"Cube\",\n    hidden: undefined,\n    title: \"Icon\"\n  },\n  g56HeEMzh: {\n    defaultValue: \"60 Components\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  },\n  HQlsDHpqI: {\n    defaultValue: true,\n    title: \"Text\",\n    type: ControlType.Boolean\n  },\n  fsUmuS24I: {\n    defaultValue: \"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\",\n    displayTextArea: true,\n    title: \"Text\",\n    type: ControlType.String\n  },\n  qKOBsbAyJ: {\n    defaultValue: true,\n    title: \"CTA\",\n    type: ControlType.Boolean\n  },\n  EgEa9J473: {\n    defaultValue: \"Learn more\",\n    displayTextArea: false,\n    title: \"CTA\",\n    type: ControlType.String\n  },\n  eZ5aNjZIy: {\n    title: \"Link\",\n    type: ControlType.Link\n  }\n});\naddFonts(FramerKym4ifyAB, [...PhosphorFonts, ...CTAFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerKym4ifyAB\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hUO6W9Cv4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oO6m8pK61\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tV1BuQ2YI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"voyA507f3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rnz703G5_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"362\",\n        \"framerVariables\": \"{\\\"J2X4hmGjs\\\":\\\"icon\\\",\\\"SXDgbTQKy\\\":\\\"icon1\\\",\\\"g56HeEMzh\\\":\\\"title\\\",\\\"HQlsDHpqI\\\":\\\"text\\\",\\\"fsUmuS24I\\\":\\\"text1\\\",\\\"qKOBsbAyJ\\\":\\\"cTA\\\",\\\"EgEa9J473\\\":\\\"cTA1\\\",\\\"eZ5aNjZIy\\\":\\\"link\\\"}\",\n        \"framerIntrinsicWidth\": \"490\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (0a90a8e)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, resolveLink, RichText, useHydratedBreakpointVariants, useLocaleInfo, useRouteElementId, useRouter, withCSS, withFX } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Ticker from \"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";\nimport FormSpark from \"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";\nimport FeatureCard from \"https://framerusercontent.com/modules/sBMK1pKTkWhaMWM4Mhjy/Jlds0A1n9sSo7txi4CRJ/Kym4ifyAB.js\";\nimport Topbar from \"https://framerusercontent.com/modules/nX3Zri3YoQhfGqRXiKNW/DY45vwkjhpB91C2Z7YyV/lWUcIJP0H.js\";\nimport Footer from \"https://framerusercontent.com/modules/tLPWfDDUblAmnOGFv7GY/9KvSmbFFQhgqqAsXVAkE/M82dauGNX.js\";\nimport Button from \"https://framerusercontent.com/modules/aVdfegnGJYMfnQrwZwgB/LC8Jk6MPJbKKddTv3X0A/Tnz4seCKc.js\";\nimport * as sharedStyle4 from \"https://framerusercontent.com/modules/v66cSLyH6ktVtMLYKQQS/vSna17Ckia1RwKSj79ah/i59KN99_1.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/xpNjBac6fykjXsOV243O/OuQ64qmHaWio1lKQKZrs/pbkah0okA.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/z83sZJTqZypSVvcXoR2I/qDLGFPa9guey6La2P5fg/puB8kY46u.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/n6k2v4UkzRSH8irZSMsJ/785Npw2RbxvH4sgOIwQu/xZndidUCt.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/wtT1Xj23zUCDEOw5FqiD/UgDkXdYYSDfDFK3Y5SMZ/YAP816Y5n.js\";\nimport * as sharedStyle5 from \"https://framerusercontent.com/modules/vhbYalBBvrqamgJgJQrG/m4Mtfgqcy9WydniOYo3x/YckFIlg3V.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/UUdBPbuKNCYEYcRpLdgi/wivomIgXTxGC1zjSocEa/FppqJ4e2S.js\";\nconst TopbarFonts = getFonts(Topbar);\nconst ButtonFonts = getFonts(Button);\nconst MotionDivWithFX = withFX(motion.div);\nconst FeatureCardFonts = getFonts(FeatureCard);\nconst TickerFonts = getFonts(Ticker);\nconst FormSparkFonts = getFonts(FormSpark);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"Bseij3vWY\", \"CZBfAyGXD\", \"RaG3c53kM\"];\nconst breakpoints = {\n  Bseij3vWY: \"(min-width: 1200px)\",\n  CZBfAyGXD: \"(min-width: 810px) and (max-width: 1199px)\",\n  RaG3c53kM: \"(max-width: 809px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  Bseij3vWY: \"framer-v-122z4ah\",\n  CZBfAyGXD: \"framer-v-e4x2pd\",\n  RaG3c53kM: \"framer-v-u3ktob\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"Bseij3vWY\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transformTemplate = (_, t) => `translateX(-50%) ${t}`;\nconst transition1 = {\n  damping: 80,\n  delay: .1,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 100\n};\nconst transformTemplate1 = (_, t) => `perspective(1200px) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 100\n};\nconst animation3 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 100\n};\nconst transition2 = {\n  damping: 80,\n  delay: .4,\n  mass: 1,\n  stiffness: 200,\n  type: \"spring\"\n};\nconst animation4 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst animation5 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst animation6 = {\n  opacity: .001,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  x: 0,\n  y: 0\n};\nconst transition3 = {\n  damping: 80,\n  delay: .2,\n  mass: 1,\n  stiffness: 400,\n  type: \"spring\"\n};\nconst animation7 = {\n  opacity: 0,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 100\n};\nconst animation8 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 0\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"Bseij3vWY\",\n  Phone: \"RaG3c53kM\",\n  Tablet: \"CZBfAyGXD\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _variant, ref;\n  return {\n    ...props,\n    variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"Bseij3vWY\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const id = useRouteElementId(\"KlVSYwLi3\");\n  const ref1 = React.useRef(null);\n  const router = useRouter();\n  const id1 = useRouteElementId(\"CtmZe9Afg\");\n  const ref2 = React.useRef(null);\n  const id2 = useRouteElementId(\"U72uL001x\");\n  const ref3 = React.useRef(null);\n  const id3 = useRouteElementId(\"JW4Ehw8bv\");\n  const ref4 = React.useRef(null);\n  const id4 = useRouteElementId(\"QIKlAfzGH\");\n  const ref5 = React.useRef(null);\n  const id5 = useRouteElementId(\"y7aTSfAov\");\n  const ref6 = React.useRef(null);\n  const id6 = useRouteElementId(\"NjHdVAbJl\");\n  const ref7 = React.useRef(null);\n  const id7 = useRouteElementId(\"qoQJjO3Um\");\n  const ref8 = React.useRef(null);\n  const id8 = useRouteElementId(\"HcXEaRToE\");\n  const ref9 = React.useRef(null);\n  const id9 = useRouteElementId(\"TIFRLHKI4\");\n  const ref10 = React.useRef(null);\n  const id10 = useRouteElementId(\"fBHEg5H2o\");\n  const ref11 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"Bseij3vWY\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-hx3jU\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className, sharedStyle5.className),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-122z4ah\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-1yebsxb-container\",\n            layoutScroll: true,\n            transformTemplate: transformTemplate,\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                RaG3c53kM: {\n                  variant: \"ZQwaB4_p3\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Topbar, {\n                height: \"100%\",\n                id: \"Q5iNU6JZG\",\n                layoutId: \"Q5iNU6JZG\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"jRXICbciv\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1ni8kdd\",\n            \"data-framer-name\": \"Headline\",\n            name: \"Headline\",\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-17djp1t\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  CZBfAyGXD: {\n                    \"data-framer-appear-id\": \"nl22qi\",\n                    animate: optimizeAppear(\"animate\", \"nl22qi\", animation1, \"e4x2pd\"),\n                    initial: optimizeAppear(\"initial\", \"nl22qi\", animation2, \"e4x2pd\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"nl22qi\", transformTemplate1)\n                  },\n                  RaG3c53kM: {\n                    \"data-framer-appear-id\": \"nft452\",\n                    animate: optimizeAppear(\"animate\", \"nft452\", animation1, \"u3ktob\"),\n                    initial: optimizeAppear(\"initial\", \"nft452\", animation2, \"u3ktob\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"nft452\", transformTemplate1)\n                  }\n                },\n                children: /*#__PURE__*/_jsxs(motion.div, {\n                  animate: optimizeAppear(\"animate\", \"17gt01r\", animation1, \"122z4ah\"),\n                  className: \"framer-17gt01r\",\n                  \"data-framer-appear-id\": \"17gt01r\",\n                  exit: animation,\n                  initial: optimizeAppear(\"initial\", \"17gt01r\", animation2, \"122z4ah\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"17gt01r\", transformTemplate1),\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      RaG3c53kM: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h1\", {\n                            className: \"framer-styles-preset-3nqyhf\",\n                            \"data-styles-preset\": \"YAP816Y5n\",\n                            style: {\n                              \"--framer-text-alignment\": \"left\"\n                            },\n                            children: \"Tailored Solutions for Your Unique Business Needs\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsxs(\"h1\", {\n                          className: \"framer-styles-preset-3nqyhf\",\n                          \"data-styles-preset\": \"YAP816Y5n\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: [\"Tailored Solutions for Your\", /*#__PURE__*/_jsx(\"br\", {}), \"Unique Business Needs\"]\n                        })\n                      }),\n                      className: \"framer-1dye9uo\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-11ru2ty\",\n                        \"data-styles-preset\": \"puB8kY46u\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Driving Efficiency, Innovation and Customization\"\n                      })\n                    }),\n                    className: \"framer-1awm0ck\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })\n              })\n            })\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1fyxrz9\",\n            \"data-framer-name\": \"About Us\",\n            id: id,\n            name: \"About Us\",\n            ref: ref1,\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-x3sfem\",\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  CZBfAyGXD: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 512,\n                      intrinsicWidth: 768,\n                      pixelHeight: 512,\n                      pixelWidth: 768,\n                      sizes: \"min(100vw - 100px, 1200px)\",\n                      src: new URL(\"https://framerusercontent.com/images/tbOYWSOeNQFTQaxy8dZ6Fb7Gbg.png\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/tbOYWSOeNQFTQaxy8dZ6Fb7Gbg.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/tbOYWSOeNQFTQaxy8dZ6Fb7Gbg.png\").href} 768w`\n                    }\n                  },\n                  RaG3c53kM: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 512,\n                      intrinsicWidth: 768,\n                      pixelHeight: 512,\n                      pixelWidth: 768,\n                      sizes: \"min(100vw - 40px, 1200px)\",\n                      src: new URL(\"https://framerusercontent.com/images/tbOYWSOeNQFTQaxy8dZ6Fb7Gbg.png\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/tbOYWSOeNQFTQaxy8dZ6Fb7Gbg.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/tbOYWSOeNQFTQaxy8dZ6Fb7Gbg.png\").href} 768w`\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 512,\n                    intrinsicWidth: 768,\n                    pixelHeight: 512,\n                    pixelWidth: 768,\n                    sizes: \"max((min(100vw - 200px, 1200px) - 100px) / 2, 0px)\",\n                    src: new URL(\"https://framerusercontent.com/images/tbOYWSOeNQFTQaxy8dZ6Fb7Gbg.png\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/tbOYWSOeNQFTQaxy8dZ6Fb7Gbg.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/tbOYWSOeNQFTQaxy8dZ6Fb7Gbg.png\").href} 768w`\n                  },\n                  className: \"framer-15nu4yx\"\n                })\n              }), /*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation3,\n                __framer__exit: animation,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-u5z58j\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-6lex9\",\n                  children: [/*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsx(\"h2\", {\n                        className: \"framer-styles-preset-1tif1bq\",\n                        \"data-styles-preset\": \"pbkah0okA\",\n                        style: {\n                          \"--framer-text-alignment\": \"left\"\n                        },\n                        children: \"Welcome to Solwix!\"\n                      })\n                    }),\n                    className: \"framer-gwocr3\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsxs(React.Fragment, {\n                      children: [/*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        children: \"We are a dynamic team specializing in providing businesses with transformative data, automation, and integration solutions. \"\n                      }), /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        children: \"At Solwix, we understand that every business is unique and faces its own set of challenges. \"\n                      }), /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        children: \"Our personalized approach allows us to understand your unique needs and goals, enabling us to design and implement tailored solutions. \"\n                      }), /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        children: \"With a team of talented professionals constantly pushing the boundaries of what is possible, we leverage cutting-edge technologies to drive your business forward. \"\n                      }), /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        children: \"Contact us today to discuss how our customized solutions can transform your business!\"\n                      })]\n                    }),\n                    className: \"framer-tcp5e7\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-1mu8lpb-container\",\n                    children: /*#__PURE__*/_jsx(Button, {\n                      height: \"100%\",\n                      icon: false,\n                      icon1: \"PlayCircle\",\n                      id: \"DPujGB6aF\",\n                      layoutId: \"DPujGB6aF\",\n                      link: resolveLink({\n                        hash: \":fBHEg5H2o\",\n                        webPageId: \"FppqJ4e2S\"\n                      }, router),\n                      style: {\n                        width: \"100%\"\n                      },\n                      title: \"Contact Us\",\n                      variant: \"b48suxf0R\",\n                      width: \"100%\"\n                    })\n                  })]\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-gz8j7a\",\n            \"data-framer-name\": \"Our Services\",\n            id: id1,\n            name: \"Our Services\",\n            ref: ref2,\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-14b0sqo\",\n              \"data-framer-name\": \"Heading\",\n              name: \"Heading\",\n              children: /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h2\", {\n                    className: \"framer-styles-preset-1tif1bq\",\n                    \"data-styles-preset\": \"pbkah0okA\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\",\n                      \"--framer-text-color\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"\n                    },\n                    children: \"Our Services\"\n                  })\n                }),\n                className: \"framer-acmi4v\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            }), /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-utfajc\",\n              \"data-framer-name\": \"Services\",\n              name: \"Services\",\n              children: [/*#__PURE__*/_jsx(Container, {\n                className: \"framer-16arlzb-container\",\n                \"data-framer-name\": \"Data\",\n                id: id2,\n                name: \"Data\",\n                ref: ref3,\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    CZBfAyGXD: {\n                      style: {\n                        width: \"100%\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(FeatureCard, {\n                    cTA: true,\n                    cTA1: \"Learn more\",\n                    height: \"100%\",\n                    icon: true,\n                    icon1: \"ChartBar\",\n                    id: \"U72uL001x\",\n                    layoutId: \"U72uL001x\",\n                    link: resolveLink({\n                      pathVariables: {\n                        Tu_Pd0zTZ: \"how-data-solutions-can-transform-your-business\"\n                      },\n                      webPageId: \"bcUIOegNe\"\n                    }, router),\n                    name: \"Data\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    text: true,\n                    text1: \"We offer end-to-end data services including scraping, tabulating, enriching, visualizing, and analyzing. \",\n                    title: \"Data\",\n                    variant: \"KeWUWSw2t\",\n                    width: \"100%\"\n                  })\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1xxomr5-container\",\n                \"data-framer-name\": \"Automation\",\n                id: id3,\n                name: \"Automation\",\n                ref: ref4,\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    CZBfAyGXD: {\n                      style: {\n                        width: \"100%\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(FeatureCard, {\n                    cTA: true,\n                    cTA1: \"Learn more\",\n                    height: \"100%\",\n                    icon: true,\n                    icon1: \"Lightning\",\n                    id: \"JW4Ehw8bv\",\n                    layoutId: \"JW4Ehw8bv\",\n                    link: resolveLink({\n                      pathVariables: {\n                        Tu_Pd0zTZ: \"harness-the-power-of-automation-to-streamline-your-business\"\n                      },\n                      webPageId: \"bcUIOegNe\"\n                    }, router),\n                    name: \"Automation\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    text: true,\n                    text1: \"We can help you to save time and effort by automating all the repetitive tasks that a human being can do.\",\n                    title: \"Automation\",\n                    variant: \"KeWUWSw2t\",\n                    width: \"100%\"\n                  })\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1aba7es-container\",\n                \"data-framer-name\": \"Integration\",\n                id: id4,\n                name: \"Integration\",\n                ref: ref5,\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    CZBfAyGXD: {\n                      style: {\n                        width: \"100%\"\n                      }\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(FeatureCard, {\n                    cTA: true,\n                    cTA1: \"Learn more\",\n                    height: \"100%\",\n                    icon: true,\n                    icon1: \"DiamondsFour\",\n                    id: \"QIKlAfzGH\",\n                    layoutId: \"QIKlAfzGH\",\n                    link: resolveLink({\n                      pathVariables: {\n                        Tu_Pd0zTZ: \"unlock-operational-efficiency-through-data-integration-and-tool-optimization\"\n                      },\n                      webPageId: \"bcUIOegNe\"\n                    }, router),\n                    name: \"Integration\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    text: true,\n                    text1: \"We provide assistance in integrating data sources and optimizing tool utilization to enhance efficiency.\",\n                    title: \"Integration\",\n                    variant: \"KeWUWSw2t\",\n                    width: \"100%\"\n                  })\n                })\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-jd7a9r\",\n            \"data-framer-name\": \"Microsoft Power Platform Consulting\",\n            id: id5,\n            name: \"Microsoft Power Platform Consulting\",\n            ref: ref6,\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1b2g9xn\",\n              children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition1\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation3,\n                __framer__exit: animation,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1l8v9qa\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-3776v0\",\n                  children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      CZBfAyGXD: {\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"h2\", {\n                            className: \"framer-styles-preset-1tif1bq\",\n                            \"data-styles-preset\": \"pbkah0okA\",\n                            style: {\n                              \"--framer-text-alignment\": \"left\"\n                            },\n                            children: \"Microsoft Power Platform Consulting\"\n                          })\n                        })\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsxs(\"h2\", {\n                          className: \"framer-styles-preset-1tif1bq\",\n                          \"data-styles-preset\": \"pbkah0okA\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: [\"Microsoft \", /*#__PURE__*/_jsx(\"br\", {}), \"Power Platform Consulting\"]\n                        })\n                      }),\n                      className: \"framer-nvd64n\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  }), /*#__PURE__*/_jsx(RichText, {\n                    __fromCanvasComponent: true,\n                    children: /*#__PURE__*/_jsxs(React.Fragment, {\n                      children: [/*#__PURE__*/_jsxs(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        children: [\"Supercharge your business with Solwix's Microsoft Power Platform consulting services. Our experienced consultants are here to guide you through the implementation and utilization of \", /*#__PURE__*/_jsx(\"strong\", {\n                          children: \"Power BI\"\n                        }), \", \", /*#__PURE__*/_jsx(\"strong\", {\n                          children: \"Power Apps,\"\n                        }), \" and \", /*#__PURE__*/_jsx(\"strong\", {\n                          children: \"Power Automate\"\n                        }), \". \"]\n                      }), /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        children: \"Leverage the full potential of these powerful applications to streamline processes, gain data-driven insights, and automate repetitive tasks.\"\n                      }), /*#__PURE__*/_jsx(\"p\", {\n                        className: \"framer-styles-preset-21ogod\",\n                        \"data-styles-preset\": \"xZndidUCt\",\n                        children: \" Take your business to new heights with Solwix's tailored Microsoft Power Platform consulting solutions. Explore the possibilities today.\"\n                      })]\n                    }),\n                    className: \"framer-1gpqo2\",\n                    verticalAlignment: \"top\",\n                    withExternalLayout: true\n                  })]\n                })\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  CZBfAyGXD: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 958,\n                      intrinsicWidth: 1280,\n                      loading: \"lazy\",\n                      pixelHeight: 958,\n                      pixelWidth: 1280,\n                      sizes: \"min(100vw - 100px, 1200px)\",\n                      src: new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg\").href} 1280w`\n                    }\n                  },\n                  RaG3c53kM: {\n                    background: {\n                      alt: \"\",\n                      fit: \"fill\",\n                      intrinsicHeight: 958,\n                      intrinsicWidth: 1280,\n                      loading: \"lazy\",\n                      pixelHeight: 958,\n                      pixelWidth: 1280,\n                      sizes: \"min(100vw - 40px, 1200px)\",\n                      src: new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg\").href,\n                      srcSet: `${new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg\").href} 1280w`\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Image, {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 958,\n                    intrinsicWidth: 1280,\n                    loading: \"lazy\",\n                    pixelHeight: 958,\n                    pixelWidth: 1280,\n                    sizes: \"max((min(100vw - 200px, 1200px) - 40px) / 2, 0px)\",\n                    src: new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/2Ur5uzP8VGvMX9OgmKT2z6dHo.jpg\").href} 1280w`\n                  },\n                  className: \"framer-1rouhow\"\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-culu7z\",\n            \"data-framer-name\": \"Tools & Technologies\",\n            id: id6,\n            name: \"Tools & Technologies\",\n            ref: ref7,\n            children: [/*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1042vjr\",\n              \"data-framer-name\": \"Heading\",\n              name: \"Heading\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  RaG3c53kM: {\n                    children: /*#__PURE__*/_jsx(React.Fragment, {\n                      children: /*#__PURE__*/_jsxs(\"h2\", {\n                        className: \"framer-styles-preset-1tif1bq\",\n                        \"data-styles-preset\": \"pbkah0okA\",\n                        style: {\n                          \"--framer-text-alignment\": \"center\",\n                          \"--framer-text-color\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"\n                        },\n                        children: [\"Tools & \", /*#__PURE__*/_jsx(\"br\", {}), \"Technologies\"]\n                      })\n                    })\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-1tif1bq\",\n                      \"data-styles-preset\": \"pbkah0okA\",\n                      style: {\n                        \"--framer-text-alignment\": \"center\",\n                        \"--framer-text-color\": \"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"\n                      },\n                      children: \"Tools & Technologies\"\n                    })\n                  }),\n                  className: \"framer-164aw62\",\n                  id: id7,\n                  ref: ref8,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })\n            }), /*#__PURE__*/_jsx(Container, {\n              className: \"framer-nd6mbh-container\",\n              id: id8,\n              ref: ref9,\n              children: /*#__PURE__*/_jsx(Ticker, {\n                alignment: \"center\",\n                direction: \"left\",\n                fadeOptions: {\n                  fadeAlpha: 0,\n                  fadeContent: true,\n                  fadeInset: 0,\n                  fadeWidth: 50,\n                  overflow: false\n                },\n                gap: 0,\n                height: \"100%\",\n                hoverFactor: 1,\n                id: \"HcXEaRToE\",\n                layoutId: \"HcXEaRToE\",\n                padding: 0,\n                paddingBottom: 0,\n                paddingLeft: 20,\n                paddingPerSide: false,\n                paddingRight: 20,\n                paddingTop: 0,\n                sizingOptions: {\n                  heightType: true,\n                  widthType: true\n                },\n                slots: [/*#__PURE__*/_jsxs(motion.div, {\n                  className: \"framer-1hlwewa\",\n                  \"data-framer-name\": \"Logos\",\n                  name: \"Logos\",\n                  children: [/*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-c3iehh\",\n                    \"data-framer-name\": \"Power Apps\",\n                    id: id9,\n                    name: \"Power Apps\",\n                    ref: ref10,\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-v4olc5\",\n                      \"data-framer-name\": \"Power Apps\",\n                      name: \"Power Apps\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 48,\n                          intrinsicWidth: 48,\n                          pixelHeight: 48,\n                          pixelWidth: 48,\n                          src: new URL(\"https://framerusercontent.com/images/KvYYGSL3SIqJvXB6eJEk76IT5u8.png\").href\n                        },\n                        className: \"framer-6uy73k\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Power Apps\"\n                          })\n                        }),\n                        className: \"framer-k2xxl1\",\n                        \"data-framer-name\": \"Power Apps\",\n                        name: \"Power Apps\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1s9r89i\",\n                    \"data-framer-name\": \"Power BI\",\n                    name: \"Power BI\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-1fxqqow\",\n                      \"data-framer-name\": \"Power BI\",\n                      name: \"Power BI\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 48,\n                          intrinsicWidth: 48,\n                          pixelHeight: 48,\n                          pixelWidth: 48,\n                          src: new URL(\"https://framerusercontent.com/images/C2Hrf8lwqrasjkIHHkOQTjGLJ9g.png\").href\n                        },\n                        className: \"framer-fbzhal\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Power BI\"\n                          })\n                        }),\n                        className: \"framer-1jsg2ol\",\n                        \"data-framer-name\": \"Power BI\",\n                        name: \"Power BI\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1itrt83\",\n                    \"data-framer-name\": \"Power Automate\",\n                    name: \"Power Automate\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-1bj9gd2\",\n                      \"data-framer-name\": \"Power Automate\",\n                      name: \"Power Automate\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 48,\n                          intrinsicWidth: 48,\n                          pixelHeight: 48,\n                          pixelWidth: 48,\n                          src: new URL(\"https://framerusercontent.com/images/ETJjZcTEQOfVLiQSVjapRJEYA.png\").href\n                        },\n                        className: \"framer-1gyvf63\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Power Automate\"\n                          })\n                        }),\n                        className: \"framer-1y5hd7b\",\n                        \"data-framer-name\": \"Power Automate\",\n                        name: \"Power Automate\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-xu62a2\",\n                    \"data-framer-name\": \"Hubspot\",\n                    name: \"Hubspot\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-1howuj5\",\n                      \"data-framer-name\": \"Hubspot\",\n                      name: \"Hubspot\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 48,\n                          intrinsicWidth: 48,\n                          pixelHeight: 48,\n                          pixelWidth: 48,\n                          src: new URL(\"https://framerusercontent.com/images/A7bko1nahqGkcyZ09kCXYvGdD4.png\").href\n                        },\n                        className: \"framer-a40d93\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Hubspot\"\n                          })\n                        }),\n                        className: \"framer-1f8vfw6\",\n                        \"data-framer-name\": \"Hubspot\",\n                        name: \"Hubspot\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1873lyj\",\n                    \"data-framer-name\": \"Python\",\n                    name: \"Python\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-ez78qo\",\n                      \"data-framer-name\": \"Python\",\n                      name: \"Python\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 48,\n                          intrinsicWidth: 48,\n                          pixelHeight: 48,\n                          pixelWidth: 48,\n                          src: new URL(\"https://framerusercontent.com/images/81oo2lGzWYMg45kRj1JcjBMtjkU.png\").href\n                        },\n                        className: \"framer-13q4v9v\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Python\"\n                          })\n                        }),\n                        className: \"framer-9v2lwx\",\n                        \"data-framer-name\": \"Python\",\n                        name: \"Python\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-4pd8df\",\n                    \"data-framer-name\": \"R\",\n                    name: \"R\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-z5phqk\",\n                      \"data-framer-name\": \"R\",\n                      name: \"R\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 561,\n                          intrinsicWidth: 724,\n                          pixelHeight: 561,\n                          pixelWidth: 724,\n                          src: new URL(\"https://framerusercontent.com/images/kH0dTvnrVf06wunXJ0ZiNssftA.svg\").href\n                        },\n                        className: \"framer-bxo9sf\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"R\"\n                          })\n                        }),\n                        className: \"framer-1jw51l8\",\n                        \"data-framer-name\": \"R\",\n                        name: \"R\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-dk2ozz\",\n                    \"data-framer-name\": \"Julia\",\n                    name: \"Julia\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-1yrmqcv\",\n                      \"data-framer-name\": \"Julia\",\n                      name: \"Julia\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 267,\n                          intrinsicWidth: 427,\n                          pixelHeight: 267,\n                          pixelWidth: 427,\n                          src: new URL(\"https://framerusercontent.com/images/Z53cXs2qwRvJ0nM4f1Ztt3W9uQ.svg\").href\n                        },\n                        className: \"framer-5ymbyj\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Julia\"\n                          })\n                        }),\n                        className: \"framer-bfcdbt\",\n                        \"data-framer-name\": \"Julia\",\n                        name: \"Julia\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1avz6bd\",\n                    \"data-framer-name\": \"Selenium\",\n                    name: \"Selenium\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-35nzko\",\n                      \"data-framer-name\": \"Selenium\",\n                      name: \"Selenium\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 48,\n                          intrinsicWidth: 48,\n                          pixelHeight: 48,\n                          pixelWidth: 48,\n                          src: new URL(\"https://framerusercontent.com/images/b1bOMAgmaXwxAAohTVit9khf42M.png\").href\n                        },\n                        className: \"framer-1ao5t4g\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Selenium\"\n                          })\n                        }),\n                        className: \"framer-1704z0o\",\n                        \"data-framer-name\": \"Selenium\",\n                        name: \"Selenium\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-6vcrsu\",\n                    \"data-framer-name\": \"Looker Studio\",\n                    name: \"Looker Studio\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-1oylebc\",\n                      \"data-framer-name\": \"Looker Studio\",\n                      name: \"Looker Studio\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          intrinsicHeight: 40,\n                          intrinsicWidth: 40,\n                          pixelHeight: 40,\n                          pixelWidth: 40,\n                          src: new URL(\"https://framerusercontent.com/images/Z3VMIpfPqj4ddkYhqJBeXF5eeZM.svg\").href\n                        },\n                        className: \"framer-3h6yp1\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Looker Studio\"\n                          })\n                        }),\n                        className: \"framer-1qg9539\",\n                        \"data-framer-name\": \"Looker Studio\",\n                        name: \"Looker Studio\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1xns036\",\n                    \"data-framer-name\": \"Zapier\",\n                    name: \"Zapier\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-jtnzrz\",\n                      \"data-framer-name\": \"Zapier\",\n                      name: \"Zapier\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 48,\n                          intrinsicWidth: 48,\n                          pixelHeight: 48,\n                          pixelWidth: 48,\n                          src: new URL(\"https://framerusercontent.com/images/tTl8Q0uuwMjHUPzgXzTYYQizKUM.png\").href\n                        },\n                        className: \"framer-km65w\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"Zapier\"\n                          })\n                        }),\n                        className: \"framer-olkhm1\",\n                        \"data-framer-name\": \"Zapier\",\n                        name: \"Zapier\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1rswa6q\",\n                    \"data-framer-name\": \"UiPath\",\n                    name: \"UiPath\",\n                    children: /*#__PURE__*/_jsxs(motion.div, {\n                      className: \"framer-qqtnbt\",\n                      \"data-framer-name\": \"UiPath\",\n                      name: \"UiPath\",\n                      children: [/*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fit\",\n                          intrinsicHeight: 399,\n                          intrinsicWidth: 1121,\n                          pixelHeight: 399,\n                          pixelWidth: 1121,\n                          sizes: \"48px\",\n                          src: new URL(\"https://framerusercontent.com/images/D842dIMgLq5jP3qtZx40YvJtgI.png\").href,\n                          srcSet: `${new URL(\"https://framerusercontent.com/images/D842dIMgLq5jP3qtZx40YvJtgI.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/D842dIMgLq5jP3qtZx40YvJtgI.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/D842dIMgLq5jP3qtZx40YvJtgI.png\").href} 1121w`\n                        },\n                        className: \"framer-9xx84d\"\n                      }), /*#__PURE__*/_jsx(RichText, {\n                        __fromCanvasComponent: true,\n                        children: /*#__PURE__*/_jsx(React.Fragment, {\n                          children: /*#__PURE__*/_jsx(\"p\", {\n                            className: \"framer-styles-preset-qemwmo\",\n                            \"data-styles-preset\": \"i59KN99_1\",\n                            children: \"UiPath\"\n                          })\n                        }),\n                        className: \"framer-qvxklz\",\n                        \"data-framer-name\": \"UiPath\",\n                        name: \"UiPath\",\n                        verticalAlignment: \"top\",\n                        withExternalLayout: true\n                      })]\n                    })\n                  })]\n                })],\n                speed: 50,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                width: \"100%\"\n              })\n            })]\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-svj4pj\",\n            \"data-framer-name\": \"Contact Us\",\n            id: id10,\n            name: \"Contact Us\",\n            ref: ref11,\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1qrloob\",\n              children: /*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1wx6fcf\",\n                children: [/*#__PURE__*/_jsx(MotionDivWithFX, {\n                  __framer__animate: {\n                    transition: transition1\n                  },\n                  __framer__animateOnce: true,\n                  __framer__enter: animation3,\n                  __framer__exit: animation,\n                  __framer__styleAppearEffectEnabled: true,\n                  __framer__threshold: .5,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  className: \"framer-racy5b\",\n                  transformTemplate: transformTemplate1,\n                  children: /*#__PURE__*/_jsxs(motion.div, {\n                    className: \"framer-1variw4\",\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-1tif1bq\",\n                          \"data-styles-preset\": \"pbkah0okA\",\n                          style: {\n                            \"--framer-text-alignment\": \"left\"\n                          },\n                          children: \"Contact Us\"\n                        })\n                      }),\n                      className: \"framer-1o9b7n1\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsxs(React.Fragment, {\n                        children: [/*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-21ogod\",\n                          \"data-styles-preset\": \"xZndidUCt\",\n                          children: \"Whether you have questions, need assistance with a project, or want to explore our solutions, our team is ready to provide personalized support.\"\n                        }), /*#__PURE__*/_jsx(\"p\", {\n                          className: \"framer-styles-preset-21ogod\",\n                          \"data-styles-preset\": \"xZndidUCt\",\n                          children: \"Reach out to us today, and let's discuss how Solwix can contribute to your business success.\"\n                        })]\n                      }),\n                      className: \"framer-1jvug3l\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })]\n                  })\n                }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    CZBfAyGXD: {\n                      \"data-framer-appear-id\": \"ea2pzz\",\n                      animate: optimizeAppear(\"animate\", \"ea2pzz\", animation8, \"e4x2pd\"),\n                      initial: optimizeAppear(\"initial\", \"ea2pzz\", animation2, \"e4x2pd\"),\n                      transformTemplate: optimizeAppearTransformTemplate(\"ea2pzz\", transformTemplate1)\n                    },\n                    RaG3c53kM: {\n                      \"data-framer-appear-id\": \"z9mvkq\",\n                      animate: optimizeAppear(\"animate\", \"z9mvkq\", animation8, \"u3ktob\"),\n                      initial: optimizeAppear(\"initial\", \"z9mvkq\", animation2, \"u3ktob\"),\n                      transformTemplate: optimizeAppearTransformTemplate(\"z9mvkq\", transformTemplate1)\n                    }\n                  },\n                  children: /*#__PURE__*/_jsxs(motion.div, {\n                    animate: optimizeAppear(\"animate\", \"p9cg8g\", animation8, \"122z4ah\"),\n                    className: \"framer-p9cg8g\",\n                    \"data-border\": true,\n                    \"data-framer-appear-id\": \"p9cg8g\",\n                    exit: animation7,\n                    initial: optimizeAppear(\"initial\", \"p9cg8g\", animation2, \"122z4ah\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"p9cg8g\", transformTemplate1),\n                    children: [/*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h3\", {\n                          className: \"framer-styles-preset-12lj5ox\",\n                          \"data-styles-preset\": \"YckFIlg3V\",\n                          children: \"Start a conversation\"\n                        })\n                      }),\n                      className: \"framer-1r4dpbx\",\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    }), /*#__PURE__*/_jsx(Container, {\n                      className: \"framer-1v0j2bd-container\",\n                      children: /*#__PURE__*/_jsx(FormSpark, {\n                        borderRadius: 10,\n                        bottomLeftRadius: 10,\n                        bottomRightRadius: 10,\n                        button: {\n                          color: \"rgb(255, 255, 255)\",\n                          fill: 'var(--token-b2ff2c70-0d32-4ed9-a6c5-3efed310ef07, rgb(255, 102, 102)) /* {\"name\":\"solwix-red\"} */',\n                          fontWeight: 600,\n                          label: \"Send\"\n                        },\n                        email: {\n                          placeholder: \"Email\",\n                          value: \"\"\n                        },\n                        font: true,\n                        fontFamily: \"Manrope\",\n                        fontSize: 18,\n                        fontWeight: 500,\n                        formId: \"lAo8WLsV\",\n                        gap: 20,\n                        height: \"100%\",\n                        id: \"R3v3RZwro\",\n                        inputs: {\n                          color: 'var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78)) /* {\"name\":\"Text\"} */',\n                          error: \"rgb(238, 68, 68)\",\n                          fill: \"rgba(255, 204, 102, 0.25)\",\n                          placeholderColor: 'var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118)) /* {\"name\":\"Text Light\"} */'\n                        },\n                        isMixedBorderRadius: false,\n                        layout: \"horizontal\",\n                        layoutId: \"R3v3RZwro\",\n                        message: {\n                          placeholder: \"Message\",\n                          value: \"\"\n                        },\n                        nameField: {\n                          placeholder: \"Name\",\n                          value: \"\"\n                        },\n                        padding: 10,\n                        paddingBottom: 10,\n                        paddingLeft: 10,\n                        paddingPerSide: false,\n                        paddingRight: 10,\n                        paddingTop: 10,\n                        style: {\n                          height: \"100%\",\n                          width: \"100%\"\n                        },\n                        topLeftRadius: 10,\n                        topRightRadius: 10,\n                        width: \"100%\",\n                        withEmail: true,\n                        withMessage: true,\n                        withName: true\n                      })\n                    })]\n                  })\n                })]\n              })\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-17o3ofi-container\",\n            children: /*#__PURE__*/_jsx(Footer, {\n              height: \"100%\",\n              id: \"B9QAx2y5q\",\n              layoutId: \"B9QAx2y5q\",\n              style: {\n                width: \"100%\"\n              },\n              variant: \"NWDLXXgiF\",\n              width: \"100%\"\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-hx3jU [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: white; }`, \".framer-hx3jU .framer-1hrpk09 { display: block; }\", \".framer-hx3jU .framer-122z4ah { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-hx3jU .framer-1yebsxb-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\", \".framer-hx3jU .framer-1ni8kdd { align-content: center; align-items: center; background: radial-gradient(72.6% 84% at 100% 100%, #6699cc 0%, rgba(230, 249, 250, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 100px 100px 100px; position: relative; width: 100%; z-index: 1; }\", \".framer-hx3jU .framer-17djp1t, .framer-hx3jU .framer-x3sfem { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-hx3jU .framer-17gt01r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-hx3jU .framer-1dye9uo, .framer-hx3jU .framer-1awm0ck, .framer-hx3jU .framer-gwocr3, .framer-hx3jU .framer-tcp5e7, .framer-hx3jU .framer-nvd64n, .framer-hx3jU .framer-1gpqo2, .framer-hx3jU .framer-1o9b7n1, .framer-hx3jU .framer-1jvug3l, .framer-hx3jU .framer-1r4dpbx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-hx3jU .framer-1fyxrz9, .framer-hx3jU .framer-jd7a9r, .framer-hx3jU .framer-svj4pj { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-hx3jU .framer-15nu4yx { align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: auto; max-height: 700px; position: relative; width: 1px; }\", \".framer-hx3jU .framer-u5z58j, .framer-hx3jU .framer-1l8v9qa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-hx3jU .framer-6lex9, .framer-hx3jU .framer-3776v0, .framer-hx3jU .framer-1variw4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-hx3jU .framer-1mu8lpb-container { flex: none; height: auto; position: relative; width: 150px; }\", \".framer-hx3jU .framer-gz8j7a { align-content: center; align-items: center; background-color: var(--token-37e4bf64-fc3e-4646-8bd5-8b66fd0b56f7, #6699cc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-hx3jU .framer-14b0sqo, .framer-hx3jU .framer-1042vjr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: min-content; }\", \".framer-hx3jU .framer-acmi4v, .framer-hx3jU .framer-164aw62, .framer-hx3jU .framer-k2xxl1, .framer-hx3jU .framer-1jsg2ol, .framer-hx3jU .framer-1y5hd7b, .framer-hx3jU .framer-1f8vfw6, .framer-hx3jU .framer-9v2lwx, .framer-hx3jU .framer-1jw51l8, .framer-hx3jU .framer-bfcdbt, .framer-hx3jU .framer-1704z0o, .framer-hx3jU .framer-1qg9539, .framer-hx3jU .framer-olkhm1, .framer-hx3jU .framer-qvxklz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \".framer-hx3jU .framer-utfajc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-hx3jU .framer-16arlzb-container, .framer-hx3jU .framer-1xxomr5-container, .framer-hx3jU .framer-1aba7es-container { flex: 1 0 0px; height: 450px; position: relative; width: 1px; }\", \".framer-hx3jU .framer-1b2g9xn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-hx3jU .framer-1rouhow { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 558px; max-height: 700px; position: relative; width: 1px; }\", \".framer-hx3jU .framer-culu7z { align-content: center; align-items: center; background-color: var(--token-ef74dbbc-816a-46b5-8fd3-4b61e28f62cc, #ffcc66); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 100px 100px; position: relative; width: 100%; }\", \".framer-hx3jU .framer-nd6mbh-container { flex: none; height: 90px; position: relative; width: 1000px; }\", \".framer-hx3jU .framer-1hlwewa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-hx3jU .framer-c3iehh, .framer-hx3jU .framer-1s9r89i, .framer-hx3jU .framer-1itrt83, .framer-hx3jU .framer-xu62a2, .framer-hx3jU .framer-hlbjuo, .framer-hx3jU .framer-1873lyj, .framer-hx3jU .framer-4pd8df, .framer-hx3jU .framer-dk2ozz, .framer-hx3jU .framer-1avz6bd, .framer-hx3jU .framer-6vcrsu, .framer-hx3jU .framer-1xns036, .framer-hx3jU .framer-1rswa6q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 180px; }\", \".framer-hx3jU .framer-v4olc5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-hx3jU .framer-6uy73k, .framer-hx3jU .framer-fbzhal, .framer-hx3jU .framer-1gyvf63, .framer-hx3jU .framer-a40d93, .framer-hx3jU .framer-13q4v9v, .framer-hx3jU .framer-bxo9sf, .framer-hx3jU .framer-5ymbyj, .framer-hx3jU .framer-1ao5t4g, .framer-hx3jU .framer-3h6yp1, .framer-hx3jU .framer-km65w, .framer-hx3jU .framer-9xx84d { flex: none; height: 48px; position: relative; width: 48px; }\", \".framer-hx3jU .framer-1fxqqow, .framer-hx3jU .framer-1bj9gd2, .framer-hx3jU .framer-1howuj5, .framer-hx3jU .framer-ez78qo, .framer-hx3jU .framer-z5phqk, .framer-hx3jU .framer-1yrmqcv, .framer-hx3jU .framer-35nzko, .framer-hx3jU .framer-1oylebc, .framer-hx3jU .framer-jtnzrz, .framer-hx3jU .framer-qqtnbt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-hx3jU .framer-1df396e, .framer-hx3jU .framer-p0e8nd, .framer-hx3jU .framer-p6v9u9, .framer-hx3jU .framer-zoqx46, .framer-hx3jU .framer-rnmlx9 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; min-height: 21px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: auto; }\", \".framer-hx3jU .framer-198khg-container { flex: none; height: auto; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-hx3jU .framer-1qrloob { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-hx3jU .framer-1wx6fcf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 20px 20px 20px; position: relative; width: 1px; }\", \".framer-hx3jU .framer-racy5b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 450px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-hx3jU .framer-p9cg8g { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 40px 40px 40px; position: relative; transform: perspective(1200px); width: 1px; }\", \".framer-hx3jU .framer-1v0j2bd-container { flex: none; height: 236px; position: relative; width: 100%; }\", \".framer-hx3jU .framer-17o3ofi-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hx3jU .framer-122z4ah, .framer-hx3jU .framer-1ni8kdd, .framer-hx3jU .framer-17djp1t, .framer-hx3jU .framer-17gt01r, .framer-hx3jU .framer-1fyxrz9, .framer-hx3jU .framer-x3sfem, .framer-hx3jU .framer-u5z58j, .framer-hx3jU .framer-6lex9, .framer-hx3jU .framer-gz8j7a, .framer-hx3jU .framer-14b0sqo, .framer-hx3jU .framer-utfajc, .framer-hx3jU .framer-jd7a9r, .framer-hx3jU .framer-1b2g9xn, .framer-hx3jU .framer-1l8v9qa, .framer-hx3jU .framer-3776v0, .framer-hx3jU .framer-culu7z, .framer-hx3jU .framer-1042vjr, .framer-hx3jU .framer-1hlwewa, .framer-hx3jU .framer-c3iehh, .framer-hx3jU .framer-v4olc5, .framer-hx3jU .framer-1s9r89i, .framer-hx3jU .framer-1fxqqow, .framer-hx3jU .framer-1itrt83, .framer-hx3jU .framer-1bj9gd2, .framer-hx3jU .framer-xu62a2, .framer-hx3jU .framer-1howuj5, .framer-hx3jU .framer-hlbjuo, .framer-hx3jU .framer-1873lyj, .framer-hx3jU .framer-ez78qo, .framer-hx3jU .framer-4pd8df, .framer-hx3jU .framer-z5phqk, .framer-hx3jU .framer-1df396e, .framer-hx3jU .framer-dk2ozz, .framer-hx3jU .framer-1yrmqcv, .framer-hx3jU .framer-p0e8nd, .framer-hx3jU .framer-1avz6bd, .framer-hx3jU .framer-35nzko, .framer-hx3jU .framer-6vcrsu, .framer-hx3jU .framer-1oylebc, .framer-hx3jU .framer-p6v9u9, .framer-hx3jU .framer-1xns036, .framer-hx3jU .framer-jtnzrz, .framer-hx3jU .framer-zoqx46, .framer-hx3jU .framer-1rswa6q, .framer-hx3jU .framer-qqtnbt, .framer-hx3jU .framer-rnmlx9, .framer-hx3jU .framer-svj4pj, .framer-hx3jU .framer-1qrloob, .framer-hx3jU .framer-1wx6fcf, .framer-hx3jU .framer-racy5b, .framer-hx3jU .framer-1variw4, .framer-hx3jU .framer-p9cg8g { gap: 0px; } .framer-hx3jU .framer-122z4ah > *, .framer-hx3jU .framer-1fyxrz9 > *, .framer-hx3jU .framer-gz8j7a > *, .framer-hx3jU .framer-jd7a9r > *, .framer-hx3jU .framer-culu7z > *, .framer-hx3jU .framer-svj4pj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hx3jU .framer-122z4ah > :first-child, .framer-hx3jU .framer-1ni8kdd > :first-child, .framer-hx3jU .framer-17gt01r > :first-child, .framer-hx3jU .framer-1fyxrz9 > :first-child, .framer-hx3jU .framer-u5z58j > :first-child, .framer-hx3jU .framer-6lex9 > :first-child, .framer-hx3jU .framer-gz8j7a > :first-child, .framer-hx3jU .framer-14b0sqo > :first-child, .framer-hx3jU .framer-jd7a9r > :first-child, .framer-hx3jU .framer-1l8v9qa > :first-child, .framer-hx3jU .framer-3776v0 > :first-child, .framer-hx3jU .framer-culu7z > :first-child, .framer-hx3jU .framer-1042vjr > :first-child, .framer-hx3jU .framer-v4olc5 > :first-child, .framer-hx3jU .framer-1fxqqow > :first-child, .framer-hx3jU .framer-1bj9gd2 > :first-child, .framer-hx3jU .framer-1howuj5 > :first-child, .framer-hx3jU .framer-ez78qo > :first-child, .framer-hx3jU .framer-z5phqk > :first-child, .framer-hx3jU .framer-1df396e > :first-child, .framer-hx3jU .framer-1yrmqcv > :first-child, .framer-hx3jU .framer-p0e8nd > :first-child, .framer-hx3jU .framer-35nzko > :first-child, .framer-hx3jU .framer-1oylebc > :first-child, .framer-hx3jU .framer-p6v9u9 > :first-child, .framer-hx3jU .framer-jtnzrz > :first-child, .framer-hx3jU .framer-zoqx46 > :first-child, .framer-hx3jU .framer-qqtnbt > :first-child, .framer-hx3jU .framer-rnmlx9 > :first-child, .framer-hx3jU .framer-svj4pj > :first-child, .framer-hx3jU .framer-racy5b > :first-child, .framer-hx3jU .framer-1variw4 > :first-child, .framer-hx3jU .framer-p9cg8g > :first-child { margin-top: 0px; } .framer-hx3jU .framer-122z4ah > :last-child, .framer-hx3jU .framer-1ni8kdd > :last-child, .framer-hx3jU .framer-17gt01r > :last-child, .framer-hx3jU .framer-1fyxrz9 > :last-child, .framer-hx3jU .framer-u5z58j > :last-child, .framer-hx3jU .framer-6lex9 > :last-child, .framer-hx3jU .framer-gz8j7a > :last-child, .framer-hx3jU .framer-14b0sqo > :last-child, .framer-hx3jU .framer-jd7a9r > :last-child, .framer-hx3jU .framer-1l8v9qa > :last-child, .framer-hx3jU .framer-3776v0 > :last-child, .framer-hx3jU .framer-culu7z > :last-child, .framer-hx3jU .framer-1042vjr > :last-child, .framer-hx3jU .framer-v4olc5 > :last-child, .framer-hx3jU .framer-1fxqqow > :last-child, .framer-hx3jU .framer-1bj9gd2 > :last-child, .framer-hx3jU .framer-1howuj5 > :last-child, .framer-hx3jU .framer-ez78qo > :last-child, .framer-hx3jU .framer-z5phqk > :last-child, .framer-hx3jU .framer-1df396e > :last-child, .framer-hx3jU .framer-1yrmqcv > :last-child, .framer-hx3jU .framer-p0e8nd > :last-child, .framer-hx3jU .framer-35nzko > :last-child, .framer-hx3jU .framer-1oylebc > :last-child, .framer-hx3jU .framer-p6v9u9 > :last-child, .framer-hx3jU .framer-jtnzrz > :last-child, .framer-hx3jU .framer-zoqx46 > :last-child, .framer-hx3jU .framer-qqtnbt > :last-child, .framer-hx3jU .framer-rnmlx9 > :last-child, .framer-hx3jU .framer-svj4pj > :last-child, .framer-hx3jU .framer-racy5b > :last-child, .framer-hx3jU .framer-1variw4 > :last-child, .framer-hx3jU .framer-p9cg8g > :last-child { margin-bottom: 0px; } .framer-hx3jU .framer-1ni8kdd > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-hx3jU .framer-17djp1t > *, .framer-hx3jU .framer-x3sfem > *, .framer-hx3jU .framer-1qrloob > *, .framer-hx3jU .framer-1wx6fcf > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-hx3jU .framer-17djp1t > :first-child, .framer-hx3jU .framer-x3sfem > :first-child, .framer-hx3jU .framer-utfajc > :first-child, .framer-hx3jU .framer-1b2g9xn > :first-child, .framer-hx3jU .framer-1hlwewa > :first-child, .framer-hx3jU .framer-c3iehh > :first-child, .framer-hx3jU .framer-1s9r89i > :first-child, .framer-hx3jU .framer-1itrt83 > :first-child, .framer-hx3jU .framer-xu62a2 > :first-child, .framer-hx3jU .framer-hlbjuo > :first-child, .framer-hx3jU .framer-1873lyj > :first-child, .framer-hx3jU .framer-4pd8df > :first-child, .framer-hx3jU .framer-dk2ozz > :first-child, .framer-hx3jU .framer-1avz6bd > :first-child, .framer-hx3jU .framer-6vcrsu > :first-child, .framer-hx3jU .framer-1xns036 > :first-child, .framer-hx3jU .framer-1rswa6q > :first-child, .framer-hx3jU .framer-1qrloob > :first-child, .framer-hx3jU .framer-1wx6fcf > :first-child { margin-left: 0px; } .framer-hx3jU .framer-17djp1t > :last-child, .framer-hx3jU .framer-x3sfem > :last-child, .framer-hx3jU .framer-utfajc > :last-child, .framer-hx3jU .framer-1b2g9xn > :last-child, .framer-hx3jU .framer-1hlwewa > :last-child, .framer-hx3jU .framer-c3iehh > :last-child, .framer-hx3jU .framer-1s9r89i > :last-child, .framer-hx3jU .framer-1itrt83 > :last-child, .framer-hx3jU .framer-xu62a2 > :last-child, .framer-hx3jU .framer-hlbjuo > :last-child, .framer-hx3jU .framer-1873lyj > :last-child, .framer-hx3jU .framer-4pd8df > :last-child, .framer-hx3jU .framer-dk2ozz > :last-child, .framer-hx3jU .framer-1avz6bd > :last-child, .framer-hx3jU .framer-6vcrsu > :last-child, .framer-hx3jU .framer-1xns036 > :last-child, .framer-hx3jU .framer-1rswa6q > :last-child, .framer-hx3jU .framer-1qrloob > :last-child, .framer-hx3jU .framer-1wx6fcf > :last-child { margin-right: 0px; } .framer-hx3jU .framer-17gt01r > *, .framer-hx3jU .framer-6lex9 > *, .framer-hx3jU .framer-3776v0 > *, .framer-hx3jU .framer-1variw4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hx3jU .framer-u5z58j > *, .framer-hx3jU .framer-1l8v9qa > *, .framer-hx3jU .framer-racy5b > *, .framer-hx3jU .framer-p9cg8g > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hx3jU .framer-14b0sqo > *, .framer-hx3jU .framer-1042vjr > *, .framer-hx3jU .framer-v4olc5 > *, .framer-hx3jU .framer-1fxqqow > *, .framer-hx3jU .framer-1bj9gd2 > *, .framer-hx3jU .framer-1howuj5 > *, .framer-hx3jU .framer-ez78qo > *, .framer-hx3jU .framer-z5phqk > *, .framer-hx3jU .framer-1df396e > *, .framer-hx3jU .framer-1yrmqcv > *, .framer-hx3jU .framer-p0e8nd > *, .framer-hx3jU .framer-35nzko > *, .framer-hx3jU .framer-1oylebc > *, .framer-hx3jU .framer-p6v9u9 > *, .framer-hx3jU .framer-jtnzrz > *, .framer-hx3jU .framer-zoqx46 > *, .framer-hx3jU .framer-qqtnbt > *, .framer-hx3jU .framer-rnmlx9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hx3jU .framer-utfajc > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-hx3jU .framer-1b2g9xn > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-hx3jU .framer-1hlwewa > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hx3jU .framer-c3iehh > *, .framer-hx3jU .framer-1s9r89i > *, .framer-hx3jU .framer-1itrt83 > *, .framer-hx3jU .framer-xu62a2 > *, .framer-hx3jU .framer-hlbjuo > *, .framer-hx3jU .framer-1873lyj > *, .framer-hx3jU .framer-4pd8df > *, .framer-hx3jU .framer-dk2ozz > *, .framer-hx3jU .framer-1avz6bd > *, .framer-hx3jU .framer-6vcrsu > *, .framer-hx3jU .framer-1xns036 > *, .framer-hx3jU .framer-1rswa6q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\", \"@media (min-width: 1200px) { .framer-hx3jU .hidden-122z4ah { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1199px) { .framer-hx3jU .hidden-e4x2pd { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-hx3jU .framer-122z4ah { width: 810px; } .framer-hx3jU .framer-1ni8kdd { padding: 200px 50px 100px 50px; } .framer-hx3jU .framer-17djp1t { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 80px; } .framer-hx3jU .framer-17gt01r { flex: none; width: 100%; } .framer-hx3jU .framer-1fyxrz9, .framer-hx3jU .framer-gz8j7a { padding: 100px 50px 100px 50px; } .framer-hx3jU .framer-x3sfem, .framer-hx3jU .framer-1b2g9xn { flex-direction: column; gap: 80px; } .framer-hx3jU .framer-15nu4yx { align-self: unset; flex: none; height: 300px; max-height: 400px; order: 0; width: 100%; } .framer-hx3jU .framer-u5z58j { flex: none; order: 1; width: 100%; } .framer-hx3jU .framer-utfajc { flex-direction: column; } .framer-hx3jU .framer-16arlzb-container, .framer-hx3jU .framer-1xxomr5-container, .framer-hx3jU .framer-1aba7es-container { flex: none; height: auto; width: 100%; } .framer-hx3jU .framer-jd7a9r { padding: 50px 50px 50px 50px; } .framer-hx3jU .framer-1l8v9qa { flex: none; order: 0; width: 100%; } .framer-hx3jU .framer-1rouhow { flex: none; height: 400px; max-height: 400px; order: 1; width: 100%; } .framer-hx3jU .framer-1042vjr, .framer-hx3jU .framer-1r4dpbx { order: 0; } .framer-hx3jU .framer-nd6mbh-container { order: 1; } .framer-hx3jU .framer-svj4pj { padding: 40px 40px 40px 40px; } .framer-hx3jU .framer-1wx6fcf { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; } .framer-hx3jU .framer-racy5b { flex: none; max-width: unset; width: 100%; } .framer-hx3jU .framer-p9cg8g { flex: none; padding: 20px 40px 20px 40px; width: 100%; } .framer-hx3jU .framer-1v0j2bd-container { height: 250px; order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hx3jU .framer-17djp1t, .framer-hx3jU .framer-x3sfem, .framer-hx3jU .framer-utfajc, .framer-hx3jU .framer-1b2g9xn, .framer-hx3jU .framer-1wx6fcf { gap: 0px; } .framer-hx3jU .framer-17djp1t > *, .framer-hx3jU .framer-x3sfem > *, .framer-hx3jU .framer-1b2g9xn > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-hx3jU .framer-17djp1t > :first-child, .framer-hx3jU .framer-x3sfem > :first-child, .framer-hx3jU .framer-utfajc > :first-child, .framer-hx3jU .framer-1b2g9xn > :first-child, .framer-hx3jU .framer-1wx6fcf > :first-child { margin-top: 0px; } .framer-hx3jU .framer-17djp1t > :last-child, .framer-hx3jU .framer-x3sfem > :last-child, .framer-hx3jU .framer-utfajc > :last-child, .framer-hx3jU .framer-1b2g9xn > :last-child, .framer-hx3jU .framer-1wx6fcf > :last-child { margin-bottom: 0px; } .framer-hx3jU .framer-utfajc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hx3jU .framer-1wx6fcf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`, `@media (max-width: 809px) { .framer-hx3jU .hidden-u3ktob { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-hx3jU .framer-122z4ah { width: 390px; } .framer-hx3jU .framer-1ni8kdd { gap: 50px; padding: 150px 20px 50px 20px; } .framer-hx3jU .framer-17djp1t, .framer-hx3jU .framer-x3sfem, .framer-hx3jU .framer-1b2g9xn, .framer-hx3jU .framer-1wx6fcf { flex-direction: column; gap: 50px; } .framer-hx3jU .framer-17gt01r, .framer-hx3jU .framer-racy5b { flex: none; width: 100%; } .framer-hx3jU .framer-1fyxrz9, .framer-hx3jU .framer-gz8j7a, .framer-hx3jU .framer-jd7a9r, .framer-hx3jU .framer-culu7z, .framer-hx3jU .framer-svj4pj { padding: 50px 20px 50px 20px; } .framer-hx3jU .framer-15nu4yx { align-self: unset; flex: none; height: 300px; max-height: 400px; order: 0; width: 100%; } .framer-hx3jU .framer-u5z58j { flex: none; order: 1; width: 100%; } .framer-hx3jU .framer-utfajc { flex-direction: column; height: 1390px; } .framer-hx3jU .framer-16arlzb-container, .framer-hx3jU .framer-1xxomr5-container, .framer-hx3jU .framer-1aba7es-container { flex: none; height: 410px; width: 100%; } .framer-hx3jU .framer-1l8v9qa { flex: none; order: 0; width: 100%; } .framer-hx3jU .framer-1rouhow { flex: none; height: 400px; max-height: 400px; order: 1; width: 100%; } .framer-hx3jU .framer-1042vjr { width: 374px; } .framer-hx3jU .framer-164aw62 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-hx3jU .framer-p9cg8g { flex: none; padding: 20px 20px 20px 20px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hx3jU .framer-1ni8kdd, .framer-hx3jU .framer-17djp1t, .framer-hx3jU .framer-x3sfem, .framer-hx3jU .framer-utfajc, .framer-hx3jU .framer-1b2g9xn, .framer-hx3jU .framer-1wx6fcf { gap: 0px; } .framer-hx3jU .framer-1ni8kdd > *, .framer-hx3jU .framer-17djp1t > *, .framer-hx3jU .framer-x3sfem > *, .framer-hx3jU .framer-1b2g9xn > *, .framer-hx3jU .framer-1wx6fcf > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-hx3jU .framer-1ni8kdd > :first-child, .framer-hx3jU .framer-17djp1t > :first-child, .framer-hx3jU .framer-x3sfem > :first-child, .framer-hx3jU .framer-utfajc > :first-child, .framer-hx3jU .framer-1b2g9xn > :first-child, .framer-hx3jU .framer-1wx6fcf > :first-child { margin-top: 0px; } .framer-hx3jU .framer-1ni8kdd > :last-child, .framer-hx3jU .framer-17djp1t > :last-child, .framer-hx3jU .framer-x3sfem > :last-child, .framer-hx3jU .framer-utfajc > :last-child, .framer-hx3jU .framer-1b2g9xn > :last-child, .framer-hx3jU .framer-1wx6fcf > :last-child { margin-bottom: 0px; } .framer-hx3jU .framer-utfajc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css, ...sharedStyle5.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 * @framerIntrinsicHeight 4211\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CZBfAyGXD\":{\"layout\":[\"fixed\",\"auto\"]},\"RaG3c53kM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 */\nconst FramerFppqJ4e2S = withCSS(Component, css, \"framer-hx3jU\");\nexport default FramerFppqJ4e2S;\nFramerFppqJ4e2S.displayName = \"Home\";\nFramerFppqJ4e2S.defaultProps = {\n  height: 4211,\n  width: 1200\n};\naddFonts(FramerFppqJ4e2S, [...TopbarFonts, ...ButtonFonts, ...FeatureCardFonts, ...TickerFonts, ...FormSparkFonts, ...FooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts, ...sharedStyle5.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerFppqJ4e2S\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerResponsiveScreen\": \"\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"4211\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CZBfAyGXD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RaG3c53kM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "63BAA0qB,IAAMA,GAAWC,GAAGA,EAA0f,IAAMC,GAAE,CAAC,GAAGC,GAAG,IAAIA,EAAE,EAAEA,GAAGA,EAAE,GAAG,EAMrtC,SAASC,GAAkBD,EAAED,EAAE,CAAC,OAAOA,EAAEC,GAAG,IAAID,GAAG,CAAC,CCNG,IAAMG,GAAW,CAACC,EAAEC,EAAEC,OAAO,EAAE,EAAEA,EAAE,EAAED,GAAGD,GAAG,EAAEE,EAAE,EAAED,IAAID,EAAE,EAAEC,GAAGD,EAAQE,GAAE,KAAWC,GAAE,GAAG,SAASC,GAAgBJ,EAAEC,EAAEI,EAAEC,EAAEC,EAAE,CAAC,IAAIC,EAAMC,EAAMC,EAAE,EAAE,GAAGD,EAAER,GAAGI,EAAEJ,GAAG,EAAEO,EAAET,GAAWU,EAAEH,EAAEC,CAAC,EAAEP,EAAEQ,EAAE,EAAEH,EAAEI,EAAER,EAAEQ,QAAQ,KAAK,IAAID,CAAC,EAAEN,IAAG,EAAEQ,EAAEP,IAAG,OAAOM,CAAC,CAAC,SAASE,GAAYV,EAAEC,EAAEC,EAAEE,EAAE,CAAC,GAAGJ,IAAIC,GAAGC,IAAIE,EAAE,OAAOO,GAAE,IAAMC,EAASb,GAAGI,GAAgBJ,EAAE,EAAE,EAAEC,EAAEE,CAAC,EAAE,OAAOH,GAAOA,IAAJ,GAAWA,IAAJ,EAAMA,EAAED,GAAWc,EAASb,CAAC,EAAEE,EAAEG,CAAC,CAAC,CCApQ,IAAMS,GAAE,CAAC,KAAKC,GAAE,IAAI,GAAG,IAAI,CAAC,EAAE,UAAUA,GAAE,IAAI,EAAE,EAAE,CAAC,EAAE,cAAcA,GAAE,IAAI,EAAE,IAAI,CAAC,EAAE,WAAWA,GAAE,EAAE,EAAE,IAAI,CAAC,CAAC,ECA2d,SAASC,GAAOC,EAAE,EAAE,CAAC,IAAIC,EAAE,CAAC,EAAE,QAAQC,KAAKF,EAAE,OAAO,UAAU,eAAe,KAAKA,EAAEE,CAAC,GAAG,EAAE,QAAQA,CAAC,EAAE,IAAID,EAAEC,CAAC,EAAEF,EAAEE,CAAC,GAAG,GAASF,GAAN,MAAsB,OAAO,OAAO,uBAA3B,WAAiD,CAAC,IAAI,EAAE,EAAE,IAAIE,EAAE,OAAO,sBAAsBF,CAAC,EAAE,EAAEE,EAAE,OAAO,IAAI,EAAE,QAAQA,EAAE,CAAC,CAAC,EAAE,GAAG,OAAO,UAAU,qBAAqB,KAAKF,EAAEE,EAAE,CAAC,CAAC,IAAID,EAAEC,EAAE,CAAC,CAAC,EAAEF,EAAEE,EAAE,CAAC,CAAC,GAAG,OAAOD,CAAC,CCArkC,IAAIE,GAAE,CAAC,EAAE,OAAO,eAAeA,GAAE,aAAa,CAAC,MAAM,EAAI,CAAC,EAAEA,GAAE,QAAQ,UAAU,CAAC,EAAEA,GAAE,UAAU,UAAU,CAAC,EAAE,IAAMC,GAAED,GAAE,WAAWE,GAAEF,GAAE,QAAQG,GAAEH,GAAE,UCAlF,IAAMI,GAAE,EAAE,SAASC,GAAsBC,EAAEC,EAAEC,EAAE,CAAC,IAAM,EAAE,KAAK,IAAID,EAAEH,GAAE,CAAC,EAAE,OAAOK,GAAED,EAAEF,EAAE,CAAC,EAAEC,EAAE,CAAC,CAAC,CAAC,IAAMA,GAAE,CAAC,UAAU,IAAI,QAAQ,GAAG,KAAK,CAAC,EAAQG,GAAiB,CAACC,EAAEJ,GAAE,UAAU,EAAEA,GAAE,QAAQH,EAAEG,GAAE,OAAO,GAAG,EAAE,KAAK,KAAKI,EAAEP,CAAC,GAAG,SAASQ,GAAiBD,EAAE,EAAEP,EAAE,CAAC,OAAOO,EAAE,GAAGP,GAAG,GAAGO,EAAE,GAAGP,GAAG,CAAC,CAAC,IAAMS,GAAO,CAAC,CAAC,UAAUF,EAAEJ,GAAE,UAAU,QAAQH,EAAEG,GAAE,QAAQ,KAAKC,EAAED,GAAE,KAAK,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,SAASO,EAAE,EAAE,UAAUC,EAAE,EAAE,aAAaC,EAAE,EAAE,EAAE,CAAC,IAAI,CAACF,EAAEA,EAAEH,GAAE,EAAEG,CAAC,EAAE,EAAE,IAAMG,EAAE,CAAC,KAAK,GAAM,iBAAiB,GAAM,QAAQ,EAAE,OAAO,CAAC,EAAQC,EAAE,EAAE,EAAQC,EAAE,KAAK,KAAKR,EAAEH,CAAC,EAAE,IAAUY,EAAEV,GAAiBC,EAAEP,EAAEI,CAAC,EAAMa,EAAE,GAAGD,EAAE,EAAE,CAAC,IAAMT,EAAEQ,EAAE,KAAK,KAAK,EAAEC,EAAEA,CAAC,EAAEC,EAAEf,GAAG,EAAE,KAAK,IAAI,CAACc,EAAED,EAAEb,CAAC,IAAIc,EAAED,EAAED,EAAEJ,GAAGH,EAAE,KAAK,IAAIA,EAAEL,CAAC,EAAEY,EAAE,KAAK,IAAIP,EAAEL,CAAC,QAAQe,EAAEV,GAAG,EAAE,KAAK,IAAI,CAACQ,EAAER,CAAC,GAAGO,GAAGC,EAAED,EAAEJ,GAAGH,GAAG,OAAOA,GAAG,CAACM,EAAE,QAAQI,EAAEV,CAAC,EAAE,IAAML,EAAMK,IAAJ,EAAMG,EAAET,GAAsBgB,EAAEV,EAAEM,EAAE,OAAO,EAAQb,EAAE,KAAK,IAAIE,CAAC,GAAGS,EAAQR,EAAE,KAAK,IAAI,EAAEU,EAAE,OAAO,GAAGD,EAAE,OAAAC,EAAE,KAAKb,GAAGG,EAAEU,EAAE,iBAAiBL,GAAiB,EAAE,EAAEK,EAAE,OAAO,EAASA,CAAC,CAAC,EAAQK,GAAM,CAAC,CAAC,KAAKX,EAAE,EAAE,SAASP,EAAE,EAAE,MAAM,EAAE,GAAG,MAAMI,EAAE,KAAK,cAAce,EAAE,gBAAgBC,EAAE,aAAaV,EAAE,IAAIC,EAAE,IAAIC,EAAE,aAAa,EAAE,GAAG,UAAUE,CAAC,IAAI,CAACV,EAAEG,GAAE,GAAGH,CAAC,EAAE,IAAMW,EAAE,CAAC,iBAAiB,GAAM,KAAK,GAAM,QAAQR,EAAE,OAAOA,CAAC,EAAQc,EAAcd,GAAYI,IAAT,QAAYJ,EAAEI,GAAYC,IAAT,QAAYL,EAAEK,EAAQU,EAAgBf,GAAYI,IAAT,OAAWC,EAAWA,IAAT,QAAY,KAAK,IAAID,EAAEJ,CAAC,EAAE,KAAK,IAAIK,EAAEL,CAAC,EAAEI,EAAEC,EAAMI,EAAE,EAAEhB,EAAQiB,EAAEV,EAAES,EAAQO,EAAWb,IAAT,OAAWO,EAAEP,EAAEO,CAAC,EAAEF,EAAE,OAAOQ,EAAEA,IAAIN,IAAID,EAAEO,EAAEhB,GAAG,IAAMiB,EAAUjB,GAAG,CAACS,EAAE,KAAK,IAAI,CAACT,EAAEH,CAAC,EAAQqB,EAAWlB,GAAGgB,EAAEC,EAAUjB,CAAC,EAAQmB,EAAcnB,GAAG,CAAC,IAAML,EAAEsB,EAAUjB,CAAC,EAAQP,EAAEyB,EAAWlB,CAAC,EAAEQ,EAAE,KAAK,KAAK,IAAIb,CAAC,GAAG,EAAEa,EAAE,QAAQA,EAAE,KAAKQ,EAAEvB,CAAC,EAAM2B,EAAMC,EAAQC,EAAmBtB,GAAG,CAAIc,EAAcN,EAAE,OAAO,IAAGY,EAAEpB,EAAEqB,EAAEnB,GAAO,CAAC,KAAKM,EAAE,QAAQ,GAAGO,EAAgBP,EAAE,OAAO,EAAE,SAASd,GAAsBwB,EAAWlB,EAAEQ,EAAE,OAAO,EAAE,QAAQI,EAAE,UAAUC,EAAE,aAAa,EAAE,UAAUN,CAAC,CAAC,EAAE,EAAE,OAAAe,EAAmB,CAAC,EAAStB,GAAG,CAAC,IAAIL,EAAE,GAAuE,MAA9D,CAAC0B,GAAYD,IAAT,SAAYzB,EAAE,GAAKwB,EAAcnB,CAAC,EAAEsB,EAAmBtB,CAAC,GAAcoB,IAAT,QAAYpB,EAAEoB,GAAGZ,EAAE,iBAAiB,GAAYa,EAAErB,EAAEoB,CAAC,IAAEZ,EAAE,iBAAiB,GAAM,CAACb,GAAGwB,EAAcnB,CAAC,EAASQ,EAAC,CAAC,EAAQX,GAAE,GAASe,GAAE,IAAI,SAASW,GAAqBvB,EAAE,CAAC,IAAI,EAAMP,EAAEI,GAAMD,EAAEI,EAAE,CAAC,EAAQ,EAAE,CAACJ,EAAE,OAAO,EAAE,KAAM,CAACA,EAAE,MAAMH,EAAEmB,IAAGhB,EAAEI,EAAEP,CAAC,EAAE,EAAE,KAAKG,EAAE,KAAKA,EAAE,OAAOA,EAAE,OAAO,EAAW,IAAT,QAAYA,EAAE,mBAAmB,EAAEH,GAAGA,GAAGI,GAAE,IAAMM,EAAEV,EAAEI,GAAE,OAAI,EAAE,SAAN,GAAc,EAAE,KAAKD,EAAE,OAAO,EAAQ,CAAC,UAAU,EAAE,SAASO,EAAE,IAAI,mBAA0B,GAAgBA,GAAG,GAAG,CAAC,CCA1jD,IAAMqB,GAAE,CAAC,GAAG,IAAI,IAAI,GAAG,EAAQC,GAAE,CAAC,YAAY,QAAQ,SAAS,MAAM,EAAyD,IAAMC,GAAE,CAAC,OAAO,UAAU,aAAa,OAAO,cAAcC,GAAGA,EAAE,KAAK,EAAQC,GAAE,CAAC,UAAU,CAAC,OAAO,sBAAsB,aAAa,MAAM,cAAcD,GAAGA,EAAE,IAAI,EAAE,OAAOD,GAAE,MAAM,CAAC,OAAO,WAAW,aAAa,EAAE,cAAcG,EAAC,EAAE,KAAKH,EAAC,EAAQI,GAAE,IAAI,IAAUC,GAAkBJ,GAAG,YAAYA,IAAUK,GAAE,CAAC,IAAI,IAAI,GAAG,EAAEC,GAAE,QAASN,GAAG,CAACO,GAAE,QAAS,GAAG,CAACF,GAAE,KAAKL,EAAE,CAAC,EAAEG,GAAE,IAAIC,GAAkBJ,EAAE,CAAC,EAAEC,GAAED,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,EAA+D,IAAMQ,GAAE,IAAI,IAAIC,EAAC,EAA2tB,IAAMC,GAAcC,GAAG,SAAS,cAAc,KAAK,EAAE,QAAQA,EAAE,CAAC,SAAS,IAAI,CAAC,EAAQC,GAAE,CAAC,oBAAoB,IAAkB,OAAO,IAArB,KAA0B,OAAO,eAAe,KAAK,IAAI,kBAAkB,EAAE,MAAM,IAAI,OAAO,eAAe,KAAK,QAAQ,UAAU,SAAS,EAAE,iBAAiB,IAAI,CAAC,GAAG,CAACF,GAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAC,CAAS,MAAO,EAAK,CAAC,MAAO,EAAI,EAAE,SAAS,IAAI,QAAQA,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAQ,CAAC,EAAQG,GAAE,CAAC,EAAQC,GAAE,CAAC,EAAE,QAAUH,KAAKC,GAAEE,GAAEH,CAAC,EAAE,KAAcE,GAAEF,CAAC,IAAZ,SAAgBE,GAAEF,CAAC,EAAEC,GAAED,CAAC,EAAE,GAAUE,GAAEF,CAAC,GAA2kF,SAASI,GAAgBC,EAAE,EAAE,CAAC,IAAI,EAAE,OAAc,OAAOA,GAAlB,SAAuB,IAAW,EAAE,EAAEA,CAAC,KAAb,MAA0B,IAAT,SAAa,EAAEA,CAAC,EAAE,SAAS,iBAAiBA,CAAC,GAAEA,EAAE,EAAEA,CAAC,GAAOA,EAAE,SAAS,iBAAiBA,CAAC,EAAOA,aAAa,UAAUA,EAAE,CAACA,CAAC,GAAU,MAAM,KAAKA,GAAG,CAAC,CAAC,CAAC,CAAo7H,SAASC,GAAsBC,EAAE,CAAC,IAAM,EAAE,IAAI,QAAQ,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAMC,EAAE,IAAI,IAAUC,EAAa,CAACC,EAAE,EAAEC,EAAE,IAAIC,EAAE,EAAEC,EAAE,KAAQ,CAAC,IAAMC,EAAE,GAAGJ,KAAKC,KAAKC,KAAKC,IAAI,OAAAL,EAAE,IAAIM,CAAC,GAAGN,EAAE,IAAIM,EAAEP,EAAE,OAAO,OAAO,CAAC,KAAKG,EAAE,GAAGC,EAAE,SAASC,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,EAASL,EAAE,IAAIM,CAAC,CAAC,EAAQC,EAAaR,IAAI,EAAE,IAAIA,CAAC,GAAG,EAAE,IAAIA,EAAES,GAAET,CAAC,CAAC,EAAS,EAAE,IAAIA,CAAC,GAAG,MAAM,CAAC,gBAAgB,CAACA,EAAEG,EAAEO,EAAET,EAAEG,IAAI,CAAC,IAAIC,EAAEC,EAAE,IAAIC,EAAQI,EAAEX,EAAE,OAA8C,GAAjCU,GAAGC,GAAG,GAAGX,EAAE,MAAMY,EAAc,EAAO,CAAC,IAAMF,EAAEV,EAAEW,EAAE,CAAC,EAAQE,EAAMF,IAAJ,EAAM,KAAKX,EAAE,CAAC,EAAMc,EAAE,EAAMC,EAAE,EAAQC,EAA8BZ,GAAE,UAAU,GAAGY,EAAE,CAAC,GAAK,CAAC,UAAUb,EAAE,mBAAmBO,CAAC,EAAEN,EAAQH,EAA+BE,GAAE,WAAYO,GAAG,EAAQJ,EAA+BH,GAAE,aAAc,YAAY,IAAI,EAAEF,EAAQM,EAAES,EAAEV,CAAC,EAAE,QAAQS,GAAUV,EAAEQ,KAAV,MAAuBR,IAAT,OAAWA,EAAEE,GAAOI,IAAJ,GAAWA,IAAJ,GAAcX,EAAE,CAAC,IAAV,QAAec,EAAEG,GAAGjB,GAAGgB,EAAEhB,CAAC,EAAE,QAASM,EAAEC,CAAC,QAAQQ,GAAUT,EAAEO,KAAV,MAAuBP,IAAT,OAAWA,EAAE,WAAWH,EAAE,CAAC,EAAE,IAAMe,EAAEhB,EAAaa,EAAEL,EAAEI,EAA8Bb,GAAE,SAAS,OAAO,CAAC,EAAQkB,EAAEX,EAAaU,CAAC,EAAEX,EAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEY,CAAC,EAAE,CAAC,OAAO,QAAQ,CAAC,EAAKf,IAAGA,EAAE,UAAUc,EAAEd,EAAE,mBAAmB,YAAY,IAAI,QAAkDG,EAAE,CAAC,OAAO,OAAO,SAAnDC,EAAaN,EAAa,EAAE,GAAG,CAAC,EAA8B,iBAAiB,EAAE,OAAOK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAMK,GAAeZ,GAAc,OAAOA,GAAlB,SAA0BoB,GAAErB,GAAsBsB,EAAC,EAAQC,GAAEvB,GAAsBwB,EAAC,EAAQC,GAAE,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,SAASC,GAASzB,EAAE,EAAE,CAAC,KAAK,EAAE,OAAOC,EAAE,OAAOG,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,GAAiB,OAAO,qBAArB,IAA0C,MAAM,IAAI,CAAC,EAAE,IAAM,EAAEsB,GAAgB1B,CAAC,EAAQM,EAAE,IAAI,QAAcqB,EAAqB3B,GAAG,CAACA,EAAE,QAASA,GAAG,CAAC,IAAMU,EAAEJ,EAAE,IAAIN,EAAE,MAAM,EAAE,GAAGA,EAAE,iBAAiB,QAAQU,CAAC,EAAE,GAAGV,EAAE,eAAe,CAAC,IAAMU,EAAE,EAAEV,CAAC,EAAe,OAAOU,GAApB,WAAsBJ,EAAE,IAAIN,EAAE,OAAOU,CAAC,EAAEH,EAAE,UAAUP,EAAE,MAAM,OAAUU,IAAGA,EAAEV,CAAC,EAAEM,EAAE,OAAON,EAAE,MAAM,EAAE,CAAE,CAAC,EAAQO,EAAE,IAAI,qBAAqBoB,EAAqB,CAAC,KAAK,EAAE,WAAW1B,EAAE,UAAqB,OAAOG,GAAlB,SAAoBA,EAAEoB,GAAEpB,CAAC,CAAC,CAAC,EAAE,SAAE,QAASJ,GAAGO,EAAE,QAAQP,CAAC,CAAE,EAAQ,IAAIO,EAAE,WAAW,CAAC,CAAC,IAAMqB,GAAE,IAAI,QAAYC,GAAE,SAASC,GAAe9B,EAAE,EAAE,CAAC,GAAG,EAAE,CAAC,GAAK,CAAC,WAAWA,EAAE,UAAUU,CAAC,EAAE,EAAE,CAAC,EAAE,MAAM,CAAC,MAAMV,EAAE,OAAOU,CAAC,EAAE,OAAOV,aAAa,YAAY,YAAYA,EAAEA,EAAE,QAAQ,EAAE,CAAC,MAAMA,EAAE,YAAY,OAAOA,EAAE,YAAY,CAAC,CAAC,SAAS+B,GAAa,CAAC,OAAO/B,EAAE,YAAY,EAAE,cAAc,CAAC,EAAE,CAAC,IAAIC,GAAUA,EAAE2B,GAAE,IAAI5B,CAAC,KAAjB,MAA8BC,IAAT,QAAkBA,EAAE,QAAS,GAAG,CAAC,EAAE,CAAC,OAAOD,EAAE,YAAY,EAAE,IAAI,MAAM,CAAC,OAAO8B,GAAe9B,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,SAASgC,GAAUhC,EAAE,CAACA,EAAE,QAAQ+B,EAAY,CAAC,CAAC,SAASE,IAAsB,CAAe,OAAO,eAArB,MAAsCJ,GAAE,IAAI,eAAeG,EAAS,EAAE,CAAC,SAASE,GAAclC,EAAE,EAAE,CAAC6B,IAAGI,GAAqB,EAAE,IAAM,EAAEP,GAAgB1B,CAAC,EAAE,SAAE,QAASA,GAAG,CAAC,IAAIU,EAAEkB,GAAE,IAAI5B,CAAC,EAAMU,IAAGA,EAAE,IAAI,IAAIkB,GAAE,IAAI5B,EAAEU,CAAC,GAAEA,EAAE,IAAI,CAAC,EAA8BmB,IAAE,QAAQ7B,CAAC,CAAC,CAAE,EAAQ,IAAI,CAAC,EAAE,QAASA,GAAG,CAAC,IAAMU,EAAEkB,GAAE,IAAI5B,CAAC,EAA8BU,GAAE,OAAO,CAAC,EAA+BA,GAAE,MAAoCmB,IAAE,UAAU7B,CAAC,CAAE,CAAE,CAAC,CAAC,CAAC,IAAMmC,GAAE,IAAI,IAAQC,GAAE,SAASC,IAA2B,CAACD,GAAE,IAAI,CAAC,IAAMpC,EAAE,CAAC,MAAMsC,EAAO,WAAW,OAAOA,EAAO,WAAW,EAAQ,EAAE,CAAC,OAAOA,EAAO,KAAKtC,EAAE,YAAYA,CAAC,EAAEmC,GAAE,QAASnC,GAAGA,EAAE,CAAC,CAAE,CAAC,EAAEsC,EAAO,iBAAiB,SAASF,EAAC,CAAC,CAAC,SAASG,GAAavC,EAAE,CAAC,OAAAmC,GAAE,IAAInC,CAAC,EAAEoC,IAAGC,GAA0B,EAAQ,IAAI,CAACF,GAAE,OAAOnC,CAAC,EAAE,CAACmC,GAAE,MAAMC,KAAIA,GAAE,OAAO,CAAC,CAAC,SAASI,GAAOxC,EAAE,EAAE,CAAC,OAAmB,OAAOA,GAApB,WAAsBuC,GAAavC,CAAC,EAAEkC,GAAclC,EAAE,CAAC,CAAC,CAA+hK,SAASyC,GAAqBC,EAAE,EAAE,EAAE,CAACA,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAASC,GAAkBD,EAAE,EAAE,EAAE,CAACA,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAME,GAAG,CAAC,SAASF,GAAG,QAAQA,EAAE,MAAM,EAAE,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,EAAE,CAAC,cAAcG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAK,CAAC,KAAKC,CAAC,EAAED,EAAE,EAAEE,GAAEF,EAAE,CAAC,MAAM,CAAC,EAAE,OAAOG,GAASN,EAAGG,GAAG,CAAwC,GAAvC,EAAE,EAAEF,GAAkBD,EAAE,YAAYG,CAAC,EAAK,CAACC,EAAE,OAAOG,GAAG,CAAC,EAAE,EAAEN,GAAkBD,EAAE,YAAYO,CAAC,CAAC,CAAC,EAAG,CAAC,CAAC,CAAC,EAAQC,GAAW,CAACR,EAAE,EAAE,IAAIG,GAAG,EAAI,CAACA,EAAE,aAAuBA,EAAE,cAAZ,WAAyB,EAAE,EAAEJ,GAAqBC,EAAE,EAAEG,CAAC,EAAE,EAAQM,GAAG,CAAC,SAAST,GAAG,QAAQA,EAAE,KAAK,EAAE,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMG,EAAEK,GAAWR,EAAE,aAAa,CAAC,EAAQI,EAAEI,GAAWR,EAAE,WAAW,CAAC,EAAE,OAAAA,EAAE,iBAAiB,eAAeG,CAAC,EAAEH,EAAE,iBAAiB,eAAeI,CAAC,EAAQ,IAAI,CAACJ,EAAE,oBAAoB,eAAeG,CAAC,EAAEH,EAAE,oBAAoB,eAAeI,CAAC,CAAC,CAAC,CAAC,EAAQM,GAAG,CAAC,SAASV,GAAG,QAAQA,EAAE,KAAK,EAAE,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMW,EAAYJ,GAAG,CAAC,EAAE,EAAER,GAAqBC,EAAE,WAAWO,CAAC,EAAEK,EAAO,oBAAoB,YAAYD,CAAW,CAAC,EAAQE,EAAcC,GAAG,CAAC,EAAE,EAAEf,GAAqBC,EAAE,aAAac,CAAC,EAAEF,EAAO,iBAAiB,YAAYD,CAAW,CAAC,EAAE,OAAAX,EAAE,iBAAiB,cAAca,CAAa,EAAQ,IAAI,CAACb,EAAE,oBAAoB,cAAca,CAAa,EAAED,EAAO,oBAAoB,YAAYD,CAAW,CAAC,CAAC,CAAC,EAAQI,GAAG,CAAC,OAAOb,GAAG,MAAMO,GAAG,MAAMC,EAAE,EAAQM,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAKD,EAAE,EAAE,MAAM,ECK58lB,IAAME,GAAwB,CAC5B,KAAMC,GAAU,eAAeA,OAC/B,MAAOA,GAAU,cAAcA,OAC/B,IAAKA,GAAU,eAAeA,OAC9B,OAAQA,GAAU,cAAcA,MAClC,EACMC,GAAgC,OAAO,UAAc,KAAe,OAAO,UAAU,UAAU,oBAAuB,WAU7G,SAARC,GAAwBC,EAAO,CACzB,GAAI,CACb,MAAAC,EACA,IAAAC,EACA,QAAAC,EACA,eAAAC,EACA,WAAAC,EACA,aAAAC,EACA,cAAAC,EACA,YAAAC,EACA,MAAAC,EACA,YAAAC,EACA,UAAAC,EACA,UAAAC,EACA,cAAAC,EACA,YAAAC,EACA,MAAAC,CACF,EAAIf,EACE,CACJ,YAAAgB,EACA,SAAAC,EACA,UAAAC,EACA,UAAAC,EACA,UAAAC,CACF,EAAIN,EACE,CACJ,UAAAO,EACA,WAAAC,CACF,EAAIT,EACEU,EAAenB,EAAiB,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAkB,GAAGL,MAC7GqB,EAAWC,GAAa,QAAQ,IAAMA,GAAa,OACnDC,EAAcC,GAAS,MAAM1B,CAAK,EAClC2B,EAAcF,EAAc,EAC9Bf,IAAc,KAChBA,EAAY,QAEd,IAAMkB,EAAelB,IAAc,QAAUA,IAAc,QACrDd,EAASiC,GAAe,CAAC,EACzBC,GAAcnC,GAAsBe,CAAS,EAC7CqB,GAAYC,GAAapC,EAAQkC,EAAW,EAC5CG,GAAYC,EAAO,IAAI,EACvBC,EAAcC,GAAQ,IACnB,CAAcC,GAAU,EAAgBA,GAAU,CAAC,EACzD,CAAC,CAAC,EACC,CAACC,EAAMC,EAAO,EAAIC,GAAS,CAC/B,OAAQ,KACR,SAAU,IACZ,CAAC,EACGC,GAAiB,CAAC,EAClBC,EAAgB,CAAC,EACjBC,GAAc,EACdC,GAAU,EACVrB,IAEFoB,GAAclB,EAAc,KAAK,MAAM,GAAKA,CAAW,EAAI,EAC3DmB,GAAU,GAER,CAACrB,GAAYI,GAAeW,EAAK,SACnCK,GAAc,KAAK,MAAML,EAAK,OAASA,EAAK,SAAW,CAAC,EAAI,EAC5DM,GAAU,GAEZ,IAAMC,GAAUC,GAAY,IAAM,CAChC,GAAInB,GAAeM,GAAU,QAAS,CACpC,IAAMc,EAAenB,EAAeK,GAAU,QAAQ,YAAcA,GAAU,QAAQ,aAChFe,EAAQb,EAAY,CAAC,EAAE,QAAUP,EAAeO,EAAY,CAAC,EAAE,QAAQ,WAAaA,EAAY,CAAC,EAAE,QAAQ,UAAY,EAEvHc,GADMd,EAAY,CAAC,EAAE,QAAUP,EAAeO,EAAY,CAAC,EAAE,QAAQ,WAAaA,EAAY,CAAC,EAAE,QAAQ,YAAcA,EAAY,CAAC,EAAE,QAAQ,UAAYA,EAAY,CAAC,EAAE,QAAQ,aAAe,GACzKa,EAAQ/C,EACrCsC,GAAQ,CACN,OAAQQ,EACR,SAAUE,CACZ,CAAC,EAEL,EAAG,CAAC,CAAC,EACCC,GAAiB3B,EAAW,CAChC,kBAAmB,MACrB,EAAI,CAAC,EACL,GAAII,EAAa,CAEf,GAAI,CAACJ,EAAU,CAKb,IAAI4B,EAAgBjB,EAAO,EAAI,EAC/BkB,GAAU,KACRP,GAAQ,EACDQ,GAAOpB,GAAU,QAAS,CAAC,CAChC,YAAAqB,CACF,IAAM,CACA,CAACH,EAAc,UAAYG,EAAY,OAASA,EAAY,SAC9DT,GAAQ,EAEVM,EAAc,QAAU,EAC1B,CAAC,GACA,CAAC,CAAC,EAEPV,GAAiBf,GAAS,IAAI1B,EAAO,CAACuD,EAAOC,IAAU,CACrD,IAAIC,EAAKC,EAAMC,GAAMC,GACrB,IAAIC,GACAL,IAAU,IACZK,GAAO1B,EAAY,CAAC,GAElBqB,IAAUxD,EAAM,OAAS,IAC3B6D,GAAO1B,EAAY,CAAC,GAEtB,IAAMG,GAAO,CACX,MAAOlB,GAAaqC,EAAMF,EAAM,SAAW,MAAQE,IAAQ,OAAS,OAASA,EAAI,MAAQ,OACzF,OAAQpC,GAAcqC,EAAOH,EAAM,SAAW,MAAQG,IAAS,OAAS,OAASA,EAAK,OAAS,MACjG,EACA,OAAoBI,EAAKC,GAAa,CACpC,QAAS,KACT,SAAuBD,EAAK,KAAM,CAChC,IAAKD,GACL,MAAOvB,GACP,SAAuB0B,GAAaT,EAAO,CACzC,MAAO,CACL,IAAKI,GAAOJ,EAAM,SAAW,MAAQI,KAAS,OAAS,OAASA,GAAK,MACrE,GAAGrB,GACH,WAAY,EACZ,GAAGY,EACL,EACA,SAAUK,EAAM,MAAM,SAAWA,EAAM,MAAM,SAAW,aAAeC,EAAQ,MACjF,GAAII,GAAOL,EAAM,SAAW,MAAQK,KAAS,OAAS,OAASA,GAAK,QAAQ,CAC9E,CAAC,CACH,CAAC,CACH,CAAC,EAEH,GAAI,CAACrC,EACH,QAAS0C,EAAI,EAAGA,EAAItB,GAAasB,IAC/BvB,EAAgB,CAAC,GAAGA,EAAe,GAAGhB,GAAS,IAAI1B,EAAO,CAACuD,EAAOW,IAAe,CAC/E,IAAIT,EAAKC,GAAMC,GAAMC,GACrB,OAAoBE,EAAKC,GAAa,CACpC,QAAS,KACT,SAAuBD,EAAK,KAAM,CAChC,MAAO,CACL,QAAS,UACX,EACA,cAAe,GACf,SAAuBE,GAAaT,EAAO,CACzC,IAAKU,EAAI,IAAMC,EACf,MAAO,CACL,IAAKT,EAAMF,EAAM,SAAW,MAAQE,IAAQ,OAAS,OAASA,EAAI,MAClE,MAAOrC,GAAasC,GAAOH,EAAM,SAAW,MAAQG,KAAS,OAAS,OAASA,GAAK,MAAQ,OAC5F,OAAQrC,GAAcsC,GAAOJ,EAAM,SAAW,MAAQI,KAAS,OAAS,OAASA,GAAK,OAAS,OAC/F,WAAY,EACZ,GAAGT,EACL,EACA,SAAUK,EAAM,MAAM,SAAWA,EAAM,MAAM,SAAW,SAAWU,EAAI,MACzE,GAAIL,GAAOL,EAAM,SAAW,MAAQK,KAAS,OAAS,OAASA,GAAK,QAAQ,CAC9E,EAAGK,EAAI,KAAOC,CAAU,CAC1B,EAAGD,EAAI,KAAOC,CAAU,CAC1B,CAAC,CAAC,EAGN,IAAMC,EAAiB7B,EAAK,SAAWA,EAAK,SAAW,KAAK,MAAMA,EAAK,OAASA,EAAK,QAAQ,EACvF8B,GAAclC,EAAO,IAAI,EACzBmC,GAAWnC,EAAO,IAAI,EACtBoC,GAAOpC,EAAO,CAAC,EACfqC,GAAUrC,EAAO,EAAK,EACtBsC,GAAWC,GAAUxC,EAAS,EAC9ByC,GAAkBC,GAAiB,EACnCC,GAAU1C,EAAO,IAAI,EACrB2C,GAAe3C,EAAO,IAAI,EAG3BX,IAIC1B,GACFuD,GAAU,IAAM,CACd,GAAI,EAAAsB,IAAmB,CAACP,GAAkB,CAAC3D,GAG3C,OAAAqE,GAAa,QAAUD,GAAQ,QAAQ,QAAQ,CAC7C,UAAW,CAAC9C,GAAY,CAAC,EAAGA,GAAYqC,CAAc,CAAC,CACzD,EAAG,CACD,SAAU,KAAK,IAAIA,CAAc,EAAI3D,EAAQ,IAC7C,WAAY,IACZ,OAAQ,QACV,CAAC,EACM,IAAMqE,GAAa,QAAQ,OAAO,CAC3C,EAAG,CAACpE,EAAa0D,EAAgB3D,CAAK,CAAC,EAMvCsE,GAAkBC,GAAK,CACrB,GAAI,CAACZ,GAAkBO,IAAmB7E,GACxC,OAOEuE,GAAY,UAAY,OAC1BA,GAAY,QAAUW,GAExBA,EAAIA,EAAIX,GAAY,QAEpB,IAAIY,GADcX,GAAS,UAAY,KAAO,EAAIU,EAAIV,GAAS,UACtC7D,EAAQ,KAC7B+D,GAAQ,UACVS,GAASvE,GAEX6D,GAAK,SAAWU,EAChBV,GAAK,QAAUW,GAAK,EAAGd,EAAgBG,GAAK,OAAO,EACnDD,GAAS,QAAUU,EACdP,IACL5E,EAAO,IAAI0E,GAAK,OAAO,CACzB,CAAC,GAGL,IAAMY,GAAgBtD,EAAe,WAAa,YAC5CuD,GAAiBlE,EAAY,EAC7BmE,GAAe,IAAMnE,EAAY,EACjCoE,GAAiBC,GAAMpE,EAAW,EAAGiE,EAAc,EACnDI,GAAe,IAAMrE,EACrBsE,GAAW,mBAAmBN,qBAAgC/D,MAAckE,yBAAqCF,yBAAqCC,sBAAgCjE,MAAcoE,OAC1M,OAAK5D,EAeemC,EAAK,UAAW,CAClC,MAAO,CACL,GAAG2B,GACH,QAAS7C,GACT,gBAAiB7B,EAAcyE,GAAW,OAC1C,aAAczE,EAAcyE,GAAW,OACvC,UAAWzE,EAAcyE,GAAW,OACpC,SAAUxE,EAAW,UAAY,SACjC,QAASM,CACX,EACA,IAAKW,GACL,SAAuByD,EAAMC,EAAO,GAAI,CACtC,IAAKf,GACL,MAAO,CACL,GAAGa,GACH,IAAKxF,EACL,IAAKS,IAAc,UAAYkF,GAAczB,CAAc,EAAI,CAACA,EAAiB,OACjF,KAAMzD,IAAc,SAAWkF,GAAczB,CAAc,EAAI,CAACA,EAAiB,OACjF,WAAYxD,EACZ,SAAU,WACV,cAAeiB,EAAe,MAAQ,SACtC,GAAGd,EACH,UAAWjB,GAAgC,OAAYkC,GACvD,WAAY,WACd,EACA,aAAc,IAAM,CAClBwC,GAAQ,QAAU,GACdM,GAAa,SACfA,GAAa,QAAQ,mBAAmBpE,CAAW,CAEvD,EACA,aAAc,IAAM,CAClB8D,GAAQ,QAAU,GACdM,GAAa,SACfA,GAAa,QAAQ,mBAAmB,CAAC,CAE7C,EACA,SAAU,CAACpC,GAAgBC,CAAa,CAC1C,CAAC,CACH,CAAC,EArDqBgD,EAAM,UAAW,CACnC,MAAOG,GACP,SAAU,CAAc/B,EAAK,MAAO,CAClC,MAAOgC,GACP,SAAU,QACZ,CAAC,EAAgBhC,EAAK,IAAK,CACzB,MAAOiC,GACP,SAAU,oBACZ,CAAC,EAAgBjC,EAAK,IAAK,CACzB,MAAOkC,GACP,SAAU,2DACZ,CAAC,CAAC,CACJ,CAAC,CA0CL,CAEAlG,GAAO,aAAe,CACpB,IAAK,GACL,QAAS,GACT,cAAe,CACb,UAAW,GACX,WAAY,EACd,EACA,YAAa,CACX,YAAa,GACb,SAAU,GACV,UAAW,GACX,UAAW,EACX,UAAW,CACb,EACA,UAAW,EACb,EACAmG,GAAoBnG,GAAQ,CAC1B,MAAO,CACL,KAAMoG,EAAY,MAClB,MAAO,WACP,QAAS,CACP,KAAMA,EAAY,iBACpB,CACF,EACA,MAAO,CACL,KAAMA,EAAY,OAClB,MAAO,QACP,IAAK,EACL,IAAK,IACL,aAAc,IACd,KAAM,IACN,eAAgB,GAChB,KAAM,CACR,EACA,UAAW,CACT,KAAMA,EAAY,KAClB,MAAO,YACP,QAAS,CAAC,OAAQ,QAAS,MAAO,QAAQ,EAC1C,YAAa,CAAC,iBAAkB,kBAAmB,eAAgB,gBAAgB,EACnF,aAAc,CAAC,OAAQ,QAAS,MAAO,QAAQ,EAC/C,aAAc,OACd,wBAAyB,EAC3B,EACA,UAAW,CACT,KAAMA,EAAY,KAClB,MAAO,QACP,QAAS,CAAC,aAAc,SAAU,UAAU,EAC5C,YAAa,CACX,UAAW,CACT,MAAO,CAAC,YAAa,eAAgB,cAAc,EACnD,KAAM,CAAC,YAAa,eAAgB,cAAc,EAClD,IAAK,CAAC,aAAc,eAAgB,aAAa,EACjD,OAAQ,CAAC,aAAc,eAAgB,aAAa,CACtD,CACF,EACA,aAAc,SACd,wBAAyB,EAC3B,EACA,IAAK,CACH,KAAMA,EAAY,OAClB,MAAO,KACT,EACA,QAAS,CACP,MAAO,UACP,KAAMA,EAAY,YAClB,UAAW,iBACX,aAAc,CAAC,UAAW,kBAAkB,EAC5C,UAAW,CAAC,aAAc,eAAgB,gBAAiB,aAAa,EACxE,YAAa,CAAC,IAAK,IAAK,IAAK,GAAG,EAChC,IAAK,CACP,EACA,cAAe,CACb,KAAMA,EAAY,OAClB,MAAO,SACP,SAAU,CACR,UAAW,CACT,KAAMA,EAAY,QAClB,MAAO,QACP,aAAc,OACd,cAAe,UACf,aAAc,EAChB,EACA,WAAY,CACV,KAAMA,EAAY,QAClB,MAAO,SACP,aAAc,OACd,cAAe,UACf,aAAc,EAChB,CACF,CACF,EACA,YAAa,CACX,KAAMA,EAAY,OAClB,MAAO,WACP,SAAU,CACR,YAAa,CACX,KAAMA,EAAY,QAClB,MAAO,OACP,aAAc,EAChB,EACA,SAAU,CACR,KAAMA,EAAY,QAClB,MAAO,WACP,aAAc,OACd,cAAe,OACf,aAAc,GACd,OAAOnG,EAAO,CACZ,OAAOA,EAAM,cAAgB,EAC/B,CACF,EACA,UAAW,CACT,KAAMmG,EAAY,OAClB,MAAO,QACP,aAAc,GACd,IAAK,EACL,IAAK,IACL,KAAM,IACN,OAAOnG,EAAO,CACZ,OAAOA,EAAM,cAAgB,EAC/B,CACF,EACA,UAAW,CACT,KAAMmG,EAAY,OAClB,MAAO,QACP,aAAc,EACd,IAAK,EACL,IAAK,IACL,KAAM,IACN,OAAOnG,EAAO,CACZ,OAAOA,EAAM,cAAgB,EAC/B,CACF,EACA,UAAW,CACT,KAAMmG,EAAY,OAClB,MAAO,UACP,aAAc,EACd,IAAK,EACL,IAAK,EACL,KAAM,IACN,OAAOnG,EAAO,CACZ,OAAOA,EAAM,cAAgB,EAC/B,CACF,CACF,CACF,EACA,YAAa,CACX,KAAMmG,EAAY,OAClB,MAAO,QACP,IAAK,EACL,IAAK,EACL,KAAM,IACN,aAAc,EACd,KAAM,GACN,eAAgB,GAChB,YAAa,8CACf,CACF,CAAC,EACD,IAAMT,GAAiB,CACrB,QAAS,OACT,MAAO,OACP,OAAQ,OACR,SAAU,OACV,UAAW,OACX,WAAY,SACZ,OAAQ,EACR,QAAS,EACT,cAAe,OACf,WAAY,MACd,EACMI,GAAoB,CACxB,QAAS,OACT,MAAO,OACP,OAAQ,OACR,aAAc,SACd,WAAY,SACZ,cAAe,SACf,MAAO,OACP,WAAY,0BACZ,SAAU,GACV,SAAU,SACV,QAAS,qBACX,EACMC,GAAc,CAClB,SAAU,GACV,aAAc,EAChB,EACMC,GAAc,CAClB,OAAQ,EACR,aAAc,GACd,WAAY,IACZ,UAAW,QACb,EACMC,GAAiB,CACrB,OAAQ,EACR,QAAS,GACT,SAAU,IACV,WAAY,IACZ,UAAW,QACb,EACMV,GAAQ,CAACa,EAAKC,EAAKC,IAAQ,KAAK,IAAI,KAAK,IAAIF,EAAKC,CAAG,EAAGC,CAAG,EAC3DT,GAAgBU,GAAS,OAAOA,GAAU,UAAY,CAAC,MAAMA,CAAK,ECzexE,IAAMC,GAAgBC,EAASC,EAAQ,EACjCC,GAAWF,EAASG,EAAG,EACvBC,GAAmBC,GAAoBJ,EAAQ,EAC/CK,GAAa,CAAC,YAAa,YAAa,YAAa,YAAa,YAAa,WAAW,EAC1FC,GAAoB,CACxB,UAAW,kBACX,UAAW,kBACX,UAAW,mBACX,UAAW,kBACX,UAAW,iBACX,UAAW,kBACb,EACA,SAASC,GAAqBC,KAAcC,EAAU,CACpD,IAAMC,EAAgB,CAAC,EACvB,OAAoDD,GAAS,QAAQE,GAAWA,GAAW,OAAO,OAAOD,EAAeF,EAAUG,CAAO,CAAC,CAAC,EACpID,CACT,CACA,IAAME,GAA0B,CAC9B,eAAgB,YAChB,mBAAoB,YACpB,yBAA0B,YAC1B,aAAc,YACd,OAAQ,YACR,KAAM,WACR,EACMC,GAAc,CAClB,QAAS,CACP,QAAS,GACT,MAAO,EACP,KAAM,EACN,UAAW,IACX,KAAM,QACR,CACF,EACMC,GAA+BC,GAAW,SAAU,CACxD,GAAAC,EACA,MAAAC,EACA,UAAAC,EACA,MAAAC,EACA,OAAAC,EACA,SAAAC,EACA,QAASC,EAAe,YACxB,KAAMC,EAAY,GAClB,MAAOC,EAAY,OACnB,MAAOC,EAAY,gBACnB,KAAMC,EAAY,GAClB,MAAOC,EAAY,qHACnB,IAAKC,EAAY,GACjB,KAAMC,EAAY,aAClB,KAAMC,EACN,GAAGC,CACL,EAAGC,EAAK,CAEN,IAAMrB,EADiBC,GAAwBU,CAAY,GACzBA,EAC5B,CACJ,YAAAW,EACA,WAAAC,EACA,eAAAC,EACA,gBAAAC,EACA,WAAAC,EACA,WAAAC,EACA,SAAA7B,CACF,EAAI8B,GAAgB,CAClB,WAAAlC,GACA,eAAgB,YAChB,YAAAQ,GACA,QAAAF,EACA,kBAAAL,EACF,CAAC,EACKkC,EAAmB/B,EAAS,KAAK,GAAG,EAAIsB,EAAU,iBAClDU,EAAc,IACdR,IAAgB,YAAoB,GACjCP,EAEHgB,EAAwBC,GAAM,EACpC,OAAoBC,EAAKC,GAAa,CACpC,GAAIxB,GAAsDqB,EAC1D,SAAuBE,EAAKE,EAAO,IAAK,CACtC,QAASnC,EACT,QAASF,EACT,aAAc,IAAM2B,EAAgB,CAClC,UAAW,EACb,CAAC,EACD,WAAY,IAAMA,EAAgB,CAChC,UAAW,EACb,CAAC,EACD,WAAY,IAAMA,EAAgB,CAChC,UAAW,EACb,CAAC,EACD,MAAO,IAAMA,EAAgB,CAC3B,UAAW,EACb,CAAC,EACD,YAAa,IAAMA,EAAgB,CACjC,UAAW,EACb,CAAC,EACD,UAAWW,GAAG,eAA4B7B,GAAwBA,GAAWgB,CAAU,EACvF,MAAO,CACL,QAAS,UACX,EACA,SAAuBc,EAAMF,EAAO,IAAK,CACvC,GAAGf,EACH,UAAWgB,GAAG,gBAAiB7B,CAAS,EACxC,cAAe,GACf,mBAAoB,OACpB,iBAAkBsB,EAClB,SAAU,YACV,IAAKR,EACL,MAAO,CACL,wBAAyB,MACzB,iBAAkB,sBAClB,sBAAuB,MACvB,uBAAwB,MACxB,iBAAkB,QAClB,qBAAsB,MACtB,gBAAiB,wEACjB,uBAAwB,GACxB,wBAAyB,GACzB,oBAAqB,GACrB,qBAAsB,GACtB,UAAW,0CACX,GAAGf,CACL,EACA,WAAYqB,EACZ,SAAU,CACR,UAAW,CACT,gBAAiB,sEACnB,EACA,UAAW,CACT,gBAAiB,sEACnB,EACA,UAAW,CACT,gBAAiB,sEACnB,CACF,EACA,GAAG/B,GAAqB,CACtB,UAAW,CACT,mBAAoB,kBACtB,EACA,UAAW,CACT,mBAAoB,QACtB,EACA,UAAW,CACT,mBAAoB,wBACtB,EACA,UAAW,CACT,mBAAoB,YACtB,EACA,UAAW,CACT,mBAAoB,cACtB,CACF,EAAG0B,EAAaE,CAAc,EAC9B,SAAU,CAACZ,GAA0BqB,EAAKE,EAAO,IAAK,CACpD,UAAW,gBACX,iBAAkBN,EAClB,SAAU,YACV,MAAO,CACL,gBAAiB,wEACjB,uBAAwB,GACxB,wBAAyB,GACzB,oBAAqB,GACrB,qBAAsB,EACxB,EACA,WAAYF,EACZ,SAAU,CACR,UAAW,CACT,gBAAiB,oBACnB,EACA,UAAW,CACT,gBAAiB,oBACnB,EACA,UAAW,CACT,gBAAiB,qEACnB,CACF,EACA,SAAuBM,EAAKE,EAAO,IAAK,CACtC,UAAW,0BACX,iBAAkBN,EAClB,SAAU,sBACV,WAAYF,EACZ,SAAuBM,EAAK5C,GAAU,CACpC,MAAO,6FACP,OAAQ,OACR,WAAY,QACZ,cAAewB,EACf,GAAI,YACJ,SAAU,YACV,SAAU,GACV,aAAc,GACd,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,OAAQ,OACR,MAAO,OACP,GAAGjB,GAAqB,CACtB,UAAW,CACT,MAAO,6FACT,EACA,UAAW,CACT,MAAO,8FACT,EACA,UAAW,CACT,MAAO,8FACT,EACA,UAAW,CACT,MAAO,8FACT,CACF,EAAG0B,EAAaE,CAAc,CAChC,CAAC,CACH,CAAC,CACH,CAAC,EAAgBa,EAAMF,EAAO,IAAK,CACjC,UAAW,gBACX,iBAAkBN,EAClB,SAAU,YACV,WAAYF,EACZ,SAAU,CAAcU,EAAMF,EAAO,IAAK,CACxC,UAAW,gBACX,iBAAkBN,EAClB,SAAU,YACV,WAAYF,EACZ,SAAU,CAAcM,EAAKK,EAAU,CACrC,sBAAuB,GACvB,SAAuBL,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,GAAI,CACrC,UAAW,+BACX,qBAAsB,YACtB,SAAU,eACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,iBAAkBN,EAClB,SAAU,YACV,MAAO,CACL,2BAA4B,mBAC5B,gCAAiC,YACjC,6BAA8B,KAChC,EACA,KAAMf,EACN,WAAYa,EACZ,SAAU,CACR,UAAW,CACT,qBAAsB,uEACxB,EACA,UAAW,CACT,qBAAsB,uEACxB,EACA,UAAW,CACT,qBAAsB,uEACxB,CACF,EACA,kBAAmB,MACnB,mBAAoB,GACpB,GAAG/B,GAAqB,CACtB,UAAW,CACT,kBAAmB,QACrB,EACA,UAAW,CACT,SAAuBqC,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,GAAI,CACrC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,QAC7B,EACA,SAAU,eACZ,CAAC,CACH,CAAC,CACH,EACA,UAAW,CACT,SAAuBF,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,GAAI,CACrC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,sBAAuB,yBACzB,EACA,SAAU,eACZ,CAAC,CACH,CAAC,EACD,kBAAmB,QACrB,EACA,UAAW,CACT,SAAuBF,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,GAAI,CACrC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,sBAAuB,yBACzB,EACA,SAAU,eACZ,CAAC,CACH,CAAC,CACH,EACA,UAAW,CACT,SAAuBF,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,GAAI,CACrC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,SAC3B,sBAAuB,yBACzB,EACA,SAAU,eACZ,CAAC,CACH,CAAC,CACH,CACF,EAAGb,EAAaE,CAAc,CAChC,CAAC,EAAGM,EAAY,GAAkBG,EAAKK,EAAU,CAC/C,sBAAuB,GACvB,SAAuBL,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,EAAG,CACpC,UAAW,8BACX,qBAAsB,YACtB,SAAU,oHACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,iBAAkBN,EAClB,SAAU,YACV,MAAO,CACL,2BAA4B,mBAC5B,gCAAiC,YACjC,6BAA8B,MAC9B,QAAS,CACX,EACA,KAAMb,EACN,WAAYW,EACZ,SAAU,CACR,UAAW,CACT,qBAAsB,qEACxB,EACA,UAAW,CACT,qBAAsB,wEACtB,QAAS,EACX,EACA,UAAW,CACT,qBAAsB,wEACtB,QAAS,EACX,EACA,UAAW,CACT,qBAAsB,wEACtB,QAAS,EACX,CACF,EACA,kBAAmB,MACnB,mBAAoB,GACpB,GAAG/B,GAAqB,CACtB,UAAW,CACT,SAAuBqC,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,EAAG,CACpC,UAAW,8BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,SAC3B,sBAAuB,yBACzB,EACA,SAAU,oHACZ,CAAC,CACH,CAAC,CACH,EACA,UAAW,CACT,SAAuBF,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,EAAG,CACpC,UAAW,8BACX,qBAAsB,YACtB,MAAO,CACL,sBAAuB,yBACzB,EACA,SAAU,oHACZ,CAAC,CACH,CAAC,CACH,EACA,UAAW,CACT,SAAuBF,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,EAAG,CACpC,UAAW,8BACX,qBAAsB,YACtB,MAAO,CACL,sBAAuB,yBACzB,EACA,SAAU,oHACZ,CAAC,CACH,CAAC,CACH,EACA,UAAW,CACT,SAAuBF,EAAWM,EAAU,CAC1C,SAAuBN,EAAKE,EAAO,EAAG,CACpC,UAAW,8BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,SAC3B,sBAAuB,yBACzB,EACA,SAAU,oHACZ,CAAC,CACH,CAAC,CACH,CACF,EAAGb,EAAaE,CAAc,CAChC,CAAC,CAAC,CACJ,CAAC,EAAGP,GAA0BgB,EAAKE,EAAO,IAAK,CAC7C,UAAW,0BACX,iBAAkBN,EAClB,SAAU,sBACV,WAAYF,EACZ,SAAuBM,EAAK1C,GAAK,CAC/B,MAAO,oGACP,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,KAAM4B,EACN,MAAOD,EACP,QAAS,YACT,MAAO,OACP,GAAGtB,GAAqB,CACtB,UAAW,CACT,MAAO,8FACT,EACA,UAAW,CACT,MAAO,8FACT,EACA,UAAW,CACT,MAAO,8FACT,CACF,EAAG0B,EAAaE,CAAc,CAChC,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,EACKgB,GAAM,CAAC,sZAAuZ,kFAAmF,oDAAqD,wTAAyT,oWAAqW,wGAAyG,oSAAqS,2SAA4S,oMAAqM,wGAAyG,2/BAA4/B,sHAAuH,4HAA6H,iHAAkH,+aAAgb,6OAA8O,+aAAgb,GAAeA,GAAK,GAAgBA,EAAG,EAOnoJC,GAAkBC,GAAQvC,GAAWqC,GAAK,cAAc,EACvDG,GAAQF,GACfA,GAAgB,YAAc,eAC9BA,GAAgB,aAAe,CAC7B,OAAQ,IACR,MAAO,GACT,EACAG,GAAoBH,GAAiB,CACnC,QAAS,CACP,QAAS,CAAC,YAAa,YAAa,YAAa,YAAa,YAAa,WAAW,EACtF,aAAc,CAAC,OAAQ,mBAAoB,SAAU,aAAc,eAAgB,wBAAwB,EAC3G,MAAO,UACP,KAAMI,EAAY,IACpB,EACA,UAAW,CACT,aAAc,GACd,MAAO,OACP,KAAMA,EAAY,OACpB,EACA,UAAgFrD,IAAiB,eAAqB,CACpH,GAAGA,GAAiB,cACpB,aAAc,OACd,OAAQ,OACR,MAAO,MACT,EACA,UAAW,CACT,aAAc,gBACd,gBAAiB,GACjB,MAAO,QACP,KAAMqD,EAAY,MACpB,EACA,UAAW,CACT,aAAc,GACd,MAAO,OACP,KAAMA,EAAY,OACpB,EACA,UAAW,CACT,aAAc,qHACd,gBAAiB,GACjB,MAAO,OACP,KAAMA,EAAY,MACpB,EACA,UAAW,CACT,aAAc,GACd,MAAO,MACP,KAAMA,EAAY,OACpB,EACA,UAAW,CACT,aAAc,aACd,gBAAiB,GACjB,MAAO,MACP,KAAMA,EAAY,MACpB,EACA,UAAW,CACT,MAAO,OACP,KAAMA,EAAY,IACpB,CACF,CAAC,EACDC,GAASL,GAAiB,CAAC,GAAGtD,GAAe,GAAGG,GAAU,GAAeyD,GAAO,GAAgBA,EAAK,CAAC,ECvetG,IAAMC,GAAcC,EAASC,EAAM,EAC7BC,GAAcF,EAASG,EAAM,EAC7BC,GAAkBC,GAAOC,EAAO,GAAG,EACnCC,GAAmBP,EAASQ,EAAW,EACvCC,GAAcT,EAASU,EAAM,EAC7BC,GAAiBX,EAASY,EAAS,EACnCC,GAAcb,EAASc,EAAM,EAEnC,IAAMC,GAAc,CAClB,UAAW,sBACX,UAAW,6CACX,UAAW,oBACb,EACMC,GAAY,IAAM,OAAO,SAAa,IACtCC,GAAoB,CACxB,UAAW,mBACX,UAAW,kBACX,UAAW,iBACb,EACID,GAAU,GACZE,GAA6B,YAAaH,GAAaE,EAAiB,EAE1E,IAAME,GAAc,CAClB,QAAS,CACP,SAAU,CACZ,CACF,EACMC,GAAoB,CAACC,EAAG,IAAM,oBAAoB,IAClDC,GAAc,CAClB,QAAS,GACT,MAAO,GACP,KAAM,EACN,UAAW,IACX,KAAM,QACR,EACMC,GAAY,CAChB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,EAAqB,CAACH,EAAG,IAAM,uBAAuB,IACtDI,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYH,GACZ,EAAG,EACH,EAAG,CACL,EACMI,GAAa,CACjB,QAAS,KACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,EACH,EAAG,GACL,EACMC,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,EAAG,EACH,EAAG,GACL,EAqCA,IAAMC,GAAc,CAClB,QAAS,GACT,MAAO,GACP,KAAM,EACN,UAAW,IACX,KAAM,QACR,EACMC,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYD,GACZ,EAAG,EACH,EAAG,GACL,EACME,GAAa,CACjB,QAAS,EACT,OAAQ,EACR,QAAS,EACT,QAAS,EACT,MAAO,EACP,WAAYF,GACZ,EAAG,EACH,EAAG,CACL,EACMG,GAAWC,GAAiB,EAC5BC,GAA0B,CAC9B,QAAS,YACT,MAAO,YACP,OAAQ,WACV,EACMC,GAAW,CAAC,CAChB,OAAAC,EACA,GAAAC,EACA,MAAAC,EACA,GAAGC,CACL,IAAM,CACJ,IAAIC,EAAUC,EACd,MAAO,CACL,GAAGF,EACH,SAAUE,GAAOD,EAAWN,GAAwBK,EAAM,OAAO,KAAO,MAAQC,IAAa,OAASA,EAAWD,EAAM,WAAa,MAAQE,IAAQ,OAASA,EAAM,WACrK,CACF,EACMC,GAA+BC,GAAW,SAAUJ,EAAOE,EAAK,CACpE,GAAM,CACJ,aAAAG,CACF,EAAIC,GAAc,EACZ,CACJ,MAAAC,EACA,UAAAC,EACA,SAAAC,EACA,QAAAC,EACA,GAAGC,CACL,EAAIf,GAASI,CAAK,EACZY,GAAgB,IAAM,CAC1B,IAAMC,EAAYnB,GAAiB,EAEnC,GADA,SAAS,MAAQmB,EAAU,OAAS,GAChCA,EAAU,SAAU,CACtB,IAAIX,IACHA,GAAM,SAAS,cAAc,uBAAuB,KAAO,MAAQA,KAAQ,QAAkBA,GAAI,aAAa,UAAWW,EAAU,QAAQ,EAE1IA,EAAU,gBACZ,MAAM,KAAK,SAAS,KAAK,SAAS,EAAE,OAAOC,IAAKA,GAAE,WAAW,cAAc,CAAC,EAAE,IAAIA,IAAK,SAAS,KAAK,UAAU,OAAOA,EAAC,CAAC,EACxH,SAAS,KAAK,UAAU,IAAID,EAAU,aAAa,EAEvD,EAAG,CAAC,CAAC,EACL,GAAM,CAACE,EAAaC,CAAmB,EAAIC,GAA8BP,EAASQ,GAAa,EAAK,EAC9FC,EAAiB,OACjBC,EAAaC,GAAY,QACzBvB,EAAKwB,EAAkB,WAAW,EAClCC,EAAaC,EAAO,IAAI,EACxBC,EAASC,GAAU,EACnBC,EAAML,EAAkB,WAAW,EACnCM,EAAaJ,EAAO,IAAI,EACxBK,EAAMP,EAAkB,WAAW,EACnCQ,EAAaN,EAAO,IAAI,EACxBO,EAAMT,EAAkB,WAAW,EACnCU,EAAaR,EAAO,IAAI,EACxBS,EAAMX,EAAkB,WAAW,EACnCY,EAAaV,EAAO,IAAI,EACxBW,EAAMb,EAAkB,WAAW,EACnCc,EAAaZ,EAAO,IAAI,EACxBa,EAAMf,EAAkB,WAAW,EACnCgB,EAAad,EAAO,IAAI,EACxBe,EAAMjB,EAAkB,WAAW,EACnCkB,EAAahB,EAAO,IAAI,EACxBiB,GAAMnB,EAAkB,WAAW,EACnCoB,GAAalB,EAAO,IAAI,EACxBmB,GAAMrB,EAAkB,WAAW,EACnCsB,EAAcpB,EAAO,IAAI,EACzBqB,EAAOvB,EAAkB,WAAW,EACpCwB,GAActB,EAAO,IAAI,EACzBuB,GAAwBC,GAAM,EACpC,OAAoBC,EAAKC,GAA0B,SAAU,CAC3D,MAAO,CACL,iBAAkB,YAClB,kBAAAC,EACF,EACA,SAAuBF,EAAKG,GAAa,CACvC,GAAI3C,GAAsDsC,GAC1D,SAAuBM,EAAMC,EAAO,IAAK,CACvC,UAAWC,GAAG,eAA4B/C,GAAwBA,GAAwBA,GAAwBA,GAAwBA,GAAwBA,EAAS,EAC3K,MAAO,CACL,QAAS,UACX,EACA,SAAU,CAAc6C,EAAMC,EAAO,IAAK,CACxC,GAAG3C,EACH,UAAW4C,GAAG,iBAAkB/C,CAAS,EACzC,IAAKN,EACL,MAAO,CACL,GAAGK,CACL,EACA,SAAU,CAAc0C,EAAKO,EAAW,CACtC,UAAW,2BACX,aAAc,GACd,kBAAmBC,GACnB,SAAuBR,EAAKS,EAAmB,CAC7C,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,QAAS,WACX,CACF,EACA,SAAuBkC,EAAKU,GAAQ,CAClC,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBV,EAAKK,EAAO,IAAK,CAChC,UAAW,iBACX,mBAAoB,WACpB,KAAM,WACN,SAAuBL,EAAKK,EAAO,IAAK,CACtC,UAAW,iBACX,SAAuBL,EAAKS,EAAmB,CAC7C,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,wBAAyB,SACzB,QAAS6C,EAAe,UAAW,SAAUC,GAAY,QAAQ,EACjE,QAASD,EAAe,UAAW,SAAUE,GAAY,QAAQ,EACjE,kBAAmBC,GAAgC,SAAUC,CAAkB,CACjF,EACA,UAAW,CACT,wBAAyB,SACzB,QAASJ,EAAe,UAAW,SAAUC,GAAY,QAAQ,EACjE,QAASD,EAAe,UAAW,SAAUE,GAAY,QAAQ,EACjE,kBAAmBC,GAAgC,SAAUC,CAAkB,CACjF,CACF,EACA,SAAuBX,EAAMC,EAAO,IAAK,CACvC,QAASM,EAAe,UAAW,UAAWC,GAAY,SAAS,EACnE,UAAW,iBACX,wBAAyB,UACzB,KAAMI,GACN,QAASL,EAAe,UAAW,UAAWE,GAAY,SAAS,EACnE,kBAAmBC,GAAgC,UAAWC,CAAkB,EAChF,SAAU,CAAcf,EAAKS,EAAmB,CAC9C,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,SAAuBkC,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,KAAM,CAChC,UAAW,8BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,MAC7B,EACA,SAAU,mDACZ,CAAC,CACH,CAAC,CACH,CACF,EACA,SAAuBA,EAAKkB,EAAU,CACpC,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBb,EAAM,KAAM,CACjC,UAAW,8BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,MAC7B,EACA,SAAU,CAAC,8BAA4CJ,EAAK,KAAM,CAAC,CAAC,EAAG,uBAAuB,CAChG,CAAC,CACH,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CACH,CAAC,EAAgBA,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,MAC7B,EACA,SAAU,kDACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,iBACX,mBAAoB,WACpB,GAAIxD,EACJ,KAAM,WACN,IAAKyB,EACL,SAAuB8B,EAAMC,EAAO,IAAK,CACvC,UAAW,gBACX,SAAU,CAAcL,EAAKS,EAAmB,CAC9C,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,IACjB,eAAgB,IAChB,YAAa,IACb,WAAY,IACZ,MAAO,6BACP,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,qEAAqE,EAAE,WAC3M,CACF,EACA,UAAW,CACT,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,IACjB,eAAgB,IAChB,YAAa,IACb,WAAY,IACZ,MAAO,4BACP,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,qEAAqE,EAAE,WAC3M,CACF,CACF,EACA,SAAuBkC,EAAKmB,EAAO,CACjC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,IACjB,eAAgB,IAChB,YAAa,IACb,WAAY,IACZ,MAAO,qDACP,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,qEAAqE,EAAE,WAC3M,EACA,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBnB,EAAKoB,GAAiB,CACrC,kBAAmB,CACjB,WAAYC,EACd,EACA,sBAAuB,GACvB,gBAAiBC,GACjB,eAAgBN,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gBACX,kBAAmBD,EACnB,SAAuBX,EAAMC,EAAO,IAAK,CACvC,UAAW,eACX,SAAU,CAAcL,EAAKkB,EAAU,CACrC,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,KAAM,CAChC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,MAC7B,EACA,SAAU,oBACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBA,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBd,EAAYa,EAAU,CAC3C,SAAU,CAAcjB,EAAK,IAAK,CAChC,UAAW,8BACX,qBAAsB,YACtB,SAAU,8HACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,UAAW,8BACX,qBAAsB,YACtB,SAAU,8FACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,UAAW,8BACX,qBAAsB,YACtB,SAAU,yIACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,UAAW,8BACX,qBAAsB,YACtB,SAAU,qKACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,UAAW,8BACX,qBAAsB,YACtB,SAAU,uFACZ,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,gBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBA,EAAKO,EAAW,CAC/B,UAAW,2BACX,SAAuBP,EAAKuB,GAAQ,CAClC,OAAQ,OACR,KAAM,GACN,MAAO,aACP,GAAI,YACJ,SAAU,YACV,KAAMC,GAAY,CAChB,KAAM,aACN,UAAW,WACb,EAAGhD,CAAM,EACT,MAAO,CACL,MAAO,MACT,EACA,MAAO,aACP,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgB4B,EAAMC,EAAO,IAAK,CACjC,UAAW,gBACX,mBAAoB,eACpB,GAAI3B,EACJ,KAAM,eACN,IAAKC,EACL,SAAU,CAAcqB,EAAKK,EAAO,IAAK,CACvC,UAAW,iBACX,mBAAoB,UACpB,KAAM,UACN,SAAuBL,EAAKkB,EAAU,CACpC,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,KAAM,CAChC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,SAC3B,sBAAuB,uEACzB,EACA,SAAU,cACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CACH,CAAC,EAAgBI,EAAMC,EAAO,IAAK,CACjC,UAAW,gBACX,mBAAoB,WACpB,KAAM,WACN,SAAU,CAAcL,EAAKO,EAAW,CACtC,UAAW,2BACX,mBAAoB,OACpB,GAAI3B,EACJ,KAAM,OACN,IAAKC,EACL,SAAuBmB,EAAKS,EAAmB,CAC7C,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,MAAO,CACL,MAAO,MACT,CACF,CACF,EACA,SAAuBkC,EAAKyB,GAAa,CACvC,IAAK,GACL,KAAM,aACN,OAAQ,OACR,KAAM,GACN,MAAO,WACP,GAAI,YACJ,SAAU,YACV,KAAMD,GAAY,CAChB,cAAe,CACb,UAAW,gDACb,EACA,UAAW,WACb,EAAGhD,CAAM,EACT,KAAM,OACN,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,KAAM,GACN,MAAO,4GACP,MAAO,OACP,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBwB,EAAKO,EAAW,CAC/B,UAAW,2BACX,mBAAoB,aACpB,GAAIzB,EACJ,KAAM,aACN,IAAKC,EACL,SAAuBiB,EAAKS,EAAmB,CAC7C,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,MAAO,CACL,MAAO,MACT,CACF,CACF,EACA,SAAuBkC,EAAKyB,GAAa,CACvC,IAAK,GACL,KAAM,aACN,OAAQ,OACR,KAAM,GACN,MAAO,YACP,GAAI,YACJ,SAAU,YACV,KAAMD,GAAY,CAChB,cAAe,CACb,UAAW,6DACb,EACA,UAAW,WACb,EAAGhD,CAAM,EACT,KAAM,aACN,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,KAAM,GACN,MAAO,4GACP,MAAO,aACP,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,EAAgBwB,EAAKO,EAAW,CAC/B,UAAW,2BACX,mBAAoB,cACpB,GAAIvB,EACJ,KAAM,cACN,IAAKC,EACL,SAAuBe,EAAKS,EAAmB,CAC7C,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,MAAO,CACL,MAAO,MACT,CACF,CACF,EACA,SAAuBkC,EAAKyB,GAAa,CACvC,IAAK,GACL,KAAM,aACN,OAAQ,OACR,KAAM,GACN,MAAO,eACP,GAAI,YACJ,SAAU,YACV,KAAMD,GAAY,CAChB,cAAe,CACb,UAAW,8EACb,EACA,UAAW,WACb,EAAGhD,CAAM,EACT,KAAM,cACN,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,KAAM,GACN,MAAO,2GACP,MAAO,cACP,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,EAAgBwB,EAAKK,EAAO,IAAK,CAChC,UAAW,gBACX,mBAAoB,sCACpB,GAAInB,EACJ,KAAM,sCACN,IAAKC,EACL,SAAuBiB,EAAMC,EAAO,IAAK,CACvC,UAAW,iBACX,SAAU,CAAcL,EAAKoB,GAAiB,CAC5C,kBAAmB,CACjB,WAAYC,EACd,EACA,sBAAuB,GACvB,gBAAiBC,GACjB,eAAgBN,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,iBACX,kBAAmBD,EACnB,SAAuBX,EAAMC,EAAO,IAAK,CACvC,UAAW,gBACX,SAAU,CAAcL,EAAKS,EAAmB,CAC9C,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,SAAuBkC,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,KAAM,CAChC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,MAC7B,EACA,SAAU,qCACZ,CAAC,CACH,CAAC,CACH,CACF,EACA,SAAuBA,EAAKkB,EAAU,CACpC,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBb,EAAM,KAAM,CACjC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,MAC7B,EACA,SAAU,CAAC,aAA2BJ,EAAK,KAAM,CAAC,CAAC,EAAG,2BAA2B,CACnF,CAAC,CACH,CAAC,EACD,UAAW,gBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CACH,CAAC,EAAgBA,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBd,EAAYa,EAAU,CAC3C,SAAU,CAAcb,EAAM,IAAK,CACjC,UAAW,8BACX,qBAAsB,YACtB,SAAU,CAAC,yLAAuMJ,EAAK,SAAU,CAC/N,SAAU,UACZ,CAAC,EAAG,KAAmBA,EAAK,SAAU,CACpC,SAAU,aACZ,CAAC,EAAG,QAAsBA,EAAK,SAAU,CACvC,SAAU,gBACZ,CAAC,EAAG,IAAI,CACV,CAAC,EAAgBA,EAAK,IAAK,CACzB,UAAW,8BACX,qBAAsB,YACtB,SAAU,+IACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,UAAW,8BACX,qBAAsB,YACtB,SAAU,2IACZ,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,gBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKS,EAAmB,CACvC,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,IACjB,eAAgB,KAChB,QAAS,OACT,YAAa,IACb,WAAY,KACZ,MAAO,6BACP,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,uFAAuF,EAAE,eAAe,IAAI,IAAI,oEAAoE,EAAE,YACzT,CACF,EACA,UAAW,CACT,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,IACjB,eAAgB,KAChB,QAAS,OACT,YAAa,IACb,WAAY,KACZ,MAAO,4BACP,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,uFAAuF,EAAE,eAAe,IAAI,IAAI,oEAAoE,EAAE,YACzT,CACF,CACF,EACA,SAAuBkC,EAAKmB,EAAO,CACjC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,IACjB,eAAgB,KAChB,QAAS,OACT,YAAa,IACb,WAAY,KACZ,MAAO,oDACP,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,uFAAuF,EAAE,eAAe,IAAI,IAAI,oEAAoE,EAAE,YACzT,EACA,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBf,EAAMC,EAAO,IAAK,CACjC,UAAW,gBACX,mBAAoB,uBACpB,GAAIjB,EACJ,KAAM,uBACN,IAAKC,EACL,SAAU,CAAcW,EAAKK,EAAO,IAAK,CACvC,UAAW,iBACX,mBAAoB,UACpB,KAAM,UACN,SAAuBL,EAAKS,EAAmB,CAC7C,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,SAAuBkC,EAAWiB,EAAU,CAC1C,SAAuBb,EAAM,KAAM,CACjC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,SAC3B,sBAAuB,uEACzB,EACA,SAAU,CAAC,WAAyBJ,EAAK,KAAM,CAAC,CAAC,EAAG,cAAc,CACpE,CAAC,CACH,CAAC,CACH,CACF,EACA,SAAuBA,EAAKkB,EAAU,CACpC,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,KAAM,CAChC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,SAC3B,sBAAuB,uEACzB,EACA,SAAU,sBACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,GAAIV,EACJ,IAAKC,EACL,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CACH,CAAC,CACH,CAAC,EAAgBS,EAAKO,EAAW,CAC/B,UAAW,0BACX,GAAIf,GACJ,IAAKC,GACL,SAAuBO,EAAK0B,GAAQ,CAClC,UAAW,SACX,UAAW,OACX,YAAa,CACX,UAAW,EACX,YAAa,GACb,UAAW,EACX,UAAW,GACX,SAAU,EACZ,EACA,IAAK,EACL,OAAQ,OACR,YAAa,EACb,GAAI,YACJ,SAAU,YACV,QAAS,EACT,cAAe,EACf,YAAa,GACb,eAAgB,GAChB,aAAc,GACd,WAAY,EACZ,cAAe,CACb,WAAY,GACZ,UAAW,EACb,EACA,MAAO,CAActB,EAAMC,EAAO,IAAK,CACrC,UAAW,iBACX,mBAAoB,QACpB,KAAM,QACN,SAAU,CAAcL,EAAKK,EAAO,IAAK,CACvC,UAAW,gBACX,mBAAoB,aACpB,GAAIX,GACJ,KAAM,aACN,IAAKC,EACL,SAAuBS,EAAMC,EAAO,IAAK,CACvC,UAAW,gBACX,mBAAoB,aACpB,KAAM,aACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,GACjB,eAAgB,GAChB,YAAa,GACb,WAAY,GACZ,IAAK,IAAI,IAAI,sEAAsE,EAAE,IACvF,EACA,UAAW,eACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,YACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,mBAAoB,aACpB,KAAM,aACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,iBACX,mBAAoB,WACpB,KAAM,WACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,iBACX,mBAAoB,WACpB,KAAM,WACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,GACjB,eAAgB,GAChB,YAAa,GACb,WAAY,GACZ,IAAK,IAAI,IAAI,sEAAsE,EAAE,IACvF,EACA,UAAW,eACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,UACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,mBAAoB,WACpB,KAAM,WACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,iBACX,mBAAoB,iBACpB,KAAM,iBACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,iBACX,mBAAoB,iBACpB,KAAM,iBACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,GACjB,eAAgB,GAChB,YAAa,GACb,WAAY,GACZ,IAAK,IAAI,IAAI,oEAAoE,EAAE,IACrF,EACA,UAAW,gBACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,gBACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,mBAAoB,iBACpB,KAAM,iBACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,gBACX,mBAAoB,UACpB,KAAM,UACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,iBACX,mBAAoB,UACpB,KAAM,UACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,GACjB,eAAgB,GAChB,YAAa,GACb,WAAY,GACZ,IAAK,IAAI,IAAI,qEAAqE,EAAE,IACtF,EACA,UAAW,eACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,SACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,mBAAoB,UACpB,KAAM,UACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,iBACX,mBAAoB,SACpB,KAAM,SACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,gBACX,mBAAoB,SACpB,KAAM,SACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,GACjB,eAAgB,GAChB,YAAa,GACb,WAAY,GACZ,IAAK,IAAI,IAAI,sEAAsE,EAAE,IACvF,EACA,UAAW,gBACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,QACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,mBAAoB,SACpB,KAAM,SACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,gBACX,mBAAoB,IACpB,KAAM,IACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,gBACX,mBAAoB,IACpB,KAAM,IACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,MACL,gBAAiB,IACjB,eAAgB,IAChB,YAAa,IACb,WAAY,IACZ,IAAK,IAAI,IAAI,qEAAqE,EAAE,IACtF,EACA,UAAW,eACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,GACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,mBAAoB,IACpB,KAAM,IACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,gBACX,mBAAoB,QACpB,KAAM,QACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,iBACX,mBAAoB,QACpB,KAAM,QACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,MACL,gBAAiB,IACjB,eAAgB,IAChB,YAAa,IACb,WAAY,IACZ,IAAK,IAAI,IAAI,qEAAqE,EAAE,IACtF,EACA,UAAW,eACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,OACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,mBAAoB,QACpB,KAAM,QACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,iBACX,mBAAoB,WACpB,KAAM,WACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,gBACX,mBAAoB,WACpB,KAAM,WACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,GACjB,eAAgB,GAChB,YAAa,GACb,WAAY,GACZ,IAAK,IAAI,IAAI,sEAAsE,EAAE,IACvF,EACA,UAAW,gBACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,UACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,mBAAoB,WACpB,KAAM,WACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,gBACX,mBAAoB,gBACpB,KAAM,gBACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,iBACX,mBAAoB,gBACpB,KAAM,gBACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,OACL,gBAAiB,GACjB,eAAgB,GAChB,YAAa,GACb,WAAY,GACZ,IAAK,IAAI,IAAI,sEAAsE,EAAE,IACvF,EACA,UAAW,eACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,eACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,mBAAoB,gBACpB,KAAM,gBACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,iBACX,mBAAoB,SACpB,KAAM,SACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,gBACX,mBAAoB,SACpB,KAAM,SACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,MACL,gBAAiB,GACjB,eAAgB,GAChB,YAAa,GACb,WAAY,GACZ,IAAK,IAAI,IAAI,sEAAsE,EAAE,IACvF,EACA,UAAW,cACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,QACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,mBAAoB,SACpB,KAAM,SACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,iBACX,mBAAoB,SACpB,KAAM,SACN,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,gBACX,mBAAoB,SACpB,KAAM,SACN,SAAU,CAAcL,EAAKmB,EAAO,CAClC,WAAY,CACV,IAAK,GACL,IAAK,MACL,gBAAiB,IACjB,eAAgB,KAChB,YAAa,IACb,WAAY,KACZ,MAAO,OACP,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,qEAAqE,EAAE,YAC5T,EACA,UAAW,eACb,CAAC,EAAgBnB,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,IAAK,CAC/B,UAAW,8BACX,qBAAsB,YACtB,SAAU,QACZ,CAAC,CACH,CAAC,EACD,UAAW,gBACX,mBAAoB,SACpB,KAAM,SACN,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CAAC,EACF,MAAO,GACP,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,MAAO,MACT,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBA,EAAKK,EAAO,IAAK,CAChC,UAAW,gBACX,mBAAoB,aACpB,GAAIT,EACJ,KAAM,aACN,IAAKC,GACL,SAAuBG,EAAKK,EAAO,IAAK,CACtC,UAAW,iBACX,SAAuBD,EAAMC,EAAO,IAAK,CACvC,UAAW,iBACX,SAAU,CAAcL,EAAKoB,GAAiB,CAC5C,kBAAmB,CACjB,WAAYC,EACd,EACA,sBAAuB,GACvB,gBAAiBC,GACjB,eAAgBN,GAChB,mCAAoC,GACpC,oBAAqB,GACrB,gBAAiB,GACjB,gBAAiB,EACjB,UAAW,gBACX,kBAAmBD,EACnB,SAAuBX,EAAMC,EAAO,IAAK,CACvC,UAAW,iBACX,SAAU,CAAcL,EAAKkB,EAAU,CACrC,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,KAAM,CAChC,UAAW,+BACX,qBAAsB,YACtB,MAAO,CACL,0BAA2B,MAC7B,EACA,SAAU,YACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBA,EAAKkB,EAAU,CAC9B,sBAAuB,GACvB,SAAuBd,EAAYa,EAAU,CAC3C,SAAU,CAAcjB,EAAK,IAAK,CAChC,UAAW,8BACX,qBAAsB,YACtB,SAAU,kJACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,UAAW,8BACX,qBAAsB,YACtB,SAAU,8FACZ,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,EAAgBA,EAAKS,EAAmB,CACvC,WAAY3C,EACZ,UAAW,CACT,UAAW,CACT,wBAAyB,SACzB,QAAS6C,EAAe,UAAW,SAAUpE,GAAY,QAAQ,EACjE,QAASoE,EAAe,UAAW,SAAUE,GAAY,QAAQ,EACjE,kBAAmBC,GAAgC,SAAUC,CAAkB,CACjF,EACA,UAAW,CACT,wBAAyB,SACzB,QAASJ,EAAe,UAAW,SAAUpE,GAAY,QAAQ,EACjE,QAASoE,EAAe,UAAW,SAAUE,GAAY,QAAQ,EACjE,kBAAmBC,GAAgC,SAAUC,CAAkB,CACjF,CACF,EACA,SAAuBX,EAAMC,EAAO,IAAK,CACvC,QAASM,EAAe,UAAW,SAAUpE,GAAY,SAAS,EAClE,UAAW,gBACX,cAAe,GACf,wBAAyB,SACzB,KAAMD,GACN,QAASqE,EAAe,UAAW,SAAUE,GAAY,SAAS,EAClE,kBAAmBC,GAAgC,SAAUC,CAAkB,EAC/E,SAAU,CAAcf,EAAKkB,EAAU,CACrC,sBAAuB,GACvB,SAAuBlB,EAAWiB,EAAU,CAC1C,SAAuBjB,EAAK,KAAM,CAChC,UAAW,+BACX,qBAAsB,YACtB,SAAU,sBACZ,CAAC,CACH,CAAC,EACD,UAAW,iBACX,kBAAmB,MACnB,mBAAoB,EACtB,CAAC,EAAgBA,EAAKO,EAAW,CAC/B,UAAW,2BACX,SAAuBP,EAAK2B,GAAW,CACrC,aAAc,GACd,iBAAkB,GAClB,kBAAmB,GACnB,OAAQ,CACN,MAAO,qBACP,KAAM,oGACN,WAAY,IACZ,MAAO,MACT,EACA,MAAO,CACL,YAAa,QACb,MAAO,EACT,EACA,KAAM,GACN,WAAY,UACZ,SAAU,GACV,WAAY,IACZ,OAAQ,WACR,IAAK,GACL,OAAQ,OACR,GAAI,YACJ,OAAQ,CACN,MAAO,2FACP,MAAO,mBACP,KAAM,4BACN,iBAAkB,iGACpB,EACA,oBAAqB,GACrB,OAAQ,aACR,SAAU,YACV,QAAS,CACP,YAAa,UACb,MAAO,EACT,EACA,UAAW,CACT,YAAa,OACb,MAAO,EACT,EACA,QAAS,GACT,cAAe,GACf,YAAa,GACb,eAAgB,GAChB,aAAc,GACd,WAAY,GACZ,MAAO,CACL,OAAQ,OACR,MAAO,MACT,EACA,cAAe,GACf,eAAgB,GAChB,MAAO,OACP,UAAW,GACX,YAAa,GACb,SAAU,EACZ,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,EAAgB3B,EAAKO,EAAW,CAC/B,UAAW,2BACX,SAAuBP,EAAK4B,GAAQ,CAClC,OAAQ,OACR,GAAI,YACJ,SAAU,YACV,MAAO,CACL,MAAO,MACT,EACA,QAAS,YACT,MAAO,MACT,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgB5B,EAAK,MAAO,CAC3B,GAAI,SACN,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CAAC,CACH,CAAC,EACK6B,GAAM,CAAC,sZAAuZ,kFAAmF,IAAIrF,GAAS,uCAAwC,oDAAqD,4SAA6S,qKAAsK,+YAAgZ,4UAA6U,8VAA+V,ugBAAwgB,ibAAkb,yQAA0Q,wWAAyW,mWAAoW,0GAA2G,oXAAqX,mUAAoU,6kBAA8kB,gTAAiT,8LAA+L,6SAA8S,qPAAsP,oXAAqX,0GAA2G,wRAAyR,0mBAA2mB,iSAAkS,4YAA6Y,yjBAA0jB,+eAAgf,wIAAyI,6SAA8S,qSAAsS,4VAA6V,uvBAAwvB,0GAA2G,yGAA0G,8wRAA+wR,6FAA8F,mHAAmHA,GAAS,kyFAAmyF,2FAA2FA,GAAS,umFAAwmF,GAAeqF,GAAK,GAAgBA,GAAK,GAAgBA,GAAK,GAAgBA,GAAK,GAAgBA,GAAK,GAAgBA,EAAG,EAOxh0BC,GAAkBC,GAAQ7E,GAAW2E,GAAK,cAAc,EACvDpF,GAAQqF,GACfA,GAAgB,YAAc,OAC9BA,GAAgB,aAAe,CAC7B,OAAQ,KACR,MAAO,IACT,EACAE,GAASF,GAAiB,CAAC,GAAGG,GAAa,GAAGC,GAAa,GAAGC,GAAkB,GAAGC,GAAa,GAAGC,GAAgB,GAAGC,GAAa,GAAeC,GAAO,GAAgBA,GAAO,GAAgBA,GAAO,GAAgBA,GAAO,GAAgBA,GAAO,GAAgBA,EAAK,CAAC,EACpQ,IAAMC,GAAqB,CAChC,QAAW,CACT,QAAW,CACT,KAAQ,iBACR,KAAQ,kBACR,MAAS,CAAC,EACV,YAAe,CACb,uBAA0B,GAC1B,sBAAyB,IACzB,sBAAyB,OACzB,qBAAwB,OACxB,oCAAuC,2JACzC,CACF,EACA,MAAS,CACP,KAAQ,SACR,YAAe,CACb,sBAAyB,GAC3B,CACF,EACA,mBAAsB,CACpB,KAAQ,UACV,CACF,CACF",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "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", "dispatchViewEvent", "se", "o", "i", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "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", "PhosphorFonts", "getFonts", "Icon", "CTAFonts", "OlTWqYMo3_default", "PhosphorControls", "getPropertyControls", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "J2X4hmGjs", "SXDgbTQKy", "g56HeEMzh", "HQlsDHpqI", "fsUmuS24I", "qKOBsbAyJ", "EgEa9J473", "eZ5aNjZIy", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "css", "FramerKym4ifyAB", "withCSS", "Kym4ifyAB_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "TopbarFonts", "getFonts", "lWUcIJP0H_default", "ButtonFonts", "Tnz4seCKc_default", "MotionDivWithFX", "withFX", "motion", "FeatureCardFonts", "Kym4ifyAB_default", "TickerFonts", "Ticker", "FormSparkFonts", "FormSpark_default", "FooterFonts", "M82dauGNX_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "transformTemplate", "_", "transition1", "animation", "transformTemplate1", "animation1", "animation2", "animation3", "transition3", "animation7", "animation8", "metadata", "FppqJ4e2S_default", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "transitions", "useRouteElementId", "ref1", "pe", "router", "useRouter", "id1", "ref2", "id2", "ref3", "id3", "ref4", "id4", "ref5", "id5", "ref6", "id6", "ref7", "id7", "ref8", "id8", "ref9", "id9", "ref10", "id10", "ref11", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "variantClassNames", "LayoutGroup", "u", "motion", "cx", "Container", "transformTemplate", "PropertyOverrides", "lWUcIJP0H_default", "optimizeAppear", "animation1", "animation2", "optimizeAppearTransformTemplate", "transformTemplate1", "animation", "x", "RichText", "Image2", "MotionDivWithFX", "transition1", "animation3", "Tnz4seCKc_default", "resolveLink", "Kym4ifyAB_default", "Ticker", "FormSpark_default", "M82dauGNX_default", "css", "FramerFppqJ4e2S", "withCSS", "addFonts", "TopbarFonts", "ButtonFonts", "FeatureCardFonts", "TickerFonts", "FormSparkFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
