{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@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/P1XRxus9CQiWIYNrkBAa/Carousel.js", "ssg:https://framerusercontent.com/modules/1OO8AlqfpZ7ydn5lPh8L/dEm4XL0HLeihk1LT1vLQ/bsv2BY72A.js", "ssg:https://framerusercontent.com/modules/a5shMswFi8pLRpaErtBF/EAhBg3Isycnp6TVnIMwu/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "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 { 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,startTransition}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(()=>{startTransition(()=>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}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);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,end}=itemSizes.current[i];if(end<current||start>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 visibility=progress(start,end,target);if(visibility>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));/*if (snap && (snapEdge === \"start\" || snapEdge === \"end\") && delta >= 1)\n            delta = delta + 0.4 // this ensures it doesn't snap back to previous page*/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(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.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\",{decoding:\"async\",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\",{decoding:\"async\",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 _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.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\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AccordionsLocalAccordions1Style1One from\"https://framerusercontent.com/modules/0TXUblpjeTWZA4m5xHC6/JQU5RcNIcJVKHP10eLAa/NrXEMBkKq.js\";const AccordionsLocalAccordions1Style1OneFonts=getFonts(AccordionsLocalAccordions1Style1One);const cycleOrder=[\"fDYfPg9_o\",\"KFplB6oEw\",\"hr6Wlbz4K\",\"HxbfFZr1j\",\"haIWcvaTP\",\"xzcXIdFXu\",\"pnVyxImDp\"];const serializationHash=\"framer-9v43a\";const variantClassNames={fDYfPg9_o:\"framer-v-1qavtx1\",haIWcvaTP:\"framer-v-1tuia3i\",hr6Wlbz4K:\"framer-v-1bzrou1\",HxbfFZr1j:\"framer-v-1gud6ep\",KFplB6oEw:\"framer-v-17bv1z3\",pnVyxImDp:\"framer-v-bbiway\",xzcXIdFXu:\"framer-v-6z2tib\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Accordian 6\":\"pnVyxImDp\",\"Accordion 1\":\"KFplB6oEw\",\"Accordion 2\":\"hr6Wlbz4K\",\"Accordion 3\":\"HxbfFZr1j\",\"Accordion 4\":\"haIWcvaTP\",\"Accordion 5\":\"xzcXIdFXu\",\"Default \":\"fDYfPg9_o\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"fDYfPg9_o\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fDYfPg9_o\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const dov_m8z5e1srcdc=activeVariantCallback(async(...args)=>{setVariant(\"KFplB6oEw\");});const dov_m8z5e166p449=activeVariantCallback(async(...args)=>{setVariant(\"fDYfPg9_o\");});const dov_m8z5e1dd7p94=activeVariantCallback(async(...args)=>{setVariant(\"hr6Wlbz4K\");});const dov_m8z5e1g3mxd0=activeVariantCallback(async(...args)=>{setVariant(\"HxbfFZr1j\");});const dov_m8z5ec849ju=activeVariantCallback(async(...args)=>{setVariant(\"haIWcvaTP\");});const dov_m8z5elqfbxz=activeVariantCallback(async(...args)=>{setVariant(\"xzcXIdFXu\");});const dov_m8z5eghz0bp=activeVariantCallback(async(...args)=>{setVariant(\"pnVyxImDp\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qavtx1\",className,classNames),\"data-framer-name\":\"Default \",layoutDependency:layoutDependency,layoutId:\"fDYfPg9_o\",ref:ref??ref1,style:{...style},...addPropertyOverrides({haIWcvaTP:{\"data-framer-name\":\"Accordion 4\"},hr6Wlbz4K:{\"data-framer-name\":\"Accordion 2\"},HxbfFZr1j:{\"data-framer-name\":\"Accordion 3\"},KFplB6oEw:{\"data-framer-name\":\"Accordion 1\"},pnVyxImDp:{\"data-framer-name\":\"Accordian 6\"},xzcXIdFXu:{\"data-framer-name\":\"Accordion 5\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||368)-0-368)/2+0+0),...addPropertyOverrides({haIWcvaTP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+0+0)},hr6Wlbz4K:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||533.5)-0-368)/2+0+0)},HxbfFZr1j:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+0+0)},KFplB6oEw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+0+0)},pnVyxImDp:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+0+0)},xzcXIdFXu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ilonw-container\",layoutDependency:layoutDependency,layoutId:\"OwDc_2nDp-container\",children:/*#__PURE__*/_jsx(AccordionsLocalAccordions1Style1One,{Cf4n9ssIO:\"How are you different to other accelerators?\",dov_m8z5e:dov_m8z5e1srcdc,height:\"100%\",id:\"OwDc_2nDp\",JY3dAgwrB:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"We are not an accelerator; we are a startup studio. The key difference lies in our approach and level of involvement. Unlike traditional accelerators, which typically provide short-term support and resources to a cohort of startups, we focus on one startup at a time, working closely with founders from the ground up. Our team becomes an integral part of your team, providing ongoing technical guidance, strategic support, and hands-on assistance in developing and scaling your technology.\"})}),layoutId:\"OwDc_2nDp\",style:{width:\"100%\"},variant:\"N_G669mPz\",width:\"100%\",...addPropertyOverrides({KFplB6oEw:{dov_m8z5e:dov_m8z5e166p449,variant:\"Xl3BuCCMK\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||368)-0-368)/2+48+16),...addPropertyOverrides({haIWcvaTP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+48+16)},hr6Wlbz4K:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||533.5)-0-368)/2+48+16)},HxbfFZr1j:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+48+16)},KFplB6oEw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+48+16)},pnVyxImDp:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+48+16)},xzcXIdFXu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+48+16)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i6znk2-container\",layoutDependency:layoutDependency,layoutId:\"hFTpbxNeF-container\",children:/*#__PURE__*/_jsx(AccordionsLocalAccordions1Style1One,{Cf4n9ssIO:\"What is your selection criteria?\",dov_m8z5e:dov_m8z5e1dd7p94,height:\"100%\",id:\"hFTpbxNeF\",JY3dAgwrB:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"We require applying startups to be UK-based, with their main product or service centered around a digital platform, as this aligns with our core expertise. While we are open to businesses from various sectors, we prioritise those addressing significant societal or global challenges. Additionally, we seek startups that demonstrate a strong potential for positive impact. Given our emphasis on digital platforms, we believe we can provide the most value to these types of companies. Finally, since our engagement is the start of a long-term partnership, we look for teams that share our collaborative spirit and can establish a positive working relationship with us.\"})}),layoutId:\"hFTpbxNeF\",style:{width:\"100%\"},variant:\"N_G669mPz\",width:\"100%\",...addPropertyOverrides({hr6Wlbz4K:{dov_m8z5e:dov_m8z5e166p449,variant:\"Xl3BuCCMK\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||368)-0-368)/2+96+32),...addPropertyOverrides({haIWcvaTP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+96+32)},hr6Wlbz4K:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||533.5)-0-368)/2+96+32)},HxbfFZr1j:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+96+32)},KFplB6oEw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+96+32)},pnVyxImDp:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+96+32)},xzcXIdFXu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+96+32)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1btcdrw-container\",layoutDependency:layoutDependency,layoutId:\"lcDFY7qJr-container\",children:/*#__PURE__*/_jsx(AccordionsLocalAccordions1Style1One,{Cf4n9ssIO:\"Do I need to be based in London?\",dov_m8z5e:dov_m8z5e1g3mxd0,height:\"100%\",id:\"lcDFY7qJr\",JY3dAgwrB:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"No, you do not need to be based in London. However, we do require startups to be UK-based. Our sessions can be held either in person at our Ealing Studio or conducted online via Zoom. We will collaborate to determine the best arrangement for everyone involved. Ideally, we would appreciate at least one in-person visit to London, as it helps us to get to know each other better.\"})}),layoutId:\"lcDFY7qJr\",style:{width:\"100%\"},variant:\"N_G669mPz\",width:\"100%\",...addPropertyOverrides({HxbfFZr1j:{dov_m8z5e:dov_m8z5e166p449,variant:\"Xl3BuCCMK\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||368)-0-368)/2+144+48),...addPropertyOverrides({haIWcvaTP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+144+48)},hr6Wlbz4K:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||533.5)-0-368)/2+144+48)},HxbfFZr1j:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+144+48)},KFplB6oEw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+144+48)},pnVyxImDp:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+144+48)},xzcXIdFXu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+144+48)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vn2pum-container\",layoutDependency:layoutDependency,layoutId:\"a36mepucy-container\",children:/*#__PURE__*/_jsx(AccordionsLocalAccordions1Style1One,{Cf4n9ssIO:\"I cannot work full-time on my startup. Is this a problem?\",dov_m8z5e:dov_m8z5ec849ju,height:\"100%\",id:\"a36mepucy\",JY3dAgwrB:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"We understand the need for financial stability and that you may need to work while running your startup. However, this external work should not be a full-time job. We expect founders to dedicate significant time and effort to their venture to ensure its success. Balancing other commitments is understandable, but your startup should be your primary focus.\"})}),layoutId:\"a36mepucy\",style:{width:\"100%\"},variant:\"N_G669mPz\",width:\"100%\",...addPropertyOverrides({haIWcvaTP:{dov_m8z5e:dov_m8z5elqfbxz,variant:\"Xl3BuCCMK\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||368)-0-368)/2+192+64),...addPropertyOverrides({haIWcvaTP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+192+64)},hr6Wlbz4K:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||533.5)-0-368)/2+192+64)},HxbfFZr1j:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+192+64)},KFplB6oEw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+192+64)},pnVyxImDp:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+192+64)},xzcXIdFXu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+192+64)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-128qboh-container\",layoutDependency:layoutDependency,layoutId:\"VWUR_nFVZ-container\",children:/*#__PURE__*/_jsx(AccordionsLocalAccordions1Style1One,{Cf4n9ssIO:\"How long would it take to hear back about the application?\",dov_m8z5e:dov_m8z5elqfbxz,height:\"100%\",id:\"VWUR_nFVZ\",JY3dAgwrB:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"We assess applications on a rolling basis, meaning we review each submission as it comes in. Our application process consists of various stages, and we strive to respond to each stage as quickly as possible. Once our team has evaluated your application at each stage, we will deliberate and reach a decision promptly. We understand the importance of timely feedback and aim to keep you informed throughout the process to avoid unnecessary delays.\"})}),layoutId:\"VWUR_nFVZ\",style:{width:\"100%\"},variant:\"N_G669mPz\",width:\"100%\",...addPropertyOverrides({xzcXIdFXu:{variant:\"Xl3BuCCMK\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||368)-0-368)/2+240+80),...addPropertyOverrides({haIWcvaTP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+240+80)},hr6Wlbz4K:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||533.5)-0-368)/2+240+80)},HxbfFZr1j:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+240+80)},KFplB6oEw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||508)-0-368)/2+240+80)},pnVyxImDp:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+240+80)},xzcXIdFXu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||540)-0-368)/2+240+80)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6b7u48-container\",layoutDependency:layoutDependency,layoutId:\"dH96I9aW1-container\",children:/*#__PURE__*/_jsx(AccordionsLocalAccordions1Style1One,{Cf4n9ssIO:\"How much do you invest in each company?\",dov_m8z5e:dov_m8z5eghz0bp,height:\"100%\",id:\"dH96I9aW1\",JY3dAgwrB:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"We commit up to \\xa350,000 in services through a match-funding model, designed to accelerate your growth. Instead of direct cash, this investment takes the form of specialised support from a dedicated product team, aligning with your unique needs and objectives. Our goal is to tailor a service-based financial strategy that fuels your business and supports sustainable growth. \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AcyS57X3r\"},nodeId:\"dH96I9aW1\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Learn more\"})}),\".\"]})}),layoutId:\"dH96I9aW1\",style:{width:\"100%\"},variant:\"N_G669mPz\",width:\"100%\",...addPropertyOverrides({pnVyxImDp:{variant:\"Xl3BuCCMK\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9v43a.framer-16y2tqg, .framer-9v43a .framer-16y2tqg { display: block; }\",\".framer-9v43a.framer-1qavtx1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 800px; }\",\".framer-9v43a .framer-10ilonw-container, .framer-9v43a .framer-i6znk2-container, .framer-9v43a .framer-1btcdrw-container, .framer-9v43a .framer-vn2pum-container, .framer-9v43a .framer-128qboh-container, .framer-9v43a .framer-6b7u48-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9v43a.framer-1qavtx1 { gap: 0px; } .framer-9v43a.framer-1qavtx1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-9v43a.framer-1qavtx1 > :first-child { margin-top: 0px; } .framer-9v43a.framer-1qavtx1 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 368\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KFplB6oEw\":{\"layout\":[\"fixed\",\"auto\"]},\"hr6Wlbz4K\":{\"layout\":[\"fixed\",\"auto\"]},\"HxbfFZr1j\":{\"layout\":[\"fixed\",\"auto\"]},\"haIWcvaTP\":{\"layout\":[\"fixed\",\"auto\"]},\"xzcXIdFXu\":{\"layout\":[\"fixed\",\"auto\"]},\"pnVyxImDp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerbsv2BY72A=withCSS(Component,css,\"framer-9v43a\");export default Framerbsv2BY72A;Framerbsv2BY72A.displayName=\"FAQ Homepage\";Framerbsv2BY72A.defaultProps={height:368,width:800};addPropertyControls(Framerbsv2BY72A,{variant:{options:[\"fDYfPg9_o\",\"KFplB6oEw\",\"hr6Wlbz4K\",\"HxbfFZr1j\",\"haIWcvaTP\",\"xzcXIdFXu\",\"pnVyxImDp\"],optionTitles:[\"Default \",\"Accordion 1\",\"Accordion 2\",\"Accordion 3\",\"Accordion 4\",\"Accordion 5\",\"Accordian 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerbsv2BY72A,[{explicitInter:true,fonts:[]},...AccordionsLocalAccordions1Style1OneFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerbsv2BY72A\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"800\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KFplB6oEw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hr6Wlbz4K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HxbfFZr1j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"haIWcvaTP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xzcXIdFXu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pnVyxImDp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"368\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js\";import FAQHomepage from\"#framer/local/canvasComponent/bsv2BY72A/bsv2BY72A.js\";import Footer from\"#framer/local/canvasComponent/F4ThFEAQm/F4ThFEAQm.js\";import Navigation from\"#framer/local/canvasComponent/glQNHJ1iJ/glQNHJ1iJ.js\";import Button from\"#framer/local/canvasComponent/KoujWUtMs/KoujWUtMs.js\";import ApplyPromo from\"#framer/local/canvasComponent/TRi4xJ5Lm/TRi4xJ5Lm.js\";import Banner from\"#framer/local/canvasComponent/vn3ksX8Lh/vn3ksX8Lh.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const BannerFonts=getFonts(Banner);const NavigationFonts=getFonts(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const CarouselFonts=getFonts(Carousel);const FAQHomepageFonts=getFonts(FAQHomepage);const ApplyPromoFonts=getFonts(ApplyPromo);const FooterFonts=getFonts(Footer);const breakpoints={dCVQGhd1P:\"(max-width: 809px)\",vSahVGYjJ:\"(min-width: 810px) and (max-width: 1023px)\",WQLkyLRf1:\"(min-width: 1024px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JjBLi\";const variantClassNames={dCVQGhd1P:\"framer-v-1vye1so\",vSahVGYjJ:\"framer-v-yna2my\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition2={bounce:.2,delay:.2,duration:2,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={bounce:.2,delay:.4,duration:2,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,transition:transition4};const transition5={bounce:.2,delay:.6,duration:2,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition6={bounce:.2,delay:.8,duration:2,type:\"spring\"};const transition7={bounce:.2,delay:1,duration:2,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition8={bounce:.2,delay:0,duration:2,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition4};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"dCVQGhd1P\",Tablet:\"vSahVGYjJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"dCVQGhd1P\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"dCVQGhd1P\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"vSahVGYjJ\",\"dCVQGhd1P\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"vSahVGYjJ\",\"dCVQGhd1P\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(27, 27, 27); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xh420l-container\",nodeId:\"RRuO903VW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{variant:\"u8W6JH_rV\"},vSahVGYjJ:{variant:\"t_cKUbWGL\"}},children:/*#__PURE__*/_jsx(Banner,{height:\"100%\",id:\"RRuO903VW\",layoutId:\"RRuO903VW\",style:{width:\"100%\"},variant:\"nGUdTWNIC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tiibte\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+43+20,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-17getco-container\",\"data-framer-appear-id\":\"17getco\",initial:animation1,nodeId:\"qiL9XccMq\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"DPpPxb_Rn\"},vSahVGYjJ:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"DPpPxb_Rn\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"qiL9XccMq\",layoutId:\"qiL9XccMq\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"W9pH3WS3k\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jd63ug\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kb075c\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3anduc\",\"data-framer-name\":\"Frame 62\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(242, 230, 0)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We are a \"}),\"startup studio\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 158, 217)\"},children:\"turning ideas\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(213, 0, 127)\"},children:\"into reality\"}),\". \"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(242, 230, 0)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We are a \"}),\"startup studio\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 158, 217)\"},children:\"turning ideas\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(213, 0, 127)\"},children:\"into reality\"}),\". \"]})}),className:\"framer-zajndf\",\"data-framer-appear-id\":\"zajndf\",\"data-framer-name\":\"We are a startup studio turning ideas into reality.\",fonts:[\"GF;Aktiv Grotesk-700\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"At Activate Studio, we help digital product founders refine their business strategy, sharpen their value proposition, and design and build exceptional products. Using the latest AI methodologies, we enhance functionality and efficiency, giving your startup an unfair advantage in creating and scaling your digital platform.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"At Activate Studio, we help digital product founders refine their business strategy, sharpen their value proposition, and design and build exceptional products. Using the latest AI methodologies, we enhance functionality and efficiency, giving your startup an unfair advantage in creating and scaling your digital platform.\"})}),className:\"framer-x1lbm8\",\"data-framer-appear-id\":\"x1lbm8\",\"data-framer-name\":\"We empower founders with a digital product idea by providing hands-on assistance to refine their business strategy, clarify their value proposition, and build their product. We focus on developing the founders' digital platform to ensure a successful launch.\",fonts:[\"GF;Tinos-regular\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-avvkru\",\"data-framer-name\":\"Frame 10\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SxpfXttIF\"},implicitPathVariables:undefined},{href:{webPageId:\"SxpfXttIF\"},implicitPathVariables:undefined},{href:{webPageId:\"SxpfXttIF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{y:(componentViewport?.y||0)+0+140+20+0+0+420+0},vSahVGYjJ:{y:(componentViewport?.y||0)+0+140+40+0+0+630+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+140+140+0+0+630+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-ro2l40-container\",\"data-framer-appear-id\":\"ro2l40\",initial:animation3,nodeId:\"wRJR4pNR0\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{IAfPrROle:resolvedLinks[2]},vSahVGYjJ:{IAfPrROle:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{es38neyb4:\"Build with us\",height:\"100%\",IAfPrROle:resolvedLinks[0],id:\"wRJR4pNR0\",layoutId:\"wRJR4pNR0\",o2cdtHXB9:false,variant:\"UQgUoDRZ7\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-45oixr\",\"data-framer-name\":\"How we can help\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fxmq4o\",\"data-framer-name\":\"Frame 46\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"How we can help\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"How we can help\"})}),className:\"framer-a6n1ok\",\"data-framer-name\":\"How we can help\",fonts:[\"GF;Aktiv Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Activate Studio can help build your product and raise funds from investors.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Activate Studio can help build your product and raise funds from investors.\"})}),className:\"framer-y0x0t\",\"data-framer-name\":\"Activate Studio can help build your product and raise funds from investors.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-byi739\",\"data-framer-name\":\"Frame 44\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1476ui7\",\"data-border\":true,\"data-framer-name\":\"Cards\",whileHover:animation9,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+661+40+372+0+0+0+0),pixelHeight:1536,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px)`,src:\"https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg\",srcSet:\"https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg 2048w\"}},vSahVGYjJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+891+40+330+0+0+0),pixelHeight:1536,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1240px) - 64px) / 2, 1px)`,src:\"https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg\",srcSet:\"https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1031+80+330+0+0+0),pixelHeight:1536,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1240px) - 64px) / 2, 1px)`,src:\"https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg\",srcSet:\"https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xjvox6dUOhTXFcCDfCyjJ1787Co.jpeg 2048w\"},className:\"framer-uwwi38\",\"data-framer-name\":\"Frame 50\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14lrx0u\",\"data-framer-name\":\"Frame 76\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qy56op\",\"data-framer-name\":\"Frame 43\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zkcuwn\",\"data-framer-name\":\"Frame 30\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Strategic Investment\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Strategic Investment\"})}),className:\"framer-1g170b8\",\"data-framer-name\":\"Investment\",fonts:[\"GF;Aktiv Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We invest time, expertise, and resources in digital startups, offering tailored fundraising support and dedicated product teams to help them grow and scale. Learn more about our unique approach and how we can partner with you on your journey to success.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We invest time, expertise, and resources in digital startups, offering tailored fundraising support and dedicated product teams to help them grow and scale. Learn more about our unique approach and how we can partner with you on your journey to success.\"})}),className:\"framer-4u3jg0\",\"data-framer-name\":\"We act as lead investors, helping raise SEIS/EIS rounds, using our own funds to support ambitious founders and work closely to craft their strategy, create compelling experiences for customers, and build digital platforms to take their vision to market.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AcyS57X3r\"},implicitPathVariables:undefined},{href:{webPageId:\"AcyS57X3r\"},implicitPathVariables:undefined},{href:{webPageId:\"AcyS57X3r\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{y:(componentViewport?.y||0)+0+661+40+372+0+0+0+264+0+300},vSahVGYjJ:{y:(componentViewport?.y||0)+0+891+40+330+0+0+264+0+378}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+1031+80+330+0+0+440+0+394,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2oa66-container\",nodeId:\"kgTF5gal3\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{IAfPrROle:resolvedLinks1[2]},vSahVGYjJ:{IAfPrROle:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{es38neyb4:\"Get help raising\",height:\"100%\",IAfPrROle:resolvedLinks1[0],id:\"kgTF5gal3\",layoutId:\"kgTF5gal3\",o2cdtHXB9:false,variant:\"dB4TXjYV_\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xvinns\",\"data-border\":true,\"data-framer-name\":\"Cards\",whileHover:animation9,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+661+40+372+0+649+0+0),pixelHeight:1536,pixelWidth:2300,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px)`,src:\"https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg\",srcSet:\"https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg 2300w\"}},vSahVGYjJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+891+40+330+0+0+0),pixelHeight:1536,pixelWidth:2300,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1240px) - 64px) / 2, 1px)`,src:\"https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg\",srcSet:\"https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg 2300w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1031+80+330+0+0+0),pixelHeight:1536,pixelWidth:2300,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1240px) - 64px) / 2, 1px)`,src:\"https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg\",srcSet:\"https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/z8cgnjq7Rod27NPEavt77wRfs.jpeg 2300w\"},className:\"framer-1dur0it\",\"data-framer-name\":\"Frame 50\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t330k6\",\"data-framer-name\":\"Frame 76\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vo2ex7\",\"data-framer-name\":\"Frame 43\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gheyjs\",\"data-framer-name\":\"Frame 30\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Product Build\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Product Build\"})}),className:\"framer-12ypqm3\",\"data-framer-name\":\"Investment\",fonts:[\"GF;Aktiv Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Partner with a product and tech team customised to your needs. From agile development to strategic planning, we co-create with you to ensure a smooth journey from concept to market. Learn more about how we help build and scale your digital product.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Partner with a product and tech team customised to your needs. From agile development to strategic planning, we co-create with you to ensure a smooth journey from concept to market. Learn more about how we help build and scale your digital product.\"})}),className:\"framer-xdt4k2\",\"data-framer-name\":\"We act as lead investors, helping raise SEIS/EIS rounds, using our own funds to support ambitious founders and work closely to craft their strategy, create compelling experiences for customers, and build digital platforms to take their vision to market.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SxpfXttIF\"},implicitPathVariables:undefined},{href:{webPageId:\"SxpfXttIF\"},implicitPathVariables:undefined},{href:{webPageId:\"SxpfXttIF\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{y:(componentViewport?.y||0)+0+661+40+372+0+649+0+264+0+300},vSahVGYjJ:{y:(componentViewport?.y||0)+0+891+40+330+0+0+264+0+378}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+1031+80+330+0+0+440+0+394,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ngt7f-container\",nodeId:\"gljZDjcI5\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{IAfPrROle:resolvedLinks2[2]},vSahVGYjJ:{IAfPrROle:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{es38neyb4:\"Build with us\",height:\"100%\",IAfPrROle:resolvedLinks2[0],id:\"gljZDjcI5\",layoutId:\"gljZDjcI5\",o2cdtHXB9:false,variant:\"dB4TXjYV_\",width:\"100%\"})})})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e2q0xh\",\"data-framer-name\":\"Activate intelligence\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2387+4+0),positionX:\"left\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px)`,src:\"https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png\",srcSet:\"https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png 3600w\"}},vSahVGYjJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2004+4+0),positionX:\"left\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px)`,src:\"https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png\",srcSet:\"https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png 3600w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2436+80+0),positionX:\"left\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px)`,src:\"https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png\",srcSet:\"https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b309UAgDsP0rtuwP2xU4ALYUU.png 3600w\"},className:\"framer-1n241ar\",\"data-border\":true,\"data-framer-name\":\"Frame 46\",whileHover:animation9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k1czjv\",\"data-framer-name\":\"Frame 63\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3mbbk5\",\"data-framer-name\":\"Frame 133\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nmua11\",\"data-framer-name\":\"Frame 64\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Activate Intelligence\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Activate Intelligence\"})}),className:\"framer-135uz2d\",\"data-framer-name\":\"Activate Intelligence\",fonts:[\"GF;Aktiv Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Activate Intelligence is our latest venture, designed to help businesses harness the power of generative AI. Our AI experts provide innovative services to fully leverage these cutting-edge technologies.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"This new wave of AI is transforming user experiences and digital product development. Startups must adapt and seize the opportunities it offers. Activate Intelligence supports founders through this transition, helping them use AI to create more engaging, efficient products and stay ahead of the curve.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Activate Intelligence is our latest venture, designed to help businesses harness the power of generative AI. Our AI experts provide innovative services to fully leverage these cutting-edge technologies.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"This new wave of AI is transforming user experiences and digital product development. Startups must adapt and seize the opportunities it offers. Activate Intelligence supports founders through this transition, helping them use AI to create more engaging, efficient products and stay ahead of the curve.\"})]}),className:\"framer-atjz0f\",\"data-framer-name\":\"Activate Intelligence is our latest venture, designed to help businesses harness the power of generative AI. Our AI experts provide innovative services to fully leverage these cutting-edge technologies. This new wave of AI is transforming user experiences and digital product development. Startups must adapt and seize the opportunities it offers. Activate Intelligence supports founders through this transition, helping them use AI to create more engaging, efficient products and stay ahead of the curve.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pfUMATwND\"},implicitPathVariables:undefined},{href:{webPageId:\"pfUMATwND\"},implicitPathVariables:undefined},{href:{webPageId:\"pfUMATwND\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{y:(componentViewport?.y||0)+0+2387+4+0+20+0+0+630},vSahVGYjJ:{y:(componentViewport?.y||0)+0+2004+4+0+40+0+0+754}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+2436+80+0+40+0+0+754,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pdm2fg-container\",nodeId:\"nDgTPVk7z\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{IAfPrROle:resolvedLinks3[2]},vSahVGYjJ:{IAfPrROle:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{es38neyb4:\"Learn About Activate Intelligence\",height:\"100%\",IAfPrROle:resolvedLinks3[0],id:\"nDgTPVk7z\",layoutId:\"nDgTPVk7z\",o2cdtHXB9:false,variant:\"dB4TXjYV_\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yhomi8\",\"data-framer-name\":\"Portfolio Companies\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mqs12y\",\"data-framer-name\":\"Frame 46\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Portfolio Companies\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Portfolio Companies\"})}),className:\"framer-y8fr1a\",\"data-framer-name\":\"Our Portfolio Companies\",fonts:[\"GF;Aktiv Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We've partnered with ambitious founders and existing companies to define their digital business strategy, create compelling experiences for their customers, and take their vision to market.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We've partnered with ambitious founders and existing companies to define their digital business strategy, create compelling experiences for their customers, and take their vision to market.\"})}),className:\"framer-lmgjzk\",\"data-framer-name\":\"We've partnered with ambitious founders and existing companies to define their digital business strategy, create compelling experiences for their customers, and take their vision to market.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jie5ug-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jCAgH36q6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:.7,id:\"jCAgH36q6\",layoutId:\"jCAgH36q6\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{hash:\":MLIhhcUGk\",webPageId:\"ZVMw0fmnQ\"},motionChild:true,nodeId:\"U_upNLjP9\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lcxve8 framer-lux5qc\",\"data-framer-name\":\"GMI\",whileHover:animation5,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14t75mg\",\"data-framer-name\":\"Frame 176\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:320,intrinsicWidth:384,svg:'<svg width=\"384\" height=\"320\" viewBox=\"0 0 384 320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.5\" width=\"383\" height=\"319\" rx=\"23.5\" fill=\"white\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"383\" height=\"319\" rx=\"23.5\" stroke=\"#333333\"/>\\n<path d=\"M108.572 129.238C108.572 121.115 111.8 115.774 120.066 115.774C126.874 115.774 129.837 119.436 130.058 124.734H123.957C123.648 122.483 122.675 121.025 119.845 121.025C115.603 121.025 114.894 124.337 114.894 128.973C114.894 134.05 115.732 137.006 119.845 137.006C122.233 137.006 123.559 135.991 124.046 135.593V132.064H119.226V127.649H130.013V141.82H124.709V139.171C124.401 139.48 122.586 142.26 117.901 142.26C111.181 142.26 108.572 136.566 108.572 129.238Z\" fill=\"#010203\"/>\\n<path d=\"M151.233 129.015C151.233 124.381 150.524 121.025 146.325 121.025C142.126 121.025 141.418 124.381 141.418 129.015C141.418 133.606 142.126 137.006 146.325 137.006C150.524 137.006 151.233 133.606 151.233 129.015ZM135.096 129.148C135.096 120.981 138.544 115.773 146.413 115.773C154.15 115.773 157.554 120.805 157.554 128.839C157.554 136.872 154.15 142.26 146.193 142.26C138.591 142.26 135.096 137.359 135.096 129.148Z\" fill=\"#010203\"/>\\n<path d=\"M177.755 129.015C177.755 124.381 177.05 121.025 172.849 121.025C168.649 121.025 167.944 124.381 167.944 129.015C167.944 133.606 168.649 137.006 172.849 137.006C177.05 137.006 177.755 133.606 177.755 129.015ZM161.619 129.148C161.619 120.981 165.067 115.773 172.939 115.773C180.672 115.773 184.078 120.805 184.078 128.839C184.078 136.872 180.672 142.26 172.717 142.26C165.113 142.26 161.619 137.359 161.619 129.148Z\" fill=\"#010203\"/>\\n<path d=\"M196.231 136.697H198.532C203.174 136.697 204.276 134.093 204.276 129.015C204.276 123.896 203.174 121.381 198.532 121.381H196.231V136.697ZM190.089 116.257H198.532C207.022 116.257 210.607 120.542 210.607 128.796C210.607 136.961 207.108 141.82 198.532 141.82H190.089V116.257Z\" fill=\"#010203\"/>\\n<path d=\"M109.234 147.896H116.619L118.563 154.295L119.934 159.727L121.259 154.295L123.206 147.896H130.366V173.456H124.885V162.196L125.769 153.59L121.789 166.74H117.813L113.831 153.59L114.719 162.196V173.456H109.234V147.896Z\" fill=\"#010203\"/>\\n<path d=\"M151.233 160.653C151.233 156.017 150.524 152.663 146.325 152.663C142.126 152.663 141.418 156.017 141.418 160.653C141.418 165.24 142.126 168.638 146.325 168.638C150.524 168.638 151.233 165.24 151.233 160.653ZM135.096 160.784C135.096 152.616 138.544 147.409 146.413 147.409C154.15 147.409 157.554 152.44 157.554 160.477C157.554 168.509 154.15 173.892 146.193 173.892C138.591 173.892 135.096 168.989 135.096 160.784Z\" fill=\"#010203\"/>\\n<path d=\"M169.711 160.166H171.921C175.147 160.166 176.872 159.106 176.872 156.544C176.872 153.941 175.147 152.927 171.921 152.927H169.711V160.166ZM163.566 147.895H171.921C178.02 147.895 183.194 150.276 183.194 156.368C183.194 160.431 180.896 162.635 178.287 163.784L185.094 173.455H177.714L172.453 165.024H169.711V173.455H163.566V147.895Z\" fill=\"#010203\"/>\\n<path d=\"M190.089 147.896H197.605L204.101 167.094L203.265 158.884V147.896H208.655V173.456H201.141L194.642 154.252L195.482 162.459V173.456H190.089V147.896Z\" fill=\"#010203\"/>\\n<path d=\"M216.571 168.333H222.804V153.015H216.571V147.896H235.225V153.015H228.946V168.333H235.225V173.456H216.571V168.333Z\" fill=\"#010203\"/>\\n<path d=\"M243.135 147.896H250.651L257.155 167.094L256.311 158.884V147.896H261.706V173.456H254.189L247.691 154.252L248.534 162.459V173.456H243.135V147.896Z\" fill=\"#010203\"/>\\n<path d=\"M267.715 160.871C267.715 152.75 270.942 147.409 279.211 147.409C286.021 147.409 288.981 151.073 289.203 156.369H283.101C282.79 154.116 281.819 152.663 278.988 152.663C274.748 152.663 274.043 155.975 274.043 160.606C274.043 165.683 274.876 168.638 278.988 168.638C281.379 168.638 282.704 167.628 283.191 167.229V163.701H278.374V159.281H289.156V173.456H283.852V170.806C283.543 171.113 281.733 173.892 277.049 173.892C270.326 173.892 267.715 168.203 267.715 160.871Z\" fill=\"#010203\"/>\\n<path d=\"M110.473 199.966H116.707V184.65H110.473V179.527H129.128V184.65H122.85V199.966H129.128V205.091H110.473V199.966Z\" fill=\"#010203\"/>\\n<path d=\"M143.23 184.65H134.962V179.527H157.687V184.65H149.376V205.091H143.23V184.65Z\" fill=\"#010203\"/>\\n<path d=\"M175.281 195.112L174.925 193.832L172.717 186.06L170.596 193.657L170.198 195.112H175.281ZM169.623 179.527H176.035L185.005 205.091H178.507L176.827 199.882H168.737L167.102 205.091H160.692L169.623 179.527Z\" fill=\"#010203\"/>\\n<path d=\"M190.089 179.527H196.231V199.966H209.362V205.091H190.089V179.527Z\" fill=\"#010203\"/>\\n<path d=\"M216.571 199.966H222.804V184.65H216.571V179.527H235.225V184.65H228.946V199.966H235.225V205.091H216.571V199.966Z\" fill=\"#010203\"/>\\n<path d=\"M254.855 195.112L254.501 193.832L252.293 186.06L250.167 193.657L249.769 195.112H254.855ZM249.195 179.527H255.605L264.579 205.091H258.083L256.404 199.882H248.312L246.675 205.091H240.265L249.195 179.527Z\" fill=\"#010203\"/>\\n<path d=\"M102.4 121.307C100.464 120.656 98.5723 121.118 97.4638 122.836L97.4275 122.751C97.1562 122.041 97.3167 121.027 97.5673 120.315C98.3913 117.964 100.739 116.377 103.174 115.774V114.909C99.7134 115.218 96.4782 117.379 95.2887 120.777C95.1566 121.153 95.0579 121.536 94.9891 121.919C94.3696 124.887 95.1899 127.731 98.3518 129.014C100.872 130.037 103.8 128.753 104.72 126.215C105.416 124.297 104.441 121.995 102.4 121.307Z\" fill=\"#010203\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Kp__vy973\",webPageId:\"ZVMw0fmnQ\"},motionChild:true,nodeId:\"u6NOeAK6L\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xjqgyr framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Hey Food\",whileHover:animation5,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gmc4e5\",\"data-framer-name\":\"Logo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7349wx\",\"data-framer-name\":\"Clip path group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:58,intrinsicWidth:75,svg:'<svg width=\"75\" height=\"58\" viewBox=\"0 0 75 58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_692_173\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"75\" height=\"58\">\\n<path d=\"M0.605469 0.771484H74.2491V57.7145H0.605469V0.771484Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_692_173)\">\\n<mask id=\"mask1_692_173\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-5\" y=\"-3\" width=\"108\" height=\"95\">\\n<path d=\"M-4.04541 8.74033L92.3171 -2.65723L102.066 79.7682L5.70394 91.1657L-4.04541 8.74033Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_692_173)\">\\n<mask id=\"mask2_692_173\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-4\" y=\"-3\" width=\"107\" height=\"95\">\\n<path d=\"M92.3688 -2.66357L-3.99365 8.73398L5.7557 91.1594L102.118 79.7618L92.3688 -2.66357Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_692_173)\">\\n<path d=\"M19.2281 57.5135C41.0549 54.4851 53.6951 54.9489 74.1079 51.933C72.0384 33.6196 68.9306 18.1632 62.5979 0.857422C44.0785 10.2036 34.5524 18.0406 18.0373 30.5629C14.8556 30.2218 9.99826 30.3114 6.88183 31.0094C5.29572 31.3717 3.67187 31.9125 2.57071 33.0906C1.39881 34.3341 0.968872 36.1112 0.742508 37.8058C0.0618457 43.2 2.42844 54.5166 5.20611 56.3597C7.9602 58.1675 14.3628 57.7006 19.2281 57.5135Z\" fill=\"#FFDE59\"/>\\n</g>\\n</g>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oilqfg\",\"data-framer-name\":\"Clip path group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"30\" viewBox=\"0 0 22 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_692_186\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"22\" height=\"30\">\\n<path d=\"M0.970215 0.714355H21.4938V29.2865H0.970215V0.714355Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_692_186)\">\\n<mask id=\"mask1_692_186\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-32\" y=\"-60\" width=\"108\" height=\"95\">\\n<path d=\"M-31.0454 -48.2597L65.3171 -59.6572L75.0664 22.7682L-21.2961 34.1657L-31.0454 -48.2597Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_692_186)\">\\n<mask id=\"mask2_692_186\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-31\" y=\"-60\" width=\"107\" height=\"95\">\\n<path d=\"M65.3688 -59.6636L-30.9937 -48.266L-21.2443 34.1594L75.1182 22.7618L65.3688 -59.6636Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_692_186)\">\\n<path d=\"M1.14355 3.25997C1.56956 11.4515 1.9932 19.6234 2.41921 27.8149C8.70394 28.4869 15.0005 28.9255 21.3033 29.0913C20.7539 19.6925 20.2218 10.2725 19.6724 0.874512C13.4992 1.6432 7.31196 2.45277 1.14355 3.25997Z\" fill=\"#FFDE59\"/>\\n</g>\\n</g>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19y449g\",\"data-framer-name\":\"Clip path group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"39\" viewBox=\"0 0 26 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_692_199\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"26\" height=\"39\">\\n<path d=\"M0.834473 0.197754H25.1811V38.2268H0.834473V0.197754Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_692_199)\">\\n<mask id=\"mask1_692_199\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-76\" y=\"-8\" width=\"108\" height=\"95\">\\n<path d=\"M-75.0454 3.74033L21.3171 -7.65723L31.0664 74.7682L-65.2961 86.1657L-75.0454 3.74033Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_692_199)\">\\n<mask id=\"mask2_692_199\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-75\" y=\"-8\" width=\"107\" height=\"95\">\\n<path d=\"M21.3688 -7.66357L-74.9937 3.73398L-65.2443 86.1594L31.1182 74.7618L21.3688 -7.66357Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_692_199)\">\\n<path d=\"M24.9166 23.5846C24.9614 23.6373 25.0337 23.5901 25.0243 23.5139C24.6659 22.1211 22.9446 22.3247 21.7106 22.2186C19.5947 22.0417 17.4717 21.9631 15.3661 21.8633C13.1614 21.7556 10.9449 21.7077 8.7481 21.6574C6.86331 21.6283 4.94079 21.6031 3.11967 22.1093C2.61192 22.2469 2.84457 22.8984 3.22577 23.0085C4.99267 23.517 6.88925 23.4864 8.7143 23.5037C10.6565 23.5257 12.5979 23.5485 14.5565 23.5492C16.4963 23.5524 18.4385 23.5752 20.3799 23.5972C21.3521 23.6184 22.3221 23.62 23.2872 23.583C23.5765 23.5681 24.6651 23.2647 24.9166 23.5846ZM18.0314 9.64125C15.8896 10.8831 13.4129 11.5834 11.0951 12.4786C9.88778 12.9314 8.70644 13.4399 7.50232 13.9115C6.46482 14.3257 5.46033 14.8515 4.33323 14.8295C4.06128 14.8232 3.93709 14.4302 4.10765 14.2353C4.86141 13.3904 5.96493 13.0461 6.98278 12.6351C8.18769 12.1627 9.39654 11.7288 10.6274 11.3122C12.9736 10.4917 15.4659 9.59566 17.9748 9.49269C18.0494 9.4644 18.1225 9.59173 18.0314 9.64125ZM19.3833 38.1237C18.2876 38.0404 17.2784 37.539 16.2629 37.1546C15.1075 36.7294 13.9663 36.2633 12.8274 35.8161C10.7115 34.9806 8.29695 34.2378 6.54892 32.7382C6.1402 32.3986 6.43102 31.7439 6.96077 31.7974C9.25978 32.0489 11.444 33.3033 13.4994 34.2819C14.6092 34.81 15.7355 35.317 16.828 35.8664C17.7971 36.3529 18.8716 36.7491 19.6764 37.4879C19.9358 37.7095 19.7535 38.1387 19.3833 38.1237ZM7.87723 0.525399C7.69724 2.1178 6.18422 3.75108 5.2206 4.95049C4.15795 6.29845 2.97112 7.73759 1.41801 8.54244C1.03445 8.74287 0.760141 8.23198 0.958209 7.93723C1.91397 6.50517 3.30909 5.35134 4.41418 4.03796C5.40138 2.87392 6.20623 1.14947 7.46066 0.284102C7.6603 0.16306 7.91024 0.308468 7.87723 0.525399Z\" fill=\"#FFDE59\"/>\\n</g>\\n</g>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cu24h8\",\"data-framer-name\":\"Clip path group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:31,svg:'<svg width=\"31\" height=\"28\" viewBox=\"0 0 31 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_692_212\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"31\" height=\"28\">\\n<path d=\"M0.396973 0.691406H30.9812V27.6538H0.396973V0.691406Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_692_212)\">\\n<mask id=\"mask1_692_212\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-4\" y=\"-4\" width=\"42\" height=\"38\">\\n<path d=\"M-3.89844 7.26282L29.0995 -3.97754L37.9552 22.0213L4.95725 33.2608L-3.89844 7.26282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_692_212)\">\\n<mask id=\"mask2_692_212\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-4\" y=\"-4\" width=\"42\" height=\"38\">\\n<path d=\"M-3.89844 7.26282L29.0995 -3.97754L37.9552 22.0213L4.95725 33.2608L-3.89844 7.26282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_692_212)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.2728 2.46764C23.7149 -2.14294 13.0664 2.92509 16.035 11.5473C12.9312 2.43542 1.47701 5.43159 0.680024 11.8664C-0.114607 18.2974 4.87089 21.391 11.4535 22.7107C12.8722 22.9944 14.1463 23.3803 15.2703 23.8095L14.004 19.4685C12.7315 19.643 11.3733 18.5858 11.0204 16.896C10.6424 15.0843 11.0196 12.9307 12.0595 12.577C13.0608 12.2359 14.6902 13.5092 15.5933 15.3381C16.3431 16.8527 15.8762 18.5072 14.7979 19.1785L16.8768 24.4956C19.9083 25.9316 21.4748 27.5154 21.4748 27.5154C21.4748 27.5154 21.5031 27.2317 21.6076 26.7318C21.489 26.6092 21.4575 26.4661 21.4575 26.4661L18.9235 17.7849C17.842 17.913 16.7047 17.0775 16.2975 15.7146L16.2944 15.7154C15.8487 14.1733 15.1115 11.4774 15.3009 11.4129C15.484 11.3508 16.4775 13.7528 17.0757 15.2627L17.3798 15.1589C16.9318 13.598 16.2535 11.0891 16.4351 11.027C16.6174 10.9649 17.6117 13.3669 18.2098 14.876L18.5132 14.773C18.066 13.212 17.3877 10.7024 17.5693 10.6403C17.7508 10.5782 18.7459 12.9802 19.344 14.4893L19.6474 14.3863C19.2002 12.8253 18.5211 10.3165 18.7034 10.2544C18.8929 10.1899 19.9547 12.775 20.5434 14.2684L20.5411 14.2692C21.0417 15.5645 20.6228 16.9125 19.7189 17.4996L22.3528 24.2378C22.7049 23.3119 23.1938 22.2399 23.8689 21.0884L22.2922 15.684L20.6755 10.9382C20.4923 10.4014 20.5961 9.88026 21.1329 9.69713C21.6689 9.51399 22.2655 10.0595 22.6624 11.2259L24.438 16.4377C24.8286 17.5845 24.6706 18.4113 24.3476 18.8436L24.7091 19.7679C25.1878 19.0684 25.7341 18.3532 26.3621 17.6316C30.7706 12.5691 32.8315 7.07508 28.2728 2.46764Z\" fill=\"#F78B44\"/>\\n</g>\\n</g>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r0a8uq\",\"data-framer-name\":\"Clip path group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"28\" viewBox=\"0 0 32 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_692_225\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"32\" height=\"28\">\\n<path d=\"M0.396973 0.490234H31.1824V27.8551H0.396973V0.490234Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_692_225)\">\\n<mask id=\"mask1_692_225\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-4\" y=\"-4\" width=\"42\" height=\"38\">\\n<path d=\"M-3.89844 7.26282L29.0995 -3.97754L37.9552 22.0213L4.95725 33.2608L-3.89844 7.26282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_692_225)\">\\n<mask id=\"mask2_692_225\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-4\" y=\"-4\" width=\"42\" height=\"38\">\\n<path d=\"M-3.89844 7.26282L29.0995 -3.97754L37.9552 22.0213L4.95725 33.2608L-3.89844 7.26282Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_692_225)\">\\n<path d=\"M28.2725 2.46749L28.3974 2.34409C27.4598 1.39463 26.2706 0.843651 25.0004 0.640867C23.7303 0.438083 22.3792 0.581132 21.1011 1.01657C19.181 1.67051 17.4243 2.98546 16.3664 4.80423C15.8382 5.71361 15.4853 6.74797 15.3792 7.8845C15.2715 9.02103 15.4098 10.2582 15.8571 11.57C15.861 11.5818 15.8649 11.5936 15.8688 11.6053C15.9011 11.6965 16.0009 11.7445 16.0921 11.713C16.184 11.6816 16.2328 11.5818 16.2013 11.4906C15.7368 10.1261 15.0852 9.02339 14.3079 8.15959C13.1415 6.86272 11.6929 6.1066 10.1815 5.79928C8.67002 5.49196 7.09569 5.6303 5.6652 6.11761C4.34082 6.56876 3.13747 7.31938 2.22102 8.29793C1.30377 9.27648 0.673413 10.4853 0.505212 11.8451C0.316576 13.3754 0.449407 14.7289 0.854189 15.918C1.1843 16.8879 1.69519 17.747 2.35385 18.5039C3.34262 19.6389 4.66071 20.5428 6.20438 21.258C7.74806 21.9741 9.51888 22.5022 11.4186 22.8827C12.8279 23.1648 14.0917 23.5476 15.2078 23.9736C15.2699 23.9972 15.3407 23.9838 15.3894 23.9382C15.4381 23.8934 15.4578 23.8243 15.4389 23.7598L14.1719 19.4188C14.1475 19.3355 14.0658 19.2821 13.9793 19.2938C13.4551 19.3662 12.9065 19.209 12.427 18.8616C11.9484 18.5142 11.5428 17.9765 11.3125 17.3006C11.2646 17.1599 11.2237 17.0121 11.1922 16.8597C11.0083 15.9794 11.0083 15.0071 11.1797 14.2274C11.2653 13.8368 11.3927 13.4956 11.5538 13.2394C11.634 13.1113 11.7228 13.0044 11.8171 12.9211C11.9114 12.8386 12.0105 12.7788 12.1158 12.7435C12.3193 12.6735 12.5693 12.6821 12.8522 12.7741C13.2759 12.9109 13.7608 13.2347 14.2175 13.6945C14.6749 14.1535 15.1057 14.7469 15.4358 15.4158C15.5042 15.5541 15.5623 15.6933 15.6095 15.8332C15.8335 16.491 15.8319 17.1528 15.6606 17.7187C15.49 18.2846 15.1505 18.7515 14.7048 19.0298C14.6325 19.0746 14.6026 19.1642 14.6341 19.2428L16.713 24.5599C16.7287 24.6016 16.7609 24.6354 16.801 24.655C18.3054 25.3671 19.4451 26.1154 20.2067 26.6852C20.5879 26.9698 20.8748 27.2095 21.0658 27.3769C21.1617 27.4618 21.2332 27.5278 21.2796 27.5718C21.3031 27.5946 21.3212 27.6111 21.333 27.6229L21.3456 27.6355L21.3487 27.6379V27.6386C21.3967 27.6874 21.469 27.7039 21.5327 27.6811C21.5971 27.6583 21.6419 27.6001 21.649 27.5333L21.6498 27.531C21.6521 27.5027 21.6828 27.2299 21.7795 26.7678C21.7912 26.7112 21.7747 26.6514 21.7339 26.6098C21.6765 26.5508 21.645 26.4777 21.634 26.4439L21.6285 26.4282V26.4259L21.5547 26.4439L21.6285 26.4282V26.4259L21.5547 26.4439L21.6285 26.4282L21.6262 26.4164L19.0922 17.7352C19.0678 17.6527 18.9876 17.6001 18.9027 17.6103C18.4296 17.6661 17.9368 17.5191 17.5068 17.2016C17.0769 16.8848 16.713 16.3975 16.5047 15.7868C16.4913 15.7459 16.478 15.705 16.4654 15.6642C16.452 15.6186 16.4206 15.5801 16.3782 15.5581C16.3357 15.5361 16.2854 15.5321 16.2406 15.5478L16.2375 15.5486L16.2941 15.7153L16.4631 15.6665C16.2406 14.8971 15.9451 13.8383 15.7297 12.9675C15.6228 12.5328 15.5348 12.1437 15.4869 11.8655C15.4625 11.7272 15.4483 11.6148 15.4468 11.5472C15.446 11.5299 15.446 11.5165 15.446 11.5063L15.4476 11.4914V11.4906L15.4381 11.489L15.4476 11.4914V11.4906L15.4381 11.489L15.4476 11.4914L15.354 11.4686L15.435 11.5197C15.446 11.5024 15.4468 11.4937 15.4476 11.4914L15.354 11.4686L15.435 11.5197L15.31 11.4403L15.3572 11.5794C15.398 11.566 15.424 11.537 15.435 11.5197L15.31 11.4403L15.3572 11.5794L15.3084 11.4356L15.2982 11.5873C15.3155 11.5888 15.3367 11.5865 15.3572 11.5794L15.3084 11.4356L15.2982 11.5873L15.3069 11.4592L15.2385 11.5692C15.2456 11.5739 15.2629 11.5841 15.2982 11.5873L15.3069 11.4592L15.2385 11.5692L15.2707 11.5173L15.2314 11.5645L15.2385 11.5692L15.2707 11.5173L15.2314 11.5645C15.233 11.566 15.2479 11.581 15.2644 11.6046C15.2974 11.6494 15.343 11.7248 15.3949 11.8207C15.5796 12.1579 15.8468 12.7505 16.1219 13.3974C16.3978 14.0458 16.6839 14.7516 16.9119 15.327C16.9464 15.4142 17.0431 15.459 17.1319 15.4284L17.4361 15.3254C17.5249 15.2948 17.5744 15.2004 17.5485 15.1101C17.3245 14.3311 17.0439 13.3149 16.8419 12.4888C16.7405 12.0762 16.6595 11.7099 16.6163 11.4497C16.5943 11.32 16.5825 11.2163 16.581 11.1534C16.5802 11.1377 16.5802 11.1251 16.581 11.1165L16.5825 11.1047V11.1039L16.4921 11.0835L16.5699 11.1322C16.581 11.1141 16.5817 11.1062 16.5825 11.1039L16.4921 11.0835L16.5699 11.1322L16.4505 11.0575L16.5432 11.1636C16.5558 11.1518 16.5644 11.1408 16.5699 11.1322L16.4505 11.0575L16.5432 11.1636L16.4426 11.0489L16.4913 11.1935C16.5118 11.1864 16.5299 11.1746 16.5432 11.1636L16.4426 11.0489L16.4324 11.2014C16.4497 11.2021 16.4709 11.1998 16.4913 11.1935L16.4426 11.0489L16.4324 11.2014L16.441 11.0732L16.3727 11.1825C16.3805 11.1872 16.397 11.1982 16.4324 11.2014L16.441 11.0732L16.3727 11.1825L16.4049 11.1306L16.3656 11.1786L16.3727 11.1825L16.4049 11.1306L16.3656 11.1786C16.3679 11.1793 16.3813 11.1943 16.3986 11.2179C16.4316 11.2634 16.4772 11.3381 16.5291 11.434C16.7138 11.772 16.981 12.3638 17.2561 13.0115C17.532 13.6591 17.8181 14.3649 18.046 14.9411C18.0806 15.0283 18.1773 15.0723 18.2661 15.0425L18.5695 14.9387C18.6591 14.9088 18.7086 14.8145 18.6819 14.7241C18.4587 13.9452 18.1773 12.9289 17.9761 12.1029C17.8747 11.6902 17.7937 11.324 17.7505 11.0638C17.7285 10.9341 17.7167 10.8296 17.7151 10.7675C17.7143 10.7518 17.7143 10.7392 17.7151 10.7305L17.7167 10.718L17.6263 10.6975L17.7041 10.7455C17.7151 10.7282 17.7159 10.7195 17.7167 10.718L17.6263 10.6975L17.7041 10.7455L17.5847 10.6716L17.6774 10.7769C17.69 10.7659 17.6986 10.7541 17.7041 10.7455L17.5847 10.6716L17.6774 10.7769L17.5768 10.6622L17.6255 10.8068C17.646 10.7997 17.664 10.7887 17.6774 10.7769L17.5768 10.6622L17.5658 10.8146C17.5839 10.8162 17.6051 10.8139 17.6255 10.8068L17.5768 10.6622L17.5658 10.8146L17.5752 10.6865L17.5061 10.7966C17.5139 10.8005 17.5312 10.8115 17.5658 10.8146L17.5752 10.6865L17.5061 10.7966L17.5383 10.7447L17.4998 10.7919L17.5061 10.7966L17.5383 10.7447L17.4998 10.7919C17.5013 10.7934 17.5155 10.8084 17.5328 10.8319C17.565 10.8767 17.6114 10.9522 17.6633 11.0481C17.8472 11.3853 18.1144 11.9779 18.3903 12.6248C18.6662 13.2732 18.9523 13.979 19.1802 14.5544C19.2148 14.6416 19.3115 14.6864 19.4011 14.6558L19.7037 14.5528C19.7925 14.5221 19.842 14.4278 19.8161 14.3374C19.5928 13.5585 19.3115 12.5422 19.1095 11.7162C19.0089 11.3035 18.9279 10.938 18.8839 10.6771C18.8627 10.5474 18.8501 10.4437 18.8485 10.3808C18.8485 10.3659 18.8485 10.3525 18.8493 10.3438L18.8501 10.3321L18.7605 10.3108L18.8383 10.3596C18.8485 10.3415 18.8501 10.3336 18.8501 10.3321L18.7605 10.3108L18.8383 10.3596L18.7188 10.2857L18.8116 10.391C18.8242 10.38 18.8328 10.3682 18.8383 10.3596L18.7188 10.2857L18.8116 10.391L18.711 10.2762L18.7597 10.4201C18.7801 10.4138 18.7982 10.402 18.8116 10.391L18.711 10.2762L18.6984 10.4279C18.7165 10.4295 18.7385 10.4279 18.7597 10.4201L18.711 10.2762L18.6984 10.4279L18.7086 10.3022L18.6394 10.4091C18.6465 10.413 18.663 10.4248 18.6984 10.4279L18.7086 10.3022L18.6394 10.4091L18.6677 10.3651L18.6339 10.4052L18.6394 10.4091L18.6677 10.3651L18.6339 10.4052V10.4059C18.6379 10.4083 18.6528 10.4256 18.6709 10.4515C18.7063 10.501 18.755 10.582 18.8108 10.685C19.0057 11.0473 19.2879 11.6777 19.5748 12.356C19.8616 13.0343 20.1548 13.7629 20.3796 14.3327L20.5431 14.2683L20.4865 14.1016L20.4834 14.1024C20.4386 14.1174 20.4008 14.1512 20.3812 14.1944C20.3607 14.2376 20.3592 14.2879 20.3765 14.3319C20.3914 14.3712 20.4056 14.4105 20.4189 14.4498C20.6217 15.0448 20.6225 15.6422 20.4724 16.1554C20.3215 16.6687 20.0196 17.0947 19.6227 17.3517C19.5528 17.3973 19.5245 17.4853 19.5543 17.5631L22.1889 24.3014C22.2157 24.3689 22.2809 24.4137 22.354 24.413C22.4263 24.413 22.4916 24.3682 22.5175 24.2998C22.8657 23.3825 23.3506 22.3199 24.0211 21.1779C24.0454 21.1362 24.0509 21.0859 24.0376 21.0395L22.4601 15.6343L22.4578 15.6272L20.8418 10.8815C20.7585 10.6386 20.7459 10.4099 20.8017 10.2385C20.8292 10.1521 20.8716 10.079 20.9337 10.0161C20.995 9.954 21.0768 9.90133 21.1892 9.86361C21.2882 9.8306 21.3833 9.82981 21.4886 9.86204C21.6458 9.91155 21.8274 10.0483 22.0042 10.2865C22.1803 10.5238 22.3509 10.8579 22.4955 11.2823L24.271 16.4942C24.4597 17.0483 24.5139 17.5183 24.4848 17.8948C24.4557 18.2713 24.3441 18.5542 24.2066 18.7374C24.1704 18.7861 24.1618 18.8506 24.1838 18.9071L24.5445 19.8315C24.5689 19.892 24.6239 19.9344 24.6892 19.9423C24.7536 19.9501 24.8173 19.9203 24.8542 19.8668C25.329 19.1736 25.8713 18.4631 26.4946 17.747C28.1899 15.7994 29.545 13.7849 30.316 11.7673C30.7019 10.7588 30.9401 9.74885 31.0006 8.74751C31.0596 7.74695 30.9401 6.75425 30.61 5.78513C30.2052 4.59515 29.4837 3.44133 28.3974 2.34409L28.2725 2.46749L28.1475 2.59168C29.2015 3.65669 29.8908 4.76414 30.2775 5.89832C30.5919 6.82263 30.7067 7.76739 30.6493 8.72629C30.5628 10.1654 30.0897 11.6391 29.3202 13.116C28.5515 14.5929 27.4881 16.0713 26.2297 17.516C25.597 18.243 25.046 18.9637 24.5634 19.668L24.7088 19.7678L24.8723 19.7033L24.5107 18.779L24.3473 18.8435L24.488 18.948C24.6734 18.7004 24.8023 18.353 24.8354 17.9215C24.8684 17.49 24.8055 16.9728 24.6035 16.3802L22.8287 11.1691C22.6236 10.5678 22.3674 10.1183 22.0726 9.82981C21.9241 9.68519 21.7653 9.58144 21.5947 9.52721C21.425 9.47297 21.2442 9.47219 21.0752 9.53035C20.9188 9.5838 20.7868 9.66475 20.6838 9.7685C20.529 9.92491 20.4456 10.1269 20.4228 10.3383C20.4 10.5506 20.4338 10.7746 20.5085 10.9946L22.1237 15.7365L23.6996 21.1378L23.8686 21.0882L23.7169 21.0002C23.0362 22.1603 22.5434 23.2403 22.1882 24.1748L22.3524 24.2377L22.5167 24.1732L19.8821 17.435L19.7186 17.4994L19.8145 17.6472C20.2916 17.3367 20.6382 16.8376 20.8095 16.2544C20.9809 15.6705 20.9777 14.9992 20.7522 14.3366C20.7372 14.2934 20.7215 14.2494 20.7042 14.2054L20.5407 14.269L20.5973 14.4357L20.5997 14.4341C20.6453 14.4192 20.6822 14.3854 20.7027 14.3414C20.7231 14.2973 20.7247 14.2478 20.7066 14.203C20.4118 13.4556 19.9984 12.4346 19.6345 11.6061C19.4522 11.1919 19.2824 10.8257 19.1433 10.5616C19.0733 10.4295 19.012 10.3242 18.9554 10.244C18.9263 10.2047 18.8996 10.1709 18.8634 10.1387C18.8446 10.123 18.8234 10.1065 18.7888 10.0923C18.7723 10.086 18.7518 10.0798 18.7267 10.0774C18.7023 10.0758 18.674 10.0782 18.6465 10.0876C18.6198 10.0963 18.5962 10.1112 18.5789 10.1269C18.5436 10.1591 18.5286 10.1914 18.5184 10.2165C18.5011 10.2668 18.4988 10.3053 18.4972 10.3478C18.4956 10.4272 18.505 10.5199 18.5215 10.6331C18.5498 10.8304 18.6025 11.0874 18.6693 11.3845C18.8721 12.2742 19.2148 13.5169 19.4781 14.4349L19.6471 14.3862L19.5905 14.2195L19.2871 14.3233L19.3437 14.4891L19.5072 14.4247C19.2077 13.6686 18.8092 12.69 18.461 11.904C18.2873 11.5118 18.1262 11.1676 17.9942 10.9208C17.9281 10.7966 17.87 10.6975 17.8149 10.6221C17.7874 10.5844 17.7615 10.5529 17.7253 10.5215C17.7065 10.5065 17.6853 10.4908 17.6515 10.4775C17.635 10.4712 17.6145 10.4657 17.5902 10.4641C17.5666 10.4617 17.5391 10.4649 17.5123 10.4735C17.4864 10.483 17.462 10.4971 17.4447 10.5128C17.4094 10.5451 17.3944 10.5773 17.3842 10.6032C17.3669 10.6535 17.3646 10.692 17.363 10.7345C17.3614 10.8139 17.3709 10.9058 17.3874 11.019C17.4157 11.2171 17.4683 11.4741 17.5359 11.7704C17.7387 12.6601 18.0806 13.9036 18.3439 14.8208L18.5129 14.7729L18.4563 14.6062L18.1529 14.7092L18.2095 14.8758L18.373 14.8114C18.0735 14.0553 17.675 13.0759 17.3269 12.2907C17.1531 11.8977 16.9928 11.5543 16.86 11.3067C16.794 11.1825 16.7358 11.0835 16.6808 11.0088C16.6533 10.9703 16.6273 10.9388 16.5912 10.9082C16.5723 10.8925 16.5503 10.8767 16.5173 10.8634C16.5 10.8571 16.4803 10.8516 16.456 10.85C16.4324 10.8484 16.4041 10.8516 16.3782 10.8602C16.3514 10.8689 16.3279 10.8838 16.3106 10.9003C16.2752 10.9318 16.2595 10.964 16.2501 10.9891C16.232 11.0394 16.2304 11.078 16.2288 11.1212C16.2273 11.1998 16.2367 11.2925 16.2532 11.4057C16.2823 11.603 16.3342 11.86 16.4017 12.1571C16.6045 13.0468 16.9464 14.2895 17.2097 15.2075L17.3795 15.1588L17.3221 14.9922L17.0187 15.0959L17.0753 15.2625L17.2388 15.1973C16.9394 14.4412 16.5409 13.4626 16.1935 12.6766C16.019 12.2844 15.8578 11.9402 15.7258 11.6934C15.6598 11.5692 15.6016 11.4694 15.5466 11.3947C15.5183 11.357 15.4931 11.3248 15.4562 11.2941C15.4381 11.2792 15.4169 11.2634 15.3823 11.2501C15.3658 11.2438 15.3454 11.2383 15.3218 11.2359C15.2982 11.2344 15.2699 11.2375 15.244 11.2462C15.2165 11.2556 15.1921 11.2713 15.174 11.2878C15.1387 11.3216 15.1237 11.3538 15.1143 11.3806C15.097 11.4316 15.0954 11.4709 15.0947 11.5157C15.0939 11.5983 15.1041 11.6965 15.1222 11.8168C15.1544 12.0266 15.211 12.3002 15.2833 12.6138C15.501 13.5546 15.8633 14.8578 16.1251 15.764C16.1384 15.8104 16.1699 15.8489 16.2123 15.8709C16.2556 15.8937 16.3051 15.8976 16.3507 15.8819L16.3538 15.8803L16.2972 15.7145L16.1282 15.764C16.1424 15.8104 16.1565 15.8552 16.1722 15.9C16.4017 16.5751 16.8065 17.1214 17.2978 17.4845C17.789 17.8468 18.3699 18.0276 18.9436 17.9592L18.9232 17.7848L18.7542 17.8343L21.2882 26.5155L21.4572 26.466L21.2851 26.5045C21.2866 26.51 21.2914 26.5288 21.3008 26.5571C21.3236 26.6231 21.3731 26.741 21.4808 26.8534L21.6073 26.7316L21.4352 26.6955C21.3291 27.2016 21.3 27.4917 21.2992 27.4979L21.4745 27.5152L21.5987 27.3918C21.5885 27.3808 20.0078 25.7845 16.9519 24.3367L16.8765 24.4955L17.04 24.4318L14.961 19.1146L14.7976 19.1783L14.8903 19.3284C15.4193 18.9983 15.8052 18.4568 15.9978 17.8201C16.1903 17.1827 16.1903 16.447 15.9427 15.72C15.8901 15.5659 15.8264 15.4119 15.751 15.2594C15.2872 14.3225 14.6404 13.5287 13.9707 13.0044C13.6359 12.7427 13.294 12.5485 12.9607 12.4401C12.6282 12.3316 12.2989 12.3088 12.0026 12.4102C11.8478 12.4629 11.7078 12.5485 11.5837 12.6578C11.3667 12.8496 11.197 13.1137 11.0641 13.4233C10.8653 13.8878 10.7497 14.4593 10.7136 15.0668C10.6774 15.6752 10.7207 16.3205 10.848 16.9312C10.8826 17.0978 10.9274 17.2589 10.98 17.4138C11.2323 18.155 11.6796 18.7523 12.2203 19.1461C12.7611 19.5383 13.4001 19.7285 14.0273 19.6428L14.0037 19.4683L13.8347 19.5179L15.1017 23.8588L15.2699 23.8093L15.3328 23.6451C14.2002 23.2128 12.9175 22.8237 11.4878 22.5376C8.98127 22.0361 6.71449 21.2753 4.92323 20.1789C4.02721 19.6302 3.25066 18.9975 2.61951 18.2729C1.98836 17.5474 1.50263 16.73 1.18745 15.8049C0.800742 14.6707 0.671055 13.3746 0.854975 11.8883C1.01296 10.6103 1.60402 9.47061 2.47725 8.53844C3.35048 7.60626 4.50509 6.88394 5.77917 6.45008C7.61365 5.82522 9.69023 5.79928 11.5255 6.58291C12.4435 6.97511 13.3026 7.56853 14.0462 8.3946C14.7897 9.22067 15.4169 10.2794 15.8681 11.6038C15.8838 11.6486 15.9152 11.6847 15.9577 11.7052C16.0001 11.7264 16.0481 11.7287 16.0921 11.713C16.1369 11.6981 16.173 11.6659 16.1935 11.6242C16.2139 11.581 16.2163 11.533 16.2005 11.489C16.1974 11.4788 16.1935 11.4678 16.1895 11.4568C15.7572 10.1866 15.6268 9.00138 15.7289 7.91751C15.8822 6.29131 16.5597 4.88833 17.5461 3.76987C18.5325 2.65141 19.8294 1.82063 21.2143 1.34904C22.4428 0.930109 23.7389 0.795706 24.9446 0.988272C26.1519 1.18162 27.2664 1.70037 28.1475 2.59168L28.2725 2.46749Z\" fill=\"#F78B44\"/>\\n</g>\\n</g>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t54f2e\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"24\" viewBox=\"0 0 23 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.2374 0V23.174H15.6823V14.1351H6.74407V23.174H0.188965V0H6.74407V8.70556H15.6823V0H22.2374Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qe8dil\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.1528 10.2355C20.1528 10.2795 20.119 10.7983 20.0522 11.7918H7.01115C7.27524 12.7185 7.7877 13.4298 8.54853 13.9265C9.30937 14.4233 10.2636 14.6716 11.4127 14.6716C12.2741 14.6716 13.0192 14.5506 13.648 14.3069C14.2768 14.0641 14.9103 13.6671 15.5501 13.1154L18.8606 16.558C17.1165 18.5009 14.5676 19.4724 11.2146 19.4724C9.11601 19.4724 7.27288 19.0755 5.68441 18.2809C4.09515 17.487 2.86508 16.3835 1.99342 14.9703C1.12098 13.5579 0.685547 11.9576 0.685547 10.1695C0.685547 8.40261 1.10998 6.81964 1.95884 5.41902C2.80928 4.01682 3.98511 2.9188 5.48634 2.12417C6.98678 1.33033 8.67508 0.932617 10.5512 0.932617C12.3385 0.932617 13.9608 1.30282 15.418 2.04243C16.8745 2.78047 18.0275 3.85019 18.8764 5.25239C19.7268 6.65458 20.1528 8.31615 20.1528 10.2355ZM10.5858 5.4033C9.61276 5.4033 8.80083 5.67918 8.14925 6.23015C7.49924 6.78191 7.0866 7.53174 6.91054 8.48121H14.2611C14.0826 7.53174 13.6676 6.78191 13.0161 6.23015C12.3661 5.67918 11.5557 5.4033 10.5858 5.4033Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ts4dfp\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"25\" viewBox=\"0 0 23 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.2065 0.231445L14.4599 18.9033C13.5544 21.1103 12.4509 22.6603 11.1493 23.5532C9.84773 24.4476 8.25847 24.8956 6.38311 24.8956C5.43364 24.8956 4.47867 24.7455 3.51898 24.446C2.55851 24.1482 1.78038 23.7575 1.18304 23.2734L3.36807 18.8687C3.72177 19.1996 4.14777 19.4582 4.64451 19.6453C5.14125 19.8339 5.64271 19.9282 6.15046 19.9282C6.74545 19.9282 7.2359 19.8064 7.62182 19.5635C8.00931 19.3199 8.33549 18.9347 8.59958 18.4065L0.918945 0.231445H7.37659L11.7781 11.1881L16.2142 0.231445H22.2065Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14s9kgu\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"24\" viewBox=\"0 0 8 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.304389 0H7.78696L6.52938 14.7325H1.53052L0.304389 0ZM4.04567 23.4726C2.94294 23.4726 2.03827 23.1362 1.33246 22.4634C0.625856 21.7891 0.272949 20.9661 0.272949 19.9954C0.272949 19.002 0.625856 18.1861 1.33246 17.5463C2.03827 16.9073 2.94294 16.5874 4.04567 16.5874C5.14998 16.5874 6.04915 16.9073 6.74317 17.5463C7.43877 18.1861 7.78696 19.002 7.78696 19.9954C7.78696 20.9661 7.43327 21.7891 6.72745 22.4634C6.02085 23.1362 5.12719 23.4726 4.04567 23.4726Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lnf1jw\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"24\" viewBox=\"0 0 19 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.74407 5.09955V10.199H16.9744V15.2639H6.74407V23.2086H0.188965V0.034668H18.3641V5.09955H6.74407Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ap1hr1\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.3861 19.5076C8.46595 19.5076 6.73364 19.1106 5.18919 18.316C3.64394 17.5222 2.43588 16.4187 1.56423 15.0055C0.691783 13.593 0.256348 11.9928 0.256348 10.2047C0.256348 8.43777 0.691783 6.84929 1.56423 5.43845C2.43588 4.02604 3.63922 2.92802 5.17347 2.14361C6.70771 1.35998 8.44473 0.967773 10.3861 0.967773C12.3291 0.967773 14.0724 1.35998 15.6176 2.14361C17.1621 2.92802 18.3654 4.02054 19.2269 5.42273C20.0883 6.82336 20.519 8.41733 20.519 10.2047C20.519 11.9928 20.0883 13.593 19.2269 15.0055C18.3654 16.4187 17.1621 17.5222 15.6176 18.316C14.0724 19.1106 12.3291 19.5076 10.3861 19.5076ZM10.3861 14.5087C11.4904 14.5087 12.3959 14.1283 13.1025 13.3675C13.8083 12.6051 14.162 11.5503 14.162 10.2047C14.162 8.88028 13.8083 7.84278 13.1025 7.09216C12.3959 6.34233 11.4904 5.96663 10.3861 5.96663C9.28338 5.96663 8.37871 6.34233 7.6729 7.09216C6.9663 7.84278 6.61339 8.88028 6.61339 10.2047C6.61339 11.5503 6.9663 12.6051 7.6729 13.3675C8.37871 14.1283 9.28338 14.5087 10.3861 14.5087Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uv63hq\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.6718 19.5076C8.7516 19.5076 7.01929 19.1106 5.47483 18.316C3.92958 17.5222 2.72153 16.4187 1.84987 15.0055C0.977427 13.593 0.541992 11.9928 0.541992 10.2047C0.541992 8.43777 0.977427 6.84929 1.84987 5.43845C2.72153 4.02604 3.92487 2.92802 5.45911 2.14361C6.99335 1.35998 8.73038 0.967773 10.6718 0.967773C12.6147 0.967773 14.358 1.35998 15.9033 2.14361C17.4477 2.92802 18.6511 4.02054 19.5125 5.42273C20.3739 6.82336 20.8047 8.41733 20.8047 10.2047C20.8047 11.9928 20.3739 13.593 19.5125 15.0055C18.6511 16.4187 17.4477 17.5222 15.9033 18.316C14.358 19.1106 12.6147 19.5076 10.6718 19.5076ZM10.6718 14.5087C11.7761 14.5087 12.6815 14.1283 13.3881 13.3675C14.0939 12.6051 14.4476 11.5503 14.4476 10.2047C14.4476 8.88028 14.0939 7.84278 13.3881 7.09216C12.6815 6.34233 11.7761 5.96663 10.6718 5.96663C9.56902 5.96663 8.66435 6.34233 7.95854 7.09216C7.25194 7.84278 6.89903 8.88028 6.89903 10.2047C6.89903 11.5503 7.25194 12.6051 7.95854 13.3675C8.66435 14.1283 9.56902 14.5087 10.6718 14.5087Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tmgxwn\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"26\" viewBox=\"0 0 22 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.0248 0.64502V25.2086H15.0324V23.4197C13.8629 24.8117 12.107 25.5073 9.76632 25.5073C8.13304 25.5073 6.64439 25.1269 5.29878 24.366C3.95318 23.6036 2.88817 22.5158 2.10454 21.1026C1.32013 19.6902 0.928711 18.0577 0.928711 16.2044C0.928711 14.3494 1.32013 12.7225 2.10454 11.3218C2.88817 9.91963 3.95318 8.84362 5.29878 8.09301C6.64439 7.34318 8.13304 6.96748 9.76632 6.96748C11.9081 6.96748 13.5642 7.58605 14.7337 8.8224V0.64502H21.0248ZM11.0931 20.5084C12.1746 20.5084 13.0675 20.128 13.7717 19.3672C14.4775 18.6048 14.8312 17.55 14.8312 16.2044C14.8312 14.88 14.483 13.8425 13.7874 13.0919C13.0934 12.342 12.195 11.9663 11.0931 11.9663C9.98797 11.9663 9.08251 12.342 8.3767 13.0919C7.6701 13.8425 7.31719 14.88 7.31719 16.2044C7.31719 17.55 7.6701 18.6048 8.3767 19.3672C9.08251 20.128 9.98797 20.5084 11.0931 20.5084Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tc2li5\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"28\" viewBox=\"0 0 8 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.890397 9.30108H7.18142V27.2435H0.890397V9.30108ZM4.03748 7.31411C2.88837 7.31411 1.96091 6.995 1.25509 6.35521C0.550851 5.71384 0.19873 4.91843 0.19873 3.96896C0.19873 3.02185 0.550851 2.22879 1.25509 1.589C1.96091 0.947635 2.88837 0.626953 4.03748 0.626953C5.1858 0.626953 6.11248 0.931129 6.81672 1.53869C7.52253 2.14469 7.87623 2.92203 7.87623 3.8715C7.87623 4.86498 7.52253 5.68791 6.81672 6.33949C6.11248 6.9895 5.1858 7.31411 4.03748 7.31411Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-a8bqfw\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"19\" viewBox=\"0 0 17 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.01407 18.5422C6.51284 18.5422 5.0344 18.3709 3.57797 18.0298C2.12075 17.6863 0.95121 17.2391 0.0693359 16.6873L1.9557 12.3833C2.77076 12.891 3.74145 13.2942 4.86698 13.5937C5.99251 13.8916 7.10704 14.0401 8.21213 14.0401C9.22605 14.0401 9.94837 13.9356 10.3783 13.7257C10.8098 13.5167 11.026 13.2125 11.026 12.814C11.026 12.4178 10.7658 12.1373 10.2463 11.9714C9.7283 11.8064 8.90694 11.646 7.78141 11.4904C6.34778 11.3143 5.12793 11.0832 4.12187 10.7956C3.11738 10.5087 2.25123 9.97973 1.52183 9.20789C0.794013 8.43448 0.430889 7.35218 0.430889 5.9602C0.430889 4.81424 0.772006 3.79403 1.45581 2.90115C2.14119 2.0067 3.13939 1.3001 4.45198 0.782138C5.76615 0.262602 7.33891 0.00244141 9.17103 0.00244141C10.4742 0.00244141 11.7656 0.136059 13.0444 0.401721C14.3247 0.665812 15.396 1.03994 16.2575 1.52411L14.368 5.79672C12.7787 4.91484 11.0582 4.47312 9.20562 4.47312C8.21213 4.47312 7.48353 4.58945 7.02058 4.8221C6.55685 5.05318 6.32577 5.35578 6.32577 5.7307C6.32577 6.15041 6.57886 6.4428 7.0866 6.60785C7.59356 6.7737 8.43221 6.94426 9.60175 7.12032C11.081 7.34039 12.3063 7.59426 13.277 7.88115C14.2469 8.16882 15.0911 8.69386 15.8079 9.45626C16.5263 10.2171 16.8863 11.2813 16.8863 12.6474C16.8863 13.7729 16.5436 14.7837 15.8582 15.6781C15.1744 16.571 14.1652 17.2721 12.8306 17.7814C11.4952 18.2884 9.88942 18.5422 8.01407 18.5422Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15aj3zt\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"24\" viewBox=\"0 0 22 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.3187 17.1195H6.74407V23.2785H0.188965V0.104492H10.784C12.8795 0.104492 14.6998 0.452683 16.2451 1.14828C17.7895 1.8423 18.9811 2.835 19.8197 4.12559C20.6599 5.41696 21.0804 6.9347 21.0804 8.67801C21.0804 10.3569 20.6882 11.8204 19.9046 13.0669C19.1202 14.3119 18.0002 15.2881 16.5437 15.994L21.5426 23.2785H14.5253L10.3187 17.1195ZM14.4593 8.67801C14.4593 7.59649 14.1166 6.75864 13.4312 6.16286C12.7474 5.56787 11.7319 5.26998 10.3848 5.26998H6.74407V12.0546H10.3848C11.7319 12.0546 12.7474 11.7622 13.4312 11.1774C14.1166 10.5927 14.4593 9.75952 14.4593 8.67801Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uxwl22\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"19\" viewBox=\"0 0 20 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.9677 9.34002C19.9677 9.38404 19.9339 9.90278 19.8671 10.8963H6.82609C7.09018 11.8229 7.60264 12.5343 8.36347 13.031C9.12431 13.5277 10.0785 13.7761 11.2276 13.7761C12.089 13.7761 12.8342 13.6551 13.4629 13.4114C14.0917 13.1685 14.7252 12.7716 15.365 12.2199L18.6756 15.6625C16.9315 17.6054 14.3825 18.5769 11.0295 18.5769C8.93096 18.5769 7.08782 18.18 5.49935 17.3854C3.91009 16.5915 2.68002 15.488 1.80837 14.0748C0.935923 12.6624 0.500488 11.0621 0.500488 9.274C0.500488 7.5071 0.92492 5.92413 1.77378 4.52351C2.62422 3.12131 3.80005 2.02329 5.30128 1.22866C6.80172 0.434817 8.49002 0.0371094 10.3662 0.0371094C12.1535 0.0371094 13.7758 0.407308 15.233 1.14692C16.6894 1.88496 17.8424 2.95468 18.6913 4.35688C19.5417 5.75908 19.9677 7.42065 19.9677 9.34002ZM10.4007 4.50779C9.4277 4.50779 8.61578 4.78367 7.96419 5.33464C7.31419 5.8864 6.90154 6.63623 6.72548 7.5857H14.076C13.8976 6.63623 13.4826 5.8864 12.831 5.33464C12.181 4.78367 11.3707 4.50779 10.4007 4.50779Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11j91rx\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"19\" viewBox=\"0 0 18 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.76641 0.0371094C11.7445 0.0371094 14.0176 0.7162 15.5856 2.07438C17.1529 3.43099 17.9373 5.50992 17.9373 8.31195V18.2782H12.077V15.9612C11.1715 17.7053 9.40541 18.5769 6.77944 18.5769C5.38982 18.5769 4.18648 18.3333 3.1702 17.8475C2.15549 17.3618 1.38837 16.7055 0.868838 15.8794C0.350874 15.0518 0.0922852 14.1078 0.0922852 13.0467C0.0922852 11.3474 0.74308 10.0285 2.04467 9.09165C3.34626 8.15318 5.35524 7.68316 8.0716 7.68316H11.6463C11.5346 5.78658 10.2661 4.8379 7.83895 4.8379C6.97751 4.8379 6.10507 4.97623 5.22319 5.2529C4.34053 5.528 3.58992 5.90841 2.97213 6.39415L0.853118 2.12154C1.8466 1.45974 3.05466 0.947279 4.47808 0.584154C5.90071 0.219458 7.33041 0.0371094 8.76641 0.0371094ZM8.53376 14.603C9.26315 14.603 9.90294 14.4269 10.4547 14.0748C11.0057 13.7211 11.4026 13.2023 11.6463 12.5185V10.9623H8.92989C7.09776 10.9623 6.18209 11.5691 6.18209 12.7826C6.18209 13.3344 6.39116 13.7753 6.81088 14.1062C7.23217 14.4379 7.80594 14.603 8.53376 14.603Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xgz4nk\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"26\" viewBox=\"0 0 21 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.2162 0.714844V25.2784H14.2238V23.4895C13.0543 24.8815 11.2984 25.5771 8.95773 25.5771C7.32445 25.5771 5.8358 25.1967 4.49019 24.4358C3.14459 23.6734 2.07958 22.5856 1.29595 21.1724C0.511537 19.76 0.120117 18.1275 0.120117 16.2742C0.120117 14.4193 0.511537 12.7923 1.29595 11.3917C2.07958 9.98946 3.14459 8.91345 4.49019 8.16283C5.8358 7.413 7.32445 7.0373 8.95773 7.0373C11.0995 7.0373 12.7556 7.65587 13.9251 8.89222V0.714844H20.2162ZM10.2845 20.5782C11.366 20.5782 12.2589 20.1978 12.9631 19.437C13.6689 18.6746 14.0226 17.6198 14.0226 16.2742C14.0226 14.9498 13.6744 13.9123 12.9788 13.1617C12.2848 12.4119 11.3864 12.0362 10.2845 12.0362C9.17937 12.0362 8.27392 12.4119 7.56811 13.1617C6.86151 13.9123 6.5086 14.9498 6.5086 16.2742C6.5086 17.6198 6.86151 18.6746 7.56811 19.437C8.27392 20.1978 9.17937 20.5782 10.2845 20.5782Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qg2rpq\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"25\" viewBox=\"0 0 22 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.3945 0.335938L13.6479 19.0078C12.7424 21.2148 11.6389 22.7648 10.3373 23.6577C9.03572 24.5521 7.44646 25.0001 5.5711 25.0001C4.62163 25.0001 3.66666 24.85 2.70697 24.5505C1.7465 24.2527 0.968372 23.862 0.371024 23.3779L2.55606 18.9732C2.90975 19.3041 3.33576 19.5627 3.8325 19.7497C4.32924 19.9384 4.8307 20.0327 5.33845 20.0327C5.93344 20.0327 6.42389 19.9109 6.80981 19.668C7.1973 19.4244 7.52348 19.0392 7.78757 18.511L0.106934 0.335938H6.56458L10.9661 11.2926L15.4022 0.335938H21.3945Z\" fill=\"#FFFCF0\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":W8pSyvRuz\",webPageId:\"ZVMw0fmnQ\"},motionChild:true,nodeId:\"a9lL4ENso\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7ols13 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"The Seam\",whileHover:animation5,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/wIkAWMZD8vtSJ3S30wcEDeuHt44.png\"},className:\"framer-1u4uyaq\",\"data-framer-name\":\"image 13\"})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":tqwo5pHXJ\",webPageId:\"ZVMw0fmnQ\"},motionChild:true,nodeId:\"g9voCNTPx\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1msas7l framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Smash\",whileHover:animation5,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"205.1984px\",src:\"https://framerusercontent.com/images/uBLuP7fgnwYlkVfcyfgTatB81U.png\",srcSet:\"https://framerusercontent.com/images/uBLuP7fgnwYlkVfcyfgTatB81U.png?scale-down-to=512 512w,https://framerusercontent.com/images/uBLuP7fgnwYlkVfcyfgTatB81U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uBLuP7fgnwYlkVfcyfgTatB81U.png 1500w\"},className:\"framer-18cow8f\",\"data-framer-name\":\"image 14\"})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":owbHh2ZJR\",webPageId:\"ZVMw0fmnQ\"},motionChild:true,nodeId:\"srYu4aeE9\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-myh95z framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Ecohedge\",whileHover:animation5,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"236px\",src:\"https://framerusercontent.com/images/vAJfasCatRfqnEq6MECNwL34V0.png\",srcSet:\"https://framerusercontent.com/images/vAJfasCatRfqnEq6MECNwL34V0.png?scale-down-to=512 512w,https://framerusercontent.com/images/vAJfasCatRfqnEq6MECNwL34V0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vAJfasCatRfqnEq6MECNwL34V0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vAJfasCatRfqnEq6MECNwL34V0.png 2868w\"},className:\"framer-1615lyu\",\"data-framer-name\":\"image 15\"})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":WJIpBbEfJ\",webPageId:\"ZVMw0fmnQ\"},motionChild:true,nodeId:\"gc8s1Z6tV\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-jeag2p framer-lux5qc\",\"data-framer-name\":\"Playerstate\",whileHover:animation5,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16upilg\",\"data-framer-name\":\"Frame 180\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:320,intrinsicWidth:384,svg:'<svg width=\"384\" height=\"320\" viewBox=\"0 0 384 320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.5\" width=\"383\" height=\"319\" rx=\"23.5\" fill=\"#7E49D9\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"383\" height=\"319\" rx=\"23.5\" stroke=\"#333333\"/>\\n<path d=\"M177.734 124.999C175.029 124.999 172.91 127.113 172.91 129.814C172.91 132.514 175.029 134.628 177.734 134.628C180.388 134.628 182.558 132.463 182.558 129.814C182.583 127.113 180.465 124.999 177.734 124.999Z\" fill=\"white\"/>\\n<path d=\"M202.924 108.033H180.617C167.448 108.033 156.754 118.095 156.754 130.501C156.754 142.908 167.448 152.97 180.617 152.97H197.538L207.237 161.453C208.079 162.319 209.202 162.854 210.427 162.981C211.958 162.981 212.928 161.631 212.928 159.109V150.932C221.095 147.365 226.787 139.57 226.787 130.501C226.787 118.095 216.118 108.033 202.924 108.033ZM177.733 140.64C171.761 140.64 166.886 135.774 166.886 129.814C166.886 123.852 171.761 118.987 177.733 118.987C183.705 118.987 188.58 123.852 188.58 129.814C188.58 135.774 183.731 140.64 177.733 140.64ZM213.515 132.743H208.692V137.558C208.692 139.214 207.339 140.564 205.68 140.564C204.021 140.564 202.668 139.214 202.668 137.558V132.743H197.845C196.186 132.743 194.833 131.393 194.833 129.737C194.833 128.081 196.186 126.731 197.845 126.731H202.668V121.942C202.668 120.286 204.021 118.936 205.68 118.936C207.339 118.936 208.692 120.286 208.692 121.942V126.757H213.515C215.225 126.757 216.527 128.056 216.527 129.763C216.527 131.393 215.174 132.743 213.515 132.743Z\" fill=\"white\"/>\\n<path d=\"M92 211.774V177.649C92.7608 177.589 93.477 177.53 94.1783 177.47C94.8646 177.411 95.3868 177.381 95.7448 177.381C97.9231 177.381 99.7731 177.649 101.28 178.2C102.802 178.737 104.025 179.482 104.965 180.406C105.905 181.345 106.591 182.433 106.994 183.684C107.397 184.936 107.606 186.262 107.606 187.678C107.606 188.736 107.427 189.854 107.084 191.061C106.741 192.268 106.174 193.415 105.383 194.488C104.592 195.576 103.548 196.53 102.265 197.349C100.967 198.184 99.3853 198.75 97.4904 199.093V211.774H92Z\" fill=\"white\"/>\\n<path d=\"M116.381 177.47V205.769H124.527V211.73H110.473V177.47H116.381Z\" fill=\"white\"/>\\n<path d=\"M148.008 211.774H141.996L139.817 201.895H135.267C134.924 203.459 134.536 205.113 134.133 206.857C133.715 208.601 133.342 210.24 132.999 211.774H127.031L134.76 177.426H140.295L148.008 211.774Z\" fill=\"white\"/>\\n<path d=\"M158.482 194.845V211.774H152.424V194.711C151.514 191.999 150.545 189.123 149.515 186.068C148.486 183.013 147.531 180.137 146.65 177.425H152.797L155.498 185.368C155.975 183.982 156.423 182.641 156.87 181.344C157.318 180.048 157.751 178.736 158.198 177.41H164.345L158.482 194.845Z\" fill=\"white\"/>\\n<path d=\"M180.547 177.47V183.386H172.401V193.043H179.22V199.048H172.401V205.814C173.729 205.814 175.102 205.814 176.549 205.784C177.981 205.769 179.324 205.754 180.547 205.754V211.759H166.493V177.47H180.547Z\" fill=\"white\"/>\\n<path d=\"M183.297 211.775V177.605C183.521 177.605 183.774 177.605 184.073 177.575C184.371 177.56 184.684 177.545 185.013 177.53C185.341 177.515 185.669 177.5 185.982 177.5C186.296 177.5 186.564 177.5 186.788 177.5C188.116 177.5 189.399 177.56 190.652 177.679C191.89 177.799 192.95 178.022 193.8 178.35C194.934 178.797 195.859 179.378 196.59 180.064C197.321 180.749 197.903 181.509 198.336 182.344C198.783 183.178 199.082 184.042 199.261 184.937C199.44 185.846 199.529 186.74 199.574 187.649C199.574 188.707 199.455 189.765 199.216 190.838C198.977 191.911 198.604 192.909 198.082 193.833C197.56 194.772 196.904 195.606 196.098 196.366C195.292 197.126 194.322 197.707 193.189 198.125C193.755 199.183 194.337 200.285 194.934 201.463C195.531 202.64 196.143 203.817 196.754 204.98C197.366 206.157 197.963 207.319 198.56 208.481C199.142 209.644 199.708 210.732 200.246 211.76H193.755L188.832 202.014V211.76H183.297V211.775Z\" fill=\"white\"/>\\n<path d=\"M213.507 188.348C213.507 187.782 213.462 187.186 213.358 186.59C213.268 185.994 213.103 185.442 212.865 184.936C212.627 184.444 212.313 184.026 211.925 183.699C211.537 183.371 211.06 183.192 210.523 183.162C210.015 183.132 209.628 183.222 209.345 183.43C209.06 183.639 208.837 183.907 208.688 184.22C208.523 184.533 208.433 184.876 208.405 185.263C208.375 185.636 208.36 185.964 208.36 186.232C208.39 187.022 208.718 187.812 209.36 188.631C209.985 189.451 210.852 190.151 211.955 190.747C213.597 191.656 214.953 192.58 216.043 193.549C217.132 194.517 217.998 195.516 218.625 196.574C219.252 197.632 219.683 198.735 219.907 199.897C220.132 201.059 220.22 202.281 220.192 203.578C220.027 206.23 219.222 208.287 217.773 209.762C216.327 211.237 214.372 211.968 211.91 211.968C210.493 211.968 209.195 211.669 208.032 211.088C206.868 210.507 205.883 209.673 205.077 208.585C204.272 207.497 203.66 206.186 203.257 204.636C202.839 203.086 202.675 201.328 202.735 199.375H208.792C208.703 201.357 208.897 202.982 209.388 204.233C209.882 205.485 210.702 206.111 211.88 206.111C212.328 206.111 212.687 206.022 213 205.843C213.298 205.664 213.537 205.44 213.715 205.187C213.895 204.934 214.028 204.651 214.118 204.323C214.208 204.01 214.268 203.712 214.268 203.444C214.327 202.058 213.925 200.731 213.045 199.45C212.163 198.168 210.852 197.036 209.12 196.037C206.912 194.771 205.257 193.295 204.152 191.612C203.048 189.928 202.496 188.08 202.496 186.053C202.496 183.401 203.212 181.255 204.63 179.616C206.047 177.976 208.15 177.157 210.925 177.157C212.193 177.157 213.343 177.395 214.402 177.857C215.462 178.319 216.372 179.034 217.147 179.973C217.923 180.927 218.505 182.089 218.923 183.49C219.325 184.891 219.52 186.5 219.49 188.348H213.507Z\" fill=\"white\"/>\\n<path d=\"M227.888 211.774V183.431H221.92V177.47H239.853V183.431H233.93V211.774H227.888Z\" fill=\"white\"/>\\n<path d=\"M259.368 211.774H253.356L251.178 201.895H246.627C246.283 203.459 245.897 205.113 245.493 206.857C245.075 208.601 244.703 210.24 244.36 211.774H238.392L246.105 177.426H251.64L259.368 211.774Z\" fill=\"white\"/>\\n<path d=\"M263.592 211.774V183.431H257.624V177.47H275.557V183.431H269.649V211.774H263.592Z\" fill=\"white\"/>\\n<path d=\"M292 177.47V183.386H283.854V193.043H290.672V199.048H283.854V205.814C285.182 205.814 286.555 205.814 288.002 205.784C289.434 205.769 290.777 205.754 292 205.754V211.759H277.945V177.47H292Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":wG1LW5NBa\",webPageId:\"ZVMw0fmnQ\"},motionChild:true,nodeId:\"ecsQdAku7\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-qz4865 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Careermocha\",whileHover:animation5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vb24w6\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x226ou\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:312,svg:'<svg width=\"312\" height=\"50\" viewBox=\"-1 -1 312 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M46.4592 10.254C44.7613 9.24196 42.806 9.08278 40.4636 9.521C38.9524 9.80398 37.3096 10.3857 35.5489 11.2719C35.5744 10.6568 35.5882 10.0477 35.5882 9.44829H35.5685C35.6216 9.17318 35.6491 8.89413 35.6491 8.61312C35.6491 3.85556 27.8711 0 18.2774 0C8.6837 0 0.905762 3.85753 0.905762 8.61312C0.905762 8.89413 0.933274 9.17318 0.986332 9.44829H0.976507C0.909692 19.4508 2.96914 29.4729 2.80996 39.4655C2.73332 44.2191 8.6444 48 18.2322 48C27.82 48 32.5776 44.1287 32.5776 39.4655C32.5776 38.8308 32.5894 38.196 32.611 37.5574C37.6437 37.8285 41.8608 35.5294 44.8183 32.3007C47.8918 28.9482 49.7743 24.621 50.2578 20.563C50.7412 16.505 49.8471 12.2761 46.4533 10.252L46.4592 10.254ZM18.3442 4.85581C25.6643 4.85581 31.597 6.86416 31.597 9.34021C31.597 9.37558 31.595 9.41292 31.5931 9.44829C31.5911 9.48563 31.5872 9.52297 31.5813 9.5603C31.5754 9.59568 31.5695 9.62908 31.5616 9.66446L31.5597 9.67428C31.5518 9.70769 31.5439 9.73913 31.5341 9.77057C31.5321 9.77647 31.5321 9.7804 31.5302 9.78629C31.5204 9.81774 31.5105 9.84721 31.5007 9.87865C31.4987 9.88455 31.4968 9.89241 31.4948 9.8983C31.483 9.92778 31.4712 9.95726 31.4594 9.98674C31.4555 9.9946 31.4535 10.0025 31.4496 10.0103C31.4378 10.0378 31.4241 10.0673 31.4083 10.0948C31.4044 10.1027 31.4005 10.1125 31.3966 10.1204C31.3828 10.1479 31.3671 10.1754 31.3514 10.2009C31.3455 10.2108 31.3415 10.2186 31.3356 10.2284C31.3199 10.254 31.3022 10.2815 31.2865 10.307C31.2806 10.3169 31.2747 10.3267 31.2669 10.3365C31.2492 10.3621 31.2315 10.3876 31.2118 10.4132C31.204 10.423 31.1981 10.4328 31.1902 10.4446C31.1706 10.4702 31.1509 10.4937 31.1313 10.5193C31.1234 10.5291 31.1155 10.5409 31.1057 10.5507C31.0861 10.5743 31.0644 10.5999 31.0428 10.6234C31.033 10.6333 31.0251 10.6451 31.0153 10.6549C30.9937 10.6785 30.9701 10.702 30.9485 10.7256C30.9387 10.7374 30.9269 10.7472 30.9171 10.759C30.8935 10.7826 30.8699 10.8062 30.8463 10.8278C30.8345 10.8396 30.8227 10.8494 30.8109 10.8612C30.7874 10.8848 30.7618 10.9064 30.7363 10.928C30.7225 10.9398 30.7107 10.9516 30.697 10.9614C30.6714 10.9831 30.6459 11.0066 30.6184 11.0282C30.6046 11.04 30.5909 11.0518 30.5771 11.0636C30.5496 11.0852 30.5221 11.1069 30.4946 11.1285C30.4788 11.1403 30.4651 11.1521 30.4494 11.1638C30.4219 11.1855 30.3924 11.2071 30.3629 11.2267C30.3472 11.2385 30.3315 11.2503 30.3157 11.2621C30.2863 11.2837 30.2568 11.3034 30.2273 11.323C30.2096 11.3348 30.1939 11.3466 30.1762 11.3584C30.1467 11.378 30.1153 11.3977 30.0839 11.4193C30.0662 11.4311 30.0465 11.4429 30.0288 11.4547C29.9974 11.4743 29.9659 11.494 29.9345 11.5136C29.9149 11.5254 29.8952 11.5372 29.8756 11.549C29.8441 11.5687 29.8107 11.5883 29.7773 11.606C29.7576 11.6178 29.736 11.6296 29.7164 11.6414C29.683 11.661 29.6496 11.6787 29.6142 11.6984C29.5926 11.7101 29.571 11.7219 29.5493 11.7337C29.5159 11.7514 29.4806 11.7711 29.4452 11.7888C29.4216 11.8005 29.4 11.8123 29.3764 11.8241C29.341 11.8418 29.3057 11.8595 29.2683 11.8772C29.2447 11.889 29.2212 11.9008 29.1976 11.9126C29.1602 11.9302 29.1249 11.9479 29.0875 11.9656C29.062 11.9774 29.0384 11.9892 29.0129 12.001C28.9755 12.0187 28.9382 12.0344 28.8989 12.0521C28.8733 12.0639 28.8478 12.0757 28.8203 12.0855C28.7829 12.1012 28.7436 12.1189 28.7043 12.1346C28.6768 12.1464 28.6493 12.1582 28.6238 12.168C28.5845 12.1837 28.5452 12.1995 28.5059 12.2171C28.4784 12.2289 28.4489 12.2388 28.4214 12.2506C28.3821 12.2663 28.3408 12.282 28.2995 12.2977C28.27 12.3095 28.2425 12.3193 28.2131 12.3311C28.1718 12.3468 28.1305 12.3626 28.0893 12.3763C28.0598 12.3881 28.0283 12.3979 27.9989 12.4097C27.9576 12.4254 27.9163 12.4392 27.8731 12.4549C27.8417 12.4667 27.8102 12.4765 27.7788 12.4883C27.7375 12.5021 27.6943 12.5178 27.651 12.5316C27.6196 12.5414 27.5862 12.5532 27.5547 12.563C27.5115 12.5768 27.4683 12.5905 27.425 12.6043C27.3916 12.6141 27.3582 12.6259 27.3248 12.6357C27.2816 12.6495 27.2384 12.6632 27.1932 12.677C27.1578 12.6868 27.1244 12.6986 27.089 12.7084C27.0458 12.7222 27.0006 12.734 26.9554 12.7477C26.92 12.7576 26.8846 12.7674 26.8493 12.7772C26.8041 12.789 26.7589 12.8028 26.7137 12.8145C26.6763 12.8244 26.641 12.8342 26.6036 12.844C26.5584 12.8558 26.5132 12.8676 26.468 12.8794C26.4307 12.8892 26.3934 12.899 26.3541 12.9089C26.3089 12.9207 26.2617 12.9324 26.2145 12.9442C26.1772 12.9541 26.1379 12.9639 26.0986 12.9718C26.0514 12.9835 26.0043 12.9953 25.9571 13.0052C25.9178 13.015 25.8785 13.0228 25.8392 13.0327C25.792 13.0445 25.7449 13.0543 25.6977 13.0661C25.6584 13.0759 25.6171 13.0838 25.5759 13.0936C25.5287 13.1034 25.4815 13.1152 25.4324 13.125C25.3911 13.1349 25.3499 13.1427 25.3086 13.1506C25.2595 13.1604 25.2123 13.1702 25.1632 13.1801C25.1219 13.1879 25.0787 13.1977 25.0374 13.2056C24.9883 13.2154 24.9392 13.2253 24.89 13.2351C24.8468 13.2429 24.8036 13.2508 24.7623 13.2587C24.7132 13.2685 24.6641 13.2763 24.613 13.2862C24.5697 13.294 24.5245 13.3019 24.4813 13.3098C24.4322 13.3196 24.3811 13.3274 24.332 13.3353C24.2868 13.3432 24.2416 13.351 24.1964 13.3589C24.1472 13.3667 24.0961 13.3746 24.045 13.3844C23.9998 13.3923 23.9527 13.3982 23.9075 13.406C23.8564 13.4139 23.8053 13.4218 23.7542 13.4296C23.707 13.4375 23.6618 13.4434 23.6147 13.4512C23.5636 13.4591 23.5125 13.467 23.4614 13.4729C23.4142 13.4788 23.3651 13.4866 23.3179 13.4925C23.2669 13.5004 23.2158 13.5063 23.1647 13.5141C23.1155 13.52 23.0664 13.5259 23.0173 13.5338C22.9662 13.5397 22.9151 13.5475 22.862 13.5534C22.8129 13.5593 22.7638 13.5652 22.7147 13.5711C22.6636 13.577 22.6105 13.5829 22.5594 13.5888C22.5103 13.5947 22.4592 13.6006 22.4101 13.6045C22.357 13.6104 22.3059 13.6163 22.2529 13.6222C22.2018 13.6281 22.1507 13.632 22.1015 13.6379C22.0485 13.6438 21.9954 13.6478 21.9424 13.6536C21.8913 13.6576 21.8402 13.6635 21.7891 13.6674C21.736 13.6713 21.683 13.6772 21.6279 13.6812C21.5729 13.6851 21.5218 13.689 21.4688 13.6949C21.4157 13.6988 21.3646 13.7028 21.3116 13.7087C21.2585 13.7146 21.2015 13.7165 21.1465 13.7205C21.0954 13.7244 21.0443 13.7283 20.9912 13.7323C20.9362 13.7362 20.8792 13.7401 20.8242 13.744C20.7731 13.748 20.7201 13.7499 20.669 13.7539C20.612 13.7578 20.555 13.7598 20.496 13.7637C20.4449 13.7657 20.3938 13.7696 20.3428 13.7716C20.2838 13.7755 20.2249 13.7775 20.1659 13.7794C20.1148 13.7814 20.0657 13.7833 20.0146 13.7873C19.9556 13.7892 19.8947 13.7912 19.8358 13.7951C19.7847 13.7971 19.7355 13.7991 19.6844 13.801C19.6235 13.803 19.5626 13.805 19.5017 13.8069C19.4506 13.8089 19.4015 13.8109 19.3504 13.8109C19.2875 13.8128 19.2246 13.8128 19.1598 13.8148C19.1106 13.8168 19.0635 13.8168 19.0143 13.8187C18.9397 13.8207 18.867 13.8207 18.7923 13.8207C18.753 13.8207 18.7156 13.8226 18.6763 13.8226C18.5663 13.8226 18.4543 13.8246 18.3442 13.8246H18.3383C18.2244 13.8246 18.1123 13.8246 17.9984 13.8226C17.965 13.8226 17.9316 13.8226 17.8981 13.8207C17.8195 13.8207 17.739 13.8187 17.6604 13.8168C17.6171 13.8168 17.5739 13.8148 17.5307 13.8148C17.4619 13.8128 17.3931 13.8128 17.3263 13.8109C17.2811 13.8089 17.2359 13.8089 17.1887 13.8069C17.1239 13.805 17.0571 13.803 16.9922 13.801C16.947 13.7991 16.9018 13.7971 16.8566 13.7951C16.7918 13.7932 16.7269 13.7912 16.6621 13.7873C16.6169 13.7853 16.5717 13.7833 16.5265 13.7814C16.4616 13.7775 16.3988 13.7755 16.3339 13.7716C16.2887 13.7696 16.2435 13.7657 16.1964 13.7637C16.1335 13.7598 16.0706 13.7578 16.0077 13.7539C15.9605 13.7519 15.9153 13.748 15.8682 13.744C15.8073 13.7401 15.7463 13.7362 15.6854 13.7323C15.6383 13.7283 15.5931 13.7264 15.5459 13.7224C15.485 13.7185 15.4241 13.7146 15.3651 13.7087C15.3179 13.7047 15.2708 13.7008 15.2236 13.6969C15.1647 13.693 15.1077 13.6871 15.0487 13.6831C14.9996 13.6792 14.9524 13.6753 14.9053 13.6694C14.8483 13.6635 14.7913 13.6595 14.7343 13.6536C14.6871 13.6497 14.64 13.6438 14.5928 13.6399C14.5358 13.634 14.4808 13.6281 14.4238 13.6222C14.3767 13.6183 14.3295 13.6124 14.2823 13.6065C14.2273 13.6006 14.1703 13.5947 14.1153 13.5888C14.0681 13.5829 14.0229 13.577 13.9758 13.5731C13.9207 13.5672 13.8657 13.5593 13.8107 13.5534C13.7655 13.5475 13.7183 13.5416 13.6731 13.5357C13.6181 13.5279 13.5631 13.522 13.51 13.5141C13.4648 13.5082 13.4196 13.5023 13.3744 13.4964C13.3214 13.4886 13.2664 13.4827 13.2133 13.4748C13.1681 13.4689 13.1229 13.4611 13.0777 13.4552C13.0247 13.4473 12.9736 13.4394 12.9205 13.4316C12.8753 13.4237 12.8301 13.4178 12.7849 13.41C12.7338 13.4021 12.6808 13.3943 12.6297 13.3864C12.5845 13.3785 12.5412 13.3726 12.496 13.3648C12.4449 13.3569 12.3939 13.3471 12.3428 13.3392C12.2976 13.3314 12.2543 13.3235 12.2111 13.3156C12.16 13.3058 12.1109 13.298 12.0617 13.2881C12.0185 13.2803 11.9733 13.2724 11.9301 13.2646C11.881 13.2547 11.8318 13.2469 11.7847 13.237C11.7414 13.2292 11.6982 13.2194 11.655 13.2115C11.6058 13.2017 11.5587 13.1918 11.5115 13.182C11.4683 13.1742 11.427 13.1643 11.3838 13.1565C11.3366 13.1466 11.2875 13.1368 11.2423 13.127C11.201 13.1172 11.1578 13.1093 11.1165 13.0995C11.0694 13.0897 11.0242 13.0798 10.977 13.068C10.9357 13.0582 10.8945 13.0484 10.8512 13.0386C10.806 13.0287 10.7608 13.0169 10.7156 13.0071C10.6744 12.9973 10.6331 12.9875 10.5918 12.9776C10.5466 12.9659 10.5034 12.956 10.4582 12.9442C10.4169 12.9344 10.3776 12.9246 10.3383 12.9128C10.2951 12.901 10.2499 12.8892 10.2067 12.8794C10.1674 12.8696 10.1281 12.8578 10.0888 12.8479C10.0455 12.8362 10.0023 12.8244 9.96103 12.8126C9.92173 12.8008 9.88243 12.791 9.84313 12.7792C9.80186 12.7674 9.76059 12.7556 9.71932 12.7438C9.68002 12.732 9.64268 12.7222 9.60338 12.7104C9.56211 12.6986 9.52085 12.6868 9.48154 12.6731C9.44421 12.6613 9.40687 12.6495 9.36757 12.6377C9.32826 12.6259 9.28896 12.6121 9.24966 12.6003C9.21036 12.5886 9.17498 12.5768 9.13765 12.565C9.09834 12.5532 9.06101 12.5394 9.0217 12.5276C8.9824 12.5158 8.949 12.5021 8.91166 12.4903C8.87432 12.4765 8.83698 12.4648 8.79965 12.451C8.76231 12.4372 8.7289 12.4254 8.69156 12.4137C8.65423 12.3999 8.61886 12.3881 8.58348 12.3744C8.54811 12.3606 8.51274 12.3488 8.47737 12.3351C8.442 12.3213 8.40662 12.3075 8.37322 12.2958C8.33981 12.284 8.30444 12.2682 8.26906 12.2545C8.23369 12.2407 8.20029 12.227 8.16688 12.2132C8.13347 12.1995 8.10006 12.1857 8.06666 12.1719C8.03325 12.1582 7.99984 12.1444 7.9684 12.1307C7.93696 12.1169 7.90159 12.1032 7.87015 12.0894C7.8387 12.0757 7.80726 12.0619 7.77385 12.0481C7.74045 12.0344 7.709 12.0187 7.67756 12.0049C7.64612 11.9912 7.61664 11.9774 7.5852 11.9617C7.55376 11.946 7.52232 11.9322 7.49088 11.9165C7.4614 11.9027 7.43192 11.887 7.40245 11.8732C7.37297 11.8595 7.34153 11.8438 7.31205 11.8281C7.28257 11.8143 7.25506 11.7986 7.22559 11.7848C7.19611 11.7711 7.16663 11.7553 7.13912 11.7396C7.11161 11.7239 7.0841 11.7101 7.05659 11.6944C7.02907 11.6787 6.9996 11.663 6.97208 11.6473C6.94654 11.6315 6.91903 11.6178 6.89348 11.6021C6.86793 11.5863 6.83846 11.5706 6.81095 11.5549C6.7854 11.5392 6.75985 11.5254 6.73627 11.5097C6.71269 11.494 6.68321 11.4783 6.65767 11.4606C6.63408 11.4449 6.6105 11.4291 6.58496 11.4154C6.55941 11.4016 6.53386 11.382 6.50832 11.3663C6.48474 11.3505 6.46312 11.3348 6.43954 11.3191C6.41399 11.3014 6.39041 11.2857 6.36683 11.268C6.34521 11.2523 6.3236 11.2366 6.30395 11.2208C6.28036 11.2031 6.25678 11.1855 6.2332 11.1697C6.21355 11.154 6.19193 11.1383 6.17228 11.1226C6.15067 11.1049 6.12708 11.0872 6.10547 11.0695C6.08582 11.0538 6.06813 11.0381 6.04848 11.0224C6.02686 11.0047 6.00525 10.987 5.9856 10.9693C5.96791 10.9536 5.95022 10.9379 5.93254 10.9221C5.91289 10.9044 5.89127 10.8868 5.87358 10.8671C5.8559 10.8514 5.84018 10.8357 5.82446 10.8199C5.8048 10.8023 5.78712 10.7826 5.76747 10.7649C5.75175 10.7492 5.73603 10.7335 5.72227 10.7178C5.70458 10.6981 5.6869 10.6804 5.66921 10.6608C5.65546 10.6451 5.6417 10.6293 5.62794 10.6136C5.61222 10.594 5.59454 10.5763 5.57882 10.5566C5.56506 10.5409 5.55327 10.5252 5.53951 10.5095C5.52379 10.4898 5.50807 10.4702 5.49432 10.4505C5.48252 10.4348 5.47073 10.4171 5.45894 10.4014C5.44519 10.3817 5.43143 10.3621 5.41768 10.3424C5.40588 10.3267 5.39606 10.309 5.38623 10.2933C5.37444 10.2736 5.36069 10.254 5.3489 10.2343C5.33907 10.2186 5.33121 10.2029 5.32139 10.1852C5.30959 10.1656 5.2978 10.1439 5.28798 10.1243C5.28012 10.1086 5.27226 10.0929 5.2644 10.0752C5.25457 10.0535 5.24475 10.0339 5.23492 10.0123C5.22706 9.99656 5.22116 9.98084 5.21527 9.96512C5.20741 9.9435 5.19758 9.92385 5.18972 9.90224C5.18383 9.88652 5.1799 9.87079 5.174 9.85507C5.16614 9.83346 5.16025 9.81184 5.15239 9.79219C5.14846 9.77647 5.14452 9.76075 5.14059 9.74502C5.1347 9.72341 5.1288 9.70179 5.12487 9.68018C5.12094 9.66445 5.11898 9.64874 5.11701 9.63301C5.11308 9.6114 5.10719 9.58782 5.10522 9.5662C5.10326 9.55048 5.10129 9.53672 5.09933 9.521C5.09736 9.49742 5.09343 9.47384 5.09147 9.45222C5.0895 9.41489 5.08754 9.37755 5.08754 9.34218C5.08754 6.86613 11.0202 4.85974 18.3403 4.85974L18.3442 4.85581ZM45.8932 20.1307C45.5258 23.214 44.0342 26.7846 41.6663 29.3687C39.3907 31.8526 36.5157 33.3775 32.9018 33.1771C33.4285 27.5195 34.4798 21.858 35.1008 16.5856C40.2023 13.3255 43.0458 13.298 44.2897 14.0408C45.5493 14.7915 46.2587 17.0494 45.8913 20.1326L45.8932 20.1307Z\" fill=\"#FF9314\"/>\\n<path d=\"M89.3623 18.32C88.3223 17.2 87.309 16.4533 86.3223 16.08C85.3623 15.7067 84.389 15.52 83.4023 15.52C81.9357 15.52 80.6023 15.7867 79.4023 16.32C78.229 16.8267 77.2157 17.5467 76.3623 18.48C75.509 19.3867 74.8423 20.4533 74.3623 21.68C73.909 22.9067 73.6823 24.2267 73.6823 25.64C73.6823 27.16 73.909 28.56 74.3623 29.84C74.8423 31.12 75.509 32.2267 76.3623 33.16C77.2157 34.0933 78.229 34.8267 79.4023 35.36C80.6023 35.8933 81.9357 36.16 83.4023 36.16C84.549 36.16 85.6557 35.8933 86.7223 35.36C87.8157 34.8 88.829 33.92 89.7623 32.72L93.9223 35.68C92.6423 37.44 91.0823 38.72 89.2423 39.52C87.4023 40.32 85.4423 40.72 83.3623 40.72C81.1757 40.72 79.1623 40.3733 77.3223 39.68C75.509 38.96 73.9357 37.96 72.6023 36.68C71.2957 35.3733 70.269 33.8133 69.5223 32C68.7757 30.1867 68.4023 28.1733 68.4023 25.96C68.4023 23.6933 68.7757 21.64 69.5223 19.8C70.269 17.9333 71.2957 16.3467 72.6023 15.04C73.9357 13.7333 75.509 12.7333 77.3223 12.04C79.1623 11.32 81.1757 10.96 83.3623 10.96C85.2823 10.96 87.0557 11.3067 88.6823 12C90.3357 12.6667 91.869 13.8133 93.2823 15.44L89.3623 18.32Z\" fill=\"black\"/>\\n<path d=\"M108.865 37.36H108.745C108.052 38.4533 107.172 39.2533 106.105 39.76C105.038 40.24 103.865 40.48 102.585 40.48C101.705 40.48 100.838 40.36 99.9851 40.12C99.1585 39.88 98.4118 39.52 97.7451 39.04C97.1051 38.56 96.5851 37.96 96.1851 37.24C95.7851 36.52 95.5851 35.68 95.5851 34.72C95.5851 33.68 95.7718 32.8 96.1451 32.08C96.5185 31.3333 97.0118 30.72 97.6251 30.24C98.2651 29.7333 98.9985 29.3333 99.8251 29.04C100.652 28.7467 101.505 28.5333 102.385 28.4C103.292 28.24 104.198 28.1467 105.105 28.12C106.012 28.0667 106.865 28.04 107.665 28.04H108.865V27.52C108.865 26.32 108.452 25.4267 107.625 24.84C106.798 24.2267 105.745 23.92 104.465 23.92C103.452 23.92 102.505 24.1067 101.625 24.48C100.745 24.8267 99.9851 25.3067 99.3451 25.92L96.8251 23.4C97.8918 22.3067 99.1318 21.52 100.545 21.04C101.985 20.56 103.465 20.32 104.985 20.32C106.345 20.32 107.492 20.48 108.425 20.8C109.358 21.0933 110.132 21.48 110.745 21.96C111.358 22.44 111.825 23 112.145 23.64C112.492 24.2533 112.732 24.88 112.865 25.52C113.025 26.16 113.118 26.7867 113.145 27.4C113.172 27.9867 113.185 28.5067 113.185 28.96V40H108.865V37.36ZM108.585 31.4H107.585C106.918 31.4 106.172 31.4267 105.345 31.48C104.518 31.5333 103.732 31.6667 102.985 31.88C102.265 32.0667 101.652 32.36 101.145 32.76C100.638 33.1333 100.385 33.6667 100.385 34.36C100.385 34.8133 100.478 35.2 100.665 35.52C100.878 35.8133 101.145 36.0667 101.465 36.28C101.785 36.4933 102.145 36.6533 102.545 36.76C102.945 36.84 103.345 36.88 103.745 36.88C105.398 36.88 106.612 36.4933 107.385 35.72C108.185 34.92 108.585 33.84 108.585 32.48V31.4Z\" fill=\"black\"/>\\n<path d=\"M118.35 20.8H123.15V23.84H123.23C123.763 22.72 124.523 21.8533 125.51 21.24C126.496 20.6267 127.63 20.32 128.91 20.32C129.203 20.32 129.483 20.3467 129.75 20.4C130.043 20.4533 130.336 20.52 130.63 20.6V25.24C130.23 25.1333 129.83 25.0533 129.43 25C129.056 24.92 128.683 24.88 128.31 24.88C127.19 24.88 126.283 25.0933 125.59 25.52C124.923 25.92 124.403 26.3867 124.03 26.92C123.683 27.4533 123.443 27.9867 123.31 28.52C123.203 29.0533 123.15 29.4533 123.15 29.72V40H118.35V20.8Z\" fill=\"black\"/>\\n<path d=\"M137.033 32.08C137.193 33.52 137.753 34.64 138.713 35.44C139.673 36.24 140.833 36.64 142.193 36.64C143.393 36.64 144.393 36.4 145.193 35.92C146.02 35.4133 146.74 34.7867 147.353 34.04L150.793 36.64C149.673 38.0267 148.42 39.0133 147.033 39.6C145.647 40.1867 144.193 40.48 142.673 40.48C141.233 40.48 139.873 40.24 138.593 39.76C137.313 39.28 136.207 38.6 135.273 37.72C134.34 36.84 133.593 35.7867 133.033 34.56C132.5 33.3067 132.233 31.92 132.233 30.4C132.233 28.88 132.5 27.5067 133.033 26.28C133.593 25.0267 134.34 23.96 135.273 23.08C136.207 22.2 137.313 21.52 138.593 21.04C139.873 20.56 141.233 20.32 142.673 20.32C144.007 20.32 145.22 20.56 146.313 21.04C147.433 21.4933 148.38 22.16 149.153 23.04C149.953 23.92 150.567 25.0133 150.993 26.32C151.447 27.6 151.673 29.08 151.673 30.76V32.08H137.033ZM146.873 28.48C146.847 27.0667 146.407 25.96 145.553 25.16C144.7 24.3333 143.513 23.92 141.993 23.92C140.553 23.92 139.407 24.3333 138.553 25.16C137.727 25.9867 137.22 27.0933 137.033 28.48H146.873Z\" fill=\"black\"/>\\n<path d=\"M160.002 32.08C160.162 33.52 160.722 34.64 161.682 35.44C162.642 36.24 163.802 36.64 165.162 36.64C166.362 36.64 167.362 36.4 168.162 35.92C168.989 35.4133 169.709 34.7867 170.322 34.04L173.762 36.64C172.642 38.0267 171.389 39.0133 170.002 39.6C168.615 40.1867 167.162 40.48 165.642 40.48C164.202 40.48 162.842 40.24 161.562 39.76C160.282 39.28 159.175 38.6 158.242 37.72C157.309 36.84 156.562 35.7867 156.002 34.56C155.469 33.3067 155.202 31.92 155.202 30.4C155.202 28.88 155.469 27.5067 156.002 26.28C156.562 25.0267 157.309 23.96 158.242 23.08C159.175 22.2 160.282 21.52 161.562 21.04C162.842 20.56 164.202 20.32 165.642 20.32C166.975 20.32 168.189 20.56 169.282 21.04C170.402 21.4933 171.349 22.16 172.122 23.04C172.922 23.92 173.535 25.0133 173.962 26.32C174.415 27.6 174.642 29.08 174.642 30.76V32.08H160.002ZM169.842 28.48C169.815 27.0667 169.375 25.96 168.522 25.16C167.669 24.3333 166.482 23.92 164.962 23.92C163.522 23.92 162.375 24.3333 161.522 25.16C160.695 25.9867 160.189 27.0933 160.002 28.48H169.842Z\" fill=\"black\"/>\\n<path d=\"M179.131 20.8H183.931V23.84H184.011C184.544 22.72 185.304 21.8533 186.291 21.24C187.277 20.6267 188.411 20.32 189.691 20.32C189.984 20.32 190.264 20.3467 190.531 20.4C190.824 20.4533 191.117 20.52 191.411 20.6V25.24C191.011 25.1333 190.611 25.0533 190.211 25C189.837 24.92 189.464 24.88 189.091 24.88C187.971 24.88 187.064 25.0933 186.371 25.52C185.704 25.92 185.184 26.3867 184.811 26.92C184.464 27.4533 184.224 27.9867 184.091 28.52C183.984 29.0533 183.931 29.4533 183.931 29.72V40H179.131V20.8Z\" fill=\"black\"/>\\n<path d=\"M194.838 25.44C194.838 24.7467 194.811 24.0533 194.758 23.36C194.731 22.6667 194.691 21.9733 194.638 21.28H197.478V24.12H197.558C198.198 23.0267 199.078 22.2 200.198 21.64C201.344 21.08 202.478 20.8 203.598 20.8C204.104 20.8 204.638 20.8533 205.198 20.96C205.784 21.0667 206.344 21.2667 206.878 21.56C207.411 21.8267 207.904 22.2133 208.358 22.72C208.838 23.2267 209.238 23.88 209.558 24.68C210.091 23.48 210.931 22.5333 212.078 21.84C213.251 21.1467 214.464 20.8 215.718 20.8C218.118 20.8 219.891 21.44 221.038 22.72C222.184 23.9733 222.758 25.7733 222.758 28.12V40H220.118V29.08C220.118 27.1867 219.784 25.7333 219.118 24.72C218.451 23.7067 217.211 23.2 215.398 23.2C214.411 23.2 213.584 23.4 212.918 23.8C212.251 24.1733 211.704 24.68 211.278 25.32C210.878 25.96 210.584 26.6933 210.398 27.52C210.211 28.32 210.118 29.16 210.118 30.04V40H207.478V29.08C207.478 27.1867 207.144 25.7333 206.478 24.72C205.811 23.7067 204.571 23.2 202.758 23.2C202.598 23.2 202.224 23.2533 201.638 23.36C201.078 23.4667 200.491 23.76 199.878 24.24C199.264 24.72 198.704 25.44 198.198 26.4C197.718 27.36 197.478 28.6933 197.478 30.4V40H194.838V25.44Z\" fill=\"black\"/>\\n<path d=\"M244.94 30.64C244.94 29.6 244.767 28.6267 244.42 27.72C244.1 26.8133 243.633 26.0267 243.02 25.36C242.407 24.6933 241.66 24.1733 240.78 23.8C239.927 23.4 238.953 23.2 237.86 23.2C236.767 23.2 235.78 23.4 234.9 23.8C234.047 24.1733 233.313 24.6933 232.7 25.36C232.113 26.0267 231.647 26.8133 231.3 27.72C230.98 28.6267 230.82 29.6 230.82 30.64C230.82 31.68 230.98 32.6533 231.3 33.56C231.647 34.4667 232.113 35.2533 232.7 35.92C233.313 36.5867 234.047 37.12 234.9 37.52C235.78 37.8933 236.767 38.08 237.86 38.08C238.953 38.08 239.927 37.8933 240.78 37.52C241.66 37.12 242.407 36.5867 243.02 35.92C243.633 35.2533 244.1 34.4667 244.42 33.56C244.767 32.6533 244.94 31.68 244.94 30.64ZM247.82 30.64C247.82 32.0533 247.567 33.36 247.06 34.56C246.58 35.76 245.9 36.8 245.02 37.68C244.14 38.56 243.087 39.2533 241.86 39.76C240.66 40.24 239.327 40.48 237.86 40.48C236.42 40.48 235.087 40.24 233.86 39.76C232.66 39.2533 231.62 38.56 230.74 37.68C229.86 36.8 229.167 35.76 228.66 34.56C228.18 33.36 227.94 32.0533 227.94 30.64C227.94 29.2267 228.18 27.92 228.66 26.72C229.167 25.52 229.86 24.48 230.74 23.6C231.62 22.72 232.66 22.04 233.86 21.56C235.087 21.0533 236.42 20.8 237.86 20.8C239.327 20.8 240.66 21.0533 241.86 21.56C243.087 22.04 244.14 22.72 245.02 23.6C245.9 24.48 246.58 25.52 247.06 26.72C247.567 27.92 247.82 29.2267 247.82 30.64Z\" fill=\"black\"/>\\n<path d=\"M266.251 25.68C265.798 24.9867 265.158 24.4 264.331 23.92C263.531 23.44 262.611 23.2 261.571 23.2C260.478 23.1733 259.491 23.3467 258.611 23.72C257.758 24.0933 257.024 24.6133 256.411 25.28C255.798 25.9467 255.331 26.7467 255.011 27.68C254.691 28.5867 254.531 29.5733 254.531 30.64C254.531 31.7067 254.691 32.7067 255.011 33.64C255.331 34.5467 255.798 35.3333 256.411 36C257.024 36.6667 257.758 37.1867 258.611 37.56C259.491 37.9333 260.478 38.1067 261.571 38.08C262.611 38.08 263.531 37.84 264.331 37.36C265.158 36.88 265.798 36.2933 266.251 35.6L268.411 37.24C267.478 38.3333 266.424 39.1467 265.251 39.68C264.078 40.1867 262.851 40.4533 261.571 40.48C260.051 40.5067 258.678 40.28 257.451 39.8C256.224 39.2933 255.171 38.6 254.291 37.72C253.438 36.84 252.784 35.8 252.331 34.6C251.878 33.3733 251.651 32.0533 251.651 30.64C251.651 29.2267 251.878 27.92 252.331 26.72C252.784 25.4933 253.438 24.44 254.291 23.56C255.171 22.68 256.224 22 257.451 21.52C258.678 21.0133 260.051 20.7733 261.571 20.8C262.851 20.8267 264.078 21.1067 265.251 21.64C266.424 22.1467 267.478 22.9467 268.411 24.04L266.251 25.68Z\" fill=\"black\"/>\\n<path d=\"M271.908 9.76H274.548V24.28H274.628C274.921 23.7733 275.295 23.3067 275.748 22.88C276.201 22.4533 276.708 22.0933 277.268 21.8C277.828 21.48 278.415 21.24 279.028 21.08C279.668 20.8933 280.295 20.8 280.908 20.8C283.308 20.8 285.081 21.44 286.228 22.72C287.375 23.9733 287.948 25.7733 287.948 28.12V40H285.308V29.64C285.308 27.56 284.948 25.9733 284.228 24.88C283.508 23.76 282.175 23.2 280.228 23.2C280.095 23.2 279.721 23.2533 279.108 23.36C278.495 23.4667 277.841 23.76 277.148 24.24C276.481 24.72 275.881 25.44 275.348 26.4C274.815 27.36 274.548 28.6933 274.548 30.4V40H271.908V9.76Z\" fill=\"black\"/>\\n<path d=\"M304.775 30.68C304.108 30.68 303.268 30.72 302.255 30.8C301.268 30.8533 300.308 31.0133 299.375 31.28C298.468 31.52 297.681 31.9067 297.015 32.44C296.375 32.9733 296.055 33.7067 296.055 34.64C296.055 35.2533 296.175 35.7867 296.415 36.24C296.681 36.6667 297.028 37.0267 297.455 37.32C297.881 37.5867 298.348 37.7867 298.855 37.92C299.388 38.0267 299.921 38.08 300.455 38.08C301.415 38.08 302.241 37.92 302.935 37.6C303.655 37.28 304.255 36.8533 304.735 36.32C305.215 35.76 305.561 35.12 305.775 34.4C306.015 33.6533 306.135 32.8667 306.135 32.04V30.68H304.775ZM306.135 28.52V28.04C306.135 24.8133 304.535 23.2 301.335 23.2C299.148 23.2 297.241 23.9333 295.615 25.4L294.015 23.52C295.775 21.7067 298.415 20.8 301.935 20.8C302.841 20.8 303.708 20.9333 304.535 21.2C305.388 21.4667 306.121 21.88 306.735 22.44C307.348 22.9733 307.841 23.6533 308.215 24.48C308.588 25.3067 308.775 26.2933 308.775 27.44V35.8C308.775 36.52 308.801 37.28 308.855 38.08C308.935 38.8533 309.015 39.4933 309.095 40H306.535C306.455 39.5467 306.388 39.0533 306.335 38.52C306.308 37.9867 306.295 37.4667 306.295 36.96H306.215C305.441 38.2133 304.521 39.12 303.455 39.68C302.415 40.2133 301.135 40.48 299.615 40.48C298.788 40.48 297.988 40.36 297.215 40.12C296.441 39.9067 295.748 39.5733 295.135 39.12C294.548 38.64 294.068 38.0667 293.695 37.4C293.348 36.7067 293.175 35.9067 293.175 35C293.175 33.48 293.561 32.2933 294.335 31.44C295.135 30.56 296.121 29.9067 297.295 29.48C298.495 29.0533 299.761 28.7867 301.095 28.68C302.455 28.5733 303.695 28.52 304.815 28.52H306.135Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":OFERab1_6\",webPageId:\"ZVMw0fmnQ\"},motionChild:true,nodeId:\"DzKxzsUpO\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-otril1 framer-lux5qc\",\"data-framer-name\":\"Twio\",whileHover:animation5,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14jd3ls\",\"data-framer-name\":\"Frame 182\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:320,intrinsicWidth:384,svg:'<svg width=\"384\" height=\"320\" viewBox=\"0 0 384 320\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.5\" width=\"383\" height=\"319\" rx=\"23.5\" fill=\"#00CCFF\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"383\" height=\"319\" rx=\"23.5\" stroke=\"#333333\"/>\\n<path d=\"M149.097 180C145.685 180 143.029 179.164 141.126 177.491C139.224 175.785 138.273 173.227 138.273 169.815V146.937H147.621V169.717C147.621 170.668 147.883 171.423 148.408 171.98C148.933 172.505 149.605 172.768 150.425 172.768C151.54 172.768 152.492 172.489 153.279 171.931L155.591 178.475C154.804 179 153.836 179.377 152.688 179.606C151.54 179.869 150.343 180 149.097 180ZM134.386 160.861V153.875H153.722V160.861H134.386Z\" fill=\"#FAF9F6\"/>\\n<path d=\"M165.062 179.557L155.567 152.891H164.423L171.95 175.178H167.719L175.542 152.891H183.512L191.04 175.178H186.907L194.681 152.891H202.897L193.402 179.557H184.349L177.953 161.107H180.708L174.115 179.557H165.062Z\" fill=\"#FAF9F6\"/>\\n<path d=\"M205.754 179.557V152.891H215.102V179.557H205.754ZM210.428 149.938C208.722 149.938 207.345 149.463 206.295 148.512C205.245 147.56 204.721 146.38 204.721 144.969C204.721 143.559 205.245 142.378 206.295 141.427C207.345 140.476 208.722 140 210.428 140C212.133 140 213.511 140.459 214.561 141.378C215.61 142.263 216.135 143.411 216.135 144.822C216.135 146.298 215.61 147.528 214.561 148.512C213.544 149.463 212.166 149.938 210.428 149.938Z\" fill=\"#FAF9F6\"/>\\n<path d=\"M234.559 180C231.64 180 229.049 179.41 226.786 178.229C224.523 177.048 222.735 175.424 221.423 173.358C220.144 171.259 219.504 168.864 219.504 166.175C219.504 163.485 220.144 161.107 221.423 159.041C222.735 156.974 224.523 155.367 226.786 154.219C229.049 153.038 231.64 152.448 234.559 152.448C237.479 152.448 240.07 153.038 242.333 154.219C244.629 155.367 246.417 156.974 247.696 159.041C248.975 161.107 249.615 163.485 249.615 166.175C249.615 168.864 248.975 171.259 247.696 173.358C246.417 175.424 244.629 177.048 242.333 178.229C240.07 179.41 237.479 180 234.559 180ZM234.559 172.571C235.642 172.571 236.593 172.325 237.413 171.833C238.266 171.341 238.938 170.619 239.43 169.668C239.922 168.684 240.168 167.519 240.168 166.175C240.168 164.83 239.922 163.698 239.43 162.78C238.938 161.829 238.266 161.107 237.413 160.615C236.593 160.123 235.642 159.877 234.559 159.877C233.51 159.877 232.559 160.123 231.706 160.615C230.886 161.107 230.213 161.829 229.689 162.78C229.197 163.698 228.951 164.83 228.951 166.175C228.951 167.519 229.197 168.684 229.689 169.668C230.213 170.619 230.886 171.341 231.706 171.833C232.559 172.325 233.51 172.571 234.559 172.571Z\" fill=\"#FAF9F6\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":EXhVwTMac\",webPageId:\"ZVMw0fmnQ\"},motionChild:true,nodeId:\"MH95hqLuz\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lqhpzt framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Tomo\",whileHover:animation5,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-191lr38\",\"data-framer-name\":\"Group 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:73,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"73\" viewBox=\"0 0 120 73\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.0865 19.5571C20.2407 17.986 21.5362 16.8063 22.971 16.0217C24.4058 15.2353 25.9799 14.8421 27.6953 14.8421C29.6404 14.8421 31.254 15.2353 32.5344 16.0217C33.8148 16.8063 34.6471 17.7757 35.0331 18.9261C35.4191 20.0765 35.6112 21.942 35.6112 24.5245V30.8654C35.6112 33.5595 35.6639 35.1964 35.7693 35.7761C35.8748 36.3559 36.1892 36.7821 36.7089 37.0527C37.2286 37.3252 38.1908 37.4606 39.5973 37.4606V38.7518H27.3771V37.4606H27.9269C29.3316 37.4606 30.2429 37.2631 30.6553 36.8717C31.0695 36.4785 31.3105 36.0157 31.3783 35.4817C31.4461 34.9495 31.48 33.4095 31.48 30.8654V23.963C31.48 22.0554 31.3632 20.6416 31.1335 19.7253C30.9019 18.809 30.3578 18.0519 29.501 17.452C28.6443 16.8539 27.5691 16.554 26.2793 16.554C24.7767 16.554 23.4285 16.9801 22.2348 17.8306C21.041 18.6828 19.9903 19.9594 19.0865 21.6622V30.8654C19.0865 33.4479 19.1298 35.0372 19.2164 35.6371C19.303 36.2352 19.5968 36.6888 20.0976 36.9979C20.5985 37.3051 21.5117 37.4606 22.8411 37.4606V38.7518H10.8223V37.4606H11.4305C12.8163 37.4606 13.7163 37.2686 14.1306 36.8845C14.5448 36.5022 14.7859 36.0432 14.8536 35.5109C14.9214 34.9769 14.9553 33.4296 14.9553 30.8654V7.96707C14.9553 5.64797 14.7275 4.17933 14.2756 3.56114C13.8237 2.94479 12.7391 2.6357 11.0256 2.6357V1.34446C14.0101 1.34446 16.4956 0.953071 18.4783 0.166626H19.0865V19.5571Z\" fill=\"#005051\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.8681 23.5423H43.3716C43.2944 24.6452 43.2568 25.4682 43.2568 26.0114C43.2568 30.0515 43.9064 33.0876 45.2075 35.1177C46.5067 37.1478 48.448 38.1611 51.0277 38.1611C54.5337 38.1611 57.0173 36.6375 58.4822 33.5887H59.8681C59.2523 35.4963 58.0284 36.9887 56.2001 38.0641C54.3699 39.1395 52.3759 39.6773 50.2199 39.6773C48.2164 39.6773 46.3241 39.1853 44.5428 38.2031C42.7597 37.221 41.3023 35.8328 40.165 34.0368C39.0296 32.2408 38.4609 30.0607 38.4609 27.4983C38.4609 23.8697 39.5587 20.8519 41.7542 18.4487C43.9497 16.0455 46.695 14.842 49.9883 14.842C53.0895 14.842 55.4865 15.7602 57.1811 17.5928C58.8758 19.4254 59.772 21.4098 59.8681 23.5423ZM54.8124 22.4193C54.8708 21.9895 54.899 21.6054 54.899 21.2689C54.899 19.6229 54.4038 18.3463 53.4115 17.4391C52.4192 16.5301 51.2009 16.0765 49.7567 16.0765C46.2507 16.0765 44.1625 18.1908 43.4884 22.4193H54.8124Z\" fill=\"#005051\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.4736 0.166626V30.8654C68.4736 33.3162 68.5075 34.8598 68.5753 35.4963C68.643 36.1328 68.9179 36.6193 69.3981 36.9558C69.8801 37.2923 70.7369 37.4606 71.9702 37.4606H72.6631V38.7518H60.0098V37.4606H60.8175C61.9737 37.4606 62.7965 37.3051 63.288 36.9979C63.7794 36.6888 64.0731 36.2535 64.1692 35.692C64.2652 35.1305 64.3142 33.5229 64.3142 30.8654V8.13533C64.3142 5.72295 64.092 4.2031 63.6495 3.57577C63.207 2.94845 62.1281 2.6357 60.4146 2.6357V1.34446C61.5896 1.34446 62.9697 1.21461 64.5589 0.953071C66.1481 0.689704 67.2421 0.428165 67.839 0.166626H68.4736Z\" fill=\"#005051\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.5341 0.166626V30.8654C82.5341 33.3162 82.568 34.8598 82.6358 35.4963C82.7036 36.1328 82.9766 36.6193 83.4586 36.9558C83.9407 37.2923 84.7974 37.4606 86.0307 37.4606H86.7237V38.7518H74.0703V37.4606H74.8781C76.0342 37.4606 76.8571 37.3051 77.3485 36.9979C77.84 36.6888 78.1337 36.2535 78.2297 35.692C78.3258 35.1305 78.3747 33.5229 78.3747 30.8654V8.13533C78.3747 5.72295 78.1525 4.2031 77.71 3.57577C77.2675 2.94845 76.1886 2.6357 74.4733 2.6357V1.34446C75.6482 1.34446 77.0303 1.21461 78.6195 0.953071C80.2087 0.689704 81.3008 0.428165 81.8996 0.166626H82.5341Z\" fill=\"#005051\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M85.0879 27.2185C85.0879 23.7014 86.3024 20.7587 88.7295 18.392C91.1547 16.0254 94.1411 14.842 97.6848 14.842C101.247 14.842 104.243 16.0309 106.67 18.4066C109.095 20.7824 110.31 23.7197 110.31 27.2185C110.31 31.0904 109.077 34.1356 106.612 36.3522C104.147 38.5689 101.17 39.6773 97.6848 39.6773C94.1994 39.6773 91.2282 38.5506 88.7728 36.2955C86.3156 34.0423 85.0879 31.0154 85.0879 27.2185ZM89.8838 27.3576C89.8838 31.4361 90.5673 34.2947 91.9362 35.9316C93.3032 37.5686 95.22 38.3861 97.6848 38.3861C100.208 38.3861 102.138 37.5686 103.477 35.9316C104.815 34.2947 105.486 31.4361 105.486 27.3576C105.486 23.3174 104.821 20.4368 103.492 18.7158C102.162 16.9948 100.227 16.1333 97.6848 16.1333C95.1617 16.1333 93.2316 16.9893 91.8929 18.7012C90.5541 20.4131 89.8838 23.2991 89.8838 27.3576Z\" fill=\"#005051\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.0534 49.5481H7.91707V63.4389C7.91707 65.5715 8.0131 67.0072 8.20704 67.7461C8.3991 68.4868 8.8077 69.0794 9.43472 69.5293C10.0599 69.9774 10.7302 70.2024 11.4419 70.2024C12.8278 70.2024 14.0329 69.436 15.0534 67.9015L15.9779 68.4338C15.381 69.6683 14.4998 70.5992 13.3343 71.2266C12.1687 71.8539 10.99 72.1666 9.79436 72.1666C8.40852 72.1666 7.19026 71.7698 6.14146 70.9742C5.09078 70.1786 4.43552 69.2476 4.17567 68.1814C3.91583 67.1151 3.7859 65.2441 3.7859 62.5702V49.5481H0.347656V48.2587C1.92744 48.2203 3.34341 47.5747 4.59557 46.3219C5.84772 45.069 6.64609 43.3096 6.99255 41.0472H7.91707V48.2587H15.0534V49.5481Z\" fill=\"#005051\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.6465 59.7079C15.6465 56.1908 16.8591 53.248 19.2862 50.8814C21.7133 48.5147 24.6978 47.3314 28.2415 47.3314C31.804 47.3314 34.7997 48.5202 37.2268 50.896C39.654 53.2718 40.8666 56.2091 40.8666 59.7079C40.8666 63.5797 39.6332 66.6249 37.1685 68.8416C34.7037 71.0583 31.7287 72.1666 28.2415 72.1666C24.7561 72.1666 21.7849 71.04 19.3295 68.7849C16.8742 66.5317 15.6465 63.5048 15.6465 59.7079ZM20.4424 59.8468C20.4424 63.9254 21.1259 66.784 22.4929 68.4209C23.8599 70.0578 25.7767 70.8754 28.2415 70.8754C30.7646 70.8754 32.6965 70.0578 34.0334 68.4209C35.3722 66.784 36.0425 63.9254 36.0425 59.8468C36.0425 55.8067 35.3778 52.9261 34.0485 51.2051C32.7191 49.484 30.7835 48.6226 28.2415 48.6226C25.7184 48.6226 23.7883 49.4786 22.4496 51.1905C21.1108 52.9023 20.4424 55.7884 20.4424 59.8468Z\" fill=\"#005051\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M47.5263 47.3314H47.8162C48.3736 48.5861 48.6542 50.1937 48.6542 52.158C49.944 50.5504 51.3355 49.3433 52.8286 48.5385C54.3218 47.7338 55.9242 47.3314 57.6377 47.3314C59.5846 47.3314 61.1625 47.7631 62.377 48.6227C63.5896 49.4841 64.4369 50.7735 64.919 52.4964C66.382 50.7735 67.8846 49.4841 69.4249 48.6227C70.967 47.7631 72.5355 47.3314 74.1341 47.3314C75.9643 47.3314 77.5158 47.7429 78.7868 48.566C80.0578 49.3908 80.8279 50.3254 81.0972 51.3734C81.3665 52.4214 81.502 54.1131 81.502 56.4524V63.3548C81.502 66.0305 81.5547 67.6583 81.6602 68.2381C81.7675 68.8178 82.0744 69.2476 82.5847 69.5293C83.095 69.8091 84.044 69.95 85.4317 69.95V71.2412H73.6144V69.95C74.8665 69.95 75.7478 69.8146 76.258 69.5421C76.7683 69.2714 77.0809 68.8599 77.1976 68.3076C77.3125 67.7571 77.3709 66.1055 77.3709 63.3548V55.6952C77.3709 54.1424 77.2786 52.9719 77.0959 52.1873C76.9133 51.4008 76.4369 50.7278 75.6668 50.1663C74.8948 49.6048 73.895 49.325 72.6616 49.325C71.4095 49.325 70.1536 49.7365 68.892 50.5595C67.6304 51.3825 66.3632 52.6262 65.0922 54.2905V63.3548C65.0922 65.8056 65.1261 67.3455 65.1939 67.971C65.2617 68.5984 65.5309 69.0849 66.0017 69.4305C66.4743 69.7762 67.316 69.95 68.5305 69.95V71.2412H57.0897V69.95C58.3795 69.95 59.2796 69.8183 59.7917 69.5567C60.302 69.2952 60.6183 68.8928 60.7445 68.3496C60.8688 67.8083 60.9328 66.1421 60.9328 63.3548V56.9846C60.9328 54.9654 60.85 53.5004 60.6861 52.5933C60.5223 51.6861 60.0271 50.9107 59.1986 50.265C58.3701 49.6194 57.3402 49.2957 56.1068 49.2957C54.913 49.2957 53.6948 49.6706 52.452 50.4187C51.2112 51.1667 49.944 52.2897 48.6542 53.7858V63.3548C48.6542 65.8806 48.6918 67.4516 48.769 68.0698C48.8462 68.6862 49.1362 69.1544 49.6352 69.4726C50.136 69.7908 51.0323 69.95 52.3221 69.95V71.2412H40.7383V69.95C42.0093 69.95 42.8999 69.8146 43.4102 69.5421C43.9204 69.2714 44.233 68.8654 44.3498 68.3222C44.4646 67.779 44.523 66.1238 44.523 63.3548V56.4798C44.523 53.8607 44.4797 52.2568 44.3931 51.6678C44.3065 51.0789 44.0071 50.6345 43.4968 50.3345C42.9865 50.0346 42.0676 49.8865 40.7383 49.8865V48.5952C43.4723 48.3337 45.7356 47.9112 47.5263 47.3314Z\" fill=\"#005051\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M85.1016 59.7079C85.1016 56.1908 86.3142 53.248 88.7413 50.8814C91.1684 48.5147 94.1528 47.3314 97.6965 47.3314C101.261 47.3314 104.255 48.5202 106.682 50.896C109.109 53.2718 110.322 56.2091 110.322 59.7079C110.322 63.5797 109.09 66.6249 106.624 68.8416C104.159 71.0583 101.184 72.1666 97.6965 72.1666C94.2112 72.1666 91.2399 71.04 88.7846 68.7849C86.3292 66.5317 85.1016 63.5048 85.1016 59.7079ZM89.8974 59.8468C89.8974 63.9254 90.5809 66.784 91.9479 68.4209C93.3149 70.0578 95.2317 70.8754 97.6965 70.8754C100.22 70.8754 102.152 70.0578 103.49 68.4209C104.829 66.784 105.498 63.9254 105.498 59.8468C105.498 55.8067 104.833 52.9261 103.503 51.2051C102.176 49.484 100.24 48.6226 97.6965 48.6226C95.1734 48.6226 93.2434 49.4786 91.9046 51.1905C90.5658 52.9023 89.8974 55.7884 89.8974 59.8468Z\" fill=\"#005051\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M112.326 68.4484C112.326 67.479 112.684 66.645 113.399 65.95C114.115 65.255 114.974 64.9075 115.972 64.9075C116.994 64.9075 117.862 65.255 118.578 65.95C119.293 66.645 119.651 67.479 119.651 68.4484C119.651 69.4415 119.287 70.2846 118.561 70.9796C117.834 71.6746 116.971 72.0221 115.972 72.0221C114.949 72.0221 114.087 71.6636 113.383 70.9467C112.678 70.2298 112.326 69.3976 112.326 68.4484Z\" fill=\"#005051\"/>\\n</svg>\\n',withExternalLayout:true})})})],speed:120,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZVMw0fmnQ\"},implicitPathVariables:undefined},{href:{webPageId:\"ZVMw0fmnQ\"},implicitPathVariables:undefined},{href:{webPageId:\"ZVMw0fmnQ\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{y:(componentViewport?.y||0)+0+3142+40+692},vSahVGYjJ:{y:(componentViewport?.y||0)+0+2923+40+818}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+3471+80+818,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dzqlh5-container\",nodeId:\"pBQHfDu1d\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{IAfPrROle:resolvedLinks4[2]},vSahVGYjJ:{IAfPrROle:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{es38neyb4:\"See all Portfolio Companies\",height:\"100%\",IAfPrROle:resolvedLinks4[0],id:\"pBQHfDu1d\",layoutId:\"pBQHfDu1d\",o2cdtHXB9:false,variant:\"dB4TXjYV_\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v8j9j9\",\"data-framer-name\":\"Smash Quote\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j0qg3i\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"In Their Words\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"In Their Words\"})}),className:\"framer-16u0xxo\",\"data-framer-name\":\"Our Portfolio Companies\",fonts:[\"GF;Aktiv Grotesk-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y02l15-container hidden-1vye1so\",isModuleExternal:true,nodeId:\"jIvFXokuT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vSahVGYjJ:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:32,arrowRadius:40,arrowSize:24,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:24,height:\"100%\",id:\"jIvFXokuT\",layoutId:\"jIvFXokuT\",padding:0,paddingBottom:40,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:494,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"1020px\",src:\"https://framerusercontent.com/images/hSN2sTpmyz0p3lcSDZuDt1txA.png\",srcSet:\"https://framerusercontent.com/images/hSN2sTpmyz0p3lcSDZuDt1txA.png?scale-down-to=512 512w,https://framerusercontent.com/images/hSN2sTpmyz0p3lcSDZuDt1txA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hSN2sTpmyz0p3lcSDZuDt1txA.png 1200w\"},className:\"framer-fcohjr\",\"data-border\":true,\"data-framer-name\":\"Smash Quote\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pqkwck\",\"data-framer-name\":\"Frame 63\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9a22sb\",\"data-framer-name\":\"Frame 64\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10rcfwd\",\"data-framer-name\":\"Smash-logo-new 1\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:134,svg:'<svg width=\"134\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#05012D\"><path d=\"M129.302 35.934H66.587V40h66.781v-8.899h-4.066v4.833Zm0-35.934h-4.833v4.068h4.833V8.9h4.066V0h-4.066ZM0 0v8.899h4.068V4.07h62.654V0H0Zm4.068 31.1H0V40h8.899v-4.066H4.07V31.1Zm26.99-7.277c0 4.116-2.916 6.946-9.634 6.946h-.474c-8.004 0-9.318-4.46-9.318-7.145h6.306c.17 1 1.371 1.544 3.4 1.544h.086c2.26 0 3.202-.459 3.202-1.229 0-.573-.486-1.058-1.945-1.058h-3.258c-4.973 0-7.488-2.288-7.488-5.83 0-3.489 2.257-6.977 9.318-6.977h.285c8.09 0 9.09 5.004 9.09 6.948h-6.317c-.114-.829-.886-1.544-2.944-1.544h-.114c-2.368 0-2.915.656-2.915 1.257 0 .602.486 1.057 1.772 1.057h3.744c4.745-.003 7.204 2.48 7.204 6.031Zm23.724-13.408v20.008h-6.157V20.42l-4.945 6.202-5.21-6.375V30.43h-6.126V10.415h6.145l5.21 6.889 4.945-6.889h6.138ZM96.37 23.823c0 4.116-2.914 6.946-9.63 6.946h-.486c-8.004 0-9.319-4.46-9.319-7.145h6.316c.173 1 1.374 1.544 3.403 1.544h.086c2.256 0 3.201-.459 3.201-1.229 0-.573-.487-1.058-1.944-1.058h-3.256c-4.973 0-7.49-2.288-7.49-5.83 0-3.489 2.259-6.977 9.318-6.977h.287c8.09 0 9.089 5.004 9.089 6.948h-6.319c-.113-.829-.885-1.544-2.943-1.544h-.116c-2.368 0-2.915.656-2.915 1.257 0 .602.485 1.057 1.773 1.057h3.744c4.744-.003 7.202 2.48 7.202 6.031Zm21.068-13.408v20.008h-6.288v-7.43h-7.203v7.43h-6.288V10.415h6.288v7.014h7.203v-7.014h6.288Zm3.898 1.587a1.543 1.543 0 0 1-.9 1.471 1.538 1.538 0 0 1-2.067-1.972 1.54 1.54 0 0 1 1.427-.967 1.466 1.466 0 0 1 1.422.889c.078.183.118.38.118.579Zm-.474 0a1.074 1.074 0 0 0-.642-1.007 1.071 1.071 0 1 0-.431 2.051 1.013 1.013 0 0 0 1.078-1.044h-.005Zm-.575.25.255.413h-.487l-.183-.318h-.256v.318h-.438v-1.393h.758a.553.553 0 0 1 .595.54.524.524 0 0 1-.24.44h-.004Zm-.671-.286h.32a.158.158 0 0 0 .111-.046.157.157 0 0 0-.111-.266h-.32v.312ZM70.5 27.24h-7.657l-.836 3.183h-6.36l5.304-20.07h11.476l5.305 20.07h-6.394l-.839-3.182Zm-1.464-5.588-1.492-5.764h-1.776l-1.492 5.764h4.76Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h133.368v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"\u201CThe Activate Studio team\u2019s active involvement at every step ensured we were heading in the right direction, which was crucial for securing nearly half a million in investment and earning recognition.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"We were selected for the Creative Catalyst SXSW Programme, won the Best AI for Good Startup in Edinburgh University\u2019s AI Accelerator Programme, and received the Gold Award for Tech Innovation in Cannes\u201D\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1wuabpz\",\"data-framer-name\":\"Activate Intelligence is our latest venture, designed to help businesses harness the power of generative AI. Our AI experts provide innovative services to fully leverage these cutting-edge technologies. This new wave of AI is transforming user experiences and digital product development. Startups must adapt and seize the opportunities it offers. Activate Intelligence supports founders through this transition, helping them use AI to create more engaging, efficient products and stay ahead of the curve.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"- Fiona Gillies, Christine Hartland and Mahesh Ramachandra, SMASH founders\"})}),className:\"framer-1j80z9z\",\"data-framer-name\":\"Activate Intelligence is our latest venture, designed to help businesses harness the power of generative AI. Our AI experts provide innovative services to fully leverage these cutting-edge technologies. This new wave of AI is transforming user experiences and digital product development. Startups must adapt and seize the opportunities it offers. Activate Intelligence supports founders through this transition, helping them use AI to create more engaging, efficient products and stay ahead of the curve.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1016,pixelWidth:2400,sizes:\"1020px\",src:\"https://framerusercontent.com/images/l0LRvEfVCikmGGpMFFdM8Q4Hlk.png\",srcSet:\"https://framerusercontent.com/images/l0LRvEfVCikmGGpMFFdM8Q4Hlk.png?scale-down-to=512 512w,https://framerusercontent.com/images/l0LRvEfVCikmGGpMFFdM8Q4Hlk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l0LRvEfVCikmGGpMFFdM8Q4Hlk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/l0LRvEfVCikmGGpMFFdM8Q4Hlk.png 2400w\"},className:\"framer-pgeck4\",\"data-border\":true,\"data-framer-name\":\"Ecohedge Quote\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-so7z2s\",\"data-framer-name\":\"Frame 63\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ceza3v\",\"data-framer-name\":\"Frame 133\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ospuzx\",\"data-framer-name\":\"Frame 64\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:164,pixelHeight:48,pixelWidth:328,src:\"https://framerusercontent.com/images/y3in36kWcjw6xMTxi3GoHqAc9Q.png\"},className:\"framer-u2usm8\",\"data-framer-name\":\"Ecohedge Logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:['\"Activate Studio was a real turning point for EcoHedge. It helped us to better articulate our value proposition and our suitability for investment. The support provided by the team was instrumental in taking our initial concept from zero to one, and I have no doubt that the company would not have grown to where it is today without this guidance and mentorship. ',/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),'I would recommend the programme to any early-stage startup founders looking to take the next step and work with partners who really care about growing your business.\"']})}),className:\"framer-1akfuri\",\"data-framer-name\":\"\u201CMy journey with Activate Studio started about three years ago, and their support directly influenced our path from an early-stage idea to a successful launch. Their tailored approach, focusing on both design and product development, was instrumental in shaping my vision into a viable product. As of today, we have welcomed hundreds of returning customers and seen more than 15,000 booking inquiries, a milestone I initially thought was beyond my reach.\u201D\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"- Rob Smallcombe, EcoHedge co-founder\"})}),className:\"framer-wpntc\",\"data-framer-name\":\"- Layla Sargent, The Seam\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1004,pixelWidth:2400,sizes:\"1020px\",src:\"https://framerusercontent.com/images/SKtCHy7tsIjP9bHiLDFMGLdCQCA.png\",srcSet:\"https://framerusercontent.com/images/SKtCHy7tsIjP9bHiLDFMGLdCQCA.png?scale-down-to=512 512w,https://framerusercontent.com/images/SKtCHy7tsIjP9bHiLDFMGLdCQCA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SKtCHy7tsIjP9bHiLDFMGLdCQCA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SKtCHy7tsIjP9bHiLDFMGLdCQCA.png 2400w\"},className:\"framer-17tm7ua\",\"data-border\":true,\"data-framer-name\":\"HeyFood Quote\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1prdw3p\",\"data-framer-name\":\"Frame 63\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g8c5o9\",\"data-framer-name\":\"Frame 133\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xcfic\",\"data-framer-name\":\"Frame 64\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yqgrk9\",\"data-framer-name\":\"Heyfood Logo\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:83,svg:'<svg width=\"83\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"9\" width=\"30\" height=\"23\"><path d=\"M0 9.108h29.69v22.778H0V9.108Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m-1.875 12.296 38.848-4.56 3.93 32.971-38.848 4.559-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><mask id=\"c\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m36.994 7.734-38.848 4.56 3.93 32.97 38.849-4.56-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#c)\"><path d=\"M7.508 31.805c8.8-1.21 13.895-1.025 22.124-2.232-.834-7.325-2.087-13.508-4.64-20.43-7.466 3.739-11.306 6.873-17.964 11.882-1.283-.136-3.241-.1-4.498.179-.639.145-1.294.361-1.738.832-.472.498-.645 1.209-.737 1.886-.274 2.158.68 6.685 1.8 7.422 1.11.723 3.691.536 5.653.461Z\" fill=\"#FFDE59\"/></g></g></g><mask id=\"d\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"31\" width=\"9\" height=\"13\"><path d=\"M11.032 31.886h8.274v11.429h-8.274v-11.43Z\" fill=\"#fff\"/></mask><g mask=\"url(#d)\"><mask id=\"e\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m-1.875 12.296 38.849-4.559 3.93 32.97-38.848 4.56-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#e)\"><mask id=\"f\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m36.995 7.735-38.849 4.559 3.93 32.97 38.849-4.559-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#f)\"><path d=\"m11.102 32.904.515 9.822c2.533.27 5.072.445 7.613.51-.222-3.759-.436-7.527-.658-11.286-2.488.308-4.983.631-7.47.954Z\" fill=\"#FFDE59\"/></g></g></g><mask id=\"g\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"28\" y=\"10\" width=\"11\" height=\"17\"><path d=\"M28.716 10.88h9.815v15.21h-9.815V10.879Z\" fill=\"#fff\"/></mask><g mask=\"url(#g)\"><mask id=\"h\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m-1.875 12.296 38.848-4.559 3.93 32.97-38.848 4.56-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#h)\"><mask id=\"i\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m36.994 7.735-38.848 4.559 3.93 32.97 38.849-4.559-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#i)\"><path d=\"M38.425 20.234c.018.021.047.002.043-.028-.144-.557-.838-.476-1.336-.518-.853-.07-1.709-.102-2.558-.142-.888-.043-1.782-.063-2.668-.083-.76-.011-1.534-.021-2.269.181-.204.055-.11.316.043.36.712.203 1.477.19 2.213.198.783.009 1.565.018 2.355.018.782.001 1.565.01 2.348.02.392.008.783.008 1.172-.006.116-.006.555-.128.657 0Zm-2.776-5.577c-.864.497-1.862.777-2.797 1.135-.486.18-.962.384-1.448.573-.418.166-.823.376-1.277.367-.11-.002-.16-.16-.091-.238.303-.337.748-.475 1.159-.64.485-.188.973-.362 1.469-.529.946-.328 1.95-.686 2.962-.727.03-.012.06.04.023.059Zm.545 11.393c-.442-.033-.849-.234-1.258-.388-.466-.17-.926-.356-1.385-.535-.853-.334-1.827-.631-2.531-1.231-.165-.136-.048-.398.166-.377.927.1 1.807.603 2.636.994.447.211.901.414 1.342.634.39.195.824.353 1.148.649.105.088.031.26-.118.254Zm-4.639-15.04c-.072.638-.682 1.29-1.07 1.77-.43.54-.908 1.115-1.534 1.437-.154.08-.265-.124-.185-.242.385-.572.948-1.034 1.393-1.56.398-.465.723-1.155 1.228-1.501.08-.048.182.01.168.097Z\" fill=\"#FFDE59\"/></g></g></g><mask id=\"j\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"12\" y=\"17\" width=\"14\" height=\"11\"><path d=\"M12.816 17.077h12.33v10.785h-12.33V17.077Z\" fill=\"#fff\"/></mask><g mask=\"url(#j)\"><mask id=\"k\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"15\" width=\"17\" height=\"16\"><path d=\"m11.085 19.705 13.303-4.496 3.57 10.4-13.303 4.495-3.57-10.399Z\" fill=\"#fff\"/></mask><g mask=\"url(#k)\"><mask id=\"l\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"15\" width=\"17\" height=\"16\"><path d=\"m11.085 19.705 13.303-4.496 3.57 10.4-13.303 4.495-3.57-10.399Z\" fill=\"#fff\"/></mask><g mask=\"url(#l)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.055 17.787c-1.838-1.844-6.13.183-4.934 3.632-1.251-3.645-5.87-2.447-6.19.127-.32 2.573 1.69 3.81 4.343 4.338a9.635 9.635 0 0 1 1.539.44l-.51-1.737c-.514.07-1.062-.353-1.204-1.029-.152-.725 0-1.586.42-1.727.403-.137 1.06.372 1.424 1.104.302.606.114 1.268-.32 1.536l.837 2.127c1.222.574 1.854 1.208 1.854 1.208s.011-.114.053-.314c-.047-.049-.06-.106-.06-.106l-1.022-3.472c-.436.05-.894-.283-1.058-.828h-.002c-.18-.617-.476-1.695-.4-1.721.074-.025.474.936.715 1.54l.123-.042c-.18-.624-.454-1.628-.38-1.652.073-.025.473.936.715 1.54l.122-.042c-.18-.625-.454-1.628-.38-1.653.073-.025.474.936.715 1.54l.122-.042c-.18-.624-.454-1.628-.38-1.652.076-.026.504 1.008.741 1.605.201.518.032 1.058-.332 1.292l1.062 2.696c.142-.37.339-.8.611-1.26l-.636-2.162-.651-1.898c-.074-.215-.032-.423.184-.496.216-.074.457.145.617.611l.716 2.085c.157.459.093.79-.037.962l.146.37c.193-.28.413-.566.666-.855 1.777-2.025 2.608-4.222.77-6.065Z\" fill=\"#F78B44\"/></g></g></g><mask id=\"m\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"12\" y=\"16\" width=\"14\" height=\"12\"><path d=\"M12.816 16.996h12.411v10.946h-12.41V16.996Z\" fill=\"#fff\"/></mask><g mask=\"url(#m)\"><mask id=\"n\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"15\" width=\"17\" height=\"16\"><path d=\"m11.085 19.705 13.303-4.496 3.57 10.4-13.303 4.495-3.57-10.399Z\" fill=\"#fff\"/></mask><g mask=\"url(#n)\"><mask id=\"o\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"15\" width=\"17\" height=\"16\"><path d=\"m11.085 19.705 13.303-4.496 3.57 10.4-13.303 4.495-3.57-10.399Z\" fill=\"#fff\"/></mask><g mask=\"url(#o)\"><path d=\"m24.054 17.787.05-.05a2.43 2.43 0 0 0-1.369-.68 3.323 3.323 0 0 0-1.572.15c-.774.261-1.482.787-1.909 1.515a2.979 2.979 0 0 0-.398 1.232c-.043.454.013.95.193 1.474l.005.014a.071.071 0 0 0 .134-.046 3.793 3.793 0 0 0-.763-1.332 3.03 3.03 0 0 0-1.664-.944 3.537 3.537 0 0 0-1.82.127c-.535.18-1.02.48-1.39.872a2.518 2.518 0 0 0-.69 1.419c-.077.612-.023 1.153.14 1.63.133.387.339.73.604 1.034.4.453.93.815 1.553 1.101.622.287 1.336.498 2.102.65a9.576 9.576 0 0 1 1.527.436c.026.01.054.004.074-.014a.07.07 0 0 0 .02-.071l-.511-1.737a.07.07 0 0 0-.078-.05.873.873 0 0 1-.626-.172 1.274 1.274 0 0 1-.449-.625 1.442 1.442 0 0 1-.048-.176 2.61 2.61 0 0 1-.006-1.053c.035-.156.086-.293.151-.395a.58.58 0 0 1 .107-.128.355.355 0 0 1 .12-.07.473.473 0 0 1 .297.012c.17.054.366.184.55.368.185.183.358.42.491.688.028.056.051.111.07.167.09.263.09.528.021.754a.925.925 0 0 1-.385.525.07.07 0 0 0-.029.085l.838 2.127a.07.07 0 0 0 .036.038 8.076 8.076 0 0 1 1.373.812 5.667 5.667 0 0 1 .432.355l.022.02.005.005.001.001a.071.071 0 0 0 .121-.042c.002-.012.014-.121.053-.306a.07.07 0 0 0-.019-.063.183.183 0 0 1-.04-.066l-.002-.007-.03.007.03-.007-.03.007.03-.007-.001-.005-1.022-3.472a.07.07 0 0 0-.076-.05.8.8 0 0 1-.563-.164 1.167 1.167 0 0 1-.42-.614.07.07 0 0 0-.09-.047h-.001l.022.067.069-.02c-.09-.307-.21-.73-.296-1.08a6.951 6.951 0 0 1-.098-.44.944.944 0 0 1-.016-.127v-.023h-.004.004-.004.004l-.038-.009.033.02c.005-.006.005-.01.005-.01l-.038-.01.033.02-.05-.031.019.056a.06.06 0 0 0 .031-.024l-.05-.032.019.056-.02-.058-.004.06a.06.06 0 0 0 .024-.002l-.02-.058-.004.06.003-.05-.027.044c.003.002.01.006.024.007l.003-.051-.027.044.013-.021-.016.019.003.002.013-.021-.016.019s.007.006.013.016a.802.802 0 0 1 .053.086c.074.135.182.372.293.63.111.26.227.543.318.773a.071.071 0 0 0 .09.04l.122-.04a.07.07 0 0 0 .045-.087 29.26 29.26 0 0 1-.285-1.049 6.05 6.05 0 0 1-.09-.415.935.935 0 0 1-.015-.133v-.005l-.036-.009.032.02.005-.012-.037-.008.032.02-.049-.03.038.042a.07.07 0 0 0 .01-.012l-.048-.03.038.042-.04-.046.019.058a.07.07 0 0 0 .02-.012l-.04-.046-.004.061a.07.07 0 0 0 .024-.003l-.02-.058-.004.061.004-.05-.028.043c.003.002.01.006.024.007l.004-.05-.028.043.013-.02-.016.018.003.002.013-.02-.016.018a.845.845 0 0 1 .066.102c.075.136.182.372.293.632.111.259.227.54.319.771a.071.071 0 0 0 .088.04l.123-.04a.07.07 0 0 0 .045-.086c-.09-.312-.203-.719-.284-1.049a6.073 6.073 0 0 1-.091-.416.937.937 0 0 1-.015-.133v-.005l-.035-.008.03.02.006-.012-.037-.008.032.02-.048-.03.037.042a.058.058 0 0 0 .01-.013l-.047-.03.037.043-.04-.046.02.058a.063.063 0 0 0 .02-.012l-.04-.046-.005.06a.06.06 0 0 0 .024-.002l-.02-.058-.004.06.004-.05-.028.044c.003.001.01.006.024.007l.004-.052-.028.044.013-.02-.015.019.002.002.013-.021-.015.019.013.016a.881.881 0 0 1 .052.086c.075.135.182.372.293.63.112.26.227.543.319.773a.071.071 0 0 0 .089.04l.122-.041a.07.07 0 0 0 .045-.086c-.09-.312-.203-.718-.285-1.049a6.337 6.337 0 0 1-.09-.415.97.97 0 0 1-.015-.119v-.019l-.035-.009.031.02a.03.03 0 0 0 .005-.011l-.036-.009.031.02-.048-.03.037.042a.056.056 0 0 0 .011-.012l-.048-.03.037.042-.04-.046.02.058a.063.063 0 0 0 .02-.012l-.04-.046-.005.061c.007 0 .016 0 .024-.003l-.02-.058-.004.061.004-.05-.028.043c.003.001.01.006.024.007l.004-.05-.028.043.011-.018-.013.016.002.002.011-.018-.013.016.015.018a.98.98 0 0 1 .056.094c.079.145.192.397.308.668.116.272.234.563.325.791l.065-.026-.022-.066h-.002a.07.07 0 0 0-.04.037.069.069 0 0 0-.003.055l.017.047c.082.238.082.477.022.682a.848.848 0 0 1-.343.479.07.07 0 0 0-.027.084l1.062 2.695a.07.07 0 0 0 .066.045.07.07 0 0 0 .066-.045 8.25 8.25 0 0 1 .606-1.249.07.07 0 0 0 .007-.055l-.636-2.162v-.003l-.652-1.898a.415.415 0 0 1-.016-.258.217.217 0 0 1 .053-.089.256.256 0 0 1 .103-.06.19.19 0 0 1 .12-.001.45.45 0 0 1 .208.17c.071.094.14.228.198.398l.716 2.085c.076.221.098.41.086.56a.641.641 0 0 1-.112.337.07.07 0 0 0-.009.068l.146.37a.072.072 0 0 0 .124.014c.192-.278.41-.562.662-.848.683-.78 1.23-1.585 1.54-2.392.156-.404.252-.808.276-1.208.024-.4-.024-.797-.157-1.185-.163-.476-.454-.938-.892-1.377l-.05.05-.051.05c.425.426.703.869.859 1.322.127.37.173.748.15 1.131-.035.576-.226 1.166-.536 1.756-.31.591-.739 1.182-1.246 1.76a9.44 9.44 0 0 0-.672.861l.059.04.066-.026-.146-.37-.066.026.057.042a.775.775 0 0 0 .14-.41 1.546 1.546 0 0 0-.094-.617l-.715-2.084c-.083-.241-.186-.42-.305-.536a.495.495 0 0 0-.193-.121.334.334 0 0 0-.21.001.376.376 0 0 0-.263.323.613.613 0 0 0 .035.263l.652 1.896.635 2.161.068-.02-.061-.035a8.413 8.413 0 0 0-.616 1.27l.066.025.066-.026-1.062-2.695-.066.026.039.059a.99.99 0 0 0 .4-.557 1.263 1.263 0 0 0-.042-.82l-.066.026.023.066h.001a.07.07 0 0 0 .042-.038.069.069 0 0 0 .001-.055 31.801 31.801 0 0 0-.432-1.039 7.14 7.14 0 0 0-.198-.418 1.21 1.21 0 0 0-.076-.127.261.261 0 0 0-.037-.042.093.093 0 0 0-.055-.024c-.01 0-.021 0-.032.004a.077.077 0 0 0-.027.016.092.092 0 0 0-.025.036.162.162 0 0 0-.008.052.635.635 0 0 0 .01.114c.01.079.032.182.059.3.082.357.22.854.326 1.22l.068-.019-.023-.066-.122.041.023.067.066-.026a30.91 30.91 0 0 0-.422-1.009 6.292 6.292 0 0 0-.188-.393.934.934 0 0 0-.073-.12.228.228 0 0 0-.036-.04.109.109 0 0 0-.03-.017.087.087 0 0 0-.055-.002.085.085 0 0 0-.052.052.166.166 0 0 0-.009.053c0 .031.004.068.01.113.011.08.033.183.06.301.082.356.22.853.326 1.22l.068-.019-.023-.067-.122.042.023.066.066-.026a29.07 29.07 0 0 0-.422-1.008 6.091 6.091 0 0 0-.189-.393.987.987 0 0 0-.072-.12.21.21 0 0 0-.036-.04.107.107 0 0 0-.03-.018.084.084 0 0 0-.056-.001.086.086 0 0 0-.052.052.155.155 0 0 0-.008.052c0 .032.003.069.01.114.012.08.032.182.06.3.082.357.22.854.326 1.22l.068-.019-.023-.066-.123.041.023.067.066-.026a27.98 27.98 0 0 0-.421-1.008 6.447 6.447 0 0 0-.189-.394.993.993 0 0 0-.072-.12.22.22 0 0 0-.036-.04.103.103 0 0 0-.055-.023c-.01 0-.02 0-.031.004a.082.082 0 0 0-.052.054.163.163 0 0 0-.008.054c0 .033.004.073.01.12a5.5 5.5 0 0 0 .066.32c.088.376.234.897.34 1.26a.071.071 0 0 0 .09.047l.002-.001-.023-.066-.069.02.018.054c.093.27.256.488.454.634a.94.94 0 0 0 .664.19l-.009-.07-.068.02 1.022 3.472.068-.02-.07.016.007.02a.33.33 0 0 0 .072.12l.051-.05-.069-.014c-.043.203-.054.319-.055.321l.07.007.05-.05c-.003-.004-.64-.642-1.872-1.221l-.03.063.065-.025-.838-2.127-.066.025.038.06c.213-.132.368-.348.446-.603.078-.255.078-.55-.022-.84a1.528 1.528 0 0 0-.078-.184 2.664 2.664 0 0 0-.717-.902 1.362 1.362 0 0 0-.408-.226.61.61 0 0 0-.386-.012.5.5 0 0 0-.169.099.85.85 0 0 0-.21.306c-.08.186-.126.415-.14.658a2.85 2.85 0 0 0 .054.745c.014.067.032.131.053.193.102.297.282.536.5.693.218.157.476.233.729.199l-.01-.07-.068.02.51 1.736.069-.02.025-.065a9.727 9.727 0 0 0-1.55-.443c-1.01-.2-1.925-.505-2.647-.944a3.958 3.958 0 0 1-.928-.762 2.93 2.93 0 0 1-.578-.987c-.156-.454-.208-.972-.134-1.567a2.38 2.38 0 0 1 .654-1.34 3.28 3.28 0 0 1 1.331-.835c.74-.25 1.577-.26 2.317.053.37.157.716.394 1.016.725.3.33.553.754.735 1.283a.07.07 0 0 0 .09.044.07.07 0 0 0 .044-.09l-.005-.012a3.362 3.362 0 0 1-.185-1.416c.061-.65.334-1.212.732-1.66.398-.447.92-.779 1.479-.967a3.18 3.18 0 0 1 1.504-.145c.486.078.936.285 1.291.642l.05-.05Z\" fill=\"#F78B44\"/></g></g></g><path d=\"M49.036 0v9.27h-2.643V5.654H42.79V9.27h-2.643V0h2.643v3.482h3.603V0h2.643Zm8.834 5.694c0 .018-.013.225-.04.623h-5.257c.106.37.313.655.62.854.306.198.69.298 1.154.298.347 0 .648-.049.901-.146.254-.097.51-.256.767-.477l1.335 1.377C56.647 9 55.619 9.39 54.267 9.39c-.846 0-1.589-.159-2.23-.477a3.57 3.57 0 0 1-1.487-1.324c-.352-.565-.527-1.205-.527-1.92 0-.707.17-1.34.513-1.9.343-.561.817-1 1.422-1.318.605-.318 1.285-.477 2.042-.477a4.3 4.3 0 0 1 1.962.444 3.381 3.381 0 0 1 1.394 1.284c.343.56.515 1.226.515 1.993Zm-3.856-1.933c-.393 0-.72.11-.983.331-.262.22-.428.52-.499.9h2.963c-.072-.38-.239-.68-.502-.9-.262-.22-.588-.33-.98-.33Z\" fill=\"#F78B44\"/><path d=\"m66.358 2.093-3.123 7.469c-.365.882-.81 1.502-1.334 1.86-.525.357-1.166.536-1.922.536-.383 0-.767-.06-1.154-.18-.388-.119-.701-.275-.942-.469l.88-1.761c.143.132.315.235.515.31.2.076.403.113.607.113.24 0 .438-.048.594-.145a1.12 1.12 0 0 0 .394-.463l-3.097-7.27h2.604l1.774 4.382 1.789-4.382h2.415ZM66.398 0h3.017l-.508 5.893h-2.015L66.398 0Zm1.508 9.39c-.444 0-.81-.136-1.094-.405a1.308 1.308 0 0 1-.427-.987c0-.397.142-.724.427-.98.285-.255.65-.383 1.094-.383.445 0 .808.128 1.088.384.28.255.42.582.42.98 0 .387-.142.717-.427.986-.284.27-.645.404-1.08.404ZM42.79 14.04v2.04h4.124v2.025H42.79v3.178h-2.643v-9.27h7.327v2.027H42.79Zm9.127 7.363c-.774 0-1.472-.159-2.095-.477a3.61 3.61 0 0 1-1.461-1.324c-.352-.565-.527-1.205-.527-1.92a3.529 3.529 0 0 1 1.982-3.225c.618-.313 1.319-.47 2.101-.47.784 0 1.486.157 2.11.47a3.54 3.54 0 0 1 1.454 1.312c.348.56.521 1.198.521 1.913 0 .715-.173 1.355-.52 1.92a3.569 3.569 0 0 1-1.456 1.324c-.623.318-1.325.477-2.109.477Zm0-2c.445 0 .81-.152 1.095-.456.285-.305.428-.727.428-1.265 0-.53-.143-.945-.428-1.245-.285-.3-.65-.45-1.095-.45-.444 0-.809.15-1.094.45-.284.3-.427.715-.427 1.245 0 .538.143.96.427 1.265.285.304.65.456 1.094.456Zm8.582 2c-.774 0-1.473-.159-2.095-.477a3.61 3.61 0 0 1-1.462-1.324c-.351-.565-.527-1.205-.527-1.92a3.53 3.53 0 0 1 1.982-3.225c.619-.313 1.32-.47 2.102-.47.783 0 1.486.157 2.109.47.623.314 1.108.75 1.455 1.312.347.56.52 1.198.52 1.913 0 .715-.173 1.355-.52 1.92a3.569 3.569 0 0 1-1.455 1.324c-.623.318-1.326.477-2.11.477Zm0-2c.445 0 .81-.152 1.095-.456.285-.305.427-.727.427-1.265 0-.53-.142-.945-.427-1.245-.285-.3-.65-.45-1.095-.45-.445 0-.81.15-1.094.45-.285.3-.427.715-.427 1.245 0 .538.142.96.427 1.265.285.304.65.456 1.094.456Zm12.639-7.945v9.825h-2.416v-.715c-.471.557-1.179.835-2.122.835a3.617 3.617 0 0 1-1.802-.457 3.321 3.321 0 0 1-1.287-1.305c-.317-.565-.474-1.218-.474-1.96 0-.741.157-1.392.474-1.952a3.284 3.284 0 0 1 1.287-1.292 3.66 3.66 0 0 1 1.802-.45c.863 0 1.53.247 2.002.742v-3.271h2.536Zm-4.004 7.945c.436 0 .796-.152 1.08-.456.285-.305.427-.727.427-1.265 0-.53-.14-.945-.42-1.245-.28-.3-.642-.45-1.087-.45-.445 0-.81.15-1.095.45-.285.3-.427.715-.427 1.245 0 .538.142.96.427 1.265.285.304.65.456 1.095.456ZM40.026 26.12h2.537v7.177h-2.537v-7.176Zm1.27-.794c-.464 0-.838-.128-1.123-.384a1.235 1.235 0 0 1-.425-.954c0-.38.142-.696.425-.952.285-.257.659-.385 1.122-.385.463 0 .837.122 1.12.365.285.242.428.553.428.933 0 .397-.143.726-.427.987-.284.26-.658.39-1.12.39Zm5.231 8.091a7.872 7.872 0 0 1-1.789-.205c-.587-.138-1.059-.316-1.414-.537l.76-1.722c.329.203.72.365 1.174.485.454.119.903.178 1.348.178.41 0 .7-.042.874-.126.174-.083.26-.205.26-.364s-.104-.271-.314-.337c-.208-.067-.54-.13-.993-.193a9.87 9.87 0 0 1-1.475-.278 2.283 2.283 0 0 1-1.049-.635c-.293-.31-.44-.742-.44-1.299 0-.458.138-.866.414-1.224.276-.357.678-.64 1.208-.847.53-.208 1.163-.312 1.902-.312.525 0 1.046.053 1.562.16.516.105.948.255 1.295.449l-.762 1.709a4.245 4.245 0 0 0-2.081-.53c-.4 0-.694.047-.88.14-.188.092-.281.213-.281.363 0 .168.102.285.307.351.204.066.542.135 1.014.205.596.088 1.09.19 1.481.305.391.114.732.325 1.02.63.29.304.435.73.435 1.276 0 .45-.138.854-.414 1.212-.276.357-.683.638-1.22.842-.539.202-1.186.304-1.942.304Zm-2.297 9.43h-1.44v2.464h-2.643v-9.27h4.271c.845 0 1.579.14 2.202.418.623.278 1.103.675 1.441 1.19.339.517.508 1.125.508 1.822 0 .672-.158 1.257-.474 1.756-.316.498-.767.888-1.355 1.17l2.016 2.914h-2.83l-1.695-2.464Zm1.67-3.376c0-.433-.138-.768-.414-1.006-.276-.238-.685-.357-1.229-.357H42.79v2.714h1.467c.544 0 .953-.117 1.229-.351.276-.234.414-.567.414-1Zm11.09 2.265c0 .017-.014.225-.04.622h-5.258c.106.371.313.656.62.854.306.199.69.298 1.154.298.347 0 .648-.048.901-.146a2.66 2.66 0 0 0 .767-.476l1.335 1.377c-.703.777-1.73 1.166-3.083 1.166-.846 0-1.589-.16-2.23-.477-.64-.318-1.136-.759-1.487-1.324-.352-.565-.527-1.205-.527-1.92 0-.707.17-1.34.513-1.9.343-.562.817-1 1.422-1.319.605-.317 1.285-.476 2.042-.476.72 0 1.374.148 1.962.444a3.382 3.382 0 0 1 1.394 1.284c.343.56.515 1.225.515 1.993Zm-3.857-1.933c-.392 0-.72.11-.982.33-.263.221-.429.521-.5.901h2.963c-.071-.38-.239-.68-.501-.9-.262-.22-.59-.331-.98-.331Zm7.807-1.788c1.2 0 2.117.271 2.749.815.632.542.948 1.374.948 2.495v3.986h-2.362v-.927c-.366.698-1.078 1.047-2.136 1.047-.56 0-1.046-.098-1.455-.292-.41-.195-.719-.457-.928-.787a2.079 2.079 0 0 1-.313-1.133c0-.68.262-1.208.787-1.583s1.335-.563 2.43-.563h1.44c-.044-.759-.556-1.138-1.534-1.138-.347 0-.7.055-1.055.166-.355.11-.658.262-.907.456l-.854-1.709c.4-.264.887-.47 1.461-.614a6.988 6.988 0 0 1 1.729-.22Zm-.094 5.826c.294 0 .552-.07.774-.211a1.18 1.18 0 0 0 .48-.623v-.622h-1.094c-.739 0-1.108.242-1.108.728 0 .22.084.397.253.53.17.132.402.198.695.198Zm12.773-8.355v9.825h-2.416v-.715c-.472.557-1.18.835-2.123.835a3.616 3.616 0 0 1-1.801-.457 3.32 3.32 0 0 1-1.288-1.305c-.316-.565-.474-1.218-.474-1.96 0-.741.158-1.392.474-1.952a3.28 3.28 0 0 1 1.288-1.292 3.66 3.66 0 0 1 1.8-.45c.864 0 1.532.247 2.004.742v-3.271h2.536Zm-4.004 7.945c.436 0 .796-.152 1.08-.456.284-.305.427-.727.427-1.265 0-.53-.14-.945-.421-1.245-.28-.3-.642-.45-1.086-.45-.446 0-.81.15-1.095.45-.285.3-.427.715-.427 1.245 0 .538.142.96.427 1.265.284.304.65.456 1.095.456Zm12.945-5.297-3.123 7.469c-.365.883-.81 1.503-1.335 1.86-.524.358-1.165.537-1.921.537-.383 0-.768-.06-1.155-.18-.387-.119-.7-.275-.941-.469l.88-1.762c.143.133.315.236.515.31.2.076.402.114.607.114.24 0 .438-.049.593-.146a1.11 1.11 0 0 0 .394-.463l-3.096-7.27h2.603l1.775 4.383 1.788-4.383h2.416Z\" fill=\"#F78B44\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:[\"\u201CActivate Studio didn\u2019t just help us build our product, they really got our vision from the start and became a tech partner. Their support went way beyond tech; they helped us refine our strategy, understand our customers better, and figure out the right path forward with invaluable design sessions. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"The whole team has been incredible, always there to guide us through challenges and big decisions. It\u2019s been amazing having a partner we can truly rely on as we grow.\u201D\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1qqgelj\",\"data-framer-name\":\"\u201CMy journey with Activate Studio started about three years ago, and their support directly influenced our path from an early-stage idea to a successful launch. Their tailored approach, focusing on both design and product development, was instrumental in shaping my vision into a viable product. As of today, we have welcomed hundreds of returning customers and seen more than 15,000 booking inquiries, a milestone I initially thought was beyond my reach.\u201D\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"- Yuru Guo, Hey! Food is Ready founder\"})}),className:\"framer-nrcmjk\",\"data-framer-name\":\"- Layla Sargent, The Seam\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3b1l4a-container hidden-72rtr7 hidden-yna2my\",isModuleExternal:true,nodeId:\"ByJ34eJUu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:8,arrowRadius:40,arrowSize:24,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:24,height:\"100%\",id:\"ByJ34eJUu\",layoutId:\"ByJ34eJUu\",padding:0,paddingBottom:40,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tcvslf\",\"data-border\":true,\"data-framer-name\":\"Smash Quote M\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rofmlh\",\"data-framer-name\":\"Frame 63\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-195n482\",\"data-framer-name\":\"Frame 64\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tq2xsb\",\"data-framer-name\":\"Smash-logo-new 1\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:134,svg:'<svg width=\"134\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#05012D\"><path d=\"M129.302 35.934H66.587V40h66.781v-8.899h-4.066v4.833Zm0-35.934h-4.833v4.068h4.833V8.9h4.066V0h-4.066ZM0 0v8.899h4.068V4.07h62.654V0H0Zm4.068 31.1H0V40h8.899v-4.066H4.07V31.1Zm26.99-7.277c0 4.116-2.916 6.946-9.634 6.946h-.474c-8.004 0-9.318-4.46-9.318-7.145h6.306c.17 1 1.371 1.544 3.4 1.544h.086c2.26 0 3.202-.459 3.202-1.229 0-.573-.486-1.058-1.945-1.058h-3.258c-4.973 0-7.488-2.288-7.488-5.83 0-3.489 2.257-6.977 9.318-6.977h.285c8.09 0 9.09 5.004 9.09 6.948h-6.317c-.114-.829-.886-1.544-2.944-1.544h-.114c-2.368 0-2.915.656-2.915 1.257 0 .602.486 1.057 1.772 1.057h3.744c4.745-.003 7.204 2.48 7.204 6.031Zm23.724-13.408v20.008h-6.157V20.42l-4.945 6.202-5.21-6.375V30.43h-6.126V10.415h6.145l5.21 6.889 4.945-6.889h6.138ZM96.37 23.823c0 4.116-2.914 6.946-9.63 6.946h-.486c-8.004 0-9.319-4.46-9.319-7.145h6.316c.173 1 1.374 1.544 3.403 1.544h.086c2.256 0 3.201-.459 3.201-1.229 0-.573-.487-1.058-1.944-1.058h-3.256c-4.973 0-7.49-2.288-7.49-5.83 0-3.489 2.259-6.977 9.318-6.977h.287c8.09 0 9.089 5.004 9.089 6.948h-6.319c-.113-.829-.885-1.544-2.943-1.544h-.116c-2.368 0-2.915.656-2.915 1.257 0 .602.485 1.057 1.773 1.057h3.744c4.744-.003 7.202 2.48 7.202 6.031Zm21.068-13.408v20.008h-6.288v-7.43h-7.203v7.43h-6.288V10.415h6.288v7.014h7.203v-7.014h6.288Zm3.898 1.587a1.543 1.543 0 0 1-.9 1.471 1.538 1.538 0 0 1-2.067-1.972 1.54 1.54 0 0 1 1.427-.967 1.466 1.466 0 0 1 1.422.889c.078.183.118.38.118.579Zm-.474 0a1.074 1.074 0 0 0-.642-1.007 1.071 1.071 0 1 0-.431 2.051 1.013 1.013 0 0 0 1.078-1.044h-.005Zm-.575.25.255.413h-.487l-.183-.318h-.256v.318h-.438v-1.393h.758a.553.553 0 0 1 .595.54.524.524 0 0 1-.24.44h-.004Zm-.671-.286h.32a.158.158 0 0 0 .111-.046.157.157 0 0 0-.111-.266h-.32v.312ZM70.5 27.24h-7.657l-.836 3.183h-6.36l5.304-20.07h11.476l5.305 20.07h-6.394l-.839-3.182Zm-1.464-5.588-1.492-5.764h-1.776l-1.492 5.764h4.76Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h133.368v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"\u201CThe Activate Studio team\u2019s active involvement at every step ensured we were heading in the right direction, which was crucial for securing nearly half a million in investment and earning recognition.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"We were selected for the Creative Catalyst SXSW Programme, won the Best AI for Good Startup in Edinburgh University\u2019s AI Accelerator Programme, and received the Gold Award for Tech Innovation in Cannes\u201D\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-g75feg\",\"data-framer-name\":\"Activate Intelligence is our latest venture, designed to help businesses harness the power of generative AI. Our AI experts provide innovative services to fully leverage these cutting-edge technologies. This new wave of AI is transforming user experiences and digital product development. Startups must adapt and seize the opportunities it offers. Activate Intelligence supports founders through this transition, helping them use AI to create more engaging, efficient products and stay ahead of the curve.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"- Fiona Gillies, Christine Hartland and Mahesh Ramachandra, SMASH founders\"})}),className:\"framer-10t86bp\",\"data-framer-name\":\"Activate Intelligence is our latest venture, designed to help businesses harness the power of generative AI. Our AI experts provide innovative services to fully leverage these cutting-edge technologies. This new wave of AI is transforming user experiences and digital product development. Startups must adapt and seize the opportunities it offers. Activate Intelligence supports founders through this transition, helping them use AI to create more engaging, efficient products and stay ahead of the curve.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16x1x2s\",\"data-border\":true,\"data-framer-name\":\"Ecohedge Quote M\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1srz10n\",\"data-framer-name\":\"Frame 63\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17vwkxq\",\"data-framer-name\":\"Frame 133\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g1zt7f\",\"data-framer-name\":\"Frame 64\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:164,pixelHeight:48,pixelWidth:328,src:\"https://framerusercontent.com/images/y3in36kWcjw6xMTxi3GoHqAc9Q.png\"},className:\"framer-uahrvi\",\"data-framer-name\":\"Ecohedge Logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:['\"Activate Studio was a real turning point for EcoHedge. It helped us to better articulate our value proposition and our suitability for investment. The support provided by the team was instrumental in taking our initial concept from zero to one, and I have no doubt that the company would not have grown to where it is today without this guidance and mentorship. ',/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),'I would recommend the programme to any early-stage startup founders looking to take the next step and work with partners who really care about growing your business.\"']})}),className:\"framer-adstsn\",\"data-framer-name\":\"\u201CMy journey with Activate Studio started about three years ago, and their support directly influenced our path from an early-stage idea to a successful launch. Their tailored approach, focusing on both design and product development, was instrumental in shaping my vision into a viable product. As of today, we have welcomed hundreds of returning customers and seen more than 15,000 booking inquiries, a milestone I initially thought was beyond my reach.\u201D\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"- Rob Smallcombe, EcoHedge co-founder\"})}),className:\"framer-18f53cw\",\"data-framer-name\":\"- Layla Sargent, The Seam\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sr40an\",\"data-border\":true,\"data-framer-name\":\"HeyFood Quote M\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jqttoi\",\"data-framer-name\":\"Frame 63\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nbw3n0\",\"data-framer-name\":\"Frame 133\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mdjmyl\",\"data-framer-name\":\"Frame 64\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d6ze5o\",\"data-framer-name\":\"Heyfood Logo\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:83,svg:'<svg width=\"83\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"9\" width=\"30\" height=\"23\"><path d=\"M0 9.108h29.69v22.778H0V9.108Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m-1.875 12.296 38.848-4.56 3.93 32.971-38.848 4.559-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><mask id=\"c\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m36.994 7.734-38.848 4.56 3.93 32.97 38.849-4.56-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#c)\"><path d=\"M7.508 31.805c8.8-1.21 13.895-1.025 22.124-2.232-.834-7.325-2.087-13.508-4.64-20.43-7.466 3.739-11.306 6.873-17.964 11.882-1.283-.136-3.241-.1-4.498.179-.639.145-1.294.361-1.738.832-.472.498-.645 1.209-.737 1.886-.274 2.158.68 6.685 1.8 7.422 1.11.723 3.691.536 5.653.461Z\" fill=\"#FFDE59\"/></g></g></g><mask id=\"d\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"31\" width=\"9\" height=\"13\"><path d=\"M11.032 31.886h8.274v11.429h-8.274v-11.43Z\" fill=\"#fff\"/></mask><g mask=\"url(#d)\"><mask id=\"e\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m-1.875 12.296 38.849-4.559 3.93 32.97-38.848 4.56-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#e)\"><mask id=\"f\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m36.995 7.735-38.849 4.559 3.93 32.97 38.849-4.559-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#f)\"><path d=\"m11.102 32.904.515 9.822c2.533.27 5.072.445 7.613.51-.222-3.759-.436-7.527-.658-11.286-2.488.308-4.983.631-7.47.954Z\" fill=\"#FFDE59\"/></g></g></g><mask id=\"g\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"28\" y=\"10\" width=\"11\" height=\"17\"><path d=\"M28.716 10.88h9.815v15.21h-9.815V10.879Z\" fill=\"#fff\"/></mask><g mask=\"url(#g)\"><mask id=\"h\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m-1.875 12.296 38.848-4.559 3.93 32.97-38.848 4.56-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#h)\"><mask id=\"i\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-2\" y=\"7\" width=\"43\" height=\"39\"><path d=\"m36.994 7.735-38.848 4.559 3.93 32.97 38.849-4.559-3.93-32.97Z\" fill=\"#fff\"/></mask><g mask=\"url(#i)\"><path d=\"M38.425 20.234c.018.021.047.002.043-.028-.144-.557-.838-.476-1.336-.518-.853-.07-1.709-.102-2.558-.142-.888-.043-1.782-.063-2.668-.083-.76-.011-1.534-.021-2.269.181-.204.055-.11.316.043.36.712.203 1.477.19 2.213.198.783.009 1.565.018 2.355.018.782.001 1.565.01 2.348.02.392.008.783.008 1.172-.006.116-.006.555-.128.657 0Zm-2.776-5.577c-.864.497-1.862.777-2.797 1.135-.486.18-.962.384-1.448.573-.418.166-.823.376-1.277.367-.11-.002-.16-.16-.091-.238.303-.337.748-.475 1.159-.64.485-.188.973-.362 1.469-.529.946-.328 1.95-.686 2.962-.727.03-.012.06.04.023.059Zm.545 11.393c-.442-.033-.849-.234-1.258-.388-.466-.17-.926-.356-1.385-.535-.853-.334-1.827-.631-2.531-1.231-.165-.136-.048-.398.166-.377.927.1 1.807.603 2.636.994.447.211.901.414 1.342.634.39.195.824.353 1.148.649.105.088.031.26-.118.254Zm-4.639-15.04c-.072.638-.682 1.29-1.07 1.77-.43.54-.908 1.115-1.534 1.437-.154.08-.265-.124-.185-.242.385-.572.948-1.034 1.393-1.56.398-.465.723-1.155 1.228-1.501.08-.048.182.01.168.097Z\" fill=\"#FFDE59\"/></g></g></g><mask id=\"j\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"12\" y=\"17\" width=\"14\" height=\"11\"><path d=\"M12.816 17.077h12.33v10.785h-12.33V17.077Z\" fill=\"#fff\"/></mask><g mask=\"url(#j)\"><mask id=\"k\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"15\" width=\"17\" height=\"16\"><path d=\"m11.085 19.705 13.303-4.496 3.57 10.4-13.303 4.495-3.57-10.399Z\" fill=\"#fff\"/></mask><g mask=\"url(#k)\"><mask id=\"l\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"15\" width=\"17\" height=\"16\"><path d=\"m11.085 19.705 13.303-4.496 3.57 10.4-13.303 4.495-3.57-10.399Z\" fill=\"#fff\"/></mask><g mask=\"url(#l)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.055 17.787c-1.838-1.844-6.13.183-4.934 3.632-1.251-3.645-5.87-2.447-6.19.127-.32 2.573 1.69 3.81 4.343 4.338a9.635 9.635 0 0 1 1.539.44l-.51-1.737c-.514.07-1.062-.353-1.204-1.029-.152-.725 0-1.586.42-1.727.403-.137 1.06.372 1.424 1.104.302.606.114 1.268-.32 1.536l.837 2.127c1.222.574 1.854 1.208 1.854 1.208s.011-.114.053-.314c-.047-.049-.06-.106-.06-.106l-1.022-3.472c-.436.05-.894-.283-1.058-.828h-.002c-.18-.617-.476-1.695-.4-1.721.074-.025.474.936.715 1.54l.123-.042c-.18-.624-.454-1.628-.38-1.652.073-.025.473.936.715 1.54l.122-.042c-.18-.625-.454-1.628-.38-1.653.073-.025.474.936.715 1.54l.122-.042c-.18-.624-.454-1.628-.38-1.652.076-.026.504 1.008.741 1.605.201.518.032 1.058-.332 1.292l1.062 2.696c.142-.37.339-.8.611-1.26l-.636-2.162-.651-1.898c-.074-.215-.032-.423.184-.496.216-.074.457.145.617.611l.716 2.085c.157.459.093.79-.037.962l.146.37c.193-.28.413-.566.666-.855 1.777-2.025 2.608-4.222.77-6.065Z\" fill=\"#F78B44\"/></g></g></g><mask id=\"m\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"12\" y=\"16\" width=\"14\" height=\"12\"><path d=\"M12.816 16.996h12.411v10.946h-12.41V16.996Z\" fill=\"#fff\"/></mask><g mask=\"url(#m)\"><mask id=\"n\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"15\" width=\"17\" height=\"16\"><path d=\"m11.085 19.705 13.303-4.496 3.57 10.4-13.303 4.495-3.57-10.399Z\" fill=\"#fff\"/></mask><g mask=\"url(#n)\"><mask id=\"o\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"11\" y=\"15\" width=\"17\" height=\"16\"><path d=\"m11.085 19.705 13.303-4.496 3.57 10.4-13.303 4.495-3.57-10.399Z\" fill=\"#fff\"/></mask><g mask=\"url(#o)\"><path d=\"m24.054 17.787.05-.05a2.43 2.43 0 0 0-1.369-.68 3.323 3.323 0 0 0-1.572.15c-.774.261-1.482.787-1.909 1.515a2.979 2.979 0 0 0-.398 1.232c-.043.454.013.95.193 1.474l.005.014a.071.071 0 0 0 .134-.046 3.793 3.793 0 0 0-.763-1.332 3.03 3.03 0 0 0-1.664-.944 3.537 3.537 0 0 0-1.82.127c-.535.18-1.02.48-1.39.872a2.518 2.518 0 0 0-.69 1.419c-.077.612-.023 1.153.14 1.63.133.387.339.73.604 1.034.4.453.93.815 1.553 1.101.622.287 1.336.498 2.102.65a9.576 9.576 0 0 1 1.527.436c.026.01.054.004.074-.014a.07.07 0 0 0 .02-.071l-.511-1.737a.07.07 0 0 0-.078-.05.873.873 0 0 1-.626-.172 1.274 1.274 0 0 1-.449-.625 1.442 1.442 0 0 1-.048-.176 2.61 2.61 0 0 1-.006-1.053c.035-.156.086-.293.151-.395a.58.58 0 0 1 .107-.128.355.355 0 0 1 .12-.07.473.473 0 0 1 .297.012c.17.054.366.184.55.368.185.183.358.42.491.688.028.056.051.111.07.167.09.263.09.528.021.754a.925.925 0 0 1-.385.525.07.07 0 0 0-.029.085l.838 2.127a.07.07 0 0 0 .036.038 8.076 8.076 0 0 1 1.373.812 5.667 5.667 0 0 1 .432.355l.022.02.005.005.001.001a.071.071 0 0 0 .121-.042c.002-.012.014-.121.053-.306a.07.07 0 0 0-.019-.063.183.183 0 0 1-.04-.066l-.002-.007-.03.007.03-.007-.03.007.03-.007-.001-.005-1.022-3.472a.07.07 0 0 0-.076-.05.8.8 0 0 1-.563-.164 1.167 1.167 0 0 1-.42-.614.07.07 0 0 0-.09-.047h-.001l.022.067.069-.02c-.09-.307-.21-.73-.296-1.08a6.951 6.951 0 0 1-.098-.44.944.944 0 0 1-.016-.127v-.023h-.004.004-.004.004l-.038-.009.033.02c.005-.006.005-.01.005-.01l-.038-.01.033.02-.05-.031.019.056a.06.06 0 0 0 .031-.024l-.05-.032.019.056-.02-.058-.004.06a.06.06 0 0 0 .024-.002l-.02-.058-.004.06.003-.05-.027.044c.003.002.01.006.024.007l.003-.051-.027.044.013-.021-.016.019.003.002.013-.021-.016.019s.007.006.013.016a.802.802 0 0 1 .053.086c.074.135.182.372.293.63.111.26.227.543.318.773a.071.071 0 0 0 .09.04l.122-.04a.07.07 0 0 0 .045-.087 29.26 29.26 0 0 1-.285-1.049 6.05 6.05 0 0 1-.09-.415.935.935 0 0 1-.015-.133v-.005l-.036-.009.032.02.005-.012-.037-.008.032.02-.049-.03.038.042a.07.07 0 0 0 .01-.012l-.048-.03.038.042-.04-.046.019.058a.07.07 0 0 0 .02-.012l-.04-.046-.004.061a.07.07 0 0 0 .024-.003l-.02-.058-.004.061.004-.05-.028.043c.003.002.01.006.024.007l.004-.05-.028.043.013-.02-.016.018.003.002.013-.02-.016.018a.845.845 0 0 1 .066.102c.075.136.182.372.293.632.111.259.227.54.319.771a.071.071 0 0 0 .088.04l.123-.04a.07.07 0 0 0 .045-.086c-.09-.312-.203-.719-.284-1.049a6.073 6.073 0 0 1-.091-.416.937.937 0 0 1-.015-.133v-.005l-.035-.008.03.02.006-.012-.037-.008.032.02-.048-.03.037.042a.058.058 0 0 0 .01-.013l-.047-.03.037.043-.04-.046.02.058a.063.063 0 0 0 .02-.012l-.04-.046-.005.06a.06.06 0 0 0 .024-.002l-.02-.058-.004.06.004-.05-.028.044c.003.001.01.006.024.007l.004-.052-.028.044.013-.02-.015.019.002.002.013-.021-.015.019.013.016a.881.881 0 0 1 .052.086c.075.135.182.372.293.63.112.26.227.543.319.773a.071.071 0 0 0 .089.04l.122-.041a.07.07 0 0 0 .045-.086c-.09-.312-.203-.718-.285-1.049a6.337 6.337 0 0 1-.09-.415.97.97 0 0 1-.015-.119v-.019l-.035-.009.031.02a.03.03 0 0 0 .005-.011l-.036-.009.031.02-.048-.03.037.042a.056.056 0 0 0 .011-.012l-.048-.03.037.042-.04-.046.02.058a.063.063 0 0 0 .02-.012l-.04-.046-.005.061c.007 0 .016 0 .024-.003l-.02-.058-.004.061.004-.05-.028.043c.003.001.01.006.024.007l.004-.05-.028.043.011-.018-.013.016.002.002.011-.018-.013.016.015.018a.98.98 0 0 1 .056.094c.079.145.192.397.308.668.116.272.234.563.325.791l.065-.026-.022-.066h-.002a.07.07 0 0 0-.04.037.069.069 0 0 0-.003.055l.017.047c.082.238.082.477.022.682a.848.848 0 0 1-.343.479.07.07 0 0 0-.027.084l1.062 2.695a.07.07 0 0 0 .066.045.07.07 0 0 0 .066-.045 8.25 8.25 0 0 1 .606-1.249.07.07 0 0 0 .007-.055l-.636-2.162v-.003l-.652-1.898a.415.415 0 0 1-.016-.258.217.217 0 0 1 .053-.089.256.256 0 0 1 .103-.06.19.19 0 0 1 .12-.001.45.45 0 0 1 .208.17c.071.094.14.228.198.398l.716 2.085c.076.221.098.41.086.56a.641.641 0 0 1-.112.337.07.07 0 0 0-.009.068l.146.37a.072.072 0 0 0 .124.014c.192-.278.41-.562.662-.848.683-.78 1.23-1.585 1.54-2.392.156-.404.252-.808.276-1.208.024-.4-.024-.797-.157-1.185-.163-.476-.454-.938-.892-1.377l-.05.05-.051.05c.425.426.703.869.859 1.322.127.37.173.748.15 1.131-.035.576-.226 1.166-.536 1.756-.31.591-.739 1.182-1.246 1.76a9.44 9.44 0 0 0-.672.861l.059.04.066-.026-.146-.37-.066.026.057.042a.775.775 0 0 0 .14-.41 1.546 1.546 0 0 0-.094-.617l-.715-2.084c-.083-.241-.186-.42-.305-.536a.495.495 0 0 0-.193-.121.334.334 0 0 0-.21.001.376.376 0 0 0-.263.323.613.613 0 0 0 .035.263l.652 1.896.635 2.161.068-.02-.061-.035a8.413 8.413 0 0 0-.616 1.27l.066.025.066-.026-1.062-2.695-.066.026.039.059a.99.99 0 0 0 .4-.557 1.263 1.263 0 0 0-.042-.82l-.066.026.023.066h.001a.07.07 0 0 0 .042-.038.069.069 0 0 0 .001-.055 31.801 31.801 0 0 0-.432-1.039 7.14 7.14 0 0 0-.198-.418 1.21 1.21 0 0 0-.076-.127.261.261 0 0 0-.037-.042.093.093 0 0 0-.055-.024c-.01 0-.021 0-.032.004a.077.077 0 0 0-.027.016.092.092 0 0 0-.025.036.162.162 0 0 0-.008.052.635.635 0 0 0 .01.114c.01.079.032.182.059.3.082.357.22.854.326 1.22l.068-.019-.023-.066-.122.041.023.067.066-.026a30.91 30.91 0 0 0-.422-1.009 6.292 6.292 0 0 0-.188-.393.934.934 0 0 0-.073-.12.228.228 0 0 0-.036-.04.109.109 0 0 0-.03-.017.087.087 0 0 0-.055-.002.085.085 0 0 0-.052.052.166.166 0 0 0-.009.053c0 .031.004.068.01.113.011.08.033.183.06.301.082.356.22.853.326 1.22l.068-.019-.023-.067-.122.042.023.066.066-.026a29.07 29.07 0 0 0-.422-1.008 6.091 6.091 0 0 0-.189-.393.987.987 0 0 0-.072-.12.21.21 0 0 0-.036-.04.107.107 0 0 0-.03-.018.084.084 0 0 0-.056-.001.086.086 0 0 0-.052.052.155.155 0 0 0-.008.052c0 .032.003.069.01.114.012.08.032.182.06.3.082.357.22.854.326 1.22l.068-.019-.023-.066-.123.041.023.067.066-.026a27.98 27.98 0 0 0-.421-1.008 6.447 6.447 0 0 0-.189-.394.993.993 0 0 0-.072-.12.22.22 0 0 0-.036-.04.103.103 0 0 0-.055-.023c-.01 0-.02 0-.031.004a.082.082 0 0 0-.052.054.163.163 0 0 0-.008.054c0 .033.004.073.01.12a5.5 5.5 0 0 0 .066.32c.088.376.234.897.34 1.26a.071.071 0 0 0 .09.047l.002-.001-.023-.066-.069.02.018.054c.093.27.256.488.454.634a.94.94 0 0 0 .664.19l-.009-.07-.068.02 1.022 3.472.068-.02-.07.016.007.02a.33.33 0 0 0 .072.12l.051-.05-.069-.014c-.043.203-.054.319-.055.321l.07.007.05-.05c-.003-.004-.64-.642-1.872-1.221l-.03.063.065-.025-.838-2.127-.066.025.038.06c.213-.132.368-.348.446-.603.078-.255.078-.55-.022-.84a1.528 1.528 0 0 0-.078-.184 2.664 2.664 0 0 0-.717-.902 1.362 1.362 0 0 0-.408-.226.61.61 0 0 0-.386-.012.5.5 0 0 0-.169.099.85.85 0 0 0-.21.306c-.08.186-.126.415-.14.658a2.85 2.85 0 0 0 .054.745c.014.067.032.131.053.193.102.297.282.536.5.693.218.157.476.233.729.199l-.01-.07-.068.02.51 1.736.069-.02.025-.065a9.727 9.727 0 0 0-1.55-.443c-1.01-.2-1.925-.505-2.647-.944a3.958 3.958 0 0 1-.928-.762 2.93 2.93 0 0 1-.578-.987c-.156-.454-.208-.972-.134-1.567a2.38 2.38 0 0 1 .654-1.34 3.28 3.28 0 0 1 1.331-.835c.74-.25 1.577-.26 2.317.053.37.157.716.394 1.016.725.3.33.553.754.735 1.283a.07.07 0 0 0 .09.044.07.07 0 0 0 .044-.09l-.005-.012a3.362 3.362 0 0 1-.185-1.416c.061-.65.334-1.212.732-1.66.398-.447.92-.779 1.479-.967a3.18 3.18 0 0 1 1.504-.145c.486.078.936.285 1.291.642l.05-.05Z\" fill=\"#F78B44\"/></g></g></g><path d=\"M49.036 0v9.27h-2.643V5.654H42.79V9.27h-2.643V0h2.643v3.482h3.603V0h2.643Zm8.834 5.694c0 .018-.013.225-.04.623h-5.257c.106.37.313.655.62.854.306.198.69.298 1.154.298.347 0 .648-.049.901-.146.254-.097.51-.256.767-.477l1.335 1.377C56.647 9 55.619 9.39 54.267 9.39c-.846 0-1.589-.159-2.23-.477a3.57 3.57 0 0 1-1.487-1.324c-.352-.565-.527-1.205-.527-1.92 0-.707.17-1.34.513-1.9.343-.561.817-1 1.422-1.318.605-.318 1.285-.477 2.042-.477a4.3 4.3 0 0 1 1.962.444 3.381 3.381 0 0 1 1.394 1.284c.343.56.515 1.226.515 1.993Zm-3.856-1.933c-.393 0-.72.11-.983.331-.262.22-.428.52-.499.9h2.963c-.072-.38-.239-.68-.502-.9-.262-.22-.588-.33-.98-.33Z\" fill=\"#F78B44\"/><path d=\"m66.358 2.093-3.123 7.469c-.365.882-.81 1.502-1.334 1.86-.525.357-1.166.536-1.922.536-.383 0-.767-.06-1.154-.18-.388-.119-.701-.275-.942-.469l.88-1.761c.143.132.315.235.515.31.2.076.403.113.607.113.24 0 .438-.048.594-.145a1.12 1.12 0 0 0 .394-.463l-3.097-7.27h2.604l1.774 4.382 1.789-4.382h2.415ZM66.398 0h3.017l-.508 5.893h-2.015L66.398 0Zm1.508 9.39c-.444 0-.81-.136-1.094-.405a1.308 1.308 0 0 1-.427-.987c0-.397.142-.724.427-.98.285-.255.65-.383 1.094-.383.445 0 .808.128 1.088.384.28.255.42.582.42.98 0 .387-.142.717-.427.986-.284.27-.645.404-1.08.404ZM42.79 14.04v2.04h4.124v2.025H42.79v3.178h-2.643v-9.27h7.327v2.027H42.79Zm9.127 7.363c-.774 0-1.472-.159-2.095-.477a3.61 3.61 0 0 1-1.461-1.324c-.352-.565-.527-1.205-.527-1.92a3.529 3.529 0 0 1 1.982-3.225c.618-.313 1.319-.47 2.101-.47.784 0 1.486.157 2.11.47a3.54 3.54 0 0 1 1.454 1.312c.348.56.521 1.198.521 1.913 0 .715-.173 1.355-.52 1.92a3.569 3.569 0 0 1-1.456 1.324c-.623.318-1.325.477-2.109.477Zm0-2c.445 0 .81-.152 1.095-.456.285-.305.428-.727.428-1.265 0-.53-.143-.945-.428-1.245-.285-.3-.65-.45-1.095-.45-.444 0-.809.15-1.094.45-.284.3-.427.715-.427 1.245 0 .538.143.96.427 1.265.285.304.65.456 1.094.456Zm8.582 2c-.774 0-1.473-.159-2.095-.477a3.61 3.61 0 0 1-1.462-1.324c-.351-.565-.527-1.205-.527-1.92a3.53 3.53 0 0 1 1.982-3.225c.619-.313 1.32-.47 2.102-.47.783 0 1.486.157 2.109.47.623.314 1.108.75 1.455 1.312.347.56.52 1.198.52 1.913 0 .715-.173 1.355-.52 1.92a3.569 3.569 0 0 1-1.455 1.324c-.623.318-1.326.477-2.11.477Zm0-2c.445 0 .81-.152 1.095-.456.285-.305.427-.727.427-1.265 0-.53-.142-.945-.427-1.245-.285-.3-.65-.45-1.095-.45-.445 0-.81.15-1.094.45-.285.3-.427.715-.427 1.245 0 .538.142.96.427 1.265.285.304.65.456 1.094.456Zm12.639-7.945v9.825h-2.416v-.715c-.471.557-1.179.835-2.122.835a3.617 3.617 0 0 1-1.802-.457 3.321 3.321 0 0 1-1.287-1.305c-.317-.565-.474-1.218-.474-1.96 0-.741.157-1.392.474-1.952a3.284 3.284 0 0 1 1.287-1.292 3.66 3.66 0 0 1 1.802-.45c.863 0 1.53.247 2.002.742v-3.271h2.536Zm-4.004 7.945c.436 0 .796-.152 1.08-.456.285-.305.427-.727.427-1.265 0-.53-.14-.945-.42-1.245-.28-.3-.642-.45-1.087-.45-.445 0-.81.15-1.095.45-.285.3-.427.715-.427 1.245 0 .538.142.96.427 1.265.285.304.65.456 1.095.456ZM40.026 26.12h2.537v7.177h-2.537v-7.176Zm1.27-.794c-.464 0-.838-.128-1.123-.384a1.235 1.235 0 0 1-.425-.954c0-.38.142-.696.425-.952.285-.257.659-.385 1.122-.385.463 0 .837.122 1.12.365.285.242.428.553.428.933 0 .397-.143.726-.427.987-.284.26-.658.39-1.12.39Zm5.231 8.091a7.872 7.872 0 0 1-1.789-.205c-.587-.138-1.059-.316-1.414-.537l.76-1.722c.329.203.72.365 1.174.485.454.119.903.178 1.348.178.41 0 .7-.042.874-.126.174-.083.26-.205.26-.364s-.104-.271-.314-.337c-.208-.067-.54-.13-.993-.193a9.87 9.87 0 0 1-1.475-.278 2.283 2.283 0 0 1-1.049-.635c-.293-.31-.44-.742-.44-1.299 0-.458.138-.866.414-1.224.276-.357.678-.64 1.208-.847.53-.208 1.163-.312 1.902-.312.525 0 1.046.053 1.562.16.516.105.948.255 1.295.449l-.762 1.709a4.245 4.245 0 0 0-2.081-.53c-.4 0-.694.047-.88.14-.188.092-.281.213-.281.363 0 .168.102.285.307.351.204.066.542.135 1.014.205.596.088 1.09.19 1.481.305.391.114.732.325 1.02.63.29.304.435.73.435 1.276 0 .45-.138.854-.414 1.212-.276.357-.683.638-1.22.842-.539.202-1.186.304-1.942.304Zm-2.297 9.43h-1.44v2.464h-2.643v-9.27h4.271c.845 0 1.579.14 2.202.418.623.278 1.103.675 1.441 1.19.339.517.508 1.125.508 1.822 0 .672-.158 1.257-.474 1.756-.316.498-.767.888-1.355 1.17l2.016 2.914h-2.83l-1.695-2.464Zm1.67-3.376c0-.433-.138-.768-.414-1.006-.276-.238-.685-.357-1.229-.357H42.79v2.714h1.467c.544 0 .953-.117 1.229-.351.276-.234.414-.567.414-1Zm11.09 2.265c0 .017-.014.225-.04.622h-5.258c.106.371.313.656.62.854.306.199.69.298 1.154.298.347 0 .648-.048.901-.146a2.66 2.66 0 0 0 .767-.476l1.335 1.377c-.703.777-1.73 1.166-3.083 1.166-.846 0-1.589-.16-2.23-.477-.64-.318-1.136-.759-1.487-1.324-.352-.565-.527-1.205-.527-1.92 0-.707.17-1.34.513-1.9.343-.562.817-1 1.422-1.319.605-.317 1.285-.476 2.042-.476.72 0 1.374.148 1.962.444a3.382 3.382 0 0 1 1.394 1.284c.343.56.515 1.225.515 1.993Zm-3.857-1.933c-.392 0-.72.11-.982.33-.263.221-.429.521-.5.901h2.963c-.071-.38-.239-.68-.501-.9-.262-.22-.59-.331-.98-.331Zm7.807-1.788c1.2 0 2.117.271 2.749.815.632.542.948 1.374.948 2.495v3.986h-2.362v-.927c-.366.698-1.078 1.047-2.136 1.047-.56 0-1.046-.098-1.455-.292-.41-.195-.719-.457-.928-.787a2.079 2.079 0 0 1-.313-1.133c0-.68.262-1.208.787-1.583s1.335-.563 2.43-.563h1.44c-.044-.759-.556-1.138-1.534-1.138-.347 0-.7.055-1.055.166-.355.11-.658.262-.907.456l-.854-1.709c.4-.264.887-.47 1.461-.614a6.988 6.988 0 0 1 1.729-.22Zm-.094 5.826c.294 0 .552-.07.774-.211a1.18 1.18 0 0 0 .48-.623v-.622h-1.094c-.739 0-1.108.242-1.108.728 0 .22.084.397.253.53.17.132.402.198.695.198Zm12.773-8.355v9.825h-2.416v-.715c-.472.557-1.18.835-2.123.835a3.616 3.616 0 0 1-1.801-.457 3.32 3.32 0 0 1-1.288-1.305c-.316-.565-.474-1.218-.474-1.96 0-.741.158-1.392.474-1.952a3.28 3.28 0 0 1 1.288-1.292 3.66 3.66 0 0 1 1.8-.45c.864 0 1.532.247 2.004.742v-3.271h2.536Zm-4.004 7.945c.436 0 .796-.152 1.08-.456.284-.305.427-.727.427-1.265 0-.53-.14-.945-.421-1.245-.28-.3-.642-.45-1.086-.45-.446 0-.81.15-1.095.45-.285.3-.427.715-.427 1.245 0 .538.142.96.427 1.265.284.304.65.456 1.095.456Zm12.945-5.297-3.123 7.469c-.365.883-.81 1.503-1.335 1.86-.524.358-1.165.537-1.921.537-.383 0-.768-.06-1.155-.18-.387-.119-.7-.275-.941-.469l.88-1.762c.143.133.315.236.515.31.2.076.402.114.607.114.24 0 .438-.049.593-.146a1.11 1.11 0 0 0 .394-.463l-3.096-7.27h2.603l1.775 4.383 1.788-4.383h2.416Z\" fill=\"#F78B44\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:[\"\u201CActivate Studio didn\u2019t just help us build our product, they really got our vision from the start and became a tech partner. Their support went way beyond tech; they helped us refine our strategy, understand our customers better, and figure out the right path forward with invaluable design sessions. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"The whole team has been incredible, always there to guide us through challenges and big decisions. It\u2019s been amazing having a partner we can truly rely on as we grow.\u201D\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-n8x60g\",\"data-framer-name\":\"\u201CMy journey with Activate Studio started about three years ago, and their support directly influenced our path from an early-stage idea to a successful launch. Their tailored approach, focusing on both design and product development, was instrumental in shaping my vision into a viable product. As of today, we have welcomed hundreds of returning customers and seen more than 15,000 booking inquiries, a milestone I initially thought was beyond my reach.\u201D\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"- Yuru Guo, Hey! Food is Ready founder\"})}),className:\"framer-1t5qym0\",\"data-framer-name\":\"- Layla Sargent, The Seam\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1au5cps\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-104xmmn\",\"data-framer-name\":\"Frame 115\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gp1ydz\",\"data-framer-name\":\"Frame 114\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w1hy5m\",\"data-framer-name\":\"Frame 46\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Your questions answered\"})})},vSahVGYjJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Your questions answered\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Your questions answered\"})}),className:\"framer-ruvyqx\",\"data-framer-name\":\"Your questions answered\",fonts:[\"GF;Aktiv Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We thought you\u2019d have some questions.\"})})},vSahVGYjJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We thought you\u2019d have some questions.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VGlub3MtcmVndWxhcg==\",\"--framer-font-family\":'\"Tinos\", \"Tinos Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We thought you\u2019d have some questions.\"})}),className:\"framer-1i755x9\",\"data-framer-name\":\"We thought you\u2019d have some questions.\",fonts:[\"GF;Tinos-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mxPQBjyM6\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+4866+80+0+0+426,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19hdsyv-container hidden-yna2my hidden-1vye1so\",nodeId:\"ODt8Ys2Qn\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation5,children:/*#__PURE__*/_jsx(Button,{es38neyb4:\"See all FAQs\",height:\"100%\",IAfPrROle:resolvedLinks5[0],id:\"ODt8Ys2Qn\",layoutId:\"ODt8Ys2Qn\",o2cdtHXB9:false,variant:\"dB4TXjYV_\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+4297+40+0+348},vSahVGYjJ:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px, 1px)`,y:(componentViewport?.y||0)+0+4238+40+0+426}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:368,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4866+80+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5y35uq-container\",nodeId:\"Apnj8FQP6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQHomepage,{height:\"100%\",id:\"Apnj8FQP6\",layoutId:\"Apnj8FQP6\",style:{width:\"100%\"},variant:\"fDYfPg9_o\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{href:{webPageId:\"mxPQBjyM6\"}},vSahVGYjJ:{href:{webPageId:\"mxPQBjyM6\"}}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"CgSPv0zL0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mxhlda hidden-72rtr7 framer-lux5qc\",\"data-framer-name\":\"Frame 3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWt0aXYgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Aktiv Grotesk\", \"Aktiv Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(17, 17, 17)\"},children:\"See all FAQs\"})}),className:\"framer-zymenl\",\"data-framer-name\":\"See all FAQs\",fonts:[\"GF;Aktiv Grotesk-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l29y9m\",\"data-framer-name\":\"Frame 131\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{y:(componentViewport?.y||0)+0+5157.8+40+0},vSahVGYjJ:{y:(componentViewport?.y||0)+0+5176.8+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:509,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1240px) - 40px)`,y:(componentViewport?.y||0)+0+5493+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16wt36q-container\",nodeId:\"G6DZZAHwE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{variant:\"Y0cPU8Bpq\"}},children:/*#__PURE__*/_jsx(ApplyPromo,{height:\"100%\",id:\"G6DZZAHwE\",layoutId:\"G6DZZAHwE\",style:{width:\"100%\"},variant:\"kMaalRB4x\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{y:(componentViewport?.y||0)+0+5746.8},vSahVGYjJ:{y:(componentViewport?.y||0)+0+5765.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:758,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6122,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f1nr1y-container\",nodeId:\"PLSQ_IqmY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCVQGhd1P:{variant:\"DOcqEM6xj\"},vSahVGYjJ:{variant:\"TmkkuanrE\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"PLSQ_IqmY\",layoutId:\"PLSQ_IqmY\",style:{width:\"100%\"},variant:\"Bo1Zx4PMu\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JjBLi.framer-lux5qc, .framer-JjBLi .framer-lux5qc { display: block; }\",\".framer-JjBLi.framer-72rtr7 { align-content: center; align-items: center; background-color: #1b1b1b; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1024px; }\",\".framer-JjBLi .framer-xh420l-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-JjBLi .framer-1tiibte { align-content: center; align-items: center; background: linear-gradient(180deg, #1b1b1b 0%, rgba(27, 27, 27, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-JjBLi .framer-17getco-container { flex: 1 0 0px; height: 57px; max-width: 1200px; position: sticky; top: 24px; width: 1px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-JjBLi .framer-jd63ug { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 140px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-kb075c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 840px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-3anduc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-zajndf, .framer-JjBLi .framer-x1lbm8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-JjBLi .framer-avvkru { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-JjBLi .framer-ro2l40-container, .framer-JjBLi .framer-1f2oa66-container, .framer-JjBLi .framer-7ngt7f-container, .framer-JjBLi .framer-pdm2fg-container, .framer-JjBLi .framer-dzqlh5-container, .framer-JjBLi .framer-19hdsyv-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JjBLi .framer-45oixr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1240px; overflow: visible; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-1fxmq4o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-a6n1ok, .framer-JjBLi .framer-1g170b8, .framer-JjBLi .framer-4u3jg0, .framer-JjBLi .framer-12ypqm3, .framer-JjBLi .framer-xdt4k2, .framer-JjBLi .framer-135uz2d, .framer-JjBLi .framer-y8fr1a, .framer-JjBLi .framer-g75feg, .framer-JjBLi .framer-adstsn, .framer-JjBLi .framer-18f53cw, .framer-JjBLi .framer-n8x60g, .framer-JjBLi .framer-1t5qym0, .framer-JjBLi .framer-ruvyqx, .framer-JjBLi .framer-1i755x9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JjBLi .framer-y0x0t, .framer-JjBLi .framer-zymenl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JjBLi .framer-byi739 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-1476ui7, .framer-JjBLi .framer-xvinns { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #262626; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JjBLi .framer-uwwi38, .framer-JjBLi .framer-1dur0it { border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 400px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JjBLi .framer-14lrx0u, .framer-JjBLi .framer-1t330k6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-qy56op, .framer-JjBLi .framer-vo2ex7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-zkcuwn, .framer-JjBLi .framer-gheyjs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-e2q0xh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-1n241ar { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JjBLi .framer-k1czjv, .framer-JjBLi .framer-pqkwck, .framer-JjBLi .framer-so7z2s, .framer-JjBLi .framer-1prdw3p, .framer-JjBLi .framer-rofmlh, .framer-JjBLi .framer-1srz10n, .framer-JjBLi .framer-jqttoi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-3mbbk5, .framer-JjBLi .framer-1nmua11, .framer-JjBLi .framer-1xcfic, .framer-JjBLi .framer-1mdjmyl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-atjz0f, .framer-JjBLi .framer-1j80z9z, .framer-JjBLi .framer-10t86bp { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JjBLi .framer-yhomi8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-mqs12y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-lmgjzk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 771px; word-break: break-word; word-wrap: break-word; }\",\".framer-JjBLi .framer-jie5ug-container { flex: none; height: 320px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-lcxve8, .framer-JjBLi .framer-jeag2p, .framer-JjBLi .framer-otril1 { background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 320px; overflow: hidden; position: relative; text-decoration: none; width: 384px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JjBLi .framer-14t75mg, .framer-JjBLi .framer-16upilg, .framer-JjBLi .framer-14jd3ls { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-JjBLi .framer-xjqgyr { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f78b44; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 384px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JjBLi .framer-1gmc4e5 { aspect-ratio: 1.7065773010253906 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 120px); overflow: visible; position: relative; width: 205px; }\",\".framer-JjBLi .framer-7349wx { flex: none; height: 58px; left: -1px; position: absolute; top: 22px; width: 75px; }\",\".framer-JjBLi .framer-1oilqfg { flex: none; height: 30px; left: 27px; position: absolute; top: 79px; width: 22px; }\",\".framer-JjBLi .framer-19y449g { flex: none; height: 39px; left: 70px; position: absolute; top: 27px; width: 26px; }\",\".framer-JjBLi .framer-1cu24h8 { flex: none; height: 28px; left: 32px; position: absolute; top: 42px; width: 31px; }\",\".framer-JjBLi .framer-r0a8uq { flex: none; height: 28px; left: 31px; position: absolute; top: 42px; width: 32px; }\",\".framer-JjBLi .framer-1t54f2e { flex: none; height: 24px; left: 99px; position: absolute; top: 0px; width: 23px; }\",\".framer-JjBLi .framer-qe8dil { flex: none; height: 20px; left: 123px; position: absolute; top: 4px; width: 21px; }\",\".framer-JjBLi .framer-ts4dfp { flex: none; height: 25px; left: 142px; position: absolute; top: 5px; width: 23px; }\",\".framer-JjBLi .framer-14s9kgu { flex: none; height: 24px; left: 164px; position: absolute; top: 0px; width: 8px; }\",\".framer-JjBLi .framer-lnf1jw { flex: none; height: 24px; left: 99px; position: absolute; top: 30px; width: 19px; }\",\".framer-JjBLi .framer-ap1hr1 { flex: none; height: 20px; left: 118px; position: absolute; top: 34px; width: 21px; }\",\".framer-JjBLi .framer-uv63hq { flex: none; height: 20px; left: 140px; position: absolute; top: 34px; width: 21px; }\",\".framer-JjBLi .framer-1tmgxwn { flex: none; height: 26px; left: 160px; position: absolute; top: 28px; width: 22px; }\",\".framer-JjBLi .framer-tc2li5 { flex: none; height: 28px; left: 98px; position: absolute; top: 56px; width: 8px; }\",\".framer-JjBLi .framer-a8bqfw { flex: none; height: 19px; left: 107px; position: absolute; top: 65px; width: 17px; }\",\".framer-JjBLi .framer-15aj3zt { flex: none; height: 24px; left: 99px; position: absolute; top: 90px; width: 22px; }\",\".framer-JjBLi .framer-uxwl22 { flex: none; height: 19px; left: 122px; position: absolute; top: 95px; width: 20px; }\",\".framer-JjBLi .framer-11j91rx { flex: none; height: 19px; left: 142px; position: absolute; top: 95px; width: 18px; }\",\".framer-JjBLi .framer-xgz4nk { flex: none; height: 26px; left: 162px; position: absolute; top: 88px; width: 21px; }\",\".framer-JjBLi .framer-1qg2rpq { flex: none; height: 25px; left: 183px; position: absolute; top: 95px; width: 22px; }\",\".framer-JjBLi .framer-7ols13, .framer-JjBLi .framer-myh95z { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 384px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JjBLi .framer-1u4uyaq { aspect-ratio: 4.780487696329753 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 229px; }\",\".framer-JjBLi .framer-1msas7l { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fa2f3d; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 384px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JjBLi .framer-18cow8f { aspect-ratio: 2.051983642578125 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 205px; }\",\".framer-JjBLi .framer-1615lyu { aspect-ratio: 6.828571529487392 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 236px; }\",\".framer-JjBLi .framer-qz4865 { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #edece8; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 384px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JjBLi .framer-vb24w6 { aspect-ratio: 6.420599619547526 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 308px; }\",\".framer-JjBLi .framer-1x226ou { bottom: 1px; flex: none; left: -2px; position: absolute; right: 2px; top: -1px; }\",\".framer-JjBLi .framer-1lqhpzt { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #44dc7b; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 384px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JjBLi .framer-191lr38 { flex: none; height: 73px; position: relative; width: 120px; }\",\".framer-JjBLi .framer-v8j9j9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-j0qg3i { flex: none; height: 48px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JjBLi .framer-16u0xxo { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 1024px; word-break: break-word; word-wrap: break-word; }\",\".framer-JjBLi .framer-y02l15-container, .framer-JjBLi .framer-3b1l4a-container, .framer-JjBLi .framer-16wt36q-container, .framer-JjBLi .framer-1f1nr1y-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JjBLi .framer-fcohjr { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 48px; position: relative; width: 1020px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JjBLi .framer-9a22sb, .framer-JjBLi .framer-1ospuzx, .framer-JjBLi .framer-195n482, .framer-JjBLi .framer-g1zt7f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 48px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-10rcfwd, .framer-JjBLi .framer-tq2xsb { aspect-ratio: 3.35 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 134px; }\",\".framer-JjBLi .framer-1wuabpz, .framer-JjBLi .framer-1akfuri, .framer-JjBLi .framer-1qqgelj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-JjBLi .framer-pgeck4, .framer-JjBLi .framer-17tm7ua { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px; position: relative; width: 1020px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JjBLi .framer-ceza3v, .framer-JjBLi .framer-g8c5o9, .framer-JjBLi .framer-17vwkxq, .framer-JjBLi .framer-nbw3n0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-u2usm8, .framer-JjBLi .framer-uahrvi { aspect-ratio: 6.833333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 164px; }\",\".framer-JjBLi .framer-wpntc, .framer-JjBLi .framer-nrcmjk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 693px; word-break: break-word; word-wrap: break-word; }\",\".framer-JjBLi .framer-1yqgrk9, .framer-JjBLi .framer-d6ze5o { aspect-ratio: 1.7291666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 83px; }\",\".framer-JjBLi .framer-tcvslf { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 810px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JjBLi .framer-16x1x2s, .framer-JjBLi .framer-1sr40an { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 810px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JjBLi .framer-1au5cps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1240px; overflow: hidden; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-104xmmn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JjBLi .framer-gp1ydz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JjBLi .framer-1w1hy5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JjBLi .framer-5y35uq-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-JjBLi .framer-mxhlda { align-content: center; align-items: center; background: radial-gradient(66.55337228502073% 66.55337228502074% at 50.00000297516759% 100.00000000000004%, #fefcf1 0%, rgba(255, 255, 255, 1) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 24px 24px -12px rgba(14, 63, 126, 0.04), 0px 12px 12px -6px rgba(14, 63, 126, 0.03999999910593033), 0px 6px 6px -3px rgba(42, 51, 70, 0.03999999910593033), 0px 3px 3px -1.5px rgba(42, 51, 70, 0.03999999910593033), 0px 1px 1px -0.5px rgba(42, 51, 70, 0.03999999910593033), 0px 0px 0px 1px rgba(14, 63, 126, 0.03999999910593033), inset 0px -2px 2px 0px rgba(0, 0, 0, 0.20000000298023224), inset 0px 2px 2px 0px rgba(255, 255, 255, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; width: min-content; }\",\".framer-JjBLi .framer-l29y9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 40px 20px 80px 20px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JjBLi.framer-72rtr7, .framer-JjBLi .framer-1tiibte, .framer-JjBLi .framer-jd63ug, .framer-JjBLi .framer-kb075c, .framer-JjBLi .framer-3anduc, .framer-JjBLi .framer-avvkru, .framer-JjBLi .framer-45oixr, .framer-JjBLi .framer-1fxmq4o, .framer-JjBLi .framer-byi739, .framer-JjBLi .framer-1476ui7, .framer-JjBLi .framer-14lrx0u, .framer-JjBLi .framer-qy56op, .framer-JjBLi .framer-zkcuwn, .framer-JjBLi .framer-xvinns, .framer-JjBLi .framer-1t330k6, .framer-JjBLi .framer-vo2ex7, .framer-JjBLi .framer-gheyjs, .framer-JjBLi .framer-e2q0xh, .framer-JjBLi .framer-1n241ar, .framer-JjBLi .framer-k1czjv, .framer-JjBLi .framer-3mbbk5, .framer-JjBLi .framer-1nmua11, .framer-JjBLi .framer-yhomi8, .framer-JjBLi .framer-mqs12y, .framer-JjBLi .framer-xjqgyr, .framer-JjBLi .framer-7ols13, .framer-JjBLi .framer-1msas7l, .framer-JjBLi .framer-myh95z, .framer-JjBLi .framer-qz4865, .framer-JjBLi .framer-1lqhpzt, .framer-JjBLi .framer-v8j9j9, .framer-JjBLi .framer-fcohjr, .framer-JjBLi .framer-pqkwck, .framer-JjBLi .framer-9a22sb, .framer-JjBLi .framer-pgeck4, .framer-JjBLi .framer-so7z2s, .framer-JjBLi .framer-ceza3v, .framer-JjBLi .framer-1ospuzx, .framer-JjBLi .framer-17tm7ua, .framer-JjBLi .framer-1prdw3p, .framer-JjBLi .framer-g8c5o9, .framer-JjBLi .framer-1xcfic, .framer-JjBLi .framer-tcvslf, .framer-JjBLi .framer-rofmlh, .framer-JjBLi .framer-195n482, .framer-JjBLi .framer-16x1x2s, .framer-JjBLi .framer-1srz10n, .framer-JjBLi .framer-17vwkxq, .framer-JjBLi .framer-g1zt7f, .framer-JjBLi .framer-1sr40an, .framer-JjBLi .framer-jqttoi, .framer-JjBLi .framer-nbw3n0, .framer-JjBLi .framer-1mdjmyl, .framer-JjBLi .framer-1au5cps, .framer-JjBLi .framer-104xmmn, .framer-JjBLi .framer-gp1ydz, .framer-JjBLi .framer-1w1hy5m, .framer-JjBLi .framer-mxhlda, .framer-JjBLi .framer-l29y9m { gap: 0px; } .framer-JjBLi.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JjBLi.framer-72rtr7 > :first-child, .framer-JjBLi .framer-jd63ug > :first-child, .framer-JjBLi .framer-kb075c > :first-child, .framer-JjBLi .framer-3anduc > :first-child, .framer-JjBLi .framer-45oixr > :first-child, .framer-JjBLi .framer-1fxmq4o > :first-child, .framer-JjBLi .framer-1476ui7 > :first-child, .framer-JjBLi .framer-14lrx0u > :first-child, .framer-JjBLi .framer-qy56op > :first-child, .framer-JjBLi .framer-zkcuwn > :first-child, .framer-JjBLi .framer-xvinns > :first-child, .framer-JjBLi .framer-1t330k6 > :first-child, .framer-JjBLi .framer-vo2ex7 > :first-child, .framer-JjBLi .framer-gheyjs > :first-child, .framer-JjBLi .framer-e2q0xh > :first-child, .framer-JjBLi .framer-1n241ar > :first-child, .framer-JjBLi .framer-k1czjv > :first-child, .framer-JjBLi .framer-3mbbk5 > :first-child, .framer-JjBLi .framer-1nmua11 > :first-child, .framer-JjBLi .framer-yhomi8 > :first-child, .framer-JjBLi .framer-mqs12y > :first-child, .framer-JjBLi .framer-xjqgyr > :first-child, .framer-JjBLi .framer-7ols13 > :first-child, .framer-JjBLi .framer-1msas7l > :first-child, .framer-JjBLi .framer-myh95z > :first-child, .framer-JjBLi .framer-qz4865 > :first-child, .framer-JjBLi .framer-1lqhpzt > :first-child, .framer-JjBLi .framer-v8j9j9 > :first-child, .framer-JjBLi .framer-fcohjr > :first-child, .framer-JjBLi .framer-pqkwck > :first-child, .framer-JjBLi .framer-9a22sb > :first-child, .framer-JjBLi .framer-pgeck4 > :first-child, .framer-JjBLi .framer-so7z2s > :first-child, .framer-JjBLi .framer-ceza3v > :first-child, .framer-JjBLi .framer-1ospuzx > :first-child, .framer-JjBLi .framer-17tm7ua > :first-child, .framer-JjBLi .framer-1prdw3p > :first-child, .framer-JjBLi .framer-g8c5o9 > :first-child, .framer-JjBLi .framer-1xcfic > :first-child, .framer-JjBLi .framer-tcvslf > :first-child, .framer-JjBLi .framer-rofmlh > :first-child, .framer-JjBLi .framer-195n482 > :first-child, .framer-JjBLi .framer-16x1x2s > :first-child, .framer-JjBLi .framer-1srz10n > :first-child, .framer-JjBLi .framer-17vwkxq > :first-child, .framer-JjBLi .framer-g1zt7f > :first-child, .framer-JjBLi .framer-1sr40an > :first-child, .framer-JjBLi .framer-jqttoi > :first-child, .framer-JjBLi .framer-nbw3n0 > :first-child, .framer-JjBLi .framer-1mdjmyl > :first-child, .framer-JjBLi .framer-gp1ydz > :first-child, .framer-JjBLi .framer-1w1hy5m > :first-child, .framer-JjBLi .framer-l29y9m > :first-child { margin-top: 0px; } .framer-JjBLi.framer-72rtr7 > :last-child, .framer-JjBLi .framer-jd63ug > :last-child, .framer-JjBLi .framer-kb075c > :last-child, .framer-JjBLi .framer-3anduc > :last-child, .framer-JjBLi .framer-45oixr > :last-child, .framer-JjBLi .framer-1fxmq4o > :last-child, .framer-JjBLi .framer-1476ui7 > :last-child, .framer-JjBLi .framer-14lrx0u > :last-child, .framer-JjBLi .framer-qy56op > :last-child, .framer-JjBLi .framer-zkcuwn > :last-child, .framer-JjBLi .framer-xvinns > :last-child, .framer-JjBLi .framer-1t330k6 > :last-child, .framer-JjBLi .framer-vo2ex7 > :last-child, .framer-JjBLi .framer-gheyjs > :last-child, .framer-JjBLi .framer-e2q0xh > :last-child, .framer-JjBLi .framer-1n241ar > :last-child, .framer-JjBLi .framer-k1czjv > :last-child, .framer-JjBLi .framer-3mbbk5 > :last-child, .framer-JjBLi .framer-1nmua11 > :last-child, .framer-JjBLi .framer-yhomi8 > :last-child, .framer-JjBLi .framer-mqs12y > :last-child, .framer-JjBLi .framer-xjqgyr > :last-child, .framer-JjBLi .framer-7ols13 > :last-child, .framer-JjBLi .framer-1msas7l > :last-child, .framer-JjBLi .framer-myh95z > :last-child, .framer-JjBLi .framer-qz4865 > :last-child, .framer-JjBLi .framer-1lqhpzt > :last-child, .framer-JjBLi .framer-v8j9j9 > :last-child, .framer-JjBLi .framer-fcohjr > :last-child, .framer-JjBLi .framer-pqkwck > :last-child, .framer-JjBLi .framer-9a22sb > :last-child, .framer-JjBLi .framer-pgeck4 > :last-child, .framer-JjBLi .framer-so7z2s > :last-child, .framer-JjBLi .framer-ceza3v > :last-child, .framer-JjBLi .framer-1ospuzx > :last-child, .framer-JjBLi .framer-17tm7ua > :last-child, .framer-JjBLi .framer-1prdw3p > :last-child, .framer-JjBLi .framer-g8c5o9 > :last-child, .framer-JjBLi .framer-1xcfic > :last-child, .framer-JjBLi .framer-tcvslf > :last-child, .framer-JjBLi .framer-rofmlh > :last-child, .framer-JjBLi .framer-195n482 > :last-child, .framer-JjBLi .framer-16x1x2s > :last-child, .framer-JjBLi .framer-1srz10n > :last-child, .framer-JjBLi .framer-17vwkxq > :last-child, .framer-JjBLi .framer-g1zt7f > :last-child, .framer-JjBLi .framer-1sr40an > :last-child, .framer-JjBLi .framer-jqttoi > :last-child, .framer-JjBLi .framer-nbw3n0 > :last-child, .framer-JjBLi .framer-1mdjmyl > :last-child, .framer-JjBLi .framer-gp1ydz > :last-child, .framer-JjBLi .framer-1w1hy5m > :last-child, .framer-JjBLi .framer-l29y9m > :last-child { margin-bottom: 0px; } .framer-JjBLi .framer-1tiibte > *, .framer-JjBLi .framer-mxhlda > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JjBLi .framer-1tiibte > :first-child, .framer-JjBLi .framer-avvkru > :first-child, .framer-JjBLi .framer-byi739 > :first-child, .framer-JjBLi .framer-1au5cps > :first-child, .framer-JjBLi .framer-104xmmn > :first-child, .framer-JjBLi .framer-mxhlda > :first-child { margin-left: 0px; } .framer-JjBLi .framer-1tiibte > :last-child, .framer-JjBLi .framer-avvkru > :last-child, .framer-JjBLi .framer-byi739 > :last-child, .framer-JjBLi .framer-1au5cps > :last-child, .framer-JjBLi .framer-104xmmn > :last-child, .framer-JjBLi .framer-mxhlda > :last-child { margin-right: 0px; } .framer-JjBLi .framer-jd63ug > *, .framer-JjBLi .framer-kb075c > *, .framer-JjBLi .framer-45oixr > *, .framer-JjBLi .framer-1n241ar > *, .framer-JjBLi .framer-yhomi8 > *, .framer-JjBLi .framer-v8j9j9 > *, .framer-JjBLi .framer-fcohjr > *, .framer-JjBLi .framer-pgeck4 > *, .framer-JjBLi .framer-17tm7ua > *, .framer-JjBLi .framer-tcvslf > *, .framer-JjBLi .framer-16x1x2s > *, .framer-JjBLi .framer-1sr40an > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-JjBLi .framer-3anduc > *, .framer-JjBLi .framer-3mbbk5 > *, .framer-JjBLi .framer-1nmua11 > *, .framer-JjBLi .framer-9a22sb > *, .framer-JjBLi .framer-1ospuzx > *, .framer-JjBLi .framer-1xcfic > *, .framer-JjBLi .framer-195n482 > *, .framer-JjBLi .framer-g1zt7f > *, .framer-JjBLi .framer-1mdjmyl > *, .framer-JjBLi .framer-gp1ydz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JjBLi .framer-avvkru > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-JjBLi .framer-1fxmq4o > *, .framer-JjBLi .framer-qy56op > *, .framer-JjBLi .framer-vo2ex7 > *, .framer-JjBLi .framer-mqs12y > *, .framer-JjBLi .framer-1w1hy5m > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-JjBLi .framer-byi739 > *, .framer-JjBLi .framer-104xmmn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-JjBLi .framer-1476ui7 > *, .framer-JjBLi .framer-14lrx0u > *, .framer-JjBLi .framer-xvinns > *, .framer-JjBLi .framer-1t330k6 > *, .framer-JjBLi .framer-k1czjv > *, .framer-JjBLi .framer-pqkwck > *, .framer-JjBLi .framer-so7z2s > *, .framer-JjBLi .framer-ceza3v > *, .framer-JjBLi .framer-1prdw3p > *, .framer-JjBLi .framer-g8c5o9 > *, .framer-JjBLi .framer-rofmlh > *, .framer-JjBLi .framer-1srz10n > *, .framer-JjBLi .framer-17vwkxq > *, .framer-JjBLi .framer-jqttoi > *, .framer-JjBLi .framer-nbw3n0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JjBLi .framer-zkcuwn > *, .framer-JjBLi .framer-gheyjs > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-JjBLi .framer-e2q0xh > *, .framer-JjBLi .framer-xjqgyr > *, .framer-JjBLi .framer-7ols13 > *, .framer-JjBLi .framer-1msas7l > *, .framer-JjBLi .framer-myh95z > *, .framer-JjBLi .framer-qz4865 > *, .framer-JjBLi .framer-1lqhpzt > *, .framer-JjBLi .framer-l29y9m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JjBLi .framer-1au5cps > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }\",'.framer-JjBLi[data-border=\"true\"]::after, .framer-JjBLi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1023px) { .framer-JjBLi.framer-72rtr7 { width: 810px; } .framer-JjBLi .framer-17getco-container { height: auto; } .framer-JjBLi .framer-jd63ug, .framer-JjBLi .framer-yhomi8, .framer-JjBLi .framer-v8j9j9 { padding: 40px 0px 40px 0px; } .framer-JjBLi .framer-45oixr, .framer-JjBLi .framer-1au5cps, .framer-JjBLi .framer-l29y9m { padding: 40px 20px 40px 20px; } .framer-JjBLi .framer-1476ui7, .framer-JjBLi .framer-xvinns { gap: 24px; } .framer-JjBLi .framer-uwwi38, .framer-JjBLi .framer-1dur0it { height: 240px; } .framer-JjBLi .framer-14lrx0u, .framer-JjBLi .framer-1t330k6 { gap: 24px; padding: 0px 20px 20px 20px; } .framer-JjBLi .framer-e2q0xh { padding: 4px 20px 40px 20px; } .framer-JjBLi .framer-104xmmn { align-content: center; align-items: center; flex-direction: column; } .framer-JjBLi .framer-gp1ydz, .framer-JjBLi .framer-5y35uq-container { flex: none; width: 100%; } .framer-JjBLi .framer-1w1hy5m { order: 0; } .framer-JjBLi .framer-mxhlda { text-decoration: none; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JjBLi .framer-1476ui7, .framer-JjBLi .framer-14lrx0u, .framer-JjBLi .framer-xvinns, .framer-JjBLi .framer-1t330k6, .framer-JjBLi .framer-104xmmn { gap: 0px; } .framer-JjBLi .framer-1476ui7 > *, .framer-JjBLi .framer-14lrx0u > *, .framer-JjBLi .framer-xvinns > *, .framer-JjBLi .framer-1t330k6 > *, .framer-JjBLi .framer-104xmmn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JjBLi .framer-1476ui7 > :first-child, .framer-JjBLi .framer-14lrx0u > :first-child, .framer-JjBLi .framer-xvinns > :first-child, .framer-JjBLi .framer-1t330k6 > :first-child, .framer-JjBLi .framer-104xmmn > :first-child { margin-top: 0px; } .framer-JjBLi .framer-1476ui7 > :last-child, .framer-JjBLi .framer-14lrx0u > :last-child, .framer-JjBLi .framer-xvinns > :last-child, .framer-JjBLi .framer-1t330k6 > :last-child, .framer-JjBLi .framer-104xmmn > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-JjBLi.framer-72rtr7 { width: 390px; } .framer-JjBLi .framer-1tiibte { overflow: visible; } .framer-JjBLi .framer-17getco-container { height: auto; } .framer-JjBLi .framer-jd63ug { gap: 24px; padding: 20px 0px 40px 0px; } .framer-JjBLi .framer-kb075c, .framer-JjBLi .framer-k1czjv { gap: 24px; } .framer-JjBLi .framer-45oixr, .framer-JjBLi .framer-1au5cps, .framer-JjBLi .framer-l29y9m { padding: 40px 20px 40px 20px; } .framer-JjBLi .framer-y0x0t { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-JjBLi .framer-byi739 { flex-direction: column; } .framer-JjBLi .framer-1476ui7, .framer-JjBLi .framer-xvinns { flex: none; gap: 24px; width: 100%; } .framer-JjBLi .framer-uwwi38, .framer-JjBLi .framer-1dur0it { height: 240px; } .framer-JjBLi .framer-14lrx0u, .framer-JjBLi .framer-1t330k6 { gap: 24px; padding: 0px 20px 20px 20px; } .framer-JjBLi .framer-e2q0xh { padding: 4px 20px 40px 20px; } .framer-JjBLi .framer-1n241ar { gap: 24px; padding: 20px; } .framer-JjBLi .framer-yhomi8, .framer-JjBLi .framer-v8j9j9 { gap: 24px; padding: 40px 0px 40px 0px; } .framer-JjBLi .framer-mqs12y { padding: 0px 20px 0px 20px; } .framer-JjBLi .framer-lmgjzk { width: 100%; } .framer-JjBLi .framer-j0qg3i { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; padding: 0px 20px 0px 20px; } .framer-JjBLi .framer-16u0xxo { left: unset; position: relative; top: unset; transform: unset; width: 390px; } .framer-JjBLi .framer-104xmmn { align-content: center; align-items: center; flex-direction: column; } .framer-JjBLi .framer-gp1ydz, .framer-JjBLi .framer-5y35uq-container { flex: none; width: 100%; } .framer-JjBLi .framer-1w1hy5m { order: 0; } .framer-JjBLi .framer-mxhlda { text-decoration: none; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JjBLi .framer-jd63ug, .framer-JjBLi .framer-kb075c, .framer-JjBLi .framer-byi739, .framer-JjBLi .framer-1476ui7, .framer-JjBLi .framer-14lrx0u, .framer-JjBLi .framer-xvinns, .framer-JjBLi .framer-1t330k6, .framer-JjBLi .framer-1n241ar, .framer-JjBLi .framer-k1czjv, .framer-JjBLi .framer-yhomi8, .framer-JjBLi .framer-v8j9j9, .framer-JjBLi .framer-j0qg3i, .framer-JjBLi .framer-104xmmn { gap: 0px; } .framer-JjBLi .framer-jd63ug > *, .framer-JjBLi .framer-kb075c > *, .framer-JjBLi .framer-byi739 > *, .framer-JjBLi .framer-1476ui7 > *, .framer-JjBLi .framer-14lrx0u > *, .framer-JjBLi .framer-xvinns > *, .framer-JjBLi .framer-1t330k6 > *, .framer-JjBLi .framer-1n241ar > *, .framer-JjBLi .framer-k1czjv > *, .framer-JjBLi .framer-yhomi8 > *, .framer-JjBLi .framer-v8j9j9 > *, .framer-JjBLi .framer-104xmmn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JjBLi .framer-jd63ug > :first-child, .framer-JjBLi .framer-kb075c > :first-child, .framer-JjBLi .framer-byi739 > :first-child, .framer-JjBLi .framer-1476ui7 > :first-child, .framer-JjBLi .framer-14lrx0u > :first-child, .framer-JjBLi .framer-xvinns > :first-child, .framer-JjBLi .framer-1t330k6 > :first-child, .framer-JjBLi .framer-1n241ar > :first-child, .framer-JjBLi .framer-k1czjv > :first-child, .framer-JjBLi .framer-yhomi8 > :first-child, .framer-JjBLi .framer-v8j9j9 > :first-child, .framer-JjBLi .framer-104xmmn > :first-child { margin-top: 0px; } .framer-JjBLi .framer-jd63ug > :last-child, .framer-JjBLi .framer-kb075c > :last-child, .framer-JjBLi .framer-byi739 > :last-child, .framer-JjBLi .framer-1476ui7 > :last-child, .framer-JjBLi .framer-14lrx0u > :last-child, .framer-JjBLi .framer-xvinns > :last-child, .framer-JjBLi .framer-1t330k6 > :last-child, .framer-JjBLi .framer-1n241ar > :last-child, .framer-JjBLi .framer-k1czjv > :last-child, .framer-JjBLi .framer-yhomi8 > :last-child, .framer-JjBLi .framer-v8j9j9 > :last-child, .framer-JjBLi .framer-104xmmn > :last-child { margin-bottom: 0px; } .framer-JjBLi .framer-j0qg3i > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JjBLi .framer-j0qg3i > :first-child { margin-left: 0px; } .framer-JjBLi .framer-j0qg3i > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6003\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vSahVGYjJ\":{\"layout\":[\"fixed\",\"auto\"]},\"dCVQGhd1P\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-JjBLi\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6003,width:1024};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Tinos\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX5dGVh8TI-.woff2\",weight:\"400\"}]},...BannerFonts,...NavigationFonts,...ButtonFonts,...TickerFonts,...CarouselFonts,...FAQHomepageFonts,...ApplyPromoFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6003\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1024\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vSahVGYjJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dCVQGhd1P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "e", "n", "isNumber", "isEasingList", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "r", "clamp", "getEasingForSegment", "isString", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "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", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "clamp", "e", "n", "progress", "e", "n", "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", "Z", "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", "filteredSlots", "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", "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", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "AccordionsLocalAccordions1Style1OneFonts", "getFonts", "NrXEMBkKq_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "dov_m8z5e1srcdc", "args", "dov_m8z5e166p449", "dov_m8z5e1dd7p94", "dov_m8z5e1g3mxd0", "dov_m8z5ec849ju", "dov_m8z5elqfbxz", "dov_m8z5eghz0bp", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Link", "css", "Framerbsv2BY72A", "withCSS", "bsv2BY72A_default", "addPropertyControls", "ControlType", "addFonts", "BannerFonts", "getFonts", "vn3ksX8Lh_default", "NavigationFonts", "glQNHJ1iJ_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonFonts", "KoujWUtMs_default", "RichTextWithFX", "withFX", "MotionDivWithFX", "motion", "ImageWithFX", "Image2", "TickerFonts", "Ticker", "ContainerWithFX", "CarouselFonts", "Carousel", "FAQHomepageFonts", "bsv2BY72A_default", "ApplyPromoFonts", "TRi4xJ5Lm_default", "FooterFonts", "F4ThFEAQm_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "animation7", "transition6", "transition7", "animation8", "transition8", "animation9", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "Link", "SVG", "resolvedLinks4", "resolvedLinks5", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
