{
  "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.3.1/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/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/IC37UsekjkVN50JsyBS1/bhvsexCM93zRFEF3Pxl6/Ti6Mt9vd0.js", "ssg:https://framerusercontent.com/modules/87U8VgguXerR8V1it7pJ/Fv0w4YW4jd6OjzXSukUA/colg4dnkP.js", "ssg:https://framerusercontent.com/modules/U6X5mGuXLcmWAwMN8PAR/eADS82ZR1y99sg0IE9Ue/zKitQ3Qb1.js", "ssg:https://framerusercontent.com/modules/wVIIL28FluSYkwPP1A5p/dnOhrpDwcuaqktt22o90/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const 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);Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}: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}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__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 { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (d2720d0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"N3Al_Izcn\",\"W1ITXFaKV\",\"Zz5_4PVuS\",\"U55tpRvBF\"];const serializationHash=\"framer-uPRsu\";const variantClassNames={N3Al_Izcn:\"framer-v-ahniiv\",U55tpRvBF:\"framer-v-13y8jyx\",W1ITXFaKV:\"framer-v-if5yqg\",Zz5_4PVuS:\"framer-v-19yuyak\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Dark-mobile\":\"Zz5_4PVuS\",\"Light-mobile\":\"U55tpRvBF\",Dark:\"N3Al_Izcn\",Light:\"W1ITXFaKV\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"N3Al_Izcn\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"N3Al_Izcn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"W1ITXFaKV\",\"U55tpRvBF\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"W1ITXFaKV\",\"U55tpRvBF\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.header,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ahniiv\",className,classNames),\"data-framer-name\":\"Dark\",layoutDependency:layoutDependency,layoutId:\"N3Al_Izcn\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"none\",backgroundColor:\"rgba(255, 255, 255, 0)\",boxShadow:\"none\",WebkitBackdropFilter:\"none\",...style},variants:{U55tpRvBF:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.75)\",boxShadow:\"0px 1px 2px 0px rgba(0,0,0,0.25)\",WebkitBackdropFilter:\"blur(10px)\"},W1ITXFaKV:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.75)\",boxShadow:\"0px 1px 2px 0px rgba(0,0,0,0.25)\",WebkitBackdropFilter:\"blur(10px)\"}},...addPropertyOverrides({U55tpRvBF:{\"data-framer-name\":\"Light-mobile\"},W1ITXFaKV:{\"data-framer-name\":\"Light\"},Zz5_4PVuS:{\"data-framer-name\":\"Dark-mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k7aw30\",\"data-framer-name\":\"Frame 1\",layoutDependency:layoutDependency,layoutId:\"I85:356;85:77\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":MD9N6lKbG\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1f1v9ld framer-1dwjryp\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"I85:356;85:543\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cks496\",\"data-framer-name\":\"Group 25\",layoutDependency:layoutDependency,layoutId:\"I85:356;171:302\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wlqjac\",\"data-framer-name\":\"Group 8\",layoutDependency:layoutDependency,layoutId:\"I85:356;171:303\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dlrz6l\",\"data-framer-name\":\"Ellipse 1\",layoutDependency:layoutDependency,layoutId:\"I85:356;171:303;163:296\",style:{background:\"radial-gradient(43.58407117478035% 43.58407117478035% at 49.99999709559223% 50.00000048791413%, rgba(31, 238, 138, 1) 27.39582061767578%, rgba(31, 238, 138, 0) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11in3g4\",\"data-framer-name\":\"Group 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"I85:356;171:303;163:297\",svg:'<svg width=\"28\" height=\"31\" viewBox=\"0 0 28 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.27358 8.27838C2.36883 8.42301 2.51807 8.55864 2.72131 8.67505L12.6933 14.387C13.4583 14.8252 14.6986 14.8252 15.4636 14.387L25.4355 8.67505C25.6388 8.55863 25.788 8.42299 25.8833 8.27835C25.8988 8.30198 25.9129 8.32585 25.9256 8.34991C26.238 8.42333 26.4552 8.69558 26.5033 9.12437C26.3281 9.13297 26.1333 9.19343 25.928 9.31101L15.9565 15.0236C15.1915 15.4618 14.5713 16.5276 14.5713 17.404L14.5709 28.8285C14.5709 28.8936 14.5743 28.9558 14.581 29.0151C14.3841 29.0247 14.212 28.9689 14.0777 28.8551C13.9435 28.9686 13.7716 29.0242 13.575 29.0145C13.5817 28.9553 13.5851 28.893 13.5851 28.8279L13.5847 17.4035C13.5847 16.527 12.9645 15.4613 12.1996 15.023L2.22799 9.31047C2.02274 9.19289 1.82792 9.13243 1.65271 9.12383C1.7009 8.69445 1.91862 8.42203 2.23169 8.34906C2.24425 8.3253 2.25821 8.30172 2.27358 8.27838Z\" fill=\"#20EE8B\"/>\\n<path d=\"M7.94801 24.1025C7.43275 23.8073 6.95073 23.4836 6.50195 23.1313C6.06148 22.7837 5.67087 22.3838 5.33013 21.9315C4.98938 21.4792 4.72343 20.9698 4.53227 20.4033C4.34942 19.832 4.25798 19.1845 4.25796 18.4609L4.25777 12.5714L3.45801 12.1132L3.45824 19.2543C3.45826 19.978 3.5497 20.6255 3.73255 21.1968C3.87592 21.6217 4.06136 22.0144 4.28887 22.3751C4.36471 22.4953 4.44522 22.6119 4.5304 22.725C4.5517 22.7533 4.57319 22.7813 4.59488 22.8092C4.92017 23.2271 5.28929 23.5989 5.70223 23.9247C6.15101 24.2771 6.63303 24.6008 7.14829 24.896C7.66355 25.1912 8.14141 25.4173 8.58187 25.5744C9.02233 25.7316 9.41293 25.7792 9.75366 25.7173C10.0731 25.6593 10.3231 25.4737 10.5038 25.1604C10.5158 25.1395 10.5276 25.1181 10.539 25.096C10.5699 25.0384 10.5983 24.9759 10.6241 24.9086C10.6009 24.9144 10.5774 24.9195 10.5534 24.9238C10.2127 24.9857 9.82206 24.9381 9.3816 24.781C8.94113 24.6239 8.46327 24.3977 7.94801 24.1025Z\" fill=\"#20EE8B\"/>\\n<path d=\"M8.66879 15.0984L9.46856 15.5565L9.46875 21.4318C9.46876 21.746 9.40644 21.9674 9.28178 22.0959C9.12468 22.263 8.99986 22.5618 8.36009 22.9585C8.59549 22.7971 8.60401 22.7248 8.66901 22.3238L8.66879 15.0984Z\" fill=\"#20EE8B\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.22801 9.34823C1.46303 8.91346 0.84292 9.27004 0.842948 10.1447L0.843317 21.5455C0.843345 22.4201 1.4635 23.4816 2.22848 23.9163L12.2001 29.5836C12.965 30.0183 13.5851 29.6618 13.5851 28.7872L13.5847 17.3863C13.5847 16.5117 12.9646 15.4502 12.1996 15.0155L2.22801 9.34823ZM5.70231 23.9205C6.15109 24.2707 6.63311 24.5922 7.14837 24.8851C7.66363 25.1781 8.14149 25.4022 8.58195 25.5575C9.02242 25.7129 9.41301 25.7591 9.75374 25.6962C10.0945 25.6333 10.3562 25.4257 10.5391 25.0734C10.7302 24.7164 10.8257 24.1767 10.8257 23.4544L10.8255 16.3262L8.66888 15.1002L8.66911 22.2141C8.66912 22.5278 8.6068 22.749 8.48214 22.8777C8.3658 23.0016 8.19128 23.045 7.95858 23.0077C7.7342 22.9657 7.4641 22.8549 7.1483 22.6754C6.82418 22.4911 6.54577 22.2901 6.31307 22.0723C6.08868 21.8497 5.91415 21.6079 5.78949 21.3469C5.67313 21.0812 5.61495 20.7915 5.61494 20.4779L5.61471 13.3639L3.45809 12.1379L3.45832 19.2661C3.45834 19.9885 3.54978 20.6345 3.73263 21.2041C3.92379 21.769 4.18974 22.2766 4.53049 22.7269C4.87123 23.1772 5.26184 23.5751 5.70231 23.9205Z\" fill=\"#0C2555\"/>\\n<path d=\"M20.9144 21.6388L19.3298 25.7863L16.9613 27.1432L17.6259 25.5109L18.5301 24.9929L20.1142 20.8456L20.9144 21.6388Z\" fill=\"#20EE8B\"/>\\n<path d=\"M22.6707 23.8724L21.992 23.0096L24.252 21.7149L21.4284 18.1366L23.6363 12.7219L25.1019 11.8823L22.2281 18.9301L25.0517 22.5083L22.6707 23.8724Z\" fill=\"#20EE8B\"/>\\n<path d=\"M21.108 17.5103L19.2928 15.2103L19.1732 15.2787L20.3075 16.7162L21.108 17.5103Z\" fill=\"#20EE8B\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.9565 15.016C15.1915 15.4508 14.5714 16.5122 14.5714 17.3869L14.571 28.7877C14.571 29.6623 15.1911 30.0189 15.9561 29.5841L25.9276 23.9169C26.6926 23.4821 27.3128 22.4207 27.3128 21.546L27.3132 10.1452C27.3132 9.27058 26.6931 8.91401 25.9281 9.34878L15.9565 15.016ZM20.914 21.6349L22.6708 23.8701L25.0518 22.5165L22.2281 18.9352L25.102 11.9098L22.7334 13.2563L21.1073 17.5135L19.2928 15.2122L16.9243 16.5587L19.786 20.1997L16.9613 27.1159L19.3299 25.7694L20.914 21.6349Z\" fill=\"#0C2555\"/>\\n<path d=\"M7.12157 7.45895L10.4182 5.57064C10.7257 5.3945 11.0789 5.23502 11.4779 5.09221C11.8685 4.94463 12.3048 4.85656 12.7868 4.828C13.2772 4.79467 13.8257 4.85656 14.4324 5.01366C15.0308 5.16599 15.6915 5.44924 16.4146 5.86341C17.1376 6.27757 17.6405 6.6608 17.923 7.01307C18.0454 7.1681 18.1363 7.3165 18.1958 7.45826C18.2343 7.36316 18.2598 7.26448 18.2721 7.16219C18.3136 6.88132 18.1973 6.56713 17.923 6.21961C17.6405 5.86733 17.1376 5.48411 16.4146 5.06995C15.6915 4.65578 15.0308 4.37253 14.4324 4.22019C13.8257 4.0631 13.2772 4.00121 12.7868 4.03453C12.7567 4.03632 12.7268 4.03834 12.697 4.04059C12.2505 4.07434 11.8441 4.16039 11.4779 4.29874C11.4529 4.30767 11.4282 4.31666 11.4036 4.32572C11.035 4.46156 10.7065 4.61204 10.4182 4.77718L6.42896 7.06222L7.12157 7.45895Z\" fill=\"#20EE8B\"/>\\n<path d=\"M17.8358 11.1253L14.9466 9.4703C14.9466 9.83598 14.9435 9.85631 14.9435 10.2621L17.1431 11.5221L17.8358 11.1253Z\" fill=\"#20EE8B\"/>\\n<path d=\"M13.2356 8.49038C13.7869 8.1746 14.8968 7.53634 14.8968 7.53634C14.8968 7.53634 15.1447 7.39607 15.1447 7.12645C15.1447 6.85683 15.1662 7.90022 15.143 8.01992C15.1264 8.1437 15.0225 8.26033 14.8313 8.36982L13.2356 9.28384L10.518 7.72715L10.5207 6.9337L13.2356 8.49038Z\" fill=\"#20EE8B\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.72098 7.08823C1.95597 7.52643 1.95597 8.23688 2.72098 8.67507L12.6929 14.387C13.4579 14.8252 14.6982 14.8252 15.4632 14.387L25.4352 8.67507C26.2002 8.23688 26.2002 7.52643 25.4352 7.08823L15.4632 1.37632C14.6982 0.938122 13.4579 0.938122 12.6929 1.37632L2.72098 7.08823ZM6.42901 7.06223L15.6791 12.3607L17.8358 11.1253L14.9436 9.46867C15.0516 9.4163 15.1971 9.3568 15.3799 9.29015C15.5628 9.21398 15.7581 9.13067 15.9658 9.04022C16.1736 8.94977 16.3772 8.85694 16.5767 8.76173C16.7762 8.66652 16.9507 8.57607 17.1003 8.49038C17.3912 8.32376 17.653 8.13096 17.8857 7.91198C18.1101 7.68824 18.2389 7.43831 18.2721 7.1622C18.3137 6.88133 18.1973 6.56713 17.9231 6.21962C17.6405 5.86734 17.1377 5.48412 16.4146 5.06995C15.6916 4.65579 15.0309 4.37254 14.4325 4.2202C13.8258 4.0631 13.2772 4.00122 12.7869 4.03454C12.3049 4.0631 11.8685 4.15117 11.4779 4.29875C11.079 4.44156 10.7258 4.60104 10.4183 4.77718L6.42901 7.06223ZM14.8314 7.57636L13.2357 8.49038L10.518 6.93369L12.1262 6.01253C12.309 5.9078 12.5085 5.85068 12.7246 5.84116C12.9323 5.82687 13.165 5.8602 13.4227 5.94113C13.6803 6.01253 13.9629 6.13631 14.2704 6.31245C14.5945 6.49811 14.8272 6.66473 14.9685 6.8123C15.1098 6.95988 15.168 7.09793 15.1431 7.22647C15.1264 7.35024 15.0226 7.46687 14.8314 7.57636Z\" fill=\"#0C2555\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lwngys\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:88,layoutDependency:layoutDependency,layoutId:\"I85:356;171:377\",svg:'<svg width=\"88\" height=\"21\" viewBox=\"-1 -1 88 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0738525 18.584V0.776002H7.81431C8.41097 0.776002 9.02376 0.848002 9.65267 0.992002C10.2816 1.12 10.8541 1.392 11.3701 1.808C11.9022 2.224 12.3296 2.856 12.6521 3.704C12.9746 4.536 13.1359 5.648 13.1359 7.04C13.1359 8.432 12.9746 9.56 12.6521 10.424C12.3296 11.272 11.9103 11.912 11.3943 12.344C10.8944 12.776 10.3461 13.072 9.74942 13.232C9.15276 13.376 8.57223 13.448 8.00782 13.448C7.71755 13.448 7.39503 13.432 7.04026 13.4C6.68549 13.368 6.33072 13.328 5.97595 13.28C5.62118 13.232 5.2906 13.184 4.98421 13.136C4.69394 13.072 4.45205 13.032 4.25854 13.016V18.584H0.0738525ZM4.25854 9.728H7.35472C7.72562 9.728 8.02395 9.632 8.24971 9.44C8.4916 9.248 8.66898 8.96 8.78187 8.576C8.89475 8.192 8.95119 7.688 8.95119 7.064C8.95119 6.472 8.88669 5.992 8.75768 5.624C8.6448 5.24 8.47547 4.96 8.24971 4.784C8.02395 4.592 7.73368 4.496 7.37891 4.496H4.25854V9.728Z\" fill=\"white\"/>\\n<path d=\"M15.0451 18.584V5.672H18.2864L19.2298 7.544C19.6491 6.984 20.1328 6.504 20.6811 6.104C21.2294 5.688 21.8825 5.48 22.6404 5.48C22.7856 5.48 22.9468 5.488 23.1242 5.504C23.3177 5.52 23.4951 5.552 23.6564 5.6V9.848C23.3983 9.816 23.1323 9.792 22.8581 9.776C22.584 9.76 22.326 9.752 22.0841 9.752C21.6648 9.752 21.2778 9.8 20.923 9.896C20.5844 9.976 20.2699 10.104 19.9796 10.28C19.7055 10.44 19.4555 10.656 19.2298 10.928V18.584H15.0451Z\" fill=\"white\"/>\\n<path d=\"M31.1007 18.704C29.988 18.704 29.0366 18.592 28.2464 18.368C27.4723 18.128 26.8434 17.752 26.3597 17.24C25.8759 16.712 25.5292 16.032 25.3195 15.2C25.1099 14.352 25.0051 13.32 25.0051 12.104C25.0051 10.792 25.1099 9.712 25.3195 8.864C25.5453 8 25.9001 7.32 26.3838 6.824C26.8676 6.328 27.4965 5.976 28.2706 5.768C29.0608 5.56 30.0041 5.456 31.1007 5.456C32.2295 5.456 33.1809 5.568 33.955 5.792C34.729 6 35.3499 6.36 35.8175 6.872C36.3013 7.368 36.6561 8.048 36.8818 8.912C37.1076 9.76 37.2205 10.824 37.2205 12.104C37.2205 13.368 37.1157 14.424 36.906 15.272C36.6964 16.12 36.3497 16.8 35.8659 17.312C35.3983 17.808 34.7693 18.168 33.9792 18.392C33.2051 18.6 32.2456 18.704 31.1007 18.704ZM31.1007 15.416C31.4716 15.416 31.778 15.384 32.0199 15.32C32.2618 15.24 32.4553 15.096 32.6004 14.888C32.7455 14.664 32.8504 14.328 32.9149 13.88C32.9955 13.432 33.0358 12.832 33.0358 12.08C33.0358 11.328 32.9955 10.728 32.9149 10.28C32.8504 9.832 32.7455 9.504 32.6004 9.296C32.4553 9.072 32.2618 8.928 32.0199 8.864C31.778 8.8 31.4716 8.768 31.1007 8.768C30.7459 8.768 30.4476 8.8 30.2057 8.864C29.9638 8.928 29.7622 9.072 29.601 9.296C29.4558 9.504 29.351 9.832 29.2865 10.28C29.222 10.728 29.1898 11.328 29.1898 12.08C29.1898 12.832 29.222 13.432 29.2865 13.88C29.351 14.328 29.4558 14.664 29.601 14.888C29.7622 15.096 29.9638 15.24 30.2057 15.32C30.4476 15.384 30.7459 15.416 31.1007 15.416Z\" fill=\"white\"/>\\n<path d=\"M43.5627 18.728C42.5629 18.728 41.7163 18.52 41.0229 18.104C40.3294 17.688 39.8054 17.008 39.4506 16.064C39.0958 15.12 38.9184 13.856 38.9184 12.272C38.9184 10.672 39.0636 9.376 39.3538 8.384C39.6441 7.392 40.144 6.656 40.8535 6.176C41.5631 5.696 42.5468 5.456 43.8046 5.456C44.3529 5.456 44.9012 5.512 45.4494 5.624C45.9977 5.736 46.4815 5.864 46.9008 6.008V0.272003H51.0855V18.584H47.5539L46.9008 17.384C46.6105 17.64 46.2799 17.872 45.909 18.08C45.5543 18.288 45.1753 18.448 44.7722 18.56C44.3851 18.672 43.982 18.728 43.5627 18.728ZM45.0624 15.416C45.4656 15.416 45.8203 15.352 46.1267 15.224C46.4492 15.096 46.7073 14.96 46.9008 14.816V9.008C46.675 8.912 46.4089 8.816 46.1025 8.72C45.8123 8.608 45.5139 8.552 45.2076 8.552C44.6915 8.552 44.2803 8.64 43.9739 8.816C43.6675 8.992 43.4418 9.336 43.2966 9.848C43.1676 10.344 43.1031 11.08 43.1031 12.056C43.1031 13 43.1596 13.712 43.2724 14.192C43.4014 14.672 43.6111 15 43.9014 15.176C44.2077 15.336 44.5948 15.416 45.0624 15.416Z\" fill=\"white\"/>\\n<path d=\"M60.9138 18.704C59.914 18.704 58.9787 18.624 58.1079 18.464C57.2532 18.304 56.4953 18.008 55.8341 17.576C55.173 17.144 54.657 16.544 54.2861 15.776C53.9313 14.992 53.7539 13.992 53.7539 12.776V0.776002H57.9386V12.752C57.9386 13.28 58.0515 13.712 58.2772 14.048C58.5191 14.368 58.8578 14.608 59.2932 14.768C59.7447 14.912 60.2849 14.984 60.9138 14.984C61.5266 14.984 62.0507 14.912 62.4861 14.768C62.9376 14.608 63.2763 14.368 63.502 14.048C63.7439 13.712 63.8649 13.28 63.8649 12.752V0.776002H68.0495V12.776C68.0495 13.992 67.8641 14.992 67.4932 15.776C67.1384 16.544 66.6305 17.144 65.9693 17.576C65.3081 18.008 64.5502 18.304 63.6955 18.464C62.8409 18.624 61.9136 18.704 60.9138 18.704Z\" fill=\"#20EE8B\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.0177 13.1398L80.4267 18.584H85.0468L79.5675 9.85271L85.1436 0.776002H80.5477L77.3924 6.38665L73.8715 0.776002H69.2756L74.8288 9.64426L69.3482 18.584H73.9441L77.0177 13.1398ZM77.3924 6.38665L76.8226 7.4L78.9512 10.856L79.5675 9.85271L77.3924 6.38665Z\" fill=\"#20EE8B\"/>\\n<path d=\"M76.8226 7.4L78.9512 10.856L79.5675 9.85271L77.3924 6.38665L76.8226 7.4Z\" fill=\"#20EE8B\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7bqglu\",\"data-framer-name\":\"Group 25\",layoutDependency:layoutDependency,layoutId:\"NydwpNW2B\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x7q2fn\",\"data-framer-name\":\"Group 8\",layoutDependency:layoutDependency,layoutId:\"x6poCSZPE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fuuiel\",\"data-framer-name\":\"Ellipse 1\",layoutDependency:layoutDependency,layoutId:\"I171:409;163:296\",style:{background:\"radial-gradient(43.58407117478035% 43.58407117478035% at 49.99999709559223% 50.00000048791413%, rgba(31, 238, 138, 1) 27.39582061767578%, rgba(31, 238, 138, 0) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a5nko0\",\"data-framer-name\":\"Group 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"I171:409;163:297\",svg:'<svg width=\"28\" height=\"31\" viewBox=\"0 0 28 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.27358 8.27835C2.36883 8.42298 2.51807 8.55861 2.72131 8.67502L12.6933 14.3869C13.4583 14.8251 14.6986 14.8251 15.4636 14.3869L25.4355 8.67502C25.6388 8.5586 25.788 8.42296 25.8833 8.27832C25.8988 8.30195 25.9129 8.32582 25.9256 8.34988C26.238 8.4233 26.4552 8.69555 26.5033 9.12434C26.3281 9.13294 26.1333 9.1934 25.928 9.31098L15.9565 15.0235C15.1915 15.4618 14.5713 16.5275 14.5713 17.404L14.5709 28.8284C14.5709 28.8935 14.5743 28.9558 14.581 29.015C14.3841 29.0247 14.212 28.9689 14.0777 28.8551C13.9435 28.9685 13.7716 29.0241 13.575 29.0145C13.5817 28.9552 13.5851 28.893 13.5851 28.8279L13.5847 17.4034C13.5847 16.527 12.9645 15.4612 12.1996 15.023L2.22799 9.31044C2.02274 9.19286 1.82792 9.1324 1.65271 9.1238C1.7009 8.69442 1.91862 8.422 2.23169 8.34903C2.24425 8.32526 2.25821 8.30169 2.27358 8.27835Z\" fill=\"#20EE8B\"/>\\n<path d=\"M7.94801 24.1025C7.43275 23.8073 6.95073 23.4836 6.50195 23.1312C6.06148 22.7837 5.67087 22.3838 5.33013 21.9315C4.98938 21.4792 4.72343 20.9698 4.53227 20.4033C4.34942 19.832 4.25798 19.1845 4.25796 18.4609L4.25777 12.5713L3.45801 12.1132L3.45824 19.2543C3.45826 19.978 3.5497 20.6254 3.73255 21.1967C3.87592 21.6216 4.06136 22.0144 4.28887 22.375C4.36471 22.4952 4.44522 22.6119 4.5304 22.725C4.5517 22.7532 4.57319 22.7813 4.59488 22.8091C4.92017 23.227 5.28929 23.5989 5.70223 23.9247C6.15101 24.277 6.63303 24.6008 7.14829 24.896C7.66355 25.1911 8.14141 25.4173 8.58187 25.5744C9.02233 25.7315 9.41293 25.7792 9.75366 25.7173C10.0731 25.6593 10.3231 25.4736 10.5038 25.1604C10.5158 25.1395 10.5276 25.118 10.539 25.096C10.5699 25.0383 10.5983 24.9758 10.6241 24.9086C10.6009 24.9144 10.5774 24.9195 10.5534 24.9238C10.2127 24.9857 9.82206 24.9381 9.3816 24.7809C8.94113 24.6238 8.46327 24.3977 7.94801 24.1025Z\" fill=\"#20EE8B\"/>\\n<path d=\"M8.66879 15.0983L9.46856 15.5565L9.46875 21.4317C9.46876 21.746 9.40644 21.9673 9.28178 22.0959C9.12468 22.263 8.99986 22.5618 8.36009 22.9585C8.59549 22.7971 8.60401 22.7248 8.66901 22.3237L8.66879 15.0983Z\" fill=\"#20EE8B\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.22801 9.34823C1.46303 8.91346 0.84292 9.27004 0.842948 10.1447L0.843317 21.5455C0.843345 22.4201 1.4635 23.4816 2.22848 23.9163L12.2001 29.5836C12.965 30.0183 13.5851 29.6618 13.5851 28.7872L13.5847 17.3863C13.5847 16.5117 12.9646 15.4502 12.1996 15.0155L2.22801 9.34823ZM5.70231 23.9205C6.15109 24.2707 6.63311 24.5922 7.14837 24.8851C7.66363 25.1781 8.14149 25.4022 8.58195 25.5575C9.02242 25.7129 9.41301 25.7591 9.75374 25.6962C10.0945 25.6333 10.3562 25.4257 10.5391 25.0734C10.7302 24.7164 10.8257 24.1767 10.8257 23.4544L10.8255 16.3262L8.66888 15.1002L8.66911 22.2141C8.66912 22.5278 8.6068 22.749 8.48214 22.8777C8.3658 23.0016 8.19128 23.045 7.95858 23.0077C7.7342 22.9657 7.4641 22.8549 7.1483 22.6754C6.82418 22.4911 6.54577 22.2901 6.31307 22.0723C6.08868 21.8497 5.91415 21.6079 5.78949 21.3469C5.67313 21.0812 5.61495 20.7915 5.61494 20.4779L5.61471 13.3639L3.45809 12.1379L3.45832 19.2661C3.45834 19.9885 3.54978 20.6345 3.73263 21.2041C3.92379 21.769 4.18974 22.2766 4.53049 22.7269C4.87123 23.1772 5.26184 23.5751 5.70231 23.9205Z\" fill=\"#0C2555\"/>\\n<path d=\"M20.9144 21.6387L19.3298 25.7862L16.9613 27.1431L17.6259 25.5108L18.5301 24.9928L20.1142 20.8455L20.9144 21.6387Z\" fill=\"#20EE8B\"/>\\n<path d=\"M22.6707 23.8723L21.992 23.0095L24.252 21.7148L21.4284 18.1365L23.6363 12.7218L25.1019 11.8822L22.2281 18.93L25.0517 22.5083L22.6707 23.8723Z\" fill=\"#20EE8B\"/>\\n<path d=\"M21.108 17.5102L19.2928 15.2102L19.1732 15.2787L20.3075 16.7161L21.108 17.5102Z\" fill=\"#20EE8B\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.9565 15.016C15.1915 15.4507 14.5714 16.5122 14.5714 17.3868L14.571 28.7876C14.571 29.6623 15.1911 30.0188 15.9561 29.5841L25.9276 23.9168C26.6926 23.4821 27.3128 22.4206 27.3128 21.546L27.3132 10.1451C27.3132 9.27052 26.6931 8.91395 25.9281 9.34871L15.9565 15.016ZM20.914 21.6348L22.6708 23.8701L25.0518 22.5165L22.2281 18.9352L25.102 11.9097L22.7334 13.2562L21.1073 17.5135L19.2928 15.2122L16.9243 16.5587L19.786 20.1997L16.9613 27.1158L19.3299 25.7693L20.914 21.6348Z\" fill=\"#0C2555\"/>\\n<path d=\"M7.12157 7.45892L10.4182 5.57061C10.7257 5.39447 11.0789 5.23499 11.4779 5.09218C11.8685 4.9446 12.3048 4.85653 12.7868 4.82797C13.2772 4.79464 13.8257 4.85653 14.4324 5.01363C15.0308 5.16596 15.6915 5.44921 16.4146 5.86338C17.1376 6.27754 17.6405 6.66077 17.923 7.01304C18.0454 7.16807 18.1363 7.31647 18.1958 7.45823C18.2343 7.36313 18.2598 7.26444 18.2721 7.16216C18.3136 6.88129 18.1973 6.5671 17.923 6.21958C17.6405 5.8673 17.1376 5.48408 16.4146 5.06992C15.6915 4.65575 15.0308 4.3725 14.4324 4.22016C13.8257 4.06307 13.2772 4.00118 12.7868 4.0345C12.7567 4.03629 12.7268 4.03831 12.697 4.04056C12.2505 4.07431 11.8441 4.16036 11.4779 4.29871C11.4529 4.30764 11.4282 4.31663 11.4036 4.32569C11.035 4.46153 10.7065 4.61201 10.4182 4.77714L6.42896 7.06219L7.12157 7.45892Z\" fill=\"#20EE8B\"/>\\n<path d=\"M17.8358 11.1253L14.9466 9.47027C14.9466 9.83594 14.9435 9.85628 14.9435 10.2621L17.1431 11.522L17.8358 11.1253Z\" fill=\"#20EE8B\"/>\\n<path d=\"M13.2356 8.49035C13.7869 8.17457 14.8968 7.53631 14.8968 7.53631C14.8968 7.53631 15.1447 7.39604 15.1447 7.12642C15.1447 6.8568 15.1662 7.90018 15.143 8.01989C15.1264 8.14367 15.0225 8.2603 14.8313 8.36979L13.2356 9.28381L10.518 7.72712L10.5207 6.93366L13.2356 8.49035Z\" fill=\"#20EE8B\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.72098 7.08817C1.95597 7.52637 1.95597 8.23682 2.72098 8.67501L12.6929 14.3869C13.4579 14.8251 14.6982 14.8251 15.4632 14.3869L25.4352 8.67501C26.2002 8.23682 26.2002 7.52637 25.4352 7.08817L15.4632 1.37625C14.6982 0.938061 13.4579 0.938061 12.6929 1.37625L2.72098 7.08817ZM6.42901 7.06217L15.6791 12.3606L17.8358 11.1253L14.9436 9.46861C15.0516 9.41624 15.1971 9.35674 15.3799 9.29009C15.5628 9.21392 15.7581 9.13061 15.9658 9.04016C16.1736 8.94971 16.3772 8.85688 16.5767 8.76167C16.7762 8.66646 16.9507 8.57601 17.1003 8.49032C17.3912 8.3237 17.653 8.1309 17.8857 7.91192C18.1101 7.68818 18.2389 7.43825 18.2721 7.16214C18.3137 6.88127 18.1973 6.56707 17.9231 6.21956C17.6405 5.86728 17.1377 5.48406 16.4146 5.06989C15.6916 4.65573 15.0309 4.37248 14.4325 4.22014C13.8258 4.06304 13.2772 4.00116 12.7869 4.03448C12.3049 4.06304 11.8685 4.15111 11.4779 4.29869C11.079 4.4415 10.7258 4.60098 10.4183 4.77712L6.42901 7.06217ZM14.8314 7.5763L13.2357 8.49032L10.518 6.93363L12.1262 6.01247C12.309 5.90774 12.5085 5.85062 12.7246 5.8411C12.9323 5.82681 13.165 5.86014 13.4227 5.94107C13.6803 6.01247 13.9629 6.13625 14.2704 6.31239C14.5945 6.49805 14.8272 6.66466 14.9685 6.81224C15.1098 6.95982 15.168 7.09787 15.1431 7.2264C15.1264 7.35018 15.0226 7.46681 14.8314 7.5763Z\" fill=\"#0C2555\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oervmb\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:88,layoutDependency:layoutDependency,layoutId:\"RjpxriLoj\",svg:'<svg width=\"88\" height=\"21\" viewBox=\"-1 -1 88 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0738525 18.584V0.775972H7.81431C8.41097 0.775972 9.02376 0.847972 9.65267 0.991972C10.2816 1.11997 10.8541 1.39197 11.3701 1.80797C11.9022 2.22397 12.3296 2.85597 12.6521 3.70397C12.9746 4.53597 13.1359 5.64797 13.1359 7.03997C13.1359 8.43197 12.9746 9.55997 12.6521 10.424C12.3296 11.272 11.9103 11.912 11.3943 12.344C10.8944 12.776 10.3461 13.072 9.74942 13.232C9.15276 13.376 8.57223 13.448 8.00782 13.448C7.71755 13.448 7.39503 13.432 7.04026 13.4C6.68549 13.368 6.33072 13.328 5.97595 13.28C5.62118 13.232 5.2906 13.184 4.98421 13.136C4.69394 13.072 4.45205 13.032 4.25854 13.016V18.584H0.0738525ZM4.25854 9.72797H7.35472C7.72562 9.72797 8.02395 9.63197 8.24971 9.43997C8.4916 9.24797 8.66898 8.95997 8.78187 8.57597C8.89475 8.19197 8.95119 7.68797 8.95119 7.06397C8.95119 6.47197 8.88668 5.99197 8.75768 5.62397C8.6448 5.23997 8.47547 4.95997 8.24971 4.78397C8.02395 4.59197 7.73368 4.49597 7.37891 4.49597H4.25854V9.72797Z\" fill=\"#212532\"/>\\n<path d=\"M15.0451 18.584V5.67197H18.2864L19.2298 7.54397C19.6491 6.98397 20.1328 6.50397 20.6811 6.10397C21.2294 5.68797 21.8825 5.47997 22.6404 5.47997C22.7856 5.47997 22.9468 5.48797 23.1242 5.50397C23.3177 5.51997 23.4951 5.55197 23.6564 5.59997V9.84797C23.3983 9.81597 23.1323 9.79197 22.8581 9.77597C22.584 9.75997 22.326 9.75197 22.0841 9.75197C21.6648 9.75197 21.2778 9.79997 20.923 9.89597C20.5844 9.97597 20.2699 10.104 19.9796 10.28C19.7055 10.44 19.4555 10.656 19.2298 10.928V18.584H15.0451Z\" fill=\"#212532\"/>\\n<path d=\"M31.1007 18.704C29.988 18.704 29.0366 18.592 28.2464 18.368C27.4723 18.128 26.8434 17.752 26.3597 17.24C25.8759 16.712 25.5292 16.032 25.3195 15.2C25.1099 14.352 25.0051 13.32 25.0051 12.104C25.0051 10.792 25.1099 9.71197 25.3195 8.86397C25.5453 7.99997 25.9001 7.31997 26.3838 6.82397C26.8676 6.32797 27.4965 5.97597 28.2706 5.76797C29.0608 5.55997 30.0041 5.45597 31.1007 5.45597C32.2295 5.45597 33.1809 5.56797 33.955 5.79197C34.729 5.99997 35.3499 6.35997 35.8175 6.87197C36.3013 7.36797 36.6561 8.04797 36.8818 8.91197C37.1076 9.75997 37.2205 10.824 37.2205 12.104C37.2205 13.368 37.1157 14.424 36.906 15.272C36.6964 16.12 36.3497 16.8 35.8659 17.312C35.3983 17.808 34.7693 18.168 33.9792 18.392C33.2051 18.6 32.2456 18.704 31.1007 18.704ZM31.1007 15.416C31.4716 15.416 31.778 15.384 32.0199 15.32C32.2618 15.24 32.4553 15.096 32.6004 14.888C32.7455 14.664 32.8503 14.328 32.9149 13.88C32.9955 13.432 33.0358 12.832 33.0358 12.08C33.0358 11.328 32.9955 10.728 32.9149 10.28C32.8503 9.83197 32.7455 9.50397 32.6004 9.29597C32.4553 9.07197 32.2618 8.92797 32.0199 8.86397C31.778 8.79997 31.4716 8.76797 31.1007 8.76797C30.7459 8.76797 30.4476 8.79997 30.2057 8.86397C29.9638 8.92797 29.7622 9.07197 29.601 9.29597C29.4558 9.50397 29.351 9.83197 29.2865 10.28C29.222 10.728 29.1898 11.328 29.1898 12.08C29.1898 12.832 29.222 13.432 29.2865 13.88C29.351 14.328 29.4558 14.664 29.601 14.888C29.7622 15.096 29.9638 15.24 30.2057 15.32C30.4476 15.384 30.7459 15.416 31.1007 15.416Z\" fill=\"#212532\"/>\\n<path d=\"M43.5627 18.728C42.5629 18.728 41.7163 18.52 41.0229 18.104C40.3295 17.688 39.8054 17.008 39.4506 16.064C39.0958 15.12 38.9184 13.856 38.9184 12.272C38.9184 10.672 39.0636 9.37597 39.3538 8.38397C39.6441 7.39197 40.144 6.65597 40.8535 6.17597C41.5631 5.69597 42.5468 5.45597 43.8046 5.45597C44.3529 5.45597 44.9012 5.51197 45.4494 5.62397C45.9977 5.73597 46.4815 5.86397 46.9008 6.00797V0.271973H51.0855V18.584H47.5539L46.9008 17.384C46.6105 17.64 46.2799 17.872 45.909 18.08C45.5543 18.288 45.1753 18.448 44.7722 18.56C44.3851 18.672 43.982 18.728 43.5627 18.728ZM45.0624 15.416C45.4656 15.416 45.8203 15.352 46.1267 15.224C46.4493 15.096 46.7073 14.96 46.9008 14.816V9.00797C46.675 8.91197 46.4089 8.81597 46.1025 8.71997C45.8123 8.60797 45.5139 8.55197 45.2076 8.55197C44.6915 8.55197 44.2803 8.63997 43.9739 8.81597C43.6675 8.99197 43.4418 9.33597 43.2966 9.84797C43.1676 10.344 43.1031 11.08 43.1031 12.056C43.1031 13 43.1596 13.712 43.2724 14.192C43.4014 14.672 43.6111 15 43.9014 15.176C44.2077 15.336 44.5948 15.416 45.0624 15.416Z\" fill=\"#212532\"/>\\n<path d=\"M60.9138 18.704C59.914 18.704 58.9787 18.624 58.1079 18.464C57.2532 18.304 56.4953 18.008 55.8341 17.576C55.173 17.144 54.657 16.544 54.2861 15.776C53.9313 14.992 53.7539 13.992 53.7539 12.776V0.775972H57.9386V12.752C57.9386 13.28 58.0515 13.712 58.2772 14.048C58.5191 14.368 58.8578 14.608 59.2932 14.768C59.7447 14.912 60.2849 14.984 60.9138 14.984C61.5266 14.984 62.0507 14.912 62.4861 14.768C62.9376 14.608 63.2763 14.368 63.502 14.048C63.7439 13.712 63.8649 13.28 63.8649 12.752V0.775972H68.0495V12.776C68.0495 13.992 67.8641 14.992 67.4932 15.776C67.1384 16.544 66.6305 17.144 65.9693 17.576C65.3081 18.008 64.5502 18.304 63.6955 18.464C62.8409 18.624 61.9136 18.704 60.9138 18.704Z\" fill=\"#20EE8B\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.0177 13.1398L80.4267 18.584H85.0468L79.5675 9.85267L85.1436 0.775972H80.5477L77.3924 6.38662L73.8715 0.775972H69.2756L74.8288 9.64423L69.3482 18.584H73.9441L77.0177 13.1398ZM77.3924 6.38662L76.8226 7.39997L78.9512 10.856L79.5675 9.85267L77.3924 6.38662Z\" fill=\"#20EE8B\"/>\\n<path d=\"M76.8226 7.39997L78.9512 10.856L79.5675 9.85267L77.3924 6.38662L76.8226 7.39997Z\" fill=\"#20EE8B\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-scexau\",\"data-framer-name\":\"links\",layoutDependency:layoutDependency,layoutId:\"I85:356;85:81\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":AsG2B1hDZ\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fx8w4w framer-1dwjryp\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"I85:356;85:485\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"About\"})})}),className:\"framer-1wa2sa5\",\"data-framer-name\":\"About\",fonts:[\"GF;Exo-700\"],layoutDependency:layoutDependency,layoutId:\"I85:356;85:486\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\"},variants:{U55tpRvBF:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"},W1ITXFaKV:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({U55tpRvBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"About\"})}),transformTemplate:transformTemplate1},W1ITXFaKV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"About\"})})},Zz5_4PVuS:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":kwkSlqv_B\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rl9xrf framer-1dwjryp\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"I85:356;85:84\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Services\"})})}),className:\"framer-te6ex0\",\"data-framer-name\":\"Services\",fonts:[\"GF;Exo-700\"],layoutDependency:layoutDependency,layoutId:\"I85:356;85:85\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\"},variants:{U55tpRvBF:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"},W1ITXFaKV:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({U55tpRvBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"Services\"})}),transformTemplate:transformTemplate1},W1ITXFaKV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"Services\"})})},Zz5_4PVuS:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":ViuXsreZw\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-u40fsu framer-1dwjryp\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"I85:356;85:86\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Case Studies\"})}),className:\"framer-1vjagt6\",\"data-framer-name\":\"Portfolio\",fonts:[\"GF;Exo-700\"],layoutDependency:layoutDependency,layoutId:\"I85:356;85:87\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},variants:{U55tpRvBF:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"},W1ITXFaKV:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({U55tpRvBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"Case Studies\"})}),transformTemplate:transformTemplate1},W1ITXFaKV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"Case Studies\"})})},Zz5_4PVuS:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":XhxOP_a8J\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1n3vhkl framer-1dwjryp\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"I85:356;85:247\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"FAQs\"})})}),className:\"framer-1l9yq6m\",\"data-framer-name\":\"FAQs\",fonts:[\"GF;Exo-700\"],layoutDependency:layoutDependency,layoutId:\"I85:356;85:248\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\"},variants:{U55tpRvBF:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"},W1ITXFaKV:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({U55tpRvBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"FAQs\"})}),transformTemplate:transformTemplate1},W1ITXFaKV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"FAQs\"})})},Zz5_4PVuS:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":OoZRTocqQ\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1v195rt framer-1dwjryp\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"I85:356;85:88\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Reach Us\"})})}),className:\"framer-1y98mni\",\"data-framer-name\":\"Reach Us\",fonts:[\"GF;Exo-700\"],layoutDependency:layoutDependency,layoutId:\"I85:356;85:89\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\"},variants:{U55tpRvBF:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"},W1ITXFaKV:{\"--extracted-r6o4lv\":\"var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({U55tpRvBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"Reach Us\"})}),transformTemplate:transformTemplate1},W1ITXFaKV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb3915d7-7aa0-4863-b8a2-a7dd63f547bb, rgb(33, 37, 50)))\"},children:\"Reach Us\"})})},Zz5_4PVuS:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uPRsu.framer-1dwjryp, .framer-uPRsu .framer-1dwjryp { display: block; }\",\".framer-uPRsu.framer-ahniiv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 50px 20px 50px; position: relative; width: 1100px; }\",\".framer-uPRsu .framer-1k7aw30 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uPRsu .framer-1f1v9ld { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; text-decoration: none; width: min-content; }\",\".framer-uPRsu .framer-1cks496, .framer-uPRsu .framer-7bqglu { aspect-ratio: 4.004788716634114 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 120px; }\",\".framer-uPRsu .framer-1wlqjac, .framer-uPRsu .framer-1x7q2fn { aspect-ratio: 1.007871945699056 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 30px; left: 0px; overflow: visible; position: absolute; right: 90px; top: 0px; }\",\".framer-uPRsu .framer-1dlrz6l, .framer-uPRsu .framer-fuuiel { aspect-ratio: 1.007871945699056 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 30px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-uPRsu .framer-11in3g4, .framer-uPRsu .framer-1a5nko0 { flex: none; height: 31px; left: 1px; position: absolute; top: 0px; width: 28px; }\",\".framer-uPRsu .framer-lwngys { bottom: 7px; flex: none; left: 34px; position: absolute; right: 1px; top: 5px; }\",\".framer-uPRsu .framer-1oervmb { bottom: 7px; flex: none; left: 34px; position: absolute; right: 1px; top: 4px; }\",\".framer-uPRsu .framer-scexau { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; overflow: visible; padding: 10px; position: relative; width: 1px; }\",\".framer-uPRsu .framer-fx8w4w, .framer-uPRsu .framer-rl9xrf, .framer-uPRsu .framer-u40fsu, .framer-uPRsu .framer-1n3vhkl, .framer-uPRsu .framer-1v195rt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; text-decoration: none; width: min-content; }\",\".framer-uPRsu .framer-1wa2sa5, .framer-uPRsu .framer-te6ex0, .framer-uPRsu .framer-1vjagt6, .framer-uPRsu .framer-1l9yq6m, .framer-uPRsu .framer-1y98mni { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uPRsu.framer-ahniiv, .framer-uPRsu .framer-1k7aw30, .framer-uPRsu .framer-1f1v9ld, .framer-uPRsu .framer-scexau, .framer-uPRsu .framer-fx8w4w, .framer-uPRsu .framer-rl9xrf, .framer-uPRsu .framer-u40fsu, .framer-uPRsu .framer-1n3vhkl, .framer-uPRsu .framer-1v195rt { gap: 0px; } .framer-uPRsu.framer-ahniiv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-uPRsu.framer-ahniiv > :first-child { margin-top: 0px; } .framer-uPRsu.framer-ahniiv > :last-child { margin-bottom: 0px; } .framer-uPRsu .framer-1k7aw30 > *, .framer-uPRsu .framer-scexau > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-uPRsu .framer-1k7aw30 > :first-child, .framer-uPRsu .framer-1f1v9ld > :first-child, .framer-uPRsu .framer-scexau > :first-child, .framer-uPRsu .framer-fx8w4w > :first-child, .framer-uPRsu .framer-rl9xrf > :first-child, .framer-uPRsu .framer-u40fsu > :first-child, .framer-uPRsu .framer-1n3vhkl > :first-child, .framer-uPRsu .framer-1v195rt > :first-child { margin-left: 0px; } .framer-uPRsu .framer-1k7aw30 > :last-child, .framer-uPRsu .framer-1f1v9ld > :last-child, .framer-uPRsu .framer-scexau > :last-child, .framer-uPRsu .framer-fx8w4w > :last-child, .framer-uPRsu .framer-rl9xrf > :last-child, .framer-uPRsu .framer-u40fsu > :last-child, .framer-uPRsu .framer-1n3vhkl > :last-child, .framer-uPRsu .framer-1v195rt > :last-child { margin-right: 0px; } .framer-uPRsu .framer-1f1v9ld > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-uPRsu .framer-fx8w4w > *, .framer-uPRsu .framer-rl9xrf > *, .framer-uPRsu .framer-u40fsu > *, .framer-uPRsu .framer-1n3vhkl > *, .framer-uPRsu .framer-1v195rt > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-uPRsu.framer-v-if5yqg .framer-7bqglu, .framer-uPRsu.framer-v-if5yqg .framer-1wa2sa5, .framer-uPRsu.framer-v-13y8jyx .framer-7bqglu { order: 0; }\",\".framer-uPRsu.framer-v-19yuyak.framer-ahniiv, .framer-uPRsu.framer-v-13y8jyx.framer-ahniiv { justify-content: flex-start; padding: 10px 20px 10px 20px; }\",\".framer-uPRsu.framer-v-19yuyak .framer-1k7aw30, .framer-uPRsu.framer-v-13y8jyx .framer-1k7aw30 { flex-direction: column; gap: 10px; }\",\".framer-uPRsu.framer-v-19yuyak .framer-scexau { align-content: flex-start; align-items: flex-start; flex: none; gap: unset; justify-content: space-evenly; overflow: auto; padding: 0px; width: 100%; }\",\".framer-uPRsu.framer-v-19yuyak .framer-fx8w4w { display: block; height: 40px; padding: unset; width: 95px; }\",\".framer-uPRsu.framer-v-19yuyak .framer-1wa2sa5 { left: 49%; position: absolute; top: 50%; }\",\".framer-uPRsu.framer-v-19yuyak .framer-rl9xrf { display: block; height: 40px; padding: unset; width: 113px; }\",\".framer-uPRsu.framer-v-19yuyak .framer-te6ex0, .framer-uPRsu.framer-v-19yuyak .framer-1l9yq6m, .framer-uPRsu.framer-v-19yuyak .framer-1y98mni { left: 50%; position: absolute; top: 50%; }\",\".framer-uPRsu.framer-v-19yuyak .framer-u40fsu, .framer-uPRsu.framer-v-13y8jyx .framer-u40fsu { display: block; height: 39px; padding: unset; width: 116px; }\",\".framer-uPRsu.framer-v-19yuyak .framer-1vjagt6, .framer-uPRsu.framer-v-13y8jyx .framer-te6ex0, .framer-uPRsu.framer-v-13y8jyx .framer-1vjagt6, .framer-uPRsu.framer-v-13y8jyx .framer-1l9yq6m, .framer-uPRsu.framer-v-13y8jyx .framer-1y98mni { left: 50%; position: absolute; top: 49%; }\",\".framer-uPRsu.framer-v-19yuyak .framer-1n3vhkl { display: block; height: 40px; padding: unset; width: 88px; }\",\".framer-uPRsu.framer-v-19yuyak .framer-1v195rt { display: block; height: 40px; padding: unset; width: 118px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uPRsu.framer-v-19yuyak .framer-1k7aw30, .framer-uPRsu.framer-v-19yuyak .framer-scexau, .framer-uPRsu.framer-v-19yuyak .framer-fx8w4w, .framer-uPRsu.framer-v-19yuyak .framer-rl9xrf, .framer-uPRsu.framer-v-19yuyak .framer-u40fsu, .framer-uPRsu.framer-v-19yuyak .framer-1n3vhkl, .framer-uPRsu.framer-v-19yuyak .framer-1v195rt { gap: 0px; } .framer-uPRsu.framer-v-19yuyak .framer-1k7aw30 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-uPRsu.framer-v-19yuyak .framer-1k7aw30 > :first-child { margin-top: 0px; } .framer-uPRsu.framer-v-19yuyak .framer-1k7aw30 > :last-child { margin-bottom: 0px; } .framer-uPRsu.framer-v-19yuyak .framer-scexau > *, .framer-uPRsu.framer-v-19yuyak .framer-scexau > :first-child, .framer-uPRsu.framer-v-19yuyak .framer-scexau > :last-child, .framer-uPRsu.framer-v-19yuyak .framer-fx8w4w > *, .framer-uPRsu.framer-v-19yuyak .framer-fx8w4w > :first-child, .framer-uPRsu.framer-v-19yuyak .framer-fx8w4w > :last-child, .framer-uPRsu.framer-v-19yuyak .framer-rl9xrf > *, .framer-uPRsu.framer-v-19yuyak .framer-rl9xrf > :first-child, .framer-uPRsu.framer-v-19yuyak .framer-rl9xrf > :last-child, .framer-uPRsu.framer-v-19yuyak .framer-u40fsu > *, .framer-uPRsu.framer-v-19yuyak .framer-u40fsu > :first-child, .framer-uPRsu.framer-v-19yuyak .framer-u40fsu > :last-child, .framer-uPRsu.framer-v-19yuyak .framer-1n3vhkl > *, .framer-uPRsu.framer-v-19yuyak .framer-1n3vhkl > :first-child, .framer-uPRsu.framer-v-19yuyak .framer-1n3vhkl > :last-child, .framer-uPRsu.framer-v-19yuyak .framer-1v195rt > *, .framer-uPRsu.framer-v-19yuyak .framer-1v195rt > :first-child, .framer-uPRsu.framer-v-19yuyak .framer-1v195rt > :last-child { margin: 0px; } }\",\".framer-uPRsu.framer-v-13y8jyx .framer-scexau { flex: none; gap: unset; justify-content: space-evenly; overflow: auto; padding: 0px; width: 100%; }\",\".framer-uPRsu.framer-v-13y8jyx .framer-fx8w4w { display: block; height: 39px; padding: unset; width: 95px; }\",\".framer-uPRsu.framer-v-13y8jyx .framer-1wa2sa5 { left: 49%; position: absolute; top: 49%; }\",\".framer-uPRsu.framer-v-13y8jyx .framer-rl9xrf { display: block; height: 39px; padding: unset; width: 113px; }\",\".framer-uPRsu.framer-v-13y8jyx .framer-1n3vhkl { display: block; height: 39px; padding: unset; width: 88px; }\",\".framer-uPRsu.framer-v-13y8jyx .framer-1v195rt { display: block; height: 39px; padding: unset; width: 118px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uPRsu.framer-v-13y8jyx .framer-1k7aw30, .framer-uPRsu.framer-v-13y8jyx .framer-scexau, .framer-uPRsu.framer-v-13y8jyx .framer-fx8w4w, .framer-uPRsu.framer-v-13y8jyx .framer-rl9xrf, .framer-uPRsu.framer-v-13y8jyx .framer-u40fsu, .framer-uPRsu.framer-v-13y8jyx .framer-1n3vhkl, .framer-uPRsu.framer-v-13y8jyx .framer-1v195rt { gap: 0px; } .framer-uPRsu.framer-v-13y8jyx .framer-1k7aw30 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-uPRsu.framer-v-13y8jyx .framer-1k7aw30 > :first-child { margin-top: 0px; } .framer-uPRsu.framer-v-13y8jyx .framer-1k7aw30 > :last-child { margin-bottom: 0px; } .framer-uPRsu.framer-v-13y8jyx .framer-scexau > *, .framer-uPRsu.framer-v-13y8jyx .framer-scexau > :first-child, .framer-uPRsu.framer-v-13y8jyx .framer-scexau > :last-child, .framer-uPRsu.framer-v-13y8jyx .framer-fx8w4w > *, .framer-uPRsu.framer-v-13y8jyx .framer-fx8w4w > :first-child, .framer-uPRsu.framer-v-13y8jyx .framer-fx8w4w > :last-child, .framer-uPRsu.framer-v-13y8jyx .framer-rl9xrf > *, .framer-uPRsu.framer-v-13y8jyx .framer-rl9xrf > :first-child, .framer-uPRsu.framer-v-13y8jyx .framer-rl9xrf > :last-child, .framer-uPRsu.framer-v-13y8jyx .framer-u40fsu > *, .framer-uPRsu.framer-v-13y8jyx .framer-u40fsu > :first-child, .framer-uPRsu.framer-v-13y8jyx .framer-u40fsu > :last-child, .framer-uPRsu.framer-v-13y8jyx .framer-1n3vhkl > *, .framer-uPRsu.framer-v-13y8jyx .framer-1n3vhkl > :first-child, .framer-uPRsu.framer-v-13y8jyx .framer-1n3vhkl > :last-child, .framer-uPRsu.framer-v-13y8jyx .framer-1v195rt > *, .framer-uPRsu.framer-v-13y8jyx .framer-1v195rt > :first-child, .framer-uPRsu.framer-v-13y8jyx .framer-1v195rt > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"W1ITXFaKV\":{\"layout\":[\"fixed\",\"auto\"]},\"Zz5_4PVuS\":{\"layout\":[\"fixed\",\"auto\"]},\"U55tpRvBF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTi6Mt9vd0=withCSS(Component,css,\"framer-uPRsu\");export default FramerTi6Mt9vd0;FramerTi6Mt9vd0.displayName=\"Header\";FramerTi6Mt9vd0.defaultProps={height:100,width:1100};addPropertyControls(FramerTi6Mt9vd0,{variant:{options:[\"N3Al_Izcn\",\"W1ITXFaKV\",\"Zz5_4PVuS\",\"U55tpRvBF\"],optionTitles:[\"Dark\",\"Light\",\"Dark-mobile\",\"Light-mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTi6Mt9vd0,[{explicitInter:true,fonts:[{family:\"Exo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwZsOl4p5Is.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTi6Mt9vd0\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"100\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W1ITXFaKV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zz5_4PVuS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U55tpRvBF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1100\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ti6Mt9vd0.map", "// Generated by Framer (d2720d0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"LUW7jdA2y\",\"j7eXFrPlY\"];const serializationHash=\"framer-Vur59\";const variantClassNames={j7eXFrPlY:\"framer-v-rd8197\",LUW7jdA2y:\"framer-v-earkk2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"LUW7jdA2y\",Open:\"j7eXFrPlY\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"LUW7jdA2y\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LUW7jdA2y\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapubctbe=activeVariantCallback(async(...args)=>{setVariant(\"j7eXFrPlY\");});const onTapsn035j=activeVariantCallback(async(...args)=>{setVariant(\"LUW7jdA2y\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"j7eXFrPlY\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-earkk2\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"LUW7jdA2y\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-db42ae53-ac58-44f5-b081-cc2f5d723485, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",...style},...addPropertyOverrides({j7eXFrPlY:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e58tvz\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sgW8JGFUy\",onTap:onTapubctbe,...addPropertyOverrides({j7eXFrPlY:{onTap:onTapsn035j}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-3h9qfc\",fonts:[\"GF;Exo-700\"],layoutDependency:layoutDependency,layoutId:\"XiUvTdisP\",style:{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10w9usp\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"U_IkU5uAU\",style:{rotate:0},variants:{j7eXFrPlY:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-101bwyr\",layoutDependency:layoutDependency,layoutId:\"W2nl7ytHc\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mlfpux\",layoutDependency:layoutDependency,layoutId:\"NYzXXjinW\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-n8e5yt\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"rtiM2pfpk\",style:{opacity:0},variants:{j7eXFrPlY:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-dvits8\",fonts:[\"GF;Exo-regular\"],layoutDependency:layoutDependency,layoutId:\"dtaLRU7_L\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.6},text:T8rQFvSBR,variants:{j7eXFrPlY:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vur59.framer-1m9rcdz, .framer-Vur59 .framer-1m9rcdz { display: block; }\",\".framer-Vur59.framer-earkk2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-Vur59 .framer-1e58tvz { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 60px 20px 20px; position: relative; user-select: none; width: 100%; }\",\".framer-Vur59 .framer-3h9qfc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Vur59 .framer-10w9usp { flex: none; height: 16px; overflow: hidden; position: absolute; right: 20px; top: 25px; width: 16px; }\",\".framer-Vur59 .framer-101bwyr { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-Vur59 .framer-1mlfpux { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-Vur59 .framer-n8e5yt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 20px 20px; position: relative; width: 100%; }\",\".framer-Vur59 .framer-dvits8 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vur59.framer-earkk2, .framer-Vur59 .framer-1e58tvz, .framer-Vur59 .framer-n8e5yt { gap: 0px; } .framer-Vur59.framer-earkk2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Vur59.framer-earkk2 > :first-child, .framer-Vur59 .framer-n8e5yt > :first-child { margin-top: 0px; } .framer-Vur59.framer-earkk2 > :last-child, .framer-Vur59 .framer-n8e5yt > :last-child { margin-bottom: 0px; } .framer-Vur59 .framer-1e58tvz > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Vur59 .framer-1e58tvz > :first-child { margin-left: 0px; } .framer-Vur59 .framer-1e58tvz > :last-child { margin-right: 0px; } .framer-Vur59 .framer-n8e5yt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Vur59.framer-v-rd8197 .framer-dvits8 { -webkit-user-select: unset; user-select: unset; }\",'.framer-Vur59[data-border=\"true\"]::after, .framer-Vur59 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 112\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"j7eXFrPlY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framercolg4dnkP=withCSS(Component,css,\"framer-Vur59\");export default Framercolg4dnkP;Framercolg4dnkP.displayName=\"Row\";Framercolg4dnkP.defaultProps={height:112,width:400};addPropertyControls(Framercolg4dnkP,{variant:{options:[\"LUW7jdA2y\",\"j7eXFrPlY\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(Framercolg4dnkP,[{explicitInter:true,fonts:[{family:\"Exo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwZsOl4p5Is.woff2\",weight:\"700\"},{family:\"Exo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwZsOl4p5Is.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framercolg4dnkP\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j7eXFrPlY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./colg4dnkP.map", "// Generated by Framer (e074804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/87U8VgguXerR8V1it7pJ/Fv0w4YW4jd6OjzXSukUA/colg4dnkP.js\";const RowFonts=getFonts(Row);const cycleOrder=[\"bUGaExB3H\"];const serializationHash=\"framer-gm3TF\";const variantClassNames={bUGaExB3H:\"framer-v-w7b6le\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bUGaExB3H\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w7b6le\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bUGaExB3H\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hy8wmj-container\",layoutDependency:layoutDependency,layoutId:\"gjJQNomKl-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"gjJQNomKl\",layoutId:\"gjJQNomKl\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, through our Equity Partnership Model, we offer eligible product ideas a unique opportunity to enter into a collaborative partnership with us. Instead of traditional payment methods, we become partners in your venture by exchanging shares. This arrangement demonstrates our commitment to your success and aligns our interests for long-term growth.\\n\",variant:\"LUW7jdA2y\",W88zB8mIG:\"Do you offer UX/Product design services in exchange for shares?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-srhvfh-container\",layoutDependency:layoutDependency,layoutId:\"A5k56eFoq-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"A5k56eFoq\",layoutId:\"A5k56eFoq\",style:{width:\"100%\"},T8rQFvSBR:\"The Equity Partnership Model goes beyond providing UX/Product design services. As partners, we are fully invested in your venture's success. You gain not only our expertise and exceptional design services but also benefit from our shared ownership, guidance, and support. We work closely with you to elevate your idea and maximize its potential.\",variant:\"LUW7jdA2y\",W88zB8mIG:\"What are the benefits of the Equity Partnership Model?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5idhy3-container\",layoutDependency:layoutDependency,layoutId:\"MsfyfxPyY-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"MsfyfxPyY\",layoutId:\"MsfyfxPyY\",style:{width:\"100%\"},T8rQFvSBR:\"We carefully evaluate each product idea to ensure it aligns with our criteria for eligibility. While we consider various factors, such as market potential and scalability, the most crucial aspect is the unique value proposition of your idea. We look for innovative concepts that have the potential to disrupt industries or solve significant problems. If you believe your idea has what it takes to make an impact, we encourage you to reach out to us. Our team will assess its eligibility and discuss the possibilities of an Equity Partnership.\",variant:\"LUW7jdA2y\",W88zB8mIG:\"How do I determine if my product idea is eligible for the Equity Partnership model?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a1g0k0-container\",layoutDependency:layoutDependency,layoutId:\"APL2HW2Zv-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"APL2HW2Zv\",layoutId:\"APL2HW2Zv\",style:{width:\"100%\"},T8rQFvSBR:\"Absolutely. We understand that the Equity Partnership Model may not be the right fit for everyone. If you prefer not to engage in a share-based partnership, we offer alternative options to suit your needs. You can opt for our retainer model, where you can access our services and expertise while maintaining full ownership and control of your venture.\",variant:\"LUW7jdA2y\",W88zB8mIG:\"Can I choose to not partner with you for shares?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y19jcl-container\",layoutDependency:layoutDependency,layoutId:\"KHiPaJfeb-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"KHiPaJfeb\",layoutId:\"KHiPaJfeb\",style:{width:\"100%\"},T8rQFvSBR:\"Regardless of the payment model you choose, our deliverables remain the same. We are committed to providing you with a working prototype and Figma files with comprehensive style guides. These valuable assets empower you to bring your digital product to life and showcase your vision to investors and stakeholders.\",variant:\"LUW7jdA2y\",W88zB8mIG:\"What deliverables can I expect from your services under the Equity Partnership Model?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lye0fw-container\",layoutDependency:layoutDependency,layoutId:\"UdB6rTUCJ-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"UdB6rTUCJ\",layoutId:\"UdB6rTUCJ\",style:{width:\"100%\"},T8rQFvSBR:\"Once you have selected the Equity Partnership Model, we encourage a mutual commitment to honor the partnership. The nature of this model requires a shared commitment and long-term collaboration. However, if circumstances arise that necessitate a change, we are open to discussing alternative arrangements to ensure a successful and mutually beneficial partnership.\",variant:\"LUW7jdA2y\",W88zB8mIG:\"Can I switch from the Equity Partnership Model to another payment model later?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-177tc77-container\",layoutDependency:layoutDependency,layoutId:\"BL8Hs5Avx-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"BL8Hs5Avx\",layoutId:\"BL8Hs5Avx\",style:{width:\"100%\"},T8rQFvSBR:\"The retainer model is a flexible payment option that allows you to subscribe to our services on an ongoing basis. It provides you with access to our expertise and support whenever you need it, without the commitment of a long-term contract.\",variant:\"LUW7jdA2y\",W88zB8mIG:\"What is the retainer model?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kz1mhu-container\",layoutDependency:layoutDependency,layoutId:\"fAuoKTFjG-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"fAuoKTFjG\",layoutId:\"fAuoKTFjG\",style:{width:\"100%\"},T8rQFvSBR:\"The retainer model works by subscribing to a predetermined number of hours or resources per month. These hours or resources are reserved exclusively for your projects. You can utilize the retainer hours based on your requirements, whether it's for UX research, product design, or brand development.\\n\",variant:\"LUW7jdA2y\",W88zB8mIG:\"How does the retainer model work?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ai4t8w-container\",layoutDependency:layoutDependency,layoutId:\"rhyuVARZm-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"rhyuVARZm\",layoutId:\"rhyuVARZm\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, we understand that project priorities and resource requirements may vary over time. With the retainer model, you have the flexibility to adjust the number of retainer hours on a monthly basis. This allows you to scale up or down as needed, ensuring that you have the right level of support for your projects.\",variant:\"LUW7jdA2y\",W88zB8mIG:\"Can I adjust the retainer hours based on my changing needs?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z8362w-container\",layoutDependency:layoutDependency,layoutId:\"g0O3OYU_x-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"g0O3OYU_x\",layoutId:\"g0O3OYU_x\",style:{width:\"100%\"},T8rQFvSBR:\"The retainer fees are structured based on the number of retainer hours or resources agreed upon in your retainer contract. We work closely with you to define a retainer plan that aligns with your specific needs and budget. Our goal is to provide transparent pricing and deliver exceptional value through our retainer services.\",variant:\"LUW7jdA2y\",W88zB8mIG:\"How are the retainer fees structured?\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gm3TF.framer-tn81tk, .framer-gm3TF .framer-tn81tk { display: block; }\",\".framer-gm3TF.framer-w7b6le { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-gm3TF .framer-hy8wmj-container, .framer-gm3TF .framer-srhvfh-container, .framer-gm3TF .framer-5idhy3-container, .framer-gm3TF .framer-1a1g0k0-container, .framer-gm3TF .framer-y19jcl-container, .framer-gm3TF .framer-1lye0fw-container, .framer-gm3TF .framer-177tc77-container, .framer-gm3TF .framer-kz1mhu-container, .framer-gm3TF .framer-1ai4t8w-container, .framer-gm3TF .framer-z8362w-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gm3TF.framer-w7b6le { gap: 0px; } .framer-gm3TF.framer-w7b6le > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gm3TF.framer-w7b6le > :first-child { margin-top: 0px; } .framer-gm3TF.framer-w7b6le > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 730\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzKitQ3Qb1=withCSS(Component,css,\"framer-gm3TF\");export default FramerzKitQ3Qb1;FramerzKitQ3Qb1.displayName=\"Accordion\";FramerzKitQ3Qb1.defaultProps={height:730,width:1e3};addFonts(FramerzKitQ3Qb1,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzKitQ3Qb1\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerIntrinsicHeight\":\"730\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (46f1e3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import Header from\"#framer/local/canvasComponent/Ti6Mt9vd0/Ti6Mt9vd0.js\";import Accordion from\"#framer/local/canvasComponent/zKitQ3Qb1/zKitQ3Qb1.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const MotionDivWithFX=withFX(motion.div);const CarouselFonts=getFonts(Carousel);const AccordionFonts=getFonts(Accordion);const cycleOrder=[\"WQLkyLRf1\",\"GdosQQyrL\",\"tBxrAHNuJ\"];const breakpoints={GdosQQyrL:\"(min-width: 810px) and (max-width: 1199px)\",tBxrAHNuJ:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-0wc1D\";const variantClassNames={GdosQQyrL:\"framer-v-dzmase\",tBxrAHNuJ:\"framer-v-yqzm3b\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"tBxrAHNuJ\",Tablet:\"GdosQQyrL\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-0wc1D`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-0wc1D`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const id=useRouteElementId(\"MD9N6lKbG\");const ref2=React.useRef(null);const id1=useRouteElementId(\"AsG2B1hDZ\");const ref3=React.useRef(null);const id2=useRouteElementId(\"kwkSlqv_B\");const ref4=React.useRef(null);const id3=useRouteElementId(\"ViuXsreZw\");const ref5=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"tBxrAHNuJ\")return!isBrowser();return true;};const isDisplayed1=()=>{if(baseVariant===\"tBxrAHNuJ\")return true;return!isBrowser();};const id4=useRouteElementId(\"XhxOP_a8J\");const ref6=React.useRef(null);const id5=useRouteElementId(\"OoZRTocqQ\");const ref7=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1de09vf-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tBxrAHNuJ:{variant:\"U55tpRvBF\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"Q9MWaMEQu\",layoutId:\"Q9MWaMEQu\",style:{width:\"100%\"},variant:\"W1ITXFaKV\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(Image,{as:\"section\",background:{alt:\"\",fit:\"fill\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/HEmvevMb5bMGVYDlcA27ByMQHoY.png\",srcSet:\"https://framerusercontent.com/images/HEmvevMb5bMGVYDlcA27ByMQHoY.png?scale-down-to=512 512w,https://framerusercontent.com/images/HEmvevMb5bMGVYDlcA27ByMQHoY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HEmvevMb5bMGVYDlcA27ByMQHoY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HEmvevMb5bMGVYDlcA27ByMQHoY.png 2884w\"},className:\"framer-2bxxd6\",\"data-framer-name\":\"Home\",id:id,name:\"Home\",ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u4z5m7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tBxrAHNuJ:{variant:\"Zz5_4PVuS\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"HHhlxHmFB\",layoutId:\"HHhlxHmFB\",style:{width:\"100%\"},variant:\"N3Al_Izcn\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkccdl\",\"data-framer-name\":\"Frame 30\",name:\"Frame 30\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tBxrAHNuJ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"From Idea to \"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"Immersive Prototype.\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"Elevating Your Concept's \"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"Impact At Zero Cost!\"})]}),viewBox:\"0 0 317 144\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"49px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"55px\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"From Idea to \"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"49px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"55px\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"Immersive Prototype.\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"49px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"55px\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"Elevating Your Concept's \"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"49px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"55px\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"Impact At Zero Cost!\"})]}),className:\"framer-9j48sr\",\"data-framer-name\":\"From Idea to Immersive Prototype. Elevating Your Concept's Impact At Zero Cost!\",fonts:[\"GF;Exo-700\"],name:\"From Idea to Immersive Prototype. Elevating Your Concept's Impact At Zero Cost!\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Empowering your idea to resonate with investors through an immersive user experience prototype, without any expenses on your part.\"})}),className:\"framer-epnhx5\",\"data-framer-name\":\"Empowering your idea to resonate with investors through an immersive user experience prototype, without any expenses on your part.\",fonts:[\"GF;Exo-regular\"],name:\"Empowering your idea to resonate with investors through an immersive user experience prototype, without any expenses on your part.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-kftsqp\",\"data-framer-name\":\"About\",id:id1,name:\"About\",ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nyr00j\",\"data-framer-name\":\"Frame 21\",name:\"Frame 21\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 162, 88)\"},children:\"Let's Elevate Your Idea Together.\"})}),className:\"framer-jca99v\",\"data-framer-name\":\"Let's Elevate Your Idea Together.\",fonts:[\"GF;Exo-700\"],name:\"Let's Elevate Your Idea Together.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(32, 37, 49)\"},children:\"Usability, Research, and Design for a Seamless Partnership\"})}),className:\"framer-14b3tuu\",\"data-framer-name\":\"Usability, Research, and Design for a Seamless Partnership\",fonts:[\"GF;Exo-regular\"],name:\"Usability, Research, and Design for a Seamless Partnership\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwrm5j\",\"data-framer-name\":\"Frame 31\",name:\"Frame 31\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"ProdUX \"}),\"is your trusted partner in transforming ideas into exceptional experiences. With expertise in usability, research and design, we offer a unique and committed partnership through our Equity Partnership Model.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:[\"In the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Equity Partnership Model\"}),\", we go beyond traditional service offerings. Instead of charging upfront fees, we offer our UX/Product design services in exchange for an equity stake in your venture. This demonstrates our commitment to your idea's growth and aligns our interests for the long term. This model is designed for eligible product ideas. For ideas that meet our criteria, you not only receive our expertise and guidance but also gain a dedicated team that is personally invested in the success of your venture.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:[\"If you're not yet ready to engage in an equity partnership, we also offer a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Retainer Model\"}),\" with a flexible monthly subscription. This model provides ongoing support and access to our expertise, allowing you to benefit from our services while retaining full ownership of your venture.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:\"At ProdUX, we prioritize your vision and collaborate closely with you throughout the journey. Let's join forces and create an extraordinary user experience that sets you apart. \"})]}),className:\"framer-vxastd\",\"data-framer-name\":\"ProdUX is your trusted partner in transforming ideas into exceptional experiences. With expertise in usability, research and design, we offer a unique and committed partnership through our Equity Partnership Model. In the Equity Partnership Model, we go beyond traditional service offerings. Instead of charging upfront fees, we offer our UX/Product design services in exchange for an equity stake in your venture. This demonstrates our commitment to your idea's growth and aligns our interests for the long term. This model is designed for eligible product ideas. For ideas that meet our criteria, you not only receive our expertise and guidance but also gain a dedicated team that is personally invested in the success of your venture. If you're not yet ready to engage in an equity partnership, we also offer a Retainer Model with a flexible monthly subscription. This model provides ongoing support and access to our expertise, allowing you to benefit from our services while retaining full ownership of your venture. At ProdUX, we prioritize your vision and collaborate closely with you throughout the journey. Let's join forces and create an extraordinary user experience that sets you apart.\",fonts:[\"GF;Exo-regular\",\"GF;Exo-700\"],name:\"ProdUX is your trusted partner in transforming ideas into exceptional experiences. With expertise in usability, research and design, we offer a unique and committed partnership through our Equity Partnership Model. In the Equity Partnership Model, we go beyond traditional service offerings. Instead of charging upfront fees, we offer our UX/Product design services in exchange for an equity stake in your venture. This demonstrates our commitment to your idea's growth and aligns our interests for the long term. This model is designed for eligible product ideas. For ideas that meet our criteria, you not only receive our expertise and guidance but also gain a dedicated team that is personally invested in the success of your venture. If you're not yet ready to engage in an equity partnership, we also offer a Retainer Model with a flexible monthly subscription. This model provides ongoing support and access to our expertise, allowing you to benefit from our services while retaining full ownership of your venture. At ProdUX, we prioritize your vision and collaborate closely with you throughout the journey. Let's join forces and create an extraordinary user experience that sets you apart.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dxx051\",\"data-framer-name\":\"Prototype Detail Animation\",name:\"Prototype Detail Animation\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.5,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-168f7nk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y0y15e\",\"data-framer-name\":\"Mask group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:181,intrinsicWidth:57,name:\"Mask group\",svg:'<svg width=\"57\" height=\"181\" viewBox=\"0 0 57 181\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.3389 127.777C39.2363 127.777 39.1337 127.809 39.0312 127.809C38.997 127.615 38.9286 127.421 38.8602 127.291H17.8654C17.797 127.453 17.7286 127.647 17.6944 127.809C17.5918 127.809 17.4892 127.777 17.3867 127.777C12.497 127.777 8.49634 152.74 8.49634 158.05C8.49634 163.392 12.497 167.698 17.3867 167.698H17.4209C17.4209 167.795 17.3867 167.893 17.3867 167.99C17.3867 171.648 19.8144 174.692 22.9944 175.372C23.3363 178.286 25.5589 180.552 28.3628 180.552C31.1667 180.552 33.3892 178.286 33.7312 175.372C36.9112 174.692 39.3389 171.648 39.3389 167.99C39.3389 167.893 39.3047 167.795 39.3047 167.698H39.3389C44.2286 167.698 48.2292 163.36 48.2292 158.05C48.2634 152.74 44.2628 127.777 39.3389 127.777Z\" fill=\"#D0D2D3\"/>\\n<path d=\"M55.8135 107.836C54.5158 104.917 50.9301 97.3635 47.7883 95.2744C47.1395 94.8458 46.3882 95.3815 46.3882 96.2386L46.4565 109.979C46.4565 110.729 46.5931 111.452 46.9005 112.148C48.4713 115.898 51.4765 124.871 55.472 128.54C55.9843 128.996 56.6673 128.567 56.5648 127.844L56.4624 110.22C56.3599 109.363 56.1209 108.586 55.8135 107.836ZM1.03747 107.836C2.33516 104.917 5.92088 97.3635 9.06265 95.2744C9.71149 94.8458 10.4628 95.3815 10.4628 96.2386L10.3945 109.979C10.3945 110.729 10.2579 111.452 9.95053 112.148C8.37965 115.898 5.37449 124.871 1.37898 128.54C0.866733 128.996 0.183734 128.567 0.286183 127.844L0.388635 110.22C0.491084 109.363 0.730127 108.586 1.03747 107.836Z\" fill=\"#08A358\"/>\\n<path d=\"M28.3629 119.097C31.9508 119.188 42.7491 147.011 42.7491 150.557C42.7491 154.103 39.8231 156.983 36.3049 156.983H36.2701C36.2701 157.043 36.3049 157.104 36.3049 157.165C36.3049 159.62 34.5284 161.62 32.2294 162.105C32.0204 164.045 30.3833 165.53 28.3629 165.53C26.3426 165.53 24.7054 164.045 24.4964 162.105C22.1974 161.62 20.421 159.62 20.421 157.165C20.421 157.104 20.4558 157.043 20.4558 156.983H20.421C16.9028 156.983 13.9768 154.103 13.9768 150.557C13.9768 147.011 24.7751 119.218 28.3629 119.097Z\" fill=\"#F1F1F2\"/>\\n<path d=\"M53.7301 93.8816L45.8074 125.353C45.5684 126.666 43.895 127.63 41.9485 127.63H15.5167C13.2286 127.63 11.2821 126.478 11.0089 124.925L3.15448 93.8816C-0.123892 75.3469 0.456651 56.5175 5.95475 38.197C7.14998 34.2598 8.41353 30.6439 9.77952 27.2958C15.0386 14.4662 21.2879 6.00232 25.0444 1.6097C26.547 -0.158066 30.3376 -0.158066 31.8402 1.6097C35.5967 6.00232 41.846 14.4394 47.1051 27.2958C48.4711 30.6439 49.7688 34.233 50.9299 38.197C56.4279 56.5175 57.0085 75.3469 53.7301 93.8816Z\" fill=\"#AFD2E5\"/>\\n<path d=\"M53.8327 125.862L53.8327 147.53C53.8327 148.334 52.6034 148.736 51.8521 148.173C45.91 143.727 39.2508 131.272 37.4068 126.987C37.0653 126.21 36.997 125.38 37.1336 124.576L39.9338 109.47C40.1046 108.532 41.5047 108.023 42.495 108.559C47.3102 111.184 51.6472 119.862 53.218 123.21C53.6278 124.04 53.8327 124.951 53.8327 125.862ZM3.01807 125.862L3.01807 147.53C3.01807 148.334 4.24745 148.736 4.99874 148.173C10.9408 143.727 17.6 131.272 19.444 126.987C19.7855 126.21 19.8538 125.38 19.7172 124.576L16.917 109.47C16.7462 108.532 15.3461 108.023 14.3557 108.559C9.54065 111.184 5.20364 119.862 3.63276 123.21C3.22297 124.04 3.01807 124.951 3.01807 125.862ZM47.1053 27.2955C41.1632 28.3937 34.8797 28.9562 28.4254 28.9562C21.9711 28.9562 15.6876 28.3669 9.74554 27.2955C15.0046 14.4659 21.254 6.00202 25.0104 1.60939C26.513 -0.158372 30.3036 -0.158372 31.8062 1.60939C35.5968 6.00202 41.8462 14.4659 47.1053 27.2955Z\" fill=\"#20EE8B\"/>\\n<path d=\"M19.41 59.0889C25.0447 58.0979 30.9184 61.8477 32.5576 67.4992C34.1627 73.1239 30.9184 78.5343 25.2496 79.5253C19.6149 80.5163 13.7412 76.7665 12.102 71.115C10.4969 65.4903 13.7753 60.0799 19.41 59.0889ZM15.9609 70.4186C16.9854 73.9274 20.1955 76.579 23.4397 76.579C23.7812 76.579 24.1227 76.5523 24.43 76.4987C27.8791 75.8826 29.8598 72.0793 28.7329 68.1688C28.0157 65.7582 26.3082 63.7761 24.2593 62.7583H24.2251C23.2689 62.2762 22.2786 62.0352 21.2541 62.0352C20.9467 62.0352 20.6052 62.0619 20.2637 62.1155C18.2148 62.4637 17.0878 63.8833 16.6097 64.6868C15.6194 66.3474 15.4145 68.4098 15.9609 70.4186Z\" fill=\"#165987\"/>\\n<path d=\"M15.961 70.4187C16.9854 73.9274 20.1955 76.5791 23.4397 76.5791C23.7812 76.5791 24.1227 76.5523 24.4301 76.4987C27.8792 75.8827 29.8599 72.0793 28.7329 68.1688C28.0158 65.7582 26.3083 63.7762 24.2593 62.7584H24.2252C23.269 62.2763 22.2787 62.0352 21.2542 62.0352C20.9468 62.0352 20.6053 62.062 20.2638 62.1156C18.2148 62.4638 17.0879 63.8833 16.6098 64.6869C15.6195 66.3475 15.4146 68.4099 15.961 70.4187Z\" fill=\"#2878A9\"/>\\n<path d=\"M15.961 70.4187C16.9854 73.9274 20.1955 76.5791 23.4397 76.5791C23.7812 76.5791 24.1227 76.5523 24.4301 76.4987C22.347 75.4809 20.6395 73.4989 19.9565 71.0883C19.3418 69.0527 19.615 66.9635 20.5712 65.3297C21.0493 64.5262 22.1762 63.1334 24.2252 62.7584C23.269 62.2763 22.2787 62.0352 21.2542 62.0352C20.9468 62.0352 20.6053 62.062 20.2638 62.1156C18.2148 62.4638 17.0879 63.8833 16.6098 64.6869C15.6195 66.3475 15.4146 68.4099 15.961 70.4187Z\" fill=\"#0B3454\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y4k735\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sj74nn\",\"data-framer-name\":\"Group 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:202,intrinsicWidth:321,name:\"Group 5\",svg:'<svg width=\"321\" height=\"202\" viewBox=\"0 0 321 202\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M120.299 4.82795C118.411 4.94135 116.449 5.5812 114.175 6.71456C110.453 8.56972 47.8953 44.7626 20.0655 60.8642L20.0106 60.896C12.6294 65.1666 7.7144 68.0103 7.06203 68.3819C6.0969 68.9316 4.9886 70.3989 4.89416 72.0369C4.81481 73.4131 5.4431 75.4172 8.95043 77.2124L8.99534 77.2354L191.631 182.32C194.083 183.338 200.14 184.558 205.245 181.714C212.672 177.577 310.451 121.105 314.359 118.725C315.945 117.758 316.166 116.898 316.141 116.443C316.11 115.884 315.668 114.919 314.095 113.905C310.442 111.549 131.299 8.85758 126.309 6.26231C124.082 5.10408 122.153 4.71665 120.299 4.82795ZM120.052 0.738353C122.739 0.577041 125.405 1.17104 128.21 2.62995C133.285 5.26897 312.542 108.024 316.328 110.465C318.475 111.85 320.112 113.829 320.245 116.215C320.384 118.704 318.854 120.788 316.502 122.221C312.532 124.639 214.702 181.14 207.25 185.291C200.525 189.036 192.913 187.337 189.897 186.037L189.788 185.99L7.0267 80.8333C2.47177 78.486 0.597115 75.1578 0.790616 71.8018C0.96968 68.6961 2.92463 66.0197 5.02275 64.8247C5.66064 64.4613 10.5765 61.6171 18.002 57.3209L18.4057 57.0873C46.3026 40.9468 108.481 4.97192 112.337 3.05008C114.877 1.78439 117.4 0.897579 120.052 0.738353ZM84.5565 33.6546C85.01 33.8959 85.5056 34.2355 85.9368 34.6811C86.4058 35.1657 86.9129 35.8978 87.0365 36.8628C87.3158 39.0439 85.5967 40.5862 83.5429 41.6098C78.8303 43.9585 66.6579 51.3218 64.896 52.4194C63.5749 53.2425 61.8185 53.5595 60.2967 53.4921C58.8682 53.4288 56.8973 52.9833 55.7891 51.4368C54.9456 50.2597 54.5637 48.8096 55.2613 47.3485C55.8299 46.1576 56.9619 45.351 57.9507 44.773C60.1554 43.4745 63.1296 41.7702 66.1151 40.0594L66.1243 40.0541C69.7058 38.0018 73.298 35.9433 75.6588 34.5314C79.542 32.209 82.8611 32.5443 84.5565 33.6546ZM82.2808 37.069C82.1427 37.0105 80.5977 36.3556 77.7735 38.0446C75.3756 39.4787 71.7511 41.5556 68.19 43.5962L68.1729 43.606C65.1748 45.324 62.2199 47.0173 60.0386 48.3021L60.0323 48.3058C59.6331 48.539 59.3574 48.7357 59.175 48.8967C59.1389 48.9286 59.1088 48.9571 59.0837 48.9821C59.0964 49.0018 59.111 49.0233 59.1277 49.0469C59.1363 49.0549 59.2078 49.1228 59.4138 49.2027C59.6698 49.302 60.035 49.3795 60.4792 49.3991C61.4189 49.4408 62.2882 49.2126 62.7175 48.9452C64.4564 47.8619 76.79 40.3947 81.7047 37.9453C82.2019 37.6975 82.5214 37.4854 82.7209 37.3262C82.6764 37.2988 82.6291 37.2723 82.5799 37.2479L82.4278 37.1721L82.2903 37.0723C82.2925 37.074 82.2894 37.0727 82.2808 37.069Z\" fill=\"#20EE8B\"/>\\n<path d=\"M8.0118 79.0347L190.713 184.157C193.411 185.32 200.296 186.817 206.248 183.502C213.687 179.358 311.492 122.872 315.431 120.473C317.619 119.382 318.056 117.487 318.056 117.487V126.579C318.056 130.287 318.056 133.995 315.431 135.521C312.805 137.048 206.904 198.551 202.966 200.732C199.815 202.477 195.672 201.459 193.995 200.732C193.174 200.254 175.024 189.861 150.328 175.72L150.227 175.662L150.208 175.651C95.9207 144.564 10.1421 95.4445 7.13662 93.6471C2.76055 91.0299 2.54175 89.2852 2.54175 87.3223L2.76055 72.2737L2.86053 71.6863C2.88961 71.3852 2.94081 71.0895 3.0112 70.8011L2.86053 71.6863C2.62607 74.1147 3.8308 76.8946 8.0118 79.0347Z\" fill=\"#08A358\"/>\\n<path d=\"M76.7161 36.288C80.2169 34.1943 82.6967 34.8341 83.499 35.4157C84.8118 36.0699 86.4747 37.8583 82.6238 39.7776C77.8101 42.1766 65.5571 49.5918 63.8067 50.6823C62.0562 51.7728 58.5554 51.7728 57.4614 50.2461C56.3674 48.7195 57.1265 47.629 58.993 46.5385C61.1873 45.2461 64.1545 43.5458 67.1485 41.8301L67.1497 41.8294C70.7234 39.7816 74.3351 37.712 76.7161 36.288Z\" fill=\"#08A358\"/>\\n<g filter=\"url(#filter0_dd_204_92)\">\\n<path d=\"M60.0931 83.1432C53.8043 79.5241 53.8043 73.6565 60.0931 70.0375L127.641 31.1648C133.93 27.5458 144.126 27.5457 150.415 31.1648L180.636 48.5566C186.925 52.1756 186.925 58.0433 180.636 61.6623L113.088 100.535C106.799 104.154 96.6031 104.154 90.3144 100.535L60.0931 83.1432Z\" fill=\"#0C2555\"/>\\n</g>\\n<g filter=\"url(#filter1_dd_204_92)\">\\n<path d=\"M129.969 122.748C123.68 119.129 123.68 113.261 129.969 109.642L197.517 70.7693C203.805 67.1502 214.001 67.1502 220.29 70.7693L250.511 88.1611C256.8 91.7801 256.8 97.6478 250.511 101.267L182.963 140.139C176.675 143.759 166.479 143.759 160.19 140.139L129.969 122.748Z\" fill=\"#20EE8B\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_204_92\" x=\"50.3765\" y=\"23.4505\" width=\"139.976\" height=\"84.7988\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.21 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_204_92\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.031875 0 0 0 0 0.6375 0 0 0 0 0.3468 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_204_92\" result=\"effect2_dropShadow_204_92\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_204_92\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_dd_204_92\" x=\"120.252\" y=\"63.055\" width=\"139.976\" height=\"84.7988\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.21 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_204_92\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.031875 0 0 0 0 0.6375 0 0 0 0 0.3468 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_204_92\" result=\"effect2_dropShadow_204_92\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_204_92\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-mrch9u\",\"data-framer-name\":\"Services\",id:id2,name:\"Services\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xiypsh\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a490pl\",\"data-framer-name\":\"Frame 20\",name:\"Frame 20\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tBxrAHNuJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:[\"What Stage \",/*#__PURE__*/_jsx(\"br\",{}),\"is Your \",/*#__PURE__*/_jsx(\"br\",{}),\"Concept In?\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"What Stage is Your Concept In?\"})}),className:\"framer-1010vfm\",\"data-framer-name\":\"What Stage is Your Concept In?\",fonts:[\"GF;Exo-700\"],name:\"What Stage is Your Concept In?\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tailored Services Based on Your Concept's Stage\"})}),className:\"framer-107yxz\",\"data-framer-name\":\"Tailored Services Based on Your Concept's Stage\",fonts:[\"GF;Exo-regular\"],name:\"Tailored Services Based on Your Concept's Stage\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16970v0\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15k7g63\",\"data-framer-name\":\"Frame 6\",name:\"Frame 6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qcte4l\",\"data-framer-name\":\"Group 2\",name:\"Group 2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"250px\",src:\"https://framerusercontent.com/images/1jOpmMiYtGzW7BrgZmfmiRwuZG4.png\",srcSet:\"https://framerusercontent.com/images/1jOpmMiYtGzW7BrgZmfmiRwuZG4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1jOpmMiYtGzW7BrgZmfmiRwuZG4.png 1000w\"},className:\"framer-wvvil\",\"data-framer-name\":\"Rectangle 3\",name:\"Rectangle 3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tBxrAHNuJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Early Stage, \",/*#__PURE__*/_jsx(\"br\",{}),\"yet to pitch!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"31px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Early Stage, yet to pitch!\"})})}),className:\"framer-34h9q2\",\"data-framer-name\":\"Early Stage, yet to pitch!\",fonts:[\"GF;Exo-600\"],name:\"Early Stage, yet to pitch!\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.800000011920929)\"},children:\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.800000011920929)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.800000011920929)\"},children:\"With our expertise, you can confidently showcase your vision even before stepping into the pitch room. Start building the foundation for your success today.\"})]})}),className:\"framer-1cdjfx1\",\"data-framer-name\":\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors. With our expertise, you can confidently showcase your vision even before stepping into the pitch room. Start building the foundation for your success today.\",fonts:[\"GF;Exo-regular\",\"GF;Exo-700\"],name:\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors. With our expertise, you can confidently showcase your vision even before stepping into the pitch room. Start building the foundation for your success today.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12zipqj\",\"data-framer-name\":\"Frame 5\",name:\"Frame 5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g7m46m\",\"data-framer-name\":\"Group 1\",name:\"Group 1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"250px\",src:\"https://framerusercontent.com/images/mWoo05UGVznBXwkK0uIOlQomFm8.png\",srcSet:\"https://framerusercontent.com/images/mWoo05UGVznBXwkK0uIOlQomFm8.png?scale-down-to=512 512w,https://framerusercontent.com/images/mWoo05UGVznBXwkK0uIOlQomFm8.png 1000w\"},className:\"framer-1d3d5u9\",\"data-framer-name\":\"Rectangle 4\",name:\"Rectangle 4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tBxrAHNuJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Got funds, \",/*#__PURE__*/_jsx(\"br\",{}),\"ready to build!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"31px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Got funds, ready to build!\"})})}),className:\"framer-1r8rfh0\",\"data-framer-name\":\"Got funds, ready to build!\",fonts:[\"GF;Exo-600\"],name:\"Got funds, ready to build!\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.800000011920929)\"},children:\"You've secured the funding needed to transform your idea into a tangible product, and now it's time to make it happen. Our team is here to help you bring your vision to life by creating a top-notch prototype that showcases your product's user experience. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"With our expertise and your funding, we can collaborate to build a remarkable product.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.800000011920929)\"},children:\" Let's transform your idea into a remarkable reality together.\"})]})}),className:\"framer-9wygb9\",\"data-framer-name\":\"You've secured the funding needed to transform your idea into a tangible product, and now it's time to make it happen. Our team is here to help you bring your vision to life by creating a top-notch prototype that showcases your product's user experience. With our expertise and your funding, we can collaborate to build a remarkable product. Let's transform your idea into a remarkable reality together.\",fonts:[\"GF;Exo-regular\",\"GF;Exo-700\"],name:\"You've secured the funding needed to transform your idea into a tangible product, and now it's time to make it happen. Our team is here to help you bring your vision to life by creating a top-notch prototype that showcases your product's user experience. With our expertise and your funding, we can collaborate to build a remarkable product. Let's transform your idea into a remarkable reality together.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-71te5i\",\"data-framer-name\":\"Works\",id:id3,name:\"Works\",ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5f3mpi\",\"data-framer-name\":\"Frame 21\",name:\"Frame 21\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tBxrAHNuJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 162, 88)\"},children:[\"Inspiring \",/*#__PURE__*/_jsx(\"br\",{}),\"Success Stories\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(8, 162, 88)\"},children:\"Inspiring Success Stories\"})}),className:\"framer-1j81c0g\",\"data-framer-name\":\"Inspiring Success Stories\",fonts:[\"GF;Exo-700\"],name:\"Inspiring Success Stories\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(32, 37, 49)\"},children:\"Explore Our Work and Client Collaborations\"})}),className:\"framer-18idjfu\",\"data-framer-name\":\"Explore Our Work and Client Collaborations\",fonts:[\"GF;Exo-regular\"],name:\"Explore Our Work and Client Collaborations\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1chvdzm\",\"data-framer-name\":\"Frame 11\",name:\"Frame 11\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x7nj2t-container hidden-yqzm3b\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.1,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:9},gap:45,height:\"100%\",id:\"m8Sc8vam2\",layoutId:\"m8Sc8vam2\",padding:100,paddingBottom:30,paddingLeft:100,paddingPerSide:true,paddingRight:100,paddingTop:30,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4huhd5\",\"data-framer-name\":\"Carausel Item 1\",name:\"Carausel Item 1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"442px\",src:\"https://framerusercontent.com/images/BlBXeAuqd0F2M7YvIN8M5IUlG9k.png\",srcSet:\"https://framerusercontent.com/images/BlBXeAuqd0F2M7YvIN8M5IUlG9k.png?scale-down-to=512 512w,https://framerusercontent.com/images/BlBXeAuqd0F2M7YvIN8M5IUlG9k.png 879w\"},className:\"framer-104yi3o\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(32, 37, 49)\"},children:\"Blockchain - Physical Asset Tokenization \"})}),className:\"framer-1nbe69s\",\"data-framer-name\":\"Case Study 1\",fonts:[\"GF;Exo-600\"],name:\"Case Study 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:\"A platform that enables the tokenization of physical assets. The goal was to create an intuitive and informative user experience that educates visitors about asset tokenization, establishes trust through transparency and security, and provides a seamless browsing experience. By understanding the problem statement, target users, design goals, and design solutions, we can gain insights into how the UX design effectively addresses the challenges associated with asset tokenization.\"})}),className:\"framer-zny34w\",\"data-framer-name\":\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",fonts:[\"GF;Exo-regular\"],name:\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ox90z\",\"data-framer-name\":\"Carausel Item 2\",name:\"Carausel Item 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"center\",sizes:\"442px\",src:\"https://framerusercontent.com/images/dJc0uZfEZTkrtwEdbPKh1Q0Sdow.png\",srcSet:\"https://framerusercontent.com/images/dJc0uZfEZTkrtwEdbPKh1Q0Sdow.png?scale-down-to=512 512w,https://framerusercontent.com/images/dJc0uZfEZTkrtwEdbPKh1Q0Sdow.png 875w\"},className:\"framer-13ewgdk\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(32, 37, 49)\"},children:\"Transparent Asset Tracking and Management\"})}),className:\"framer-1rtwgtx\",\"data-framer-name\":\"Case Study 1\",fonts:[\"GF;Exo-600\"],name:\"Case Study 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:\"A transparent asset tracking interface, optimized through iterative user testing. Focused on user-friendliness, the interface allows asset management professionals to efficiently track, access, and verify detailed asset information. Key features include intuitive asset overviews, comprehensive data visualization, and robust validation tools, ensuring reliable and transparent data management.\"})}),className:\"framer-2ajz8v\",\"data-framer-name\":\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",fonts:[\"GF;Exo-regular\"],name:\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-djcv99\",\"data-framer-name\":\"Carausel Item 3\",name:\"Carausel Item 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"442px\",src:\"https://framerusercontent.com/images/1VcUStugZUsCnXWXgrUX6koQ.png\",srcSet:\"https://framerusercontent.com/images/1VcUStugZUsCnXWXgrUX6koQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1VcUStugZUsCnXWXgrUX6koQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1VcUStugZUsCnXWXgrUX6koQ.png 1354w\"},className:\"framer-133bdp3\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(32, 37, 49)\"},children:\"Enhancing Personal Banking Experience through Mobile and Omni Channel UX\"})}),className:\"framer-1135s7v\",\"data-framer-name\":\"Case Study 1\",fonts:[\"GF;Exo-600\"],name:\"Case Study 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:\"the journey of a prominent financial institution as it undertakes the challenge of enhancing its mobile and omni-channel platforms for personal banking. Focusing on understanding deep user needs, the case study outlines the process of designing intuitive interfaces and ensuring a seamless, user-friendly experience across diverse digital platforms. Dive into the methodologies employed, the challenges faced, and the innovative solutions crafted to redefine personal banking in the digital age.\"})}),className:\"framer-1t1q0ml\",\"data-framer-name\":\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",fonts:[\"GF;Exo-regular\"],name:\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",verticalAlignment:\"top\",withExternalLayout:true})]})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fmq7w2-container hidden-72rtr7 hidden-dzmase\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:0,arrowSize:39,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:.1,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:9},gap:45,height:\"100%\",id:\"F1_agtp84\",layoutId:\"F1_agtp84\",padding:100,paddingBottom:30,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:30,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4huhd5\",\"data-framer-name\":\"Carausel Item 1\",name:\"Carausel Item 1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"442px\",src:\"https://framerusercontent.com/images/BlBXeAuqd0F2M7YvIN8M5IUlG9k.png\",srcSet:\"https://framerusercontent.com/images/BlBXeAuqd0F2M7YvIN8M5IUlG9k.png?scale-down-to=512 512w,https://framerusercontent.com/images/BlBXeAuqd0F2M7YvIN8M5IUlG9k.png 879w\"},className:\"framer-104yi3o\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(32, 37, 49)\"},children:\"Blockchain - Physical Asset Tokenization \"})}),className:\"framer-1nbe69s\",\"data-framer-name\":\"Case Study 1\",fonts:[\"GF;Exo-600\"],name:\"Case Study 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:\"A platform that enables the tokenization of physical assets. The goal was to create an intuitive and informative user experience that educates visitors about asset tokenization, establishes trust through transparency and security, and provides a seamless browsing experience. By understanding the problem statement, target users, design goals, and design solutions, we can gain insights into how the UX design effectively addresses the challenges associated with asset tokenization.\"})}),className:\"framer-zny34w\",\"data-framer-name\":\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",fonts:[\"GF;Exo-regular\"],name:\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ox90z\",\"data-framer-name\":\"Carausel Item 2\",name:\"Carausel Item 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"center\",sizes:\"442px\",src:\"https://framerusercontent.com/images/dJc0uZfEZTkrtwEdbPKh1Q0Sdow.png\",srcSet:\"https://framerusercontent.com/images/dJc0uZfEZTkrtwEdbPKh1Q0Sdow.png?scale-down-to=512 512w,https://framerusercontent.com/images/dJc0uZfEZTkrtwEdbPKh1Q0Sdow.png 875w\"},className:\"framer-13ewgdk\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(32, 37, 49)\"},children:\"Transparent Asset Tracking and Management\"})}),className:\"framer-1rtwgtx\",\"data-framer-name\":\"Case Study 1\",fonts:[\"GF;Exo-600\"],name:\"Case Study 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:\"A transparent asset tracking interface, optimized through iterative user testing. Focused on user-friendliness, the interface allows asset management professionals to efficiently track, access, and verify detailed asset information. Key features include intuitive asset overviews, comprehensive data visualization, and robust validation tools, ensuring reliable and transparent data management.\"})}),className:\"framer-2ajz8v\",\"data-framer-name\":\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",fonts:[\"GF;Exo-regular\"],name:\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-djcv99\",\"data-framer-name\":\"Carausel Item 3\",name:\"Carausel Item 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"442px\",src:\"https://framerusercontent.com/images/1VcUStugZUsCnXWXgrUX6koQ.png\",srcSet:\"https://framerusercontent.com/images/1VcUStugZUsCnXWXgrUX6koQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1VcUStugZUsCnXWXgrUX6koQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1VcUStugZUsCnXWXgrUX6koQ.png 1354w\"},className:\"framer-133bdp3\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTYwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(32, 37, 49)\"},children:\"Enhancing Personal Banking Experience through Mobile and Omni Channel UX\"})}),className:\"framer-1135s7v\",\"data-framer-name\":\"Case Study 1\",fonts:[\"GF;Exo-600\"],name:\"Case Study 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(33, 37, 50, 0.8)\"},children:\"the journey of a prominent financial institution as it undertakes the challenge of enhancing its mobile and omni-channel platforms for personal banking. Focusing on understanding deep user needs, the case study outlines the process of designing intuitive interfaces and ensuring a seamless, user-friendly experience across diverse digital platforms. Dive into the methodologies employed, the challenges faced, and the innovative solutions crafted to redefine personal banking in the digital age.\"})}),className:\"framer-1t1q0ml\",\"data-framer-name\":\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",fonts:[\"GF;Exo-regular\"],name:\"At the early stage of your venture and gearing up for the big pitch? We've got you covered. Our team specializes in transforming your ideas into user experience prototypes that speak volumes to potential investors.\",verticalAlignment:\"top\",withExternalLayout:true})]})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-14njnyb\",\"data-framer-name\":\"FAQs\",id:id4,name:\"FAQs\",ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r0meon\",\"data-framer-name\":\"Frame 24\",name:\"Frame 24\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mnm850\",\"data-framer-name\":\"Frame 23\",name:\"Frame 23\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j9zxzp\",\"data-framer-name\":\"Frame 22\",name:\"Frame 22\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"Clearing Your Doubts, Sharing Our Expertise\"})}),className:\"framer-1oo8frc\",\"data-framer-name\":\"Clearing Your Doubts, Sharing Our Expertise\",fonts:[\"GF;Exo-700\"],name:\"Clearing Your Doubts, Sharing Our Expertise\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Answers to Your Frequently Asked Questions\"})}),className:\"framer-1uiaq89\",\"data-framer-name\":\"Answers to Your Frequently Asked Questions\",fonts:[\"GF;Exo-regular\"],name:\"Answers to Your Frequently Asked Questions\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1peww3y\",\"data-framer-name\":\"Frame 29\",name:\"Frame 29\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tBxrAHNuJ:{width:\"min(100vw - 60px, 1000px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw - 200px, 1000px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vm7oxl-container\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"Ks1XzxhgH\",layoutId:\"Ks1XzxhgH\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-d9tb20\",\"data-framer-name\":\"Reach Us\",id:id5,name:\"Reach Us\",ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xwr40c\",\"data-framer-name\":\"Frame 24\",name:\"Frame 24\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m4tz03\",\"data-framer-name\":\"Frame 23\",name:\"Frame 23\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15t6ln6\",\"data-framer-name\":\"Frame 22\",name:\"Frame 22\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 238, 138)\"},children:\"Let\u2019s Build Impactful Products Together!\"})}),className:\"framer-1r3yokt\",\"data-framer-name\":\"Let\u2019s Build Impactful Products Together!\",fonts:[\"GF;Exo-700\"],name:\"Let\u2019s Build Impactful Products Together!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reach out for a Personalized Consultation\"})}),className:\"framer-8oitas\",\"data-framer-name\":\"Reach out for a Personalized Consultation\",fonts:[\"GF;Exo-regular\"],name:\"Reach out for a Personalized Consultation\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"ProdUX is based out of in Chennai, India. Let's talk soon!\"})}),className:\"framer-1bt44v2\",\"data-framer-name\":\"Write us about you and your idea to start with.\",fonts:[\"GF;Exo-regular\"],name:\"Write us about you and your idea to start with.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14vujuz\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/produx-/introductory-call\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1ee5dzw framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q7yp86\",\"data-framer-name\":\"calendar_days_svgrepo_com\",fill:'var(--token-0f2f1914-15af-4acf-ba8f-675f461be418, rgb(8, 162, 88)) /* {\"name\":\"Primary Dark\"} */',intrinsicHeight:800,intrinsicWidth:800,name:\"calendar_days_svgrepo_com\",svg:'<svg width=\"800\" height=\"800\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M14.25 2.5h-.75v-1h-1.25v1h-8.5v-1H2.5v1h-.75A1.25 1.25 0 0 0 .5 3.75v9.5a1.25 1.25 0 0 0 1.25 1.25h12.5a1.25 1.25 0 0 0 1.25-1.25v-9.5a1.25 1.25 0 0 0-1.25-1.25zM1.75 3.75h12.5V5H1.75V3.75zm0 9.5v-7h12.5v7z\"/><path d=\"M3 8h1.1v1.2H3zm0 2.4h1.1v1.2H3zM11.8 8h1.1v1.2h-1.1zm0 2.4h1.1v1.2h-1.1zM9.6 8h1.1v1.2H9.6zm0 2.4h1.1v1.2H9.6zM7.4 8h1.1v1.2H7.4zm0 2.4h1.1v1.2H7.4zM5.2 8h1.1v1.2H5.2zm0 2.4h1.1v1.2H5.2z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-0f2f1914-15af-4acf-ba8f-675f461be418, rgb(8, 162, 88))\"},children:\"Schedule a Call\"})}),className:\"framer-76gemt\",\"data-framer-name\":\"Button\",fonts:[\"GF;Exo-700\"],name:\"Button\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-f0fe12fb-185f-4cd9-a986-22e5ba38cad3, rgb(255, 255, 255))\"},children:\"or\"})}),className:\"framer-d3qmyy\",\"data-framer-name\":\"Button\",fonts:[\"GF;Exo-regular\"],name:\"Button\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/919600028055\",openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1abs73y framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l1pbry\",\"data-framer-name\":\"graphic\",fill:'var(--token-f0fe12fb-185f-4cd9-a986-22e5ba38cad3, rgb(255, 255, 255)) /* {\"name\":\"Text Light\"} */',intrinsicHeight:800,intrinsicWidth:800,name:\"graphic\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"800\" height=\"800\" viewBox=\"0 0 16 16\"><path d=\"M11.42 9.49c-.19-.09-1.1-.54-1.27-.61s-.29-.09-.42.1-.48.6-.59.73-.21.14-.4 0a5.13 5.13 0 0 1-1.49-.92 5.25 5.25 0 0 1-1-1.29c-.11-.18 0-.28.08-.38s.18-.21.28-.32a1.39 1.39 0 0 0 .18-.31.38.38 0 0 0 0-.33c0-.09-.42-1-.58-1.37s-.3-.32-.41-.32h-.4a.72.72 0 0 0-.5.23 2.1 2.1 0 0 0-.65 1.55A3.59 3.59 0 0 0 5 8.2 8.32 8.32 0 0 0 8.19 11c.44.19.78.3 1.05.39a2.53 2.53 0 0 0 1.17.07 1.93 1.93 0 0 0 1.26-.88 1.67 1.67 0 0 0 .11-.88c-.05-.07-.17-.12-.36-.21z\"/><path d=\"M13.29 2.68A7.36 7.36 0 0 0 8 .5a7.44 7.44 0 0 0-6.41 11.15l-1 3.85 3.94-1a7.4 7.4 0 0 0 3.55.9H8a7.44 7.44 0 0 0 5.29-12.72zM8 14.12a6.12 6.12 0 0 1-3.15-.87l-.22-.13-2.34.61.62-2.28-.14-.23a6.18 6.18 0 0 1 9.6-7.65 6.12 6.12 0 0 1 1.81 4.37A6.19 6.19 0 0 1 8 14.12z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-f0fe12fb-185f-4cd9-a986-22e5ba38cad3, rgb(255, 255, 255))\"},children:\"Whatsapp\"})}),className:\"framer-i1cvdn\",\"data-framer-name\":\"Button\",fonts:[\"GF;Exo-700\"],name:\"Button\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qf1ca\",\"data-framer-name\":\"Frame 18\",name:\"Frame 18\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i2z1uo\",\"data-framer-name\":\"Frame 19\",name:\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RXhvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Exo\", \"Exo Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"All Rights Reserved 2023 by ProdUX\"})}),className:\"framer-1ml6vvh\",\"data-framer-name\":\"All Rights Reserved 2023 by ProdUX\",fonts:[\"GF;Exo-regular\"],name:\"All Rights Reserved 2023 by ProdUX\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dtx4xe\",\"data-framer-name\":\"Frame 2\",name:\"Frame 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wsb13a\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Terms of Service\"})})}),className:\"framer-f3gofa\",\"data-framer-name\":\"Terms of Service\",fonts:[\"GF;Exo-700\"],name:\"Terms of Service\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mrv9jk\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RXhvLTcwMA==\",\"--framer-font-family\":'\"Exo\"',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Privacy Policy\"})})}),className:\"framer-19vhncq\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;Exo-700\"],name:\"Privacy Policy\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-0wc1D { background: hsl(0, 0%, 95%); }`,\".framer-0wc1D.framer-lux5qc, .framer-0wc1D .framer-lux5qc { display: block; }\",\".framer-0wc1D.framer-72rtr7 { align-content: center; align-items: center; background-color: #f2f2f2; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-0wc1D .framer-1de09vf-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 9; }\",\".framer-0wc1D .framer-2bxxd6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-0wc1D .framer-u4z5m7-container { flex: none; height: auto; position: relative; width: 100%; z-index: 9; }\",\".framer-0wc1D .framer-1pkccdl { 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: flex-start; left: 100px; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: min-content; z-index: 1; }\",\".framer-0wc1D .framer-9j48sr, .framer-0wc1D .framer-jca99v, .framer-0wc1D .framer-14b3tuu, .framer-0wc1D .framer-1010vfm, .framer-0wc1D .framer-107yxz, .framer-0wc1D .framer-1j81c0g, .framer-0wc1D .framer-18idjfu, .framer-0wc1D .framer-1r3yokt, .framer-0wc1D .framer-8oitas, .framer-0wc1D .framer-76gemt, .framer-0wc1D .framer-d3qmyy, .framer-0wc1D .framer-1ml6vvh, .framer-0wc1D .framer-f3gofa, .framer-0wc1D .framer-19vhncq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0wc1D .framer-epnhx5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 556px; word-break: break-word; word-wrap: break-word; }\",\".framer-0wc1D .framer-kftsqp { align-content: center; align-items: center; background-color: #fbfbfb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 150px 100px 150px 100px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-nyr00j, .framer-0wc1D .framer-a490pl, .framer-0wc1D .framer-5f3mpi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0wc1D .framer-nwrm5j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 124px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-vxastd { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-0wc1D .framer-dxx051 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0wc1D .framer-168f7nk { flex: none; height: 181px; overflow: hidden; position: relative; width: 57px; z-index: 8; }\",\".framer-0wc1D .framer-y0y15e, .framer-0wc1D .framer-sj74nn { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-0wc1D .framer-y4k735 { flex: none; height: 202px; overflow: hidden; position: relative; width: 321px; z-index: 5; }\",\".framer-0wc1D .framer-mrch9u { align-content: center; align-items: center; background-color: #0c2455; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 150px 100px 150px 100px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-xiypsh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-16970v0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-15k7g63, .framer-0wc1D .framer-12zipqj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",'.framer-0wc1D .framer-qcte4l, .framer-0wc1D .framer-1g7m46m { border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; box-shadow: 4px 4px 0px 0px var(--token-0f2f1914-15af-4acf-ba8f-675f461be418, #08a258) /* {\"name\":\"Primary Dark\"} */; flex: none; height: 250px; overflow: hidden; position: relative; width: 250px; will-change: var(--framer-will-change-override, transform); }',\".framer-0wc1D .framer-wvvil, .framer-0wc1D .framer-1d3d5u9 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-0wc1D .framer-34h9q2, .framer-0wc1D .framer-1cdjfx1, .framer-0wc1D .framer-1r8rfh0, .framer-0wc1D .framer-9wygb9, .framer-0wc1D .framer-1nbe69s, .framer-0wc1D .framer-zny34w, .framer-0wc1D .framer-1rtwgtx, .framer-0wc1D .framer-2ajz8v, .framer-0wc1D .framer-1135s7v, .framer-0wc1D .framer-1t1q0ml, .framer-0wc1D .framer-1oo8frc, .framer-0wc1D .framer-1uiaq89, .framer-0wc1D .framer-1bt44v2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0wc1D .framer-71te5i { align-content: center; align-items: center; background-color: #fbfbfb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 53px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-1chvdzm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-1x7nj2t-container { flex: 1 0 0px; height: 684px; position: relative; width: 1px; }\",\".framer-0wc1D .framer-4huhd5, .framer-0wc1D .framer-6ox90z, .framer-0wc1D .framer-djcv99 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 442px; }\",\".framer-0wc1D .framer-104yi3o, .framer-0wc1D .framer-13ewgdk, .framer-0wc1D .framer-133bdp3 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 4px 4px 0px 0px #08a258; flex: none; height: 246px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-1fmq7w2-container { flex: 1 0 0px; height: 765px; position: relative; width: 1px; }\",\".framer-0wc1D .framer-14njnyb { align-content: center; align-items: center; background-color: #0c2455; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 150px 100px 150px 100px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-1r0meon { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-mnm850, .framer-0wc1D .framer-1m4tz03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-j9zxzp, .framer-0wc1D .framer-15t6ln6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-1peww3y { 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; position: relative; width: 100%; }\",\".framer-0wc1D .framer-1vm7oxl-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; z-index: 2; }\",\".framer-0wc1D .framer-d9tb20 { align-content: center; align-items: center; background-color: #21273e; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 100px 20px 100px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-xwr40c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-14vujuz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0wc1D .framer-1ee5dzw { align-content: center; align-items: center; background-color: var(--token-f0fe12fb-185f-4cd9-a986-22e5ba38cad3, #ffffff); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 4px 6px 4px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 20px 30px 20px 30px; position: relative; text-decoration: none; width: 250px; }\",\".framer-0wc1D .framer-1q7yp86 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-0wc1D .framer-1abs73y { background-color: var(--token-06f3d74e-7412-48d0-ad88-1d090a3f7aa6, #1fee8a); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 4px 6px 4px rgba(0, 0, 0, 0.25); flex: none; height: 70px; overflow: visible; position: relative; text-decoration: none; width: 250px; }\",\".framer-0wc1D .framer-1l1pbry { flex: none; height: 30px; left: 58px; position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 30px; }\",\".framer-0wc1D .framer-i1cvdn { flex: none; height: auto; left: 98px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-0wc1D .framer-8qf1ca { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0wc1D .framer-i2z1uo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: 1px; }\",\".framer-0wc1D .framer-dtx4xe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; overflow: visible; padding: 10px; position: relative; width: 1px; }\",\".framer-0wc1D .framer-1wsb13a, .framer-0wc1D .framer-1mrv9jk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0wc1D.framer-72rtr7, .framer-0wc1D .framer-2bxxd6, .framer-0wc1D .framer-1pkccdl, .framer-0wc1D .framer-kftsqp, .framer-0wc1D .framer-nyr00j, .framer-0wc1D .framer-nwrm5j, .framer-0wc1D .framer-dxx051, .framer-0wc1D .framer-mrch9u, .framer-0wc1D .framer-xiypsh, .framer-0wc1D .framer-a490pl, .framer-0wc1D .framer-16970v0, .framer-0wc1D .framer-15k7g63, .framer-0wc1D .framer-12zipqj, .framer-0wc1D .framer-71te5i, .framer-0wc1D .framer-5f3mpi, .framer-0wc1D .framer-1chvdzm, .framer-0wc1D .framer-4huhd5, .framer-0wc1D .framer-6ox90z, .framer-0wc1D .framer-djcv99, .framer-0wc1D .framer-14njnyb, .framer-0wc1D .framer-1r0meon, .framer-0wc1D .framer-mnm850, .framer-0wc1D .framer-j9zxzp, .framer-0wc1D .framer-1peww3y, .framer-0wc1D .framer-d9tb20, .framer-0wc1D .framer-xwr40c, .framer-0wc1D .framer-1m4tz03, .framer-0wc1D .framer-15t6ln6, .framer-0wc1D .framer-14vujuz, .framer-0wc1D .framer-1ee5dzw, .framer-0wc1D .framer-8qf1ca, .framer-0wc1D .framer-i2z1uo, .framer-0wc1D .framer-dtx4xe, .framer-0wc1D .framer-1wsb13a, .framer-0wc1D .framer-1mrv9jk { gap: 0px; } .framer-0wc1D.framer-72rtr7 > *, .framer-0wc1D .framer-dxx051 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0wc1D.framer-72rtr7 > :first-child, .framer-0wc1D .framer-1pkccdl > :first-child, .framer-0wc1D .framer-kftsqp > :first-child, .framer-0wc1D .framer-nyr00j > :first-child, .framer-0wc1D .framer-dxx051 > :first-child, .framer-0wc1D .framer-mrch9u > :first-child, .framer-0wc1D .framer-xiypsh > :first-child, .framer-0wc1D .framer-a490pl > :first-child, .framer-0wc1D .framer-15k7g63 > :first-child, .framer-0wc1D .framer-12zipqj > :first-child, .framer-0wc1D .framer-71te5i > :first-child, .framer-0wc1D .framer-5f3mpi > :first-child, .framer-0wc1D .framer-4huhd5 > :first-child, .framer-0wc1D .framer-6ox90z > :first-child, .framer-0wc1D .framer-djcv99 > :first-child, .framer-0wc1D .framer-14njnyb > :first-child, .framer-0wc1D .framer-1r0meon > :first-child, .framer-0wc1D .framer-mnm850 > :first-child, .framer-0wc1D .framer-j9zxzp > :first-child, .framer-0wc1D .framer-1peww3y > :first-child, .framer-0wc1D .framer-d9tb20 > :first-child, .framer-0wc1D .framer-xwr40c > :first-child, .framer-0wc1D .framer-1m4tz03 > :first-child, .framer-0wc1D .framer-15t6ln6 > :first-child { margin-top: 0px; } .framer-0wc1D.framer-72rtr7 > :last-child, .framer-0wc1D .framer-1pkccdl > :last-child, .framer-0wc1D .framer-kftsqp > :last-child, .framer-0wc1D .framer-nyr00j > :last-child, .framer-0wc1D .framer-dxx051 > :last-child, .framer-0wc1D .framer-mrch9u > :last-child, .framer-0wc1D .framer-xiypsh > :last-child, .framer-0wc1D .framer-a490pl > :last-child, .framer-0wc1D .framer-15k7g63 > :last-child, .framer-0wc1D .framer-12zipqj > :last-child, .framer-0wc1D .framer-71te5i > :last-child, .framer-0wc1D .framer-5f3mpi > :last-child, .framer-0wc1D .framer-4huhd5 > :last-child, .framer-0wc1D .framer-6ox90z > :last-child, .framer-0wc1D .framer-djcv99 > :last-child, .framer-0wc1D .framer-14njnyb > :last-child, .framer-0wc1D .framer-1r0meon > :last-child, .framer-0wc1D .framer-mnm850 > :last-child, .framer-0wc1D .framer-j9zxzp > :last-child, .framer-0wc1D .framer-1peww3y > :last-child, .framer-0wc1D .framer-d9tb20 > :last-child, .framer-0wc1D .framer-xwr40c > :last-child, .framer-0wc1D .framer-1m4tz03 > :last-child, .framer-0wc1D .framer-15t6ln6 > :last-child { margin-bottom: 0px; } .framer-0wc1D .framer-2bxxd6 > *, .framer-0wc1D .framer-1ee5dzw > *, .framer-0wc1D .framer-i2z1uo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0wc1D .framer-2bxxd6 > :first-child, .framer-0wc1D .framer-nwrm5j > :first-child, .framer-0wc1D .framer-16970v0 > :first-child, .framer-0wc1D .framer-1chvdzm > :first-child, .framer-0wc1D .framer-14vujuz > :first-child, .framer-0wc1D .framer-1ee5dzw > :first-child, .framer-0wc1D .framer-8qf1ca > :first-child, .framer-0wc1D .framer-i2z1uo > :first-child, .framer-0wc1D .framer-dtx4xe > :first-child, .framer-0wc1D .framer-1wsb13a > :first-child, .framer-0wc1D .framer-1mrv9jk > :first-child { margin-left: 0px; } .framer-0wc1D .framer-2bxxd6 > :last-child, .framer-0wc1D .framer-nwrm5j > :last-child, .framer-0wc1D .framer-16970v0 > :last-child, .framer-0wc1D .framer-1chvdzm > :last-child, .framer-0wc1D .framer-14vujuz > :last-child, .framer-0wc1D .framer-1ee5dzw > :last-child, .framer-0wc1D .framer-8qf1ca > :last-child, .framer-0wc1D .framer-i2z1uo > :last-child, .framer-0wc1D .framer-dtx4xe > :last-child, .framer-0wc1D .framer-1wsb13a > :last-child, .framer-0wc1D .framer-1mrv9jk > :last-child { margin-right: 0px; } .framer-0wc1D .framer-1pkccdl > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0wc1D .framer-kftsqp > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-0wc1D .framer-nyr00j > *, .framer-0wc1D .framer-a490pl > *, .framer-0wc1D .framer-5f3mpi > *, .framer-0wc1D .framer-j9zxzp > *, .framer-0wc1D .framer-15t6ln6 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-0wc1D .framer-nwrm5j > * { margin: 0px; margin-left: calc(124px / 2); margin-right: calc(124px / 2); } .framer-0wc1D .framer-mrch9u > *, .framer-0wc1D .framer-1peww3y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0wc1D .framer-xiypsh > * { margin: 0px; margin-bottom: calc(57px / 2); margin-top: calc(57px / 2); } .framer-0wc1D .framer-16970v0 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-0wc1D .framer-15k7g63 > *, .framer-0wc1D .framer-12zipqj > *, .framer-0wc1D .framer-4huhd5 > *, .framer-0wc1D .framer-6ox90z > *, .framer-0wc1D .framer-djcv99 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0wc1D .framer-71te5i > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-0wc1D .framer-1chvdzm > * { margin: 0px; margin-left: calc(45px / 2); margin-right: calc(45px / 2); } .framer-0wc1D .framer-14njnyb > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-0wc1D .framer-1r0meon > *, .framer-0wc1D .framer-xwr40c > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-0wc1D .framer-mnm850 > *, .framer-0wc1D .framer-1m4tz03 > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-0wc1D .framer-d9tb20 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-0wc1D .framer-14vujuz > *, .framer-0wc1D .framer-dtx4xe > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-0wc1D .framer-8qf1ca > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-0wc1D .framer-1wsb13a > *, .framer-0wc1D .framer-1mrv9jk > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\"@media (min-width: 1200px) { .framer-0wc1D .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-0wc1D .hidden-dzmase { display: none !important; } .${metadata.bodyClassName}-framer-0wc1D { background: hsl(0, 0%, 95%); } .framer-0wc1D.framer-72rtr7 { width: 810px; } .framer-0wc1D .framer-9j48sr { order: 0; } .framer-0wc1D .framer-epnhx5 { order: 1; } .framer-0wc1D .framer-nwrm5j { flex-direction: column; gap: 50px; } .framer-0wc1D .framer-vxastd { flex: none; order: 1; width: 100%; } .framer-0wc1D .framer-dxx051 { order: 0; width: 100%; } .framer-0wc1D .framer-16970v0 { flex-direction: column; } .framer-0wc1D .framer-15k7g63, .framer-0wc1D .framer-12zipqj { flex: none; width: 100%; } .framer-0wc1D .framer-1x7nj2t-container { height: 730px; } .framer-0wc1D .framer-xwr40c { gap: 50px; } .framer-0wc1D .framer-1r3yokt, .framer-0wc1D .framer-8oitas { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-0wc1D .framer-14vujuz { flex-direction: column; gap: 15px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0wc1D .framer-nwrm5j, .framer-0wc1D .framer-16970v0, .framer-0wc1D .framer-xwr40c, .framer-0wc1D .framer-14vujuz { gap: 0px; } .framer-0wc1D .framer-nwrm5j > *, .framer-0wc1D .framer-xwr40c > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-0wc1D .framer-nwrm5j > :first-child, .framer-0wc1D .framer-16970v0 > :first-child, .framer-0wc1D .framer-xwr40c > :first-child, .framer-0wc1D .framer-14vujuz > :first-child { margin-top: 0px; } .framer-0wc1D .framer-nwrm5j > :last-child, .framer-0wc1D .framer-16970v0 > :last-child, .framer-0wc1D .framer-xwr40c > :last-child, .framer-0wc1D .framer-14vujuz > :last-child { margin-bottom: 0px; } .framer-0wc1D .framer-16970v0 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-0wc1D .framer-14vujuz > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}`,`@media (max-width: 809px) { .framer-0wc1D .hidden-yqzm3b { display: none !important; } .${metadata.bodyClassName}-framer-0wc1D { background: hsl(0, 0%, 95%); } .framer-0wc1D.framer-72rtr7 { width: 390px; } .framer-0wc1D .framer-1pkccdl { left: 31px; top: 50%; width: 80%; } .framer-0wc1D .framer-9j48sr, .framer-0wc1D .framer-dxx051 { order: 0; width: 100%; } .framer-0wc1D .framer-epnhx5 { order: 1; width: 100%; } .framer-0wc1D .framer-kftsqp { gap: 20px; padding: 150px 50px 100px 50px; } .framer-0wc1D .framer-nyr00j, .framer-0wc1D .framer-a490pl, .framer-0wc1D .framer-5f3mpi { width: 100%; } .framer-0wc1D .framer-jca99v, .framer-0wc1D .framer-14b3tuu, .framer-0wc1D .framer-1010vfm, .framer-0wc1D .framer-107yxz, .framer-0wc1D .framer-1r3yokt, .framer-0wc1D .framer-8oitas { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-0wc1D .framer-nwrm5j, .framer-0wc1D .framer-8qf1ca { flex-direction: column; gap: 20px; } .framer-0wc1D .framer-vxastd { flex: none; order: 1; width: 100%; } .framer-0wc1D .framer-sj74nn { bottom: unset; height: 166px; left: calc(49.84423676012463% - 290px / 2); right: unset; width: 290px; } .framer-0wc1D .framer-mrch9u { padding: 150px 50px 100px 50px; } .framer-0wc1D .framer-16970v0 { flex-direction: column; gap: 50px; } .framer-0wc1D .framer-15k7g63, .framer-0wc1D .framer-12zipqj { flex: none; width: 100%; } .framer-0wc1D .framer-71te5i { padding: 150px 0px 100px 0px; } .framer-0wc1D .framer-1j81c0g { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-0wc1D .framer-18idjfu { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-0wc1D .framer-1chvdzm { overflow: hidden; } .framer-0wc1D .framer-1fmq7w2-container { order: 0; } .framer-0wc1D .framer-14njnyb { padding: 150px 30px 100px 30px; } .framer-0wc1D .framer-d9tb20 { padding: 100px 30px 30px 30px; } .framer-0wc1D .framer-xwr40c { gap: 40px; padding: 30px 10px 30px 10px; } .framer-0wc1D .framer-14vujuz { flex-direction: column; gap: 15px; } .framer-0wc1D .framer-i2z1uo { flex: none; height: auto; justify-content: center; order: 1; width: 100%; } .framer-0wc1D .framer-dtx4xe { flex: none; height: auto; justify-content: center; order: 0; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0wc1D .framer-kftsqp, .framer-0wc1D .framer-nwrm5j, .framer-0wc1D .framer-16970v0, .framer-0wc1D .framer-xwr40c, .framer-0wc1D .framer-14vujuz, .framer-0wc1D .framer-8qf1ca { gap: 0px; } .framer-0wc1D .framer-kftsqp > *, .framer-0wc1D .framer-nwrm5j > *, .framer-0wc1D .framer-8qf1ca > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0wc1D .framer-kftsqp > :first-child, .framer-0wc1D .framer-nwrm5j > :first-child, .framer-0wc1D .framer-16970v0 > :first-child, .framer-0wc1D .framer-xwr40c > :first-child, .framer-0wc1D .framer-14vujuz > :first-child, .framer-0wc1D .framer-8qf1ca > :first-child { margin-top: 0px; } .framer-0wc1D .framer-kftsqp > :last-child, .framer-0wc1D .framer-nwrm5j > :last-child, .framer-0wc1D .framer-16970v0 > :last-child, .framer-0wc1D .framer-xwr40c > :last-child, .framer-0wc1D .framer-14vujuz > :last-child, .framer-0wc1D .framer-8qf1ca > :last-child { margin-bottom: 0px; } .framer-0wc1D .framer-16970v0 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-0wc1D .framer-xwr40c > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0wc1D .framer-14vujuz > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5319\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GdosQQyrL\":{\"layout\":[\"fixed\",\"auto\"]},\"tBxrAHNuJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-0wc1D\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5319,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Exo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwZsOl4p5Is.woff2\",weight:\"700\"},{family:\"Exo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwZsOl4p5Is.woff2\",weight:\"400\"},{family:\"Exo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwZsOl4p5Is.woff2\",weight:\"600\"}]},...HeaderFonts,...CarouselFonts,...AccordionFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"5319\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GdosQQyrL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tBxrAHNuJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "isNumber", "t", "isString", "isEasingList", "t", "isNumber", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "t", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "r", "f", "clamp", "getEasingForSegment", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "c", "i", "h", "e", "u", "d", "f", "l", "g", "glide", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Z", "createAxisInfo", "createScrollInfo", "X", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Y", "J", "resolveEdge", "isString", "isNumber", "Q", "resolveOffset", "ee", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "te", "ne", "oe", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "borderRadiusControl", "ControlType", "usePadding", "props", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "se", "paddingControl", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "SVG", "RichText", "css", "FramerTi6Mt9vd0", "withCSS", "Ti6Mt9vd0_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapubctbe", "args", "onTapsn035j", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "css", "Framercolg4dnkP", "withCSS", "colg4dnkP_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "colg4dnkP_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "colg4dnkP_default", "css", "FramerzKitQ3Qb1", "withCSS", "zKitQ3Qb1_default", "addFonts", "RowFonts", "HeaderFonts", "getFonts", "Ti6Mt9vd0_default", "MotionDivWithFX", "withFX", "motion", "CarouselFonts", "Carousel", "AccordionFonts", "zKitQ3Qb1_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "useRouteElementId", "ref2", "id1", "ref3", "id2", "ref4", "id3", "ref5", "isDisplayed", "isDisplayed1", "id4", "ref6", "id5", "ref7", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides", "Ti6Mt9vd0_default", "Image2", "x", "RichText", "MotionDivWithFX", "SVG", "Carousel", "zKitQ3Qb1_default", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "HeaderFonts", "CarouselFonts", "AccordionFonts", "__FramerMetadata__"]
}
