{
  "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.14.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.14.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/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/uVHMV03wa83wNvhejkUi/hEmryquUbINTE8y8uZNi/q8tmWAFQG.js", "ssg:https://framerusercontent.com/modules/AXMzBMlA1um6iJX06QBf/eCsAKo5vCUBMKlnc5Nub/JC5MoWWsz.js", "ssg:https://framerusercontent.com/modules/sH44OFGeN2x4bWG4GzYy/AcidQ0gL58guU4K2WLu6/eg7DBWdS7.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{isFunction as t,isCubicBezier as i,noopReturn as e,defaults as s,isEasingGenerator as a,isEasingList as n,interpolate as r}from\"@motionone/utils\";import{cubicBezier as h,steps as o}from\"@motionone/easing\";const l={ease:h(.25,.1,.25,1),\"ease-in\":h(.42,0,1,1),\"ease-in-out\":h(.42,0,.58,1),\"ease-out\":h(0,0,.58,1)};const u=/\\((.*?)\\)/;function getEasingFunction(s){if(t(s))return s;if(i(s))return h(...s);if(l[s])return l[s];if(s.startsWith(\"steps\")){const t=u.exec(s);if(t){const i=t[1].split(\",\");return o(parseFloat(i[0]),i[1].trim())}}return e}class Animation{constructor(t,i=[0,1],{easing:h,duration:o=s.duration,delay:l=s.delay,endDelay:u=s.endDelay,repeat:m=s.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=e;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));h=h||s.easing;if(a(h)){const t=h.createAnimation(i);h=t.easing;i=t.keyframes||i;o=t.duration||o}this.repeat=m;this.easing=n(h)?e:getEasingFunction(h);this.updateDuration(o);const d=r(i,c,n(h)?h.map(getEasingFunction):e);this.tick=i=>{var e;l=l;let s=0;s=void 0!==this.pauseTime?this.pauseTime:(i-this.startTime)*this.rate;this.t=s;s/=1e3;s=Math.max(s-l,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(s=this.totalDuration);const a=s/this.duration;let n=Math.floor(a);let r=a%1;!r&&a>=1&&(r=1);1===r&&n--;const h=n%2;(\"reverse\"===p||\"alternate\"===p&&h||\"alternate-reverse\"===p&&!h)&&(r=1-r);const o=s>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(o));t(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||s>=this.totalDuration+u);if(c){this.playState=\"finished\";null===(e=this.resolve)||void 0===e?void 0:e.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,noopReturn as s}from\"@motionone/utils\";const n=5;function calcGeneratorVelocity(t,s,r){const a=Math.max(s-n,0);return e(r-t(a),s-a)}const r={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=r.stiffness,t=r.damping,s=r.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=r.stiffness,damping:s=r.damping,mass:n=r.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/n)/1e3;const l=calcDampingRatio(e,s,n);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 a=10;const o=1e4;function pregenerateKeyframes(e,t=s){let n;let r=a;let c=e(0);const i=[t(c.current)];while(!c.done&&r<o){c=e(r);i.push(t(c.done?c.target:c.current));void 0===n&&c.hasReachedTarget&&(n=r);r+=a}const h=r-a;1===i.length&&i.push(c.current);return{keyframes:i,duration:h/1e3,overshootDuration:(null!==n&&void 0!==n?n:h)/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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)})},index+\"-original\");});}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:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9e4a47a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-XFWwS\";const variantClassNames={VS1Q0Y3yv:\"framer-v-9f8mq3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,logoImage,width,...props})=>{var _ref;return{...props,p5e5ODMJz:(_ref=logoImage!==null&&logoImage!==void 0?logoImage:props.p5e5ODMJz)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/nEcpn03Ninj48Jj2Avur3AOqY.svg\"}};};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,p5e5ODMJz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"VS1Q0Y3yv\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-9f8mq3\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VS1Q0Y3yv\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||140)-0-140)/2)),pixelHeight:140,pixelWidth:140,sizes:\"140px\",...toResponsiveImage(p5e5ODMJz),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1xym9wj\",\"data-framer-name\":\"Image\",draggable:\"false\",layoutDependency:layoutDependency,layoutId:\"KP9cUlCkw\"})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XFWwS.framer-1gykcfo, .framer-XFWwS .framer-1gykcfo { display: block; }\",\".framer-XFWwS.framer-9f8mq3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 140px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 140px; }\",\".framer-XFWwS .framer-1xym9wj { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 140px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 140px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XFWwS.framer-9f8mq3, .framer-XFWwS .framer-1xym9wj { gap: 0px; } .framer-XFWwS.framer-9f8mq3 > *, .framer-XFWwS .framer-1xym9wj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XFWwS.framer-9f8mq3 > :first-child, .framer-XFWwS .framer-1xym9wj > :first-child { margin-left: 0px; } .framer-XFWwS.framer-9f8mq3 > :last-child, .framer-XFWwS .framer-1xym9wj > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 140\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"p5e5ODMJz\":\"logoImage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerq8tmWAFQG=withCSS(Component,css,\"framer-XFWwS\");export default Framerq8tmWAFQG;Framerq8tmWAFQG.displayName=\"Interaction Components/Logo\";Framerq8tmWAFQG.defaultProps={height:140,width:140};addPropertyControls(Framerq8tmWAFQG,{p5e5ODMJz:{__defaultAssetReference:\"data:framer/asset-reference,nEcpn03Ninj48Jj2Avur3AOqY.svg?originalFilename=2.svg&preferredSize=auto\",title:\"Logo Image\",type:ControlType.ResponsiveImage}});addFonts(Framerq8tmWAFQG,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerq8tmWAFQG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"140\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"p5e5ODMJz\\\":\\\"logoImage\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./q8tmWAFQG.map", "// Generated by Framer (98479f1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Instrument Sans-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-j70WD .framer-styles-preset-1pwh88h:not(.rich-text-wrapper), .framer-j70WD .framer-styles-preset-1pwh88h.rich-text-wrapper h6 { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 26px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-367a62ed-e827-47a4-a7a4-c66301484ef0, #f2f2f2); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-j70WD\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import InteractionComponentsCircleCursor from\"#framer/local/canvasComponent/DA_0dyf8d/DA_0dyf8d.js\";import ButtonFixedButton from\"#framer/local/canvasComponent/eFSC8yOLx/eFSC8yOLx.js\";import NavigationFooter from\"#framer/local/canvasComponent/eKWa0D5_o/eKWa0D5_o.js\";import NavigationHeader from\"#framer/local/canvasComponent/kLz1qyKjn/kLz1qyKjn.js\";import InteractionComponentsLogo from\"#framer/local/canvasComponent/q8tmWAFQG/q8tmWAFQG.js\";import*as sharedStyle6 from\"#framer/local/css/IVjzWOfTQ/IVjzWOfTQ.js\";import*as sharedStyle3 from\"#framer/local/css/JC5MoWWsz/JC5MoWWsz.js\";import*as sharedStyle9 from\"#framer/local/css/KC9ZjhiCU/KC9ZjhiCU.js\";import*as sharedStyle8 from\"#framer/local/css/QJRhCMFzl/QJRhCMFzl.js\";import*as sharedStyle from\"#framer/local/css/Qu_lO3gfq/Qu_lO3gfq.js\";import*as sharedStyle4 from\"#framer/local/css/rpHO6S2OT/rpHO6S2OT.js\";import*as sharedStyle1 from\"#framer/local/css/VEPNz0Go7/VEPNz0Go7.js\";import*as sharedStyle5 from\"#framer/local/css/VlhEov2LI/VlhEov2LI.js\";import*as sharedStyle2 from\"#framer/local/css/VneMZkUkT/VneMZkUkT.js\";import*as sharedStyle7 from\"#framer/local/css/Xip_O9Spc/Xip_O9Spc.js\";import metadataProvider from\"#framer/local/webPageMetadata/eg7DBWdS7/eg7DBWdS7.js\";const NoiseFonts=getFonts(Noise);const NavigationHeaderFonts=getFonts(NavigationHeader);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const MotionAWithFX=withFX(motion.a);const InteractionComponentsLogoFonts=getFonts(InteractionComponentsLogo);const TickerFonts=getFonts(Ticker);const NavigationFooterFonts=getFonts(NavigationFooter);const SmoothScrollFonts=getFonts(SmoothScroll);const ButtonFixedButtonFonts=getFonts(ButtonFixedButton);const ContainerWithFX=withFX(Container);const InteractionComponentsCircleCursorFonts=getFonts(InteractionComponentsCircleCursor);const breakpoints={cSOgc4Y2z:\"(max-width: 809px)\",Jy3OnC3LA:\"(min-width: 810px) and (max-width: 1199px)\",UPcbz1AhJ:\"(min-width: 1200px) and (max-width: 1439px)\",ZkKBSL_T3:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-xfPHZ\";const variantClassNames={cSOgc4Y2z:\"framer-v-eglin4\",Jy3OnC3LA:\"framer-v-1kwjqrw\",UPcbz1AhJ:\"framer-v-1g99dl7\",ZkKBSL_T3:\"framer-v-1ijgq5\"};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:40,delay:.8,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-160};const transition3={damping:40,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:200};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:140};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:75};const transition4={damping:40,delay:.7,mass:1,stiffness:200,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:160};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:180};const transition5={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition6={damping:50,delay:0,mass:1,stiffness:200,type:\"spring\"};const transition7={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={L:\"ZkKBSL_T3\",M:\"UPcbz1AhJ\",S:\"Jy3OnC3LA\",XS:\"cSOgc4Y2z\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ZkKBSL_T3\"};};const cursor={alignment:\"center\",component:InteractionComponentsCircleCursor,offset:{x:0,y:0},placement:\"bottom\",transition:transition1,variant:\"id30gHbjF\"};const cursor1={component:InteractionComponentsCircleCursor,transition:transition5,variant:\"xe75kPRvN\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-xfPHZ`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-xfPHZ`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"SEknJTlyW\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"cSOgc4Y2z\")return false;return true;};const elementId1=useRouteElementId(\"e1U7afjw5\");const ref3=React.useRef(null);const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"cSOgc4Y2z\")return true;return false;};const elementId2=useRouteElementId(\"vHVi4d2pD\");const ref5=React.useRef(null);const elementId3=useRouteElementId(\"RfstyWDs_\");const ref6=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"Jy3OnC3LA\",\"cSOgc4Y2z\"].includes(baseVariant))return false;return true;};const router=useRouter();const ref7=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({\"124j5hd\":cursor,\"1u7zeap\":cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ZkKBSL_T3\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ijgq5\",className),\"data-framer-cursor\":\"124j5hd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t4dh44-container\",\"data-framer-name\":\"BG Noise\",name:\"BG Noise\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:250,borderRadius:0,height:\"100%\",id:\"sD8LnpEHT\",layoutId:\"sD8LnpEHT\",name:\"BG Noise\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-fxeobf\",\"data-framer-name\":\"Hero\",id:elementId,name:\"Hero\",ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-avyp7k-container\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:250,borderRadius:0,height:\"100%\",id:\"QbHuek9IW\",layoutId:\"QbHuek9IW\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-xtqlxw-container\",\"data-framer-appear-id\":\"xtqlxw\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{EO5whiAny:\"baobH_Uy9\"},Jy3OnC3LA:{EO5whiAny:\"o72PntwZw\"}},children:/*#__PURE__*/_jsx(NavigationHeader,{EO5whiAny:\"N4lgOxjIH\",height:\"100%\",id:\"KifVDs0vY\",layoutId:\"KifVDs0vY\",style:{width:\"100%\"},variant:\"LZsFL8aYT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sa1mxa\",\"data-framer-name\":\"Middle\",name:\"Middle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gvdxjh\",\"data-framer-name\":\"Titles\",name:\"Titles\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wopcg0\",\"data-framer-name\":\"2\",name:\"2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"Hi, I'm Karolina\"})}),initial:animation6,style:{}},Jy3OnC3LA:{initial:animation4},UPcbz1AhJ:{verticalAlignment:\"center\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"Hi, I'm Karolina\"})}),className:\"framer-uv0wth\",\"data-framer-appear-id\":\"uv0wth\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],initial:animation3,name:\"Text\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j1fnt9\",\"data-framer-name\":\"Body Text\",name:\"Body Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0wug3\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{animate:animation9,initial:animation10,style:{}}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-hfpv4q\",\"data-styles-preset\":\"VEPNz0Go7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Multi-platform designer\"})}),className:\"framer-1xl06vd\",\"data-framer-appear-id\":\"1xl06vd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],initial:animation8,name:\"Text\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{animate:animation9,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16pqbkc\",\"data-styles-preset\":\"VneMZkUkT\",style:{\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"With 6 years of experience in crafting user interfaces and product designs, \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16pqbkc\",\"data-styles-preset\":\"VneMZkUkT\",style:{\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"I specialize in building innovative digital products\u2014from UX research and UI design to prototyping and product delivery.\"})]}),initial:animation10,style:{}}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16pqbkc\",\"data-styles-preset\":\"VneMZkUkT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"With 6 years of experience in crafting user interfaces and product designs, \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16pqbkc\",\"data-styles-preset\":\"VneMZkUkT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"I specialize in building innovative digital products\u2014from UX research and UI design to prototyping and product delivery.\"})]}),className:\"framer-1abs5iq\",\"data-framer-appear-id\":\"1abs5iq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],initial:animation8,name:\"Text\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-3o0k5g hidden-eglin4\",\"data-framer-appear-id\":\"3o0k5g\",\"data-framer-name\":\"Bottom\",initial:animation12,name:\"Bottom\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1owfcd4\",\"data-framer-name\":\"Location\",name:\"Location\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rznl79\",\"data-framer-name\":\"Location\",fill:\"black\",intrinsicHeight:30,intrinsicWidth:30,name:\"Location\",svg:'<svg width=\"30\" height=\"30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path opacity=\".2\" d=\"M15 2.813a9.375 9.375 0 0 0-9.375 9.374c0 8.438 9.375 15 9.375 15s9.375-6.562 9.375-15A9.375 9.375 0 0 0 15 2.813Zm0 13.124a3.75 3.75 0 1 1 0-7.499 3.75 3.75 0 0 1 0 7.5Z\" fill=\"#F2F2F2\"/><path d=\"M15 7.5a4.687 4.687 0 1 0 0 9.374A4.687 4.687 0 0 0 15 7.5Zm0 7.5a2.812 2.812 0 1 1 0-5.624A2.812 2.812 0 0 1 15 15Zm0-13.125A10.324 10.324 0 0 0 4.687 12.188c0 3.68 1.7 7.58 4.922 11.279a29.789 29.789 0 0 0 4.858 4.488.937.937 0 0 0 1.076 0 29.79 29.79 0 0 0 4.848-4.488c3.216-3.7 4.922-7.6 4.922-11.28A10.324 10.324 0 0 0 15 1.876Zm0 24.14c-1.937-1.523-8.438-7.119-8.438-13.828a8.437 8.437 0 0 1 16.875 0c0 6.707-6.5 12.305-8.437 13.829Z\" fill=\"#F2F2F2\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1pwh88h\",\"data-styles-preset\":\"JC5MoWWsz\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Based in London, UK\"})}),className:\"framer-c4cra0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w3xbr7\",\"data-framer-name\":\"Location\",name:\"Location\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1pwh88h\",\"data-styles-preset\":\"JC5MoWWsz\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Available worldwide\"})}),className:\"framer-1hhwrvs\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{animate:animation,initial:animation13,style:{}}},children:/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation11,className:\"framer-13zag25\",\"data-framer-appear-id\":\"13zag25\",\"data-framer-name\":\"Zoom Image\",id:elementId1,initial:animation12,name:\"Zoom Image\",optimized:true,ref:ref3,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{__framer__styleTransformEffectEnabled:undefined,\"data-border\":true,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m8godw\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{__framer__styleTransformEffectEnabled:undefined,background:{alt:\"Man with TV\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1600,pixelHeight:2667,pixelWidth:4e3,sizes:\"calc(max(100vw - 30px, 1px) - 20px)\",src:\"https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg 4000w\"},style:{}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Man with TV\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(1e3),pixelHeight:2667,pixelWidth:4e3,sizes:\"max(100vw, 1px)\",src:\"https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Oy1Y5SR8tRUXTF4dJt4mg9XDQ.jpg 4000w\"},className:\"framer-1w33l1k\",\"data-framer-name\":\"Fill Your Image Here\",draggable:\"false\",name:\"Fill Your Image Here\",style:{transformPerspective:1200}})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c5yi8f-container\",\"data-framer-name\":\"BG Noise\",name:\"BG Noise\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:250,borderRadius:0,height:\"100%\",id:\"IVAeheCG9\",layoutId:\"IVAeheCG9\",name:\"BG Noise\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1fmcfo8\",\"data-framer-name\":\"Work\",name:\"Work\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-kv0cfm\",\"data-framer-name\":\"Works\",name:\"Works\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wfz25j\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1obrz86\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"left\"},children:\"Featured work\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-c2trxs\",\"data-styles-preset\":\"rpHO6S2OT\",style:{\"--framer-text-alignment\":\"left\"},children:\"Featured work\"})}),className:\"framer-1c4a7h1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v3m9ei hidden-1ijgq5 hidden-1g99dl7 hidden-1kwjqrw\",\"data-framer-name\":\"Rows\",name:\"Rows\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y1lc0a hidden-1ijgq5\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4qplx7\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aBA4XBjR4:\"quick-accumulator\"},unresolvedPathSlugs:{aBA4XBjR4:{collectionId:\"DJy8vEuY5\",collectionItemId:\"dUqVzHdvq\"}},webPageId:\"hMt4VHkDm\"},nodeId:\"bQ8yXCImW\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(MotionAWithFX,{className:\"framer-18h50lz framer-1lfctwi\",\"data-border\":true,\"data-framer-cursor\":\"1u7zeap\",\"data-framer-name\":\"Card/Work Card\",name:\"Card/Work Card\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1p7svpw\",\"data-framer-name\":\"Inner Content\",name:\"Inner Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16mjzp3\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-178g9ch\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wihs1m\",\"data-framer-name\":\"Image + Category\",name:\"Image + Category\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{background:{alt:\"\",fit:\"fill\",pixelHeight:2570,pixelWidth:4672,sizes:\"max(min(100vw, 1920px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png\",srcSet:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png 4672w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2570,pixelWidth:4672,src:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png\",srcSet:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png 4672w\"},className:\"framer-x36k8a\",\"data-border\":true,\"data-framer-name\":\"Fill Your Image Here\",draggable:\"false\",name:\"Fill Your Image Here\"})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hl73b3 hidden-eglin4\",\"data-framer-name\":\"Category\",name:\"Category\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"9px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:\"PORTFOLIO\"})}),className:\"framer-1dg2jtm\",\"data-framer-name\":\"Text\",fonts:[\"FR;InterDisplay-Bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-127q543\",\"data-framer-name\":\"Bottom Content\",name:\"Bottom Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j9t9lh\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-x9088p\",\"data-styles-preset\":\"VlhEov2LI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-367a62ed-e827-47a4-a7a4-c66301484ef0, rgb(242, 242, 242))\"},children:\"Quick Accumulator\"})}),className:\"framer-mqtk0z\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-q1amhu\",\"data-styles-preset\":\"IVjzWOfTQ\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Streamlining the betting experience to increase engagement and revenue\"})}),className:\"framer-4tpatz\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ug6akz\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aBA4XBjR4:\"gantry\"},unresolvedPathSlugs:{aBA4XBjR4:{collectionId:\"DJy8vEuY5\",collectionItemId:\"NxLbwCcBX\"}},webPageId:\"hU3xlCckm\"},nodeId:\"yNy_2Y4S7\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(MotionAWithFX,{className:\"framer-10b9ygh framer-1lfctwi\",\"data-border\":true,\"data-framer-cursor\":\"1u7zeap\",\"data-framer-name\":\"Card/Work Card\",name:\"Card/Work Card\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1julxnk\",\"data-framer-name\":\"Inner Content\",name:\"Inner Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rgih21\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8yzil\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yv7jbc\",\"data-framer-name\":\"Image + Category\",name:\"Image + Category\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{background:{alt:\"\",fit:\"fill\",pixelHeight:2570,pixelWidth:4672,sizes:\"max(min(100vw, 1920px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png\",srcSet:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png 4672w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2570,pixelWidth:4672,src:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png\",srcSet:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png 4672w\"},className:\"framer-1l8xyij\",\"data-border\":true,\"data-framer-name\":\"Fill Your Image Here\",draggable:\"false\",name:\"Fill Your Image Here\"})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-143a1ks hidden-eglin4\",\"data-framer-name\":\"Category\",name:\"Category\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"9px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:\"PORTFOLIO\"})}),className:\"framer-w38kpu\",\"data-framer-name\":\"Text\",fonts:[\"FR;InterDisplay-Bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h4r1hw\",\"data-framer-name\":\"Bottom Content\",name:\"Bottom Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dr5od2\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-x9088p\",\"data-styles-preset\":\"VlhEov2LI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-367a62ed-e827-47a4-a7a4-c66301484ef0, rgb(242, 242, 242))\"},children:\"Display Manager\"})}),className:\"framer-1aob3hk\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-q1amhu\",\"data-styles-preset\":\"IVjzWOfTQ\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Transforming digital display management in betting shops\"})}),className:\"framer-oe7y23\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15bb15d hidden-1ijgq5\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9er7mh\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aBA4XBjR4:\"kiosk\"},unresolvedPathSlugs:{aBA4XBjR4:{collectionId:\"DJy8vEuY5\",collectionItemId:\"C1SHNJAiH\"}},webPageId:\"hU3xlCckm\"},nodeId:\"cPEGphYuo\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(MotionAWithFX,{className:\"framer-iv7lmv framer-1lfctwi\",\"data-border\":true,\"data-framer-cursor\":\"1u7zeap\",\"data-framer-name\":\"Card/Work Card\",name:\"Card/Work Card\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-vu152a\",\"data-framer-name\":\"Inner Content\",name:\"Inner Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xo5l4\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uog2ts\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u51m4x\",\"data-framer-name\":\"Image + Category\",name:\"Image + Category\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{background:{alt:\"\",fit:\"fill\",pixelHeight:4932,pixelWidth:6984,sizes:\"max(min(100vw, 1920px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png\",srcSet:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=512 512w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png 6984w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4932,pixelWidth:6984,src:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png\",srcSet:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=512 512w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png 6984w\"},className:\"framer-1fkvd7i\",\"data-border\":true,\"data-framer-name\":\"Fill Your Image Here\",draggable:\"false\",name:\"Fill Your Image Here\"})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v90067 hidden-eglin4\",\"data-framer-name\":\"Category\",name:\"Category\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"9px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:\"PORTFOLIO\"})}),className:\"framer-1hoxyxw\",\"data-framer-name\":\"Text\",fonts:[\"FR;InterDisplay-Bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jkwq42\",\"data-framer-name\":\"Bottom Content\",name:\"Bottom Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q2ryw5\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-x9088p\",\"data-styles-preset\":\"VlhEov2LI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-367a62ed-e827-47a4-a7a4-c66301484ef0, rgb(242, 242, 242))\"},children:\"Bet MGM Kiosk\"})}),className:\"framer-1pat3ft\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-q1amhu\",\"data-styles-preset\":\"IVjzWOfTQ\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Enhancing usability and engagement in the Casino\"})}),className:\"framer-1rc70u1\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l5fnvj\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aBA4XBjR4:\"crc\"},unresolvedPathSlugs:{aBA4XBjR4:{collectionId:\"DJy8vEuY5\",collectionItemId:\"a6MtIGoO1\"}},webPageId:\"kcVU4tKEG\"},nodeId:\"t5X7rlH4Z\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(MotionAWithFX,{className:\"framer-i1l2rl framer-1lfctwi\",\"data-border\":true,\"data-framer-cursor\":\"1u7zeap\",\"data-framer-name\":\"Card/Work Card\",name:\"Card/Work Card\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-13owode\",\"data-framer-name\":\"Inner Content\",name:\"Inner Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e0xqz5\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dlpsjk\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vev89y\",\"data-framer-name\":\"Image + Category\",name:\"Image + Category\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{background:{alt:\"\",fit:\"fill\",pixelHeight:2234,pixelWidth:4062,sizes:\"max(min(100vw, 1920px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png\",srcSet:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png 4062w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2234,pixelWidth:4062,src:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png\",srcSet:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png 4062w\"},className:\"framer-11awjro\",\"data-border\":true,\"data-framer-name\":\"Fill Your Image Here\",draggable:\"false\",name:\"Fill Your Image Here\"})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yhj1h3 hidden-eglin4\",\"data-framer-name\":\"Category\",name:\"Category\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"9px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:\"PORTFOLIO\"})}),className:\"framer-6qm006\",\"data-framer-name\":\"Text\",fonts:[\"FR;InterDisplay-Bold\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2p0qx5\",\"data-framer-name\":\"Bottom Content\",name:\"Bottom Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r2874i\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-x9088p\",\"data-styles-preset\":\"VlhEov2LI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-367a62ed-e827-47a4-a7a4-c66301484ef0, rgb(242, 242, 242))\"},children:\"Coral Racing Club\"})}),className:\"framer-3krywo\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-q1amhu\",\"data-styles-preset\":\"IVjzWOfTQ\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Creating a platform to bring users closer to the world of horse racing\"})}),className:\"framer-1u8oicr\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-pul76y hidden-eglin4\",\"data-framer-name\":\"Grid 2\",name:\"Grid 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qrzndu\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.karolinasmo.com/work/quick-accumulator\",nodeId:\"RLxS9x9I2\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1xqhuyn framer-1lfctwi\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jy3OnC3LA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(2220),pixelHeight:2570,pixelWidth:4672,sizes:\"calc(max((min(100vw, 1920px) - 100px) / 3, 200px) * 3 + 40px)\",src:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png 4672w\"}},UPcbz1AhJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(2250),pixelHeight:2570,pixelWidth:4672,sizes:\"calc(max((min(100vw, 1920px) - 160px) / 3, 200px) * 3 + 80px)\",src:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png 4672w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(2310),pixelHeight:2570,pixelWidth:4672,sizes:\"calc(max((min(100vw, 1920px) - 160px) / 3, 200px) * 3 + 80px)\",src:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=512 512w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/yMQaElmPYDoFWBt4ihN2Za0TI.png 4672w\"},className:\"framer-10dd8c8\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ye45bp\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-hfpv4q\",\"data-styles-preset\":\"VEPNz0Go7\",children:\"Quick Accumulator\"})}),className:\"framer-1xqwg59\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-q1amhu\",\"data-styles-preset\":\"IVjzWOfTQ\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Streamlining the betting experience to increase engagement and revenue\"})}),className:\"framer-1i8xugs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aBA4XBjR4:\"gantry\"},unresolvedPathSlugs:{aBA4XBjR4:{collectionId:\"DJy8vEuY5\",collectionItemId:\"NxLbwCcBX\"}},webPageId:\"hU3xlCckm\"},nodeId:\"yj4XZvzod\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-19bs3ke framer-1lfctwi\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jy3OnC3LA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(2734),pixelHeight:2570,pixelWidth:4672,sizes:\"calc(max((min(100vw, 1920px) - 100px) / 3, 200px) * 2 + 20px)\",src:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png 4672w\"}},UPcbz1AhJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(2974),pixelHeight:2570,pixelWidth:4672,sizes:\"calc(max((min(100vw, 1920px) - 160px) / 3, 200px) * 2 + 40px)\",src:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png 4672w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(3034),pixelHeight:2570,pixelWidth:4672,sizes:\"calc(max((min(100vw, 1920px) - 160px) / 3, 200px) * 2 + 40px)\",src:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ovhjqqjCXTLHBzFZ7jduuyh7wrw.png 4672w\"},className:\"framer-1c4tjoo\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wsqg6i\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-hfpv4q\",\"data-styles-preset\":\"VEPNz0Go7\",children:\"Display Manager Software\"})}),className:\"framer-1u2rcqp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-q1amhu\",\"data-styles-preset\":\"IVjzWOfTQ\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Streamlining the betting experience to increase engagement and revenue\"})}),className:\"framer-6ppqpu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aBA4XBjR4:\"kiosk\"},unresolvedPathSlugs:{aBA4XBjR4:{collectionId:\"DJy8vEuY5\",collectionItemId:\"C1SHNJAiH\"}},webPageId:\"nGxnuGD_R\"},nodeId:\"LSVOcx7ur\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-mlg0zz framer-1lfctwi\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jy3OnC3LA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(2734),pixelHeight:4932,pixelWidth:6984,sizes:\"max((min(100vw, 1920px) - 100px) / 3, 200px)\",src:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=512 512w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png 6984w\"}},UPcbz1AhJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(2974),pixelHeight:4932,pixelWidth:6984,sizes:\"max((min(100vw, 1920px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=512 512w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png 6984w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(3034),pixelHeight:4932,pixelWidth:6984,sizes:\"max((min(100vw, 1920px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=512 512w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/l7PY9fTuhDxnSY8o8rKNO6s3Zs.png 6984w\"},className:\"framer-enzviq\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ekp51\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-hfpv4q\",\"data-styles-preset\":\"VEPNz0Go7\",children:\"Bet MGM Kiosk\"})}),className:\"framer-1ey8wq7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-q1amhu\",\"data-styles-preset\":\"IVjzWOfTQ\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Enhacing betting experience in Las Vegas Casinos\"})}),className:\"framer-1pirmjk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{aBA4XBjR4:\"crc\"},unresolvedPathSlugs:{aBA4XBjR4:{collectionId:\"DJy8vEuY5\",collectionItemId:\"a6MtIGoO1\"}},webPageId:\"kcVU4tKEG\"},nodeId:\"KLEILvole\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1eks3u4 framer-1lfctwi\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Jy3OnC3LA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(3248),pixelHeight:2234,pixelWidth:4062,sizes:\"calc(max((min(100vw, 1920px) - 100px) / 3, 200px) * 3 + 40px)\",src:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png 4062w\"}},UPcbz1AhJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(3698),pixelHeight:2234,pixelWidth:4062,sizes:\"calc(max((min(100vw, 1920px) - 160px) / 3, 200px) * 3 + 80px)\",src:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png 4062w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(3758),pixelHeight:2234,pixelWidth:4062,sizes:\"calc(max((min(100vw, 1920px) - 160px) / 3, 200px) * 3 + 80px)\",src:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=512 512w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QEPtZj71lqvOZsKHKM1akKizc.png 4062w\"},className:\"framer-ssuu8o\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vp7nbu\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-hfpv4q\",\"data-styles-preset\":\"VEPNz0Go7\",children:\"coral racing club\"})}),className:\"framer-w11uvy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-q1amhu\",\"data-styles-preset\":\"IVjzWOfTQ\",style:{\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Creating a platform to bring users closer to the world of horse racing\"})}),className:\"framer-1cgzyhg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kxqdd8-container\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:250,borderRadius:0,height:\"100%\",id:\"xG2b05oR9\",layoutId:\"xG2b05oR9\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-8kc7ho\",\"data-framer-name\":\"Client\",name:\"Client\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xkq3wk-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:140,height:\"100%\",hoverFactor:1,id:\"WcM5s6H1r\",layoutId:\"WcM5s6H1r\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c1pnru-container\",children:/*#__PURE__*/_jsx(InteractionComponentsLogo,{height:\"100%\",id:\"Ek9h80PIX\",layoutId:\"Ek9h80PIX\",p5e5ODMJz:addImageAlt({src:\"https://framerusercontent.com/images/Dbi0MkEW69vQoZ1ntlFHENYjYQ.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hodp8w-container\",children:/*#__PURE__*/_jsx(InteractionComponentsLogo,{height:\"100%\",id:\"PwVkSn5jz\",layoutId:\"PwVkSn5jz\",p5e5ODMJz:addImageAlt({src:\"https://framerusercontent.com/images/7tZCIPMomIzWooVkp6BXoldhXYk.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nf9wg6-container\",children:/*#__PURE__*/_jsx(InteractionComponentsLogo,{height:\"100%\",id:\"xhDs5rs65\",layoutId:\"xhDs5rs65\",p5e5ODMJz:addImageAlt({src:\"https://framerusercontent.com/images/Ms7eVh4m0nLo4vJMgLpWoAUoCxA.png\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"140px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5mkmed-container\",children:/*#__PURE__*/_jsx(InteractionComponentsLogo,{height:\"100%\",id:\"pmQAX_Vl5\",layoutId:\"pmQAX_Vl5\",p5e5ODMJz:addImageAlt({src:\"https://framerusercontent.com/images/SGcSgq9bMZVIqqPmKokIagvk.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"140px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-z4s4b-container\",children:/*#__PURE__*/_jsx(InteractionComponentsLogo,{height:\"100%\",id:\"X1S9w2PBk\",layoutId:\"X1S9w2PBk\",p5e5ODMJz:addImageAlt({src:\"https://framerusercontent.com/images/lgl9mAS90ZlEiJfLzPyxDhBvo1A.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"140px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mbflzb-container\",children:/*#__PURE__*/_jsx(InteractionComponentsLogo,{height:\"100%\",id:\"CIOJDzXWX\",layoutId:\"CIOJDzXWX\",p5e5ODMJz:addImageAlt({src:\"https://framerusercontent.com/images/0Zv11TX5EmWxiqCNHkomc0PbICU.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1m0xeko\",\"data-framer-name\":\"Process\",id:elementId2,name:\"Process\",ref:ref5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kfjihn\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9qv468\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"From insight to impact\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-c2trxs\",\"data-styles-preset\":\"rpHO6S2OT\",style:{\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"From insight to impact\"})}),className:\"framer-10hgxyk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1bw1ca4\",\"data-styles-preset\":\"Xip_O9Spc\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Create with purpose and keep it simple\"})}),className:\"framer-dzureo\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],name:\"Body\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4kro9o\",\"data-styles-preset\":\"QJRhCMFzl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"I\u2019m driven by curiosity about why people act the way they do. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4kro9o\",\"data-styles-preset\":\"QJRhCMFzl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b353dc3b-dcc0-4807-87ed-8583ff384a9e, rgba(242, 242, 242, 0.9))\"},children:\"My process combines creativity and strategy, starting with understanding the business goals and users\u2019 needs to craft meaningful experiences that create an impact.\"})]}),className:\"framer-cvcotv\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],name:\"Body\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-sqr0y2\",\"data-framer-name\":\"About\",id:elementId3,name:\"About\",ref:ref6,children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j9yjqc hidden-1kwjqrw hidden-eglin4\",\"data-framer-name\":\"Body\",name:\"Body\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2vzpqr\",\"data-framer-name\":\"Titles\",name:\"Titles\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-16poq5x\",\"data-styles-preset\":\"KC9ZjhiCU\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Research\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Research\"})}),className:\"framer-bpeveb\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],name:\"1\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Strategy\"})}),className:\"framer-pv76da hidden-eglin4\",\"data-framer-name\":\"2\",fonts:[\"Inter\"],name:\"2\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-16poq5x\",\"data-styles-preset\":\"KC9ZjhiCU\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Ideation workshops\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Ideation workshops\"})}),className:\"framer-16jsta7\",\"data-framer-name\":\"1\",fonts:[\"Inter\"],name:\"1\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-16poq5x\",\"data-styles-preset\":\"KC9ZjhiCU\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Wireframing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Wireframing\"})}),className:\"framer-xbvcb6\",\"data-framer-name\":\"3\",fonts:[\"Inter\"],name:\"3\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-16poq5x\",\"data-styles-preset\":\"KC9ZjhiCU\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"User testing\"})})},Jy3OnC3LA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Interaction design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"User testing\"})}),className:\"framer-9btbdp\",\"data-framer-name\":\"4\",fonts:[\"Inter\"],name:\"4\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-16poq5x\",\"data-styles-preset\":\"KC9ZjhiCU\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Interaction design\"})})},Jy3OnC3LA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"User testing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lqdcb0\",\"data-styles-preset\":\"Qu_lO3gfq\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-070d4537-ec80-4dcc-b8b9-45c557995c1b, rgb(153, 153, 153))\"},children:\"Interaction design\"})}),className:\"framer-1vbs66n\",\"data-framer-name\":\"4\",fonts:[\"Inter\"],name:\"4\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-8hvzic\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1olwxpf-container\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:250,borderRadius:0,height:\"100%\",id:\"CsPupimWW\",layoutId:\"CsPupimWW\",opacity:.04,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"footer\",{className:\"framer-usdzsf\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SEknJTlyW\",webPageId:\"eg7DBWdS7\"},implicitPathVariables:undefined},{href:{hash:\":SEknJTlyW\",webPageId:\"eg7DBWdS7\"},implicitPathVariables:undefined},{href:{hash:\":SEknJTlyW\",webPageId:\"eg7DBWdS7\"},implicitPathVariables:undefined},{href:{hash:\":SEknJTlyW\",webPageId:\"eg7DBWdS7\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{width:\"min(min(100vw, 1920px) - 40px, 1920px)\",y:undefined},Jy3OnC3LA:{width:\"min(min(100vw, 1920px) - 60px, 1920px)\",y:5862},UPcbz1AhJ:{y:6952}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:338,width:\"min(min(100vw, 1920px) - 80px, 1920px)\",y:7012,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g3qqo5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cSOgc4Y2z:{MbOgtuiHC:resolvedLinks[3],variant:\"KbSAtfnj3\"},Jy3OnC3LA:{MbOgtuiHC:resolvedLinks[2],variant:\"NHGnTiBMG\"},UPcbz1AhJ:{MbOgtuiHC:resolvedLinks[1],variant:\"PwosCXu0E\"}},children:/*#__PURE__*/_jsx(NavigationFooter,{height:\"100%\",id:\"XgXT0l0cB\",layoutId:\"XgXT0l0cB\",MbOgtuiHC:resolvedLinks[0],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"anIQ6cMzf\",wA4c7WjuF:\"var(--token-d3bbb0d3-b71e-413e-a435-a97ec98ddac7, rgba(51, 51, 51, 0.2))\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9axbk6-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"mu5ZPTW3b\",intensity:30,layoutId:\"mu5ZPTW3b\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:899,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:1e3,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6kes0j-container hidden-eglin4\",layoutScroll:true,children:/*#__PURE__*/_jsx(ButtonFixedButton,{GP85vQ4AC:false,height:\"100%\",id:\"Mz9czWh_3\",layoutId:\"Mz9czWh_3\",sq67Ol4a3:\"Remix Now $0\",variant:\"suag_JqNi\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-xfPHZ { background: var(--token-b51326bc-cd89-4367-ad09-5363e02d2ef9, rgb(20, 20, 20)) /* {\"name\":\"Background\"} */; }`,\".framer-xfPHZ.framer-1lfctwi, .framer-xfPHZ .framer-1lfctwi { display: block; }\",\".framer-xfPHZ.framer-1ijgq5 { align-content: center; align-items: center; background-color: var(--token-b51326bc-cd89-4367-ad09-5363e02d2ef9, #141414); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-xfPHZ .framer-t4dh44-container, .framer-xfPHZ .framer-avyp7k-container, .framer-xfPHZ .framer-1olwxpf-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-xfPHZ .framer-fxeobf { align-content: center; align-items: center; background-color: #141414; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; overflow: hidden; padding: 0px 0px 34px 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-xfPHZ .framer-xtqlxw-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-xfPHZ .framer-1sa1mxa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-gvdxjh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-1wopcg0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-uv0wth { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1200px; word-break: break-word; word-wrap: break-word; }\",\".framer-xfPHZ .framer-1j1fnt9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-1e0wug3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xfPHZ .framer-1xl06vd, .framer-xfPHZ .framer-1abs5iq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xfPHZ .framer-3o0k5g { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1920px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-xfPHZ .framer-1owfcd4, .framer-xfPHZ .framer-w3xbr7 { align-content: center; align-items: center; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xfPHZ .framer-1rznl79 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); opacity: 0.6; position: relative; width: 22px; }\",\".framer-xfPHZ .framer-c4cra0, .framer-xfPHZ .framer-1hhwrvs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xfPHZ .framer-13zag25 { align-content: flex-start; align-items: flex-start; background-color: #141414; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; scroll-margin-top: 1px; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-xfPHZ .framer-1m8godw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-xfPHZ .framer-1w33l1k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: -20px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-xfPHZ .framer-1c5yi8f-container { flex: none; height: 5183%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 5183.394160583941% / 2); width: 100%; z-index: 0; }\",\".framer-xfPHZ .framer-1fmcfo8 { align-content: center; align-items: center; background-color: #141414; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-xfPHZ .framer-kv0cfm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 140px 40px 0px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-xfPHZ .framer-1wfz25j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-1obrz86 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-1c4a7h1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xfPHZ .framer-v3m9ei { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; min-height: 200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-y1lc0a, .framer-xfPHZ .framer-15bb15d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-4qplx7, .framer-xfPHZ .framer-ug6akz, .framer-xfPHZ .framer-9er7mh, .framer-xfPHZ .framer-1l5fnvj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xfPHZ .framer-18h50lz, .framer-xfPHZ .framer-10b9ygh, .framer-xfPHZ .framer-iv7lmv, .framer-xfPHZ .framer-i1l2rl { --border-bottom-width: 2px; --border-color: var(--token-75583af1-e41a-442d-84f1-bddf82ec0dcd, #262626); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: var(--token-b51326bc-cd89-4367-ad09-5363e02d2ef9, #141414); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 522px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-xfPHZ .framer-1p7svpw, .framer-xfPHZ .framer-1julxnk, .framer-xfPHZ .framer-vu152a, .framer-xfPHZ .framer-13owode { align-content: flex-start; align-items: flex-start; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xfPHZ .framer-16mjzp3, .framer-xfPHZ .framer-1rgih21, .framer-xfPHZ .framer-1xo5l4, .framer-xfPHZ .framer-e0xqz5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-178g9ch, .framer-xfPHZ .framer-1r8yzil, .framer-xfPHZ .framer-1uog2ts, .framer-xfPHZ .framer-1dlpsjk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xfPHZ .framer-wihs1m, .framer-xfPHZ .framer-1yv7jbc, .framer-xfPHZ .framer-u51m4x, .framer-xfPHZ .framer-vev89y { background-color: var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, #000000); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-xfPHZ .framer-x36k8a, .framer-xfPHZ .framer-1l8xyij { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.18); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-xfPHZ .framer-1hl73b3, .framer-xfPHZ .framer-143a1ks, .framer-xfPHZ .framer-1v90067, .framer-xfPHZ .framer-yhj1h3 { align-content: center; align-items: center; background-color: var(--token-a06e00d5-6d89-4c1d-98b8-fbb391ce4ffa, #ffffff); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 9.5px 9px 9px 9px; position: absolute; right: 10px; top: -30px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 4; }\",\".framer-xfPHZ .framer-1dg2jtm, .framer-xfPHZ .framer-w38kpu, .framer-xfPHZ .framer-1hoxyxw, .framer-xfPHZ .framer-6qm006 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xfPHZ .framer-127q543, .framer-xfPHZ .framer-h4r1hw, .framer-xfPHZ .framer-1jkwq42, .framer-xfPHZ .framer-2p0qx5 { align-content: flex-start; align-items: flex-start; background-color: var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, #000000); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100px; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xfPHZ .framer-1j9t9lh, .framer-xfPHZ .framer-1dr5od2, .framer-xfPHZ .framer-q2ryw5, .framer-xfPHZ .framer-1r2874i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xfPHZ .framer-mqtk0z, .framer-xfPHZ .framer-4tpatz, .framer-xfPHZ .framer-1aob3hk, .framer-xfPHZ .framer-oe7y23, .framer-xfPHZ .framer-1pat3ft, .framer-xfPHZ .framer-1rc70u1, .framer-xfPHZ .framer-bpeveb, .framer-xfPHZ .framer-pv76da, .framer-xfPHZ .framer-16jsta7, .framer-xfPHZ .framer-xbvcb6, .framer-xfPHZ .framer-9btbdp, .framer-xfPHZ .framer-1vbs66n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xfPHZ .framer-1fkvd7i, .framer-xfPHZ .framer-11awjro { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.18); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 2px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-xfPHZ .framer-3krywo, .framer-xfPHZ .framer-1u8oicr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-xfPHZ .framer-pul76y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-qrzndu { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-1xqhuyn { --border-bottom-width: 2px; --border-color: var(--token-75583af1-e41a-442d-84f1-bddf82ec0dcd, #262626); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; align-self: start; background-color: var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, #000000); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 3; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-xfPHZ .framer-10dd8c8, .framer-xfPHZ .framer-ssuu8o { align-content: center; align-items: center; aspect-ratio: 2.4727272727272727 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 550px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xfPHZ .framer-ye45bp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 134px; justify-content: center; padding: 20px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-1xqwg59, .framer-xfPHZ .framer-1u2rcqp, .framer-xfPHZ .framer-1ey8wq7, .framer-xfPHZ .framer-w11uvy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xfPHZ .framer-1i8xugs, .framer-xfPHZ .framer-6ppqpu, .framer-xfPHZ .framer-1pirmjk, .framer-xfPHZ .framer-1cgzyhg { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xfPHZ .framer-19bs3ke { --border-bottom-width: 1px; --border-color: var(--token-75583af1-e41a-442d-84f1-bddf82ec0dcd, #262626); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, #000000); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 2; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-xfPHZ .framer-1c4tjoo { aspect-ratio: 1.6245454545454545 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 550px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xfPHZ .framer-wsqg6i, .framer-xfPHZ .framer-7ekp51, .framer-xfPHZ .framer-1vp7nbu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 134px; justify-content: flex-start; padding: 20px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-mlg0zz { --border-bottom-width: 1px; --border-color: var(--token-75583af1-e41a-442d-84f1-bddf82ec0dcd, #262626); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, #000000); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-xfPHZ .framer-enzviq { align-content: center; align-items: center; aspect-ratio: 0.7754545454545455 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 550px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xfPHZ .framer-1eks3u4 { --border-bottom-width: 1px; --border-color: var(--token-75583af1-e41a-442d-84f1-bddf82ec0dcd, #262626); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: var(--token-9e9c95a6-9cce-4edc-9891-5ca27d807117, #000000); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 3; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-xfPHZ .framer-1kxqdd8-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; position: absolute; top: calc(50.01066780456584% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-xfPHZ .framer-8kc7ho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 240px 0px 240px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-xfPHZ .framer-1xkq3wk-container { flex: 1 0 0px; height: 140px; position: relative; width: 1px; }\",\".framer-xfPHZ .framer-1c1pnru-container, .framer-xfPHZ .framer-1hodp8w-container, .framer-xfPHZ .framer-1nf9wg6-container { height: auto; position: relative; width: auto; }\",\".framer-xfPHZ .framer-5mkmed-container, .framer-xfPHZ .framer-z4s4b-container, .framer-xfPHZ .framer-1mbflzb-container { height: 140px; position: relative; width: 140px; }\",\".framer-xfPHZ .framer-1m0xeko { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 3; }\",\".framer-xfPHZ .framer-kfjihn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-9qv468 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xfPHZ .framer-10hgxyk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xfPHZ .framer-dzureo, .framer-xfPHZ .framer-cvcotv { flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xfPHZ .framer-sqr0y2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 140px 40px 60px 40px; position: relative; width: 100%; z-index: 3; }\",\".framer-xfPHZ .framer-1j9yjqc { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; min-height: 108px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xfPHZ .framer-2vzpqr { align-content: flex-end; align-items: flex-end; 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: 80%; }\",\".framer-xfPHZ .framer-8hvzic { align-content: center; align-items: center; background-color: #141414; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-xfPHZ .framer-usdzsf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 240px 40px 40px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-xfPHZ .framer-1g3qqo5-container { flex: none; height: auto; max-width: 1920px; position: relative; width: 100%; }\",\".framer-xfPHZ .framer-9axbk6-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",\".framer-xfPHZ .framer-6kes0j-container { bottom: 61px; flex: none; height: auto; position: fixed; right: 20px; width: auto; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xfPHZ.framer-1ijgq5, .framer-xfPHZ .framer-1sa1mxa, .framer-xfPHZ .framer-gvdxjh, .framer-xfPHZ .framer-1wopcg0, .framer-xfPHZ .framer-1j1fnt9, .framer-xfPHZ .framer-1e0wug3, .framer-xfPHZ .framer-1owfcd4, .framer-xfPHZ .framer-w3xbr7, .framer-xfPHZ .framer-13zag25, .framer-xfPHZ .framer-1m8godw, .framer-xfPHZ .framer-1w33l1k, .framer-xfPHZ .framer-1fmcfo8, .framer-xfPHZ .framer-kv0cfm, .framer-xfPHZ .framer-1wfz25j, .framer-xfPHZ .framer-1obrz86, .framer-xfPHZ .framer-v3m9ei, .framer-xfPHZ .framer-y1lc0a, .framer-xfPHZ .framer-4qplx7, .framer-xfPHZ .framer-18h50lz, .framer-xfPHZ .framer-1p7svpw, .framer-xfPHZ .framer-16mjzp3, .framer-xfPHZ .framer-178g9ch, .framer-xfPHZ .framer-x36k8a, .framer-xfPHZ .framer-1hl73b3, .framer-xfPHZ .framer-1j9t9lh, .framer-xfPHZ .framer-ug6akz, .framer-xfPHZ .framer-10b9ygh, .framer-xfPHZ .framer-1julxnk, .framer-xfPHZ .framer-1rgih21, .framer-xfPHZ .framer-1r8yzil, .framer-xfPHZ .framer-1l8xyij, .framer-xfPHZ .framer-143a1ks, .framer-xfPHZ .framer-1dr5od2, .framer-xfPHZ .framer-15bb15d, .framer-xfPHZ .framer-9er7mh, .framer-xfPHZ .framer-iv7lmv, .framer-xfPHZ .framer-vu152a, .framer-xfPHZ .framer-1xo5l4, .framer-xfPHZ .framer-1uog2ts, .framer-xfPHZ .framer-1fkvd7i, .framer-xfPHZ .framer-1v90067, .framer-xfPHZ .framer-q2ryw5, .framer-xfPHZ .framer-1l5fnvj, .framer-xfPHZ .framer-i1l2rl, .framer-xfPHZ .framer-13owode, .framer-xfPHZ .framer-e0xqz5, .framer-xfPHZ .framer-1dlpsjk, .framer-xfPHZ .framer-11awjro, .framer-xfPHZ .framer-yhj1h3, .framer-xfPHZ .framer-1r2874i, .framer-xfPHZ .framer-pul76y, .framer-xfPHZ .framer-1xqhuyn, .framer-xfPHZ .framer-10dd8c8, .framer-xfPHZ .framer-ye45bp, .framer-xfPHZ .framer-19bs3ke, .framer-xfPHZ .framer-wsqg6i, .framer-xfPHZ .framer-mlg0zz, .framer-xfPHZ .framer-enzviq, .framer-xfPHZ .framer-7ekp51, .framer-xfPHZ .framer-1eks3u4, .framer-xfPHZ .framer-ssuu8o, .framer-xfPHZ .framer-1vp7nbu, .framer-xfPHZ .framer-8kc7ho, .framer-xfPHZ .framer-1m0xeko, .framer-xfPHZ .framer-kfjihn, .framer-xfPHZ .framer-9qv468, .framer-xfPHZ .framer-sqr0y2, .framer-xfPHZ .framer-1j9yjqc, .framer-xfPHZ .framer-2vzpqr, .framer-xfPHZ .framer-8hvzic, .framer-xfPHZ .framer-usdzsf { gap: 0px; } .framer-xfPHZ.framer-1ijgq5 > *, .framer-xfPHZ .framer-1fmcfo8 > *, .framer-xfPHZ .framer-18h50lz > *, .framer-xfPHZ .framer-1p7svpw > *, .framer-xfPHZ .framer-10b9ygh > *, .framer-xfPHZ .framer-1julxnk > *, .framer-xfPHZ .framer-iv7lmv > *, .framer-xfPHZ .framer-vu152a > *, .framer-xfPHZ .framer-i1l2rl > *, .framer-xfPHZ .framer-13owode > *, .framer-xfPHZ .framer-pul76y > *, .framer-xfPHZ .framer-1xqhuyn > *, .framer-xfPHZ .framer-19bs3ke > *, .framer-xfPHZ .framer-mlg0zz > *, .framer-xfPHZ .framer-1eks3u4 > *, .framer-xfPHZ .framer-8hvzic > *, .framer-xfPHZ .framer-usdzsf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xfPHZ.framer-1ijgq5 > :first-child, .framer-xfPHZ .framer-1sa1mxa > :first-child, .framer-xfPHZ .framer-gvdxjh > :first-child, .framer-xfPHZ .framer-1e0wug3 > :first-child, .framer-xfPHZ .framer-1fmcfo8 > :first-child, .framer-xfPHZ .framer-kv0cfm > :first-child, .framer-xfPHZ .framer-1wfz25j > :first-child, .framer-xfPHZ .framer-v3m9ei > :first-child, .framer-xfPHZ .framer-18h50lz > :first-child, .framer-xfPHZ .framer-1p7svpw > :first-child, .framer-xfPHZ .framer-1j9t9lh > :first-child, .framer-xfPHZ .framer-10b9ygh > :first-child, .framer-xfPHZ .framer-1julxnk > :first-child, .framer-xfPHZ .framer-1dr5od2 > :first-child, .framer-xfPHZ .framer-iv7lmv > :first-child, .framer-xfPHZ .framer-vu152a > :first-child, .framer-xfPHZ .framer-q2ryw5 > :first-child, .framer-xfPHZ .framer-i1l2rl > :first-child, .framer-xfPHZ .framer-13owode > :first-child, .framer-xfPHZ .framer-1r2874i > :first-child, .framer-xfPHZ .framer-pul76y > :first-child, .framer-xfPHZ .framer-1xqhuyn > :first-child, .framer-xfPHZ .framer-10dd8c8 > :first-child, .framer-xfPHZ .framer-ye45bp > :first-child, .framer-xfPHZ .framer-19bs3ke > :first-child, .framer-xfPHZ .framer-wsqg6i > :first-child, .framer-xfPHZ .framer-mlg0zz > :first-child, .framer-xfPHZ .framer-enzviq > :first-child, .framer-xfPHZ .framer-7ekp51 > :first-child, .framer-xfPHZ .framer-1eks3u4 > :first-child, .framer-xfPHZ .framer-ssuu8o > :first-child, .framer-xfPHZ .framer-1vp7nbu > :first-child, .framer-xfPHZ .framer-1m0xeko > :first-child, .framer-xfPHZ .framer-9qv468 > :first-child, .framer-xfPHZ .framer-1j9yjqc > :first-child, .framer-xfPHZ .framer-2vzpqr > :first-child, .framer-xfPHZ .framer-8hvzic > :first-child, .framer-xfPHZ .framer-usdzsf > :first-child { margin-top: 0px; } .framer-xfPHZ.framer-1ijgq5 > :last-child, .framer-xfPHZ .framer-1sa1mxa > :last-child, .framer-xfPHZ .framer-gvdxjh > :last-child, .framer-xfPHZ .framer-1e0wug3 > :last-child, .framer-xfPHZ .framer-1fmcfo8 > :last-child, .framer-xfPHZ .framer-kv0cfm > :last-child, .framer-xfPHZ .framer-1wfz25j > :last-child, .framer-xfPHZ .framer-v3m9ei > :last-child, .framer-xfPHZ .framer-18h50lz > :last-child, .framer-xfPHZ .framer-1p7svpw > :last-child, .framer-xfPHZ .framer-1j9t9lh > :last-child, .framer-xfPHZ .framer-10b9ygh > :last-child, .framer-xfPHZ .framer-1julxnk > :last-child, .framer-xfPHZ .framer-1dr5od2 > :last-child, .framer-xfPHZ .framer-iv7lmv > :last-child, .framer-xfPHZ .framer-vu152a > :last-child, .framer-xfPHZ .framer-q2ryw5 > :last-child, .framer-xfPHZ .framer-i1l2rl > :last-child, .framer-xfPHZ .framer-13owode > :last-child, .framer-xfPHZ .framer-1r2874i > :last-child, .framer-xfPHZ .framer-pul76y > :last-child, .framer-xfPHZ .framer-1xqhuyn > :last-child, .framer-xfPHZ .framer-10dd8c8 > :last-child, .framer-xfPHZ .framer-ye45bp > :last-child, .framer-xfPHZ .framer-19bs3ke > :last-child, .framer-xfPHZ .framer-wsqg6i > :last-child, .framer-xfPHZ .framer-mlg0zz > :last-child, .framer-xfPHZ .framer-enzviq > :last-child, .framer-xfPHZ .framer-7ekp51 > :last-child, .framer-xfPHZ .framer-1eks3u4 > :last-child, .framer-xfPHZ .framer-ssuu8o > :last-child, .framer-xfPHZ .framer-1vp7nbu > :last-child, .framer-xfPHZ .framer-1m0xeko > :last-child, .framer-xfPHZ .framer-9qv468 > :last-child, .framer-xfPHZ .framer-1j9yjqc > :last-child, .framer-xfPHZ .framer-2vzpqr > :last-child, .framer-xfPHZ .framer-8hvzic > :last-child, .framer-xfPHZ .framer-usdzsf > :last-child { margin-bottom: 0px; } .framer-xfPHZ .framer-1sa1mxa > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-xfPHZ .framer-gvdxjh > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-xfPHZ .framer-1wopcg0 > *, .framer-xfPHZ .framer-13zag25 > *, .framer-xfPHZ .framer-1w33l1k > *, .framer-xfPHZ .framer-16mjzp3 > *, .framer-xfPHZ .framer-178g9ch > *, .framer-xfPHZ .framer-1rgih21 > *, .framer-xfPHZ .framer-1r8yzil > *, .framer-xfPHZ .framer-1xo5l4 > *, .framer-xfPHZ .framer-1uog2ts > *, .framer-xfPHZ .framer-e0xqz5 > *, .framer-xfPHZ .framer-1dlpsjk > *, .framer-xfPHZ .framer-sqr0y2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xfPHZ .framer-1wopcg0 > :first-child, .framer-xfPHZ .framer-1j1fnt9 > :first-child, .framer-xfPHZ .framer-1owfcd4 > :first-child, .framer-xfPHZ .framer-w3xbr7 > :first-child, .framer-xfPHZ .framer-13zag25 > :first-child, .framer-xfPHZ .framer-1m8godw > :first-child, .framer-xfPHZ .framer-1w33l1k > :first-child, .framer-xfPHZ .framer-1obrz86 > :first-child, .framer-xfPHZ .framer-y1lc0a > :first-child, .framer-xfPHZ .framer-4qplx7 > :first-child, .framer-xfPHZ .framer-16mjzp3 > :first-child, .framer-xfPHZ .framer-178g9ch > :first-child, .framer-xfPHZ .framer-x36k8a > :first-child, .framer-xfPHZ .framer-1hl73b3 > :first-child, .framer-xfPHZ .framer-ug6akz > :first-child, .framer-xfPHZ .framer-1rgih21 > :first-child, .framer-xfPHZ .framer-1r8yzil > :first-child, .framer-xfPHZ .framer-1l8xyij > :first-child, .framer-xfPHZ .framer-143a1ks > :first-child, .framer-xfPHZ .framer-15bb15d > :first-child, .framer-xfPHZ .framer-9er7mh > :first-child, .framer-xfPHZ .framer-1xo5l4 > :first-child, .framer-xfPHZ .framer-1uog2ts > :first-child, .framer-xfPHZ .framer-1fkvd7i > :first-child, .framer-xfPHZ .framer-1v90067 > :first-child, .framer-xfPHZ .framer-1l5fnvj > :first-child, .framer-xfPHZ .framer-e0xqz5 > :first-child, .framer-xfPHZ .framer-1dlpsjk > :first-child, .framer-xfPHZ .framer-11awjro > :first-child, .framer-xfPHZ .framer-yhj1h3 > :first-child, .framer-xfPHZ .framer-8kc7ho > :first-child, .framer-xfPHZ .framer-kfjihn > :first-child, .framer-xfPHZ .framer-sqr0y2 > :first-child { margin-left: 0px; } .framer-xfPHZ .framer-1wopcg0 > :last-child, .framer-xfPHZ .framer-1j1fnt9 > :last-child, .framer-xfPHZ .framer-1owfcd4 > :last-child, .framer-xfPHZ .framer-w3xbr7 > :last-child, .framer-xfPHZ .framer-13zag25 > :last-child, .framer-xfPHZ .framer-1m8godw > :last-child, .framer-xfPHZ .framer-1w33l1k > :last-child, .framer-xfPHZ .framer-1obrz86 > :last-child, .framer-xfPHZ .framer-y1lc0a > :last-child, .framer-xfPHZ .framer-4qplx7 > :last-child, .framer-xfPHZ .framer-16mjzp3 > :last-child, .framer-xfPHZ .framer-178g9ch > :last-child, .framer-xfPHZ .framer-x36k8a > :last-child, .framer-xfPHZ .framer-1hl73b3 > :last-child, .framer-xfPHZ .framer-ug6akz > :last-child, .framer-xfPHZ .framer-1rgih21 > :last-child, .framer-xfPHZ .framer-1r8yzil > :last-child, .framer-xfPHZ .framer-1l8xyij > :last-child, .framer-xfPHZ .framer-143a1ks > :last-child, .framer-xfPHZ .framer-15bb15d > :last-child, .framer-xfPHZ .framer-9er7mh > :last-child, .framer-xfPHZ .framer-1xo5l4 > :last-child, .framer-xfPHZ .framer-1uog2ts > :last-child, .framer-xfPHZ .framer-1fkvd7i > :last-child, .framer-xfPHZ .framer-1v90067 > :last-child, .framer-xfPHZ .framer-1l5fnvj > :last-child, .framer-xfPHZ .framer-e0xqz5 > :last-child, .framer-xfPHZ .framer-1dlpsjk > :last-child, .framer-xfPHZ .framer-11awjro > :last-child, .framer-xfPHZ .framer-yhj1h3 > :last-child, .framer-xfPHZ .framer-8kc7ho > :last-child, .framer-xfPHZ .framer-kfjihn > :last-child, .framer-xfPHZ .framer-sqr0y2 > :last-child { margin-right: 0px; } .framer-xfPHZ .framer-1j1fnt9 > *, .framer-xfPHZ .framer-1m8godw > *, .framer-xfPHZ .framer-x36k8a > *, .framer-xfPHZ .framer-1hl73b3 > *, .framer-xfPHZ .framer-1l8xyij > *, .framer-xfPHZ .framer-143a1ks > *, .framer-xfPHZ .framer-1fkvd7i > *, .framer-xfPHZ .framer-1v90067 > *, .framer-xfPHZ .framer-11awjro > *, .framer-xfPHZ .framer-yhj1h3 > *, .framer-xfPHZ .framer-8kc7ho > *, .framer-xfPHZ .framer-kfjihn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xfPHZ .framer-1e0wug3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xfPHZ .framer-1owfcd4 > *, .framer-xfPHZ .framer-w3xbr7 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-xfPHZ .framer-kv0cfm > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-xfPHZ .framer-1wfz25j > *, .framer-xfPHZ .framer-1j9yjqc > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xfPHZ .framer-1obrz86 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-xfPHZ .framer-v3m9ei > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xfPHZ .framer-y1lc0a > *, .framer-xfPHZ .framer-15bb15d > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-xfPHZ .framer-4qplx7 > *, .framer-xfPHZ .framer-ug6akz > *, .framer-xfPHZ .framer-9er7mh > *, .framer-xfPHZ .framer-1l5fnvj > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-xfPHZ .framer-1j9t9lh > *, .framer-xfPHZ .framer-1dr5od2 > *, .framer-xfPHZ .framer-q2ryw5 > *, .framer-xfPHZ .framer-1r2874i > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-xfPHZ .framer-10dd8c8 > *, .framer-xfPHZ .framer-enzviq > *, .framer-xfPHZ .framer-ssuu8o > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xfPHZ .framer-ye45bp > *, .framer-xfPHZ .framer-wsqg6i > *, .framer-xfPHZ .framer-7ekp51 > *, .framer-xfPHZ .framer-1vp7nbu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xfPHZ .framer-1m0xeko > * { margin: 0px; margin-bottom: calc(110px / 2); margin-top: calc(110px / 2); } .framer-xfPHZ .framer-9qv468 > *, .framer-xfPHZ .framer-2vzpqr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",`@media (min-width: 1200px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-xfPHZ { background: var(--token-b51326bc-cd89-4367-ad09-5363e02d2ef9, rgb(20, 20, 20)) /* {\"name\":\"Background\"} */; } .framer-xfPHZ.framer-1ijgq5 { width: 1200px; } .framer-xfPHZ .framer-1sa1mxa { gap: 30px; max-width: 1200px; } .framer-xfPHZ .framer-gvdxjh { gap: 0px; } .framer-xfPHZ .framer-uv0wth { flex: 1200 0 0px; width: 1px; } .framer-xfPHZ .framer-1xl06vd { order: 0; } .framer-xfPHZ .framer-1abs5iq { order: 1; } .framer-xfPHZ .framer-kv0cfm { padding: 80px 40px 0px 40px; } .framer-xfPHZ .framer-10dd8c8, .framer-xfPHZ .framer-ssuu8o { height: var(--framer-aspect-ratio-supported, 453px); } .framer-xfPHZ .framer-1c4tjoo { height: var(--framer-aspect-ratio-supported, 451px); } .framer-xfPHZ .framer-enzviq { height: var(--framer-aspect-ratio-supported, 447px); } .framer-xfPHZ .framer-10hgxyk, .framer-xfPHZ .framer-dzureo, .framer-xfPHZ .framer-cvcotv { max-width: 80%; } .framer-xfPHZ .framer-sqr0y2 { gap: 34px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xfPHZ .framer-1sa1mxa, .framer-xfPHZ .framer-gvdxjh, .framer-xfPHZ .framer-sqr0y2 { gap: 0px; } .framer-xfPHZ .framer-1sa1mxa > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xfPHZ .framer-1sa1mxa > :first-child, .framer-xfPHZ .framer-gvdxjh > :first-child { margin-top: 0px; } .framer-xfPHZ .framer-1sa1mxa > :last-child, .framer-xfPHZ .framer-gvdxjh > :last-child { margin-bottom: 0px; } .framer-xfPHZ .framer-gvdxjh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xfPHZ .framer-sqr0y2 > * { margin: 0px; margin-left: calc(34px / 2); margin-right: calc(34px / 2); } .framer-xfPHZ .framer-sqr0y2 > :first-child { margin-left: 0px; } .framer-xfPHZ .framer-sqr0y2 > :last-child { margin-right: 0px; } }}`,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-xfPHZ { background: var(--token-b51326bc-cd89-4367-ad09-5363e02d2ef9, rgb(20, 20, 20)) /* {\"name\":\"Background\"} */; } .framer-xfPHZ.framer-1ijgq5 { width: 810px; } .framer-xfPHZ .framer-t4dh44-container, .framer-xfPHZ .framer-1xl06vd, .framer-xfPHZ .framer-bpeveb { order: 0; } .framer-xfPHZ .framer-fxeobf, .framer-xfPHZ .framer-1vbs66n { order: 4; } .framer-xfPHZ .framer-1sa1mxa { gap: 30px; padding: 0px 30px 0px 30px; } .framer-xfPHZ .framer-gvdxjh { gap: 0px; } .framer-xfPHZ .framer-uv0wth { flex: 1 0 0px; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25); width: 1px; } .framer-xfPHZ .framer-1e0wug3 { flex: none; width: 90%; } .framer-xfPHZ .framer-1abs5iq, .framer-xfPHZ .framer-16jsta7 { order: 1; } .framer-xfPHZ .framer-3o0k5g { padding: 0px 30px 0px 30px; } .framer-xfPHZ .framer-13zag25, .framer-xfPHZ .framer-9btbdp { order: 5; } .framer-xfPHZ .framer-1w33l1k { padding: 0px 20px 0px 20px; } .framer-xfPHZ .framer-1fmcfo8 { order: 6; } .framer-xfPHZ .framer-kv0cfm { gap: 60px; padding: 60px 30px 0px 30px; } .framer-xfPHZ .framer-1wfz25j { gap: 40px; } .framer-xfPHZ .framer-qrzndu { gap: 20px; } .framer-xfPHZ .framer-10dd8c8, .framer-xfPHZ .framer-1c4tjoo, .framer-xfPHZ .framer-enzviq, .framer-xfPHZ .framer-ssuu8o { aspect-ratio: unset; height: 300px; } .framer-xfPHZ .framer-ye45bp { height: 194px; justify-content: flex-start; } .framer-xfPHZ .framer-wsqg6i, .framer-xfPHZ .framer-7ekp51, .framer-xfPHZ .framer-1vp7nbu { height: 194px; } .framer-xfPHZ .framer-8kc7ho { padding: 140px 0px 140px 0px; } .framer-xfPHZ .framer-1m0xeko { gap: 100px; padding: 0px 30px 0px 30px; } .framer-xfPHZ .framer-10hgxyk, .framer-xfPHZ .framer-dzureo, .framer-xfPHZ .framer-cvcotv { max-width: 100%; } .framer-xfPHZ .framer-sqr0y2 { flex-direction: column; gap: 40px; padding: 100px 30px 0px 30px; } .framer-xfPHZ .framer-2vzpqr { gap: 30px; order: 0; } .framer-xfPHZ .framer-pv76da { order: 2; } .framer-xfPHZ .framer-xbvcb6 { order: 3; } .framer-xfPHZ .framer-8hvzic { order: 8; } .framer-xfPHZ .framer-usdzsf { padding: 140px 30px 30px 30px; } .framer-xfPHZ .framer-9axbk6-container { order: 9; } .framer-xfPHZ .framer-6kes0j-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xfPHZ .framer-1sa1mxa, .framer-xfPHZ .framer-gvdxjh, .framer-xfPHZ .framer-kv0cfm, .framer-xfPHZ .framer-1wfz25j, .framer-xfPHZ .framer-qrzndu, .framer-xfPHZ .framer-1m0xeko, .framer-xfPHZ .framer-sqr0y2, .framer-xfPHZ .framer-2vzpqr { gap: 0px; } .framer-xfPHZ .framer-1sa1mxa > *, .framer-xfPHZ .framer-2vzpqr > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xfPHZ .framer-1sa1mxa > :first-child, .framer-xfPHZ .framer-gvdxjh > :first-child, .framer-xfPHZ .framer-kv0cfm > :first-child, .framer-xfPHZ .framer-1wfz25j > :first-child, .framer-xfPHZ .framer-1m0xeko > :first-child, .framer-xfPHZ .framer-sqr0y2 > :first-child, .framer-xfPHZ .framer-2vzpqr > :first-child { margin-top: 0px; } .framer-xfPHZ .framer-1sa1mxa > :last-child, .framer-xfPHZ .framer-gvdxjh > :last-child, .framer-xfPHZ .framer-kv0cfm > :last-child, .framer-xfPHZ .framer-1wfz25j > :last-child, .framer-xfPHZ .framer-1m0xeko > :last-child, .framer-xfPHZ .framer-sqr0y2 > :last-child, .framer-xfPHZ .framer-2vzpqr > :last-child { margin-bottom: 0px; } .framer-xfPHZ .framer-gvdxjh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xfPHZ .framer-kv0cfm > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-xfPHZ .framer-1wfz25j > *, .framer-xfPHZ .framer-sqr0y2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xfPHZ .framer-qrzndu > *, .framer-xfPHZ .framer-qrzndu > :first-child, .framer-xfPHZ .framer-qrzndu > :last-child { margin: 0px; } .framer-xfPHZ .framer-1m0xeko > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-xfPHZ { background: var(--token-b51326bc-cd89-4367-ad09-5363e02d2ef9, rgb(20, 20, 20)) /* {\"name\":\"Background\"} */; } .framer-xfPHZ.framer-1ijgq5 { width: 390px; } .framer-xfPHZ .framer-fxeobf { gap: 100px; height: 574px; justify-content: flex-start; padding: 0px; } .framer-xfPHZ .framer-1sa1mxa { gap: 20px; padding: 0px 20px 0px 20px; } .framer-xfPHZ .framer-gvdxjh { gap: 0px; } .framer-xfPHZ .framer-uv0wth { flex: 1 0 0px; width: 1px; } .framer-xfPHZ .framer-13zag25 { height: 422px; padding: 0px 15px 0px 15px; position: relative; top: unset; } .framer-xfPHZ .framer-1m8godw { --border-bottom-width: 2px; --border-color: var(--token-75583af1-e41a-442d-84f1-bddf82ec0dcd, #262626); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; background-color: var(--token-b51326bc-cd89-4367-ad09-5363e02d2ef9, #141414); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; padding: 10px; will-change: var(--framer-will-change-override, transform); } .framer-xfPHZ .framer-1w33l1k { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 0px 15px 0px 15px; } .framer-xfPHZ .framer-kv0cfm { gap: 50px; padding: 140px 20px 0px 20px; } .framer-xfPHZ .framer-1wfz25j { align-content: center; align-items: center; } .framer-xfPHZ .framer-1obrz86 { justify-content: flex-start; overflow: hidden; } .framer-xfPHZ .framer-v3m9ei { min-height: unset; } .framer-xfPHZ .framer-y1lc0a, .framer-xfPHZ .framer-15bb15d { flex-direction: column; } .framer-xfPHZ .framer-4qplx7, .framer-xfPHZ .framer-ug6akz, .framer-xfPHZ .framer-9er7mh, .framer-xfPHZ .framer-1l5fnvj { flex: none; width: 100%; } .framer-xfPHZ .framer-18h50lz, .framer-xfPHZ .framer-10b9ygh, .framer-xfPHZ .framer-iv7lmv, .framer-xfPHZ .framer-i1l2rl { height: 336px; } .framer-xfPHZ .framer-127q543, .framer-xfPHZ .framer-h4r1hw, .framer-xfPHZ .framer-1jkwq42, .framer-xfPHZ .framer-2p0qx5 { height: 132px; } .framer-xfPHZ .framer-3krywo, .framer-xfPHZ .framer-1u8oicr { width: 100%; } .framer-xfPHZ .framer-1kxqdd8-container { top: calc(50.690161527165955% - 100% / 2); } .framer-xfPHZ .framer-8kc7ho { padding: 100px 0px 100px 0px; } .framer-xfPHZ .framer-1m0xeko { gap: 100px; padding: 0px 20px 0px 20px; } .framer-xfPHZ .framer-10hgxyk, .framer-xfPHZ .framer-dzureo, .framer-xfPHZ .framer-cvcotv { max-width: 100%; } .framer-xfPHZ .framer-sqr0y2 { align-content: center; align-items: center; flex-direction: column; gap: 30px; padding: 100px 20px 0px 20px; } .framer-xfPHZ .framer-2vzpqr { gap: 20px; order: 0; width: 100%; } .framer-xfPHZ .framer-usdzsf { gap: 40px; padding: 140px 20px 20px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xfPHZ .framer-fxeobf, .framer-xfPHZ .framer-1sa1mxa, .framer-xfPHZ .framer-gvdxjh, .framer-xfPHZ .framer-kv0cfm, .framer-xfPHZ .framer-y1lc0a, .framer-xfPHZ .framer-15bb15d, .framer-xfPHZ .framer-1m0xeko, .framer-xfPHZ .framer-sqr0y2, .framer-xfPHZ .framer-2vzpqr, .framer-xfPHZ .framer-usdzsf { gap: 0px; } .framer-xfPHZ .framer-fxeobf > *, .framer-xfPHZ .framer-1m0xeko > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-xfPHZ .framer-fxeobf > :first-child, .framer-xfPHZ .framer-1sa1mxa > :first-child, .framer-xfPHZ .framer-gvdxjh > :first-child, .framer-xfPHZ .framer-kv0cfm > :first-child, .framer-xfPHZ .framer-y1lc0a > :first-child, .framer-xfPHZ .framer-15bb15d > :first-child, .framer-xfPHZ .framer-1m0xeko > :first-child, .framer-xfPHZ .framer-sqr0y2 > :first-child, .framer-xfPHZ .framer-2vzpqr > :first-child, .framer-xfPHZ .framer-usdzsf > :first-child { margin-top: 0px; } .framer-xfPHZ .framer-fxeobf > :last-child, .framer-xfPHZ .framer-1sa1mxa > :last-child, .framer-xfPHZ .framer-gvdxjh > :last-child, .framer-xfPHZ .framer-kv0cfm > :last-child, .framer-xfPHZ .framer-y1lc0a > :last-child, .framer-xfPHZ .framer-15bb15d > :last-child, .framer-xfPHZ .framer-1m0xeko > :last-child, .framer-xfPHZ .framer-sqr0y2 > :last-child, .framer-xfPHZ .framer-2vzpqr > :last-child, .framer-xfPHZ .framer-usdzsf > :last-child { margin-bottom: 0px; } .framer-xfPHZ .framer-1sa1mxa > *, .framer-xfPHZ .framer-2vzpqr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xfPHZ .framer-gvdxjh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xfPHZ .framer-kv0cfm > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-xfPHZ .framer-y1lc0a > *, .framer-xfPHZ .framer-15bb15d > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xfPHZ .framer-sqr0y2 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-xfPHZ .framer-usdzsf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-xfPHZ[data-border=\"true\"]::after, .framer-xfPHZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7168\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UPcbz1AhJ\":{\"layout\":[\"fixed\",\"auto\"]},\"Jy3OnC3LA\":{\"layout\":[\"fixed\",\"auto\"]},\"cSOgc4Y2z\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framereg7DBWdS7=withCSS(Component,css,\"framer-xfPHZ\");export default Framereg7DBWdS7;Framereg7DBWdS7.displayName=\"Creative Agency Home\";Framereg7DBWdS7.defaultProps={height:7168,width:1440};addFonts(Framereg7DBWdS7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"}]},...NoiseFonts,...NavigationHeaderFonts,...InteractionComponentsLogoFonts,...TickerFonts,...NavigationFooterFonts,...SmoothScrollFonts,...ButtonFixedButtonFonts,...InteractionComponentsCircleCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framereg7DBWdS7\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"7168\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UPcbz1AhJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jy3OnC3LA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cSOgc4Y2z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "l", "cubicBezier", "__rest", "e", "r", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "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", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "se", "o", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "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", "keyframes", "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", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "logoImage", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "p5e5ODMJz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "Framerq8tmWAFQG", "withCSS", "q8tmWAFQG_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "NoiseFonts", "getFonts", "Noise", "NavigationHeaderFonts", "kLz1qyKjn_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "MotionSectionWithOptimizedAppearEffect", "MotionAWithFX", "InteractionComponentsLogoFonts", "q8tmWAFQG_default", "TickerFonts", "Ticker", "NavigationFooterFonts", "eKWa0D5_o_default", "SmoothScrollFonts", "SmoothScroll", "ButtonFixedButtonFonts", "eFSC8yOLx_default", "ContainerWithFX", "InteractionComponentsCircleCursorFonts", "DA_0dyf8d_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "animation3", "animation4", "animation5", "animation6", "transition4", "animation7", "animation8", "animation9", "animation10", "animation11", "animation12", "animation13", "transition5", "animation14", "transition6", "transition7", "animation15", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "cursor1", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "elementId1", "ref3", "ref4", "isDisplayed1", "elementId2", "ref5", "elementId3", "ref6", "isDisplayed2", "router", "useRouter", "ref7", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "x", "SVG", "getLoadingLazyAtYPosition", "Link", "ResolveLinks", "resolvedLinks", "css", "Framereg7DBWdS7", "withCSS", "eg7DBWdS7_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
