{
  "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.14.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/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/zhEy4VZfEKlFPzccrCyQ/G4N5wogNsTolxHBWQfxv/jhJl_aApf.js", "ssg:https://framerusercontent.com/modules/pIjdN9ClLeMgr0ZEGukM/TUoGzl1rFFos1ryOIcQt/L9iH6cpuF.js", "ssg:https://framerusercontent.com/modules/Pe6T2sviaArNVOYIqMLW/n2zxS0zZbBAnPGFgF8EC/gcWXyUTxt.js", "ssg:https://framerusercontent.com/modules/ok9yg3fOnzsrESXFKcVc/MHPNIFHMvWgakFRuzFN3/SGKTYOK6t.js", "ssg:https://framerusercontent.com/modules/5ScvaN962sG4dwSHll3B/rRPfkDvfuHYXMehWJSxw/WUPcCODow.js", "ssg:https://framerusercontent.com/modules/A8aelIoWrTfuPWQda14X/IWaQfOAGOLJiYwOK20aa/zr00Tmdx_.js", "ssg:https://framerusercontent.com/modules/E04Gya7mj3VCHJxlcp42/g1mWBieEQWMqtWjLXBQg/tAKeyHR37.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 directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (68f6254)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"WV4Q39lal\"];const serializationHash=\"framer-7FTAz\";const variantClassNames={WV4Q39lal:\"framer-v-1d2sm72\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WV4Q39lal\",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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1d2sm72\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WV4Q39lal\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-549522ba-b072-418e-b6ad-4d859020fe02, rgb(255, 255, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:49,borderBottomRightRadius:49,borderTopLeftRadius:49,borderTopRightRadius:49,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-549522ba-b072-418e-b6ad-4d859020fe02, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Visit\"})}),className:\"framer-2n5hoc\",\"data-framer-name\":\"Visit\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"yWT3k1psW\",style:{\"--extracted-r6o4lv\":\"var(--token-549522ba-b072-418e-b6ad-4d859020fe02, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7FTAz.framer-1t011zz, .framer-7FTAz .framer-1t011zz { display: block; }\",\".framer-7FTAz.framer-1d2sm72 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 80px; }\",\".framer-7FTAz .framer-2n5hoc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7FTAz.framer-1d2sm72 { gap: 0px; } .framer-7FTAz.framer-1d2sm72 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7FTAz.framer-1d2sm72 > :first-child { margin-left: 0px; } .framer-7FTAz.framer-1d2sm72 > :last-child { margin-right: 0px; } }\",'.framer-7FTAz[data-border=\"true\"]::after, .framer-7FTAz [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 80\n * @framerIntrinsicWidth 80\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjhJl_aApf=withCSS(Component,css,\"framer-7FTAz\");export default FramerjhJl_aApf;FramerjhJl_aApf.displayName=\"Visit Cursor\";FramerjhJl_aApf.defaultProps={height:80,width:80};addFonts(FramerjhJl_aApf,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjhJl_aApf\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"80\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jhJl_aApf.map", "// Generated by Framer (d2515d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bxL7809M4xwkyaKt9gxb/RAwinYBn3gfkxVSug1vq/mHZTUGTIl.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/s6pBLqSIakDCMwApSzQS/mJNoqiolwhAJsoZ1d4QL/r4FWVX3ld.js\";const enabledGestures={be5rXISAq:{hover:true},fWaiyS4wv:{hover:true},mtT5UuQN5:{hover:true},oh0f9_08D:{hover:true},Y4bmIiMmw:{hover:true}};const cycleOrder=[\"oh0f9_08D\",\"fWaiyS4wv\",\"Y4bmIiMmw\",\"mtT5UuQN5\",\"be5rXISAq\"];const serializationHash=\"framer-USrTa\";const variantClassNames={be5rXISAq:\"framer-v-o33bez\",fWaiyS4wv:\"framer-v-1eie1z6\",mtT5UuQN5:\"framer-v-dwgd8a\",oh0f9_08D:\"framer-v-1u4fuc4\",Y4bmIiMmw:\"framer-v-15zdlxq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Project Card 1\":\"oh0f9_08D\",\"Project Card 2\":\"fWaiyS4wv\",\"Project Card 3\":\"Y4bmIiMmw\",\"Project Card 4\":\"mtT5UuQN5\",\"Project Card 5\":\"be5rXISAq\"};const getProps=({cursor,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,S1ZA_r5TM:cursor!==null&&cursor!==void 0?cursor:props.S1ZA_r5TM,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"oh0f9_08D\"};};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,S1ZA_r5TM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oh0f9_08D\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nJa4NWmq6\"},openInNewTab:false,...addPropertyOverrides({be5rXISAq:{href:{webPageId:\"ozNheCL2N\"}},fWaiyS4wv:{href:{webPageId:\"IJMXxDbxL\"}},mtT5UuQN5:{href:{webPageId:\"DBDSlcyhw\"}},Y4bmIiMmw:{href:{webPageId:\"rTxqrVM0Z\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1u4fuc4\",className,classNames)} framer-5gyack`,\"data-framer-cursor\":S1ZA_r5TM,\"data-framer-name\":\"Project Card 1\",layoutDependency:layoutDependency,layoutId:\"oh0f9_08D\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"be5rXISAq-hover\":{\"data-framer-name\":undefined},\"fWaiyS4wv-hover\":{\"data-framer-name\":undefined},\"mtT5UuQN5-hover\":{\"data-framer-name\":undefined},\"oh0f9_08D-hover\":{\"data-framer-name\":undefined},\"Y4bmIiMmw-hover\":{\"data-framer-name\":undefined},be5rXISAq:{\"data-framer-name\":\"Project Card 5\"},fWaiyS4wv:{\"data-framer-name\":\"Project Card 2\"},mtT5UuQN5:{\"data-framer-name\":\"Project Card 4\"},Y4bmIiMmw:{\"data-framer-name\":\"Project Card 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3100,intrinsicWidth:4e3,pixelHeight:1068,pixelWidth:1600,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px)`,src:\"https://framerusercontent.com/images/mlh8KxaLygbx6zFUaKLR6ue0p98.webp\",srcSet:\"https://framerusercontent.com/images/mlh8KxaLygbx6zFUaKLR6ue0p98.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mlh8KxaLygbx6zFUaKLR6ue0p98.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/mlh8KxaLygbx6zFUaKLR6ue0p98.webp 1600w\"},className:\"framer-63jxfq\",\"data-framer-name\":\"Frame 7\",layoutDependency:layoutDependency,layoutId:\"HHtilwdi6\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},...addPropertyOverrides({be5rXISAq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,pixelHeight:800,pixelWidth:1e3,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px)`,src:\"https://framerusercontent.com/images/o7JfJEOyH40YNRQrayf7wHpMw4.webp\",srcSet:\"https://framerusercontent.com/images/o7JfJEOyH40YNRQrayf7wHpMw4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/o7JfJEOyH40YNRQrayf7wHpMw4.webp 1000w\"}},fWaiyS4wv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3240,intrinsicWidth:3240,pixelHeight:1440,pixelWidth:1920,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px)`,src:\"https://framerusercontent.com/images/ah5YOYR7gLZwf7sgeYfOTLOyTxI.webp\",srcSet:\"https://framerusercontent.com/images/ah5YOYR7gLZwf7sgeYfOTLOyTxI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ah5YOYR7gLZwf7sgeYfOTLOyTxI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ah5YOYR7gLZwf7sgeYfOTLOyTxI.webp 1920w\"}},mtT5UuQN5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,pixelHeight:1080,pixelWidth:1080,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px)`,src:\"https://framerusercontent.com/images/syk2ZhQLVDs8SBEfX8MlzoVnibc.webp\",srcSet:\"https://framerusercontent.com/images/syk2ZhQLVDs8SBEfX8MlzoVnibc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/syk2ZhQLVDs8SBEfX8MlzoVnibc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/syk2ZhQLVDs8SBEfX8MlzoVnibc.webp 1080w\"}},Y4bmIiMmw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3252,intrinsicWidth:3840,pixelHeight:1080,pixelWidth:1080,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px)`,src:\"https://framerusercontent.com/images/f85yQGbszY0P27yKsDCEv8l91g0.jpg\",srcSet:\"https://framerusercontent.com/images/f85yQGbszY0P27yKsDCEv8l91g0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f85yQGbszY0P27yKsDCEv8l91g0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f85yQGbszY0P27yKsDCEv8l91g0.jpg 1080w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1or2lw9\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"bPE_7IQaT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v8mmhm\",\"data-framer-name\":\"Frame 9\",layoutDependency:layoutDependency,layoutId:\"wigbkOKOj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1smtk5b\",\"data-styles-preset\":\"r4FWVX3ld\",children:\"Mekkala Thai\"})}),className:\"framer-b6h2q5\",\"data-framer-name\":\"Potato Finance\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xHQSt2HoX\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({be5rXISAq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1smtk5b\",\"data-styles-preset\":\"r4FWVX3ld\",children:\"Noble Pet Adoption\"})})},fWaiyS4wv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1smtk5b\",\"data-styles-preset\":\"r4FWVX3ld\",children:\"Work Truck Solutions\"})})},mtT5UuQN5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1smtk5b\",\"data-styles-preset\":\"r4FWVX3ld\",children:\"Green Performance\"})})},Y4bmIiMmw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1smtk5b\",\"data-styles-preset\":\"r4FWVX3ld\",children:\"Local Synergy\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Web Design, Product Packaging\"})}),className:\"framer-1ilse6y\",\"data-framer-name\":\"Web App | Fintech\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aEG8za7ge\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({be5rXISAq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"App Design\"})})},fWaiyS4wv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Layout & Print Design\"})})},mtT5UuQN5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Web Design\"})})},Y4bmIiMmw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"App & Web Design\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-549cod\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"q5TqXkFU9\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"fWaiyS4wv-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"},\"mtT5UuQN5-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"},\"oh0f9_08D-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"},\"Y4bmIiMmw-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-orzwfh\",\"data-framer-name\":\"Frame 8\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"V_zH8zdBV\",opacity:1,radius:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 50\"><path d=\"M 39.781 25.531 L 33.031 32.281 C 32.89 32.421 32.699 32.5 32.5 32.5 C 32.301 32.5 32.11 32.421 31.969 32.281 C 31.829 32.14 31.75 31.949 31.75 31.75 C 31.75 31.551 31.829 31.36 31.969 31.219 L 37.44 25.75 L 22.75 25.75 C 22.551 25.75 22.36 25.671 22.22 25.53 C 22.079 25.39 22 25.199 22 25 C 22 24.801 22.079 24.61 22.22 24.47 C 22.36 24.329 22.551 24.25 22.75 24.25 L 37.44 24.25 L 31.969 18.781 C 31.829 18.64 31.75 18.449 31.75 18.25 C 31.75 18.051 31.829 17.86 31.969 17.719 C 32.11 17.579 32.301 17.5 32.5 17.5 C 32.699 17.5 32.89 17.579 33.031 17.719 L 39.781 24.469 C 39.85 24.539 39.906 24.622 39.943 24.713 C 39.981 24.804 40.001 24.901 40.001 25 C 40.001 25.099 39.981 25.196 39.943 25.287 C 39.906 25.378 39.85 25.461 39.781 25.531 Z\" fill=\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"></path></svg>',svgContentId:8700403182,withExternalLayout:true,...addPropertyOverrides({\"fWaiyS4wv-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 50\"><path d=\"M 39.781 25.531 L 33.031 32.281 C 32.89 32.421 32.699 32.5 32.5 32.5 C 32.301 32.5 32.11 32.421 31.969 32.281 C 31.829 32.14 31.75 31.949 31.75 31.75 C 31.75 31.551 31.829 31.36 31.969 31.219 L 37.44 25.75 L 22.75 25.75 C 22.551 25.75 22.36 25.671 22.22 25.53 C 22.079 25.39 22 25.199 22 25 C 22 24.801 22.079 24.61 22.22 24.47 C 22.36 24.329 22.551 24.25 22.75 24.25 L 37.44 24.25 L 31.969 18.781 C 31.829 18.64 31.75 18.449 31.75 18.25 C 31.75 18.051 31.829 17.86 31.969 17.719 C 32.11 17.579 32.301 17.5 32.5 17.5 C 32.699 17.5 32.89 17.579 33.031 17.719 L 39.781 24.469 C 39.85 24.539 39.906 24.622 39.943 24.713 C 39.981 24.804 40.001 24.901 40.001 25 C 40.001 25.099 39.981 25.196 39.943 25.287 C 39.906 25.378 39.85 25.461 39.781 25.531 Z\" fill=\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"></path></svg>',svgContentId:12368662749},\"mtT5UuQN5-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 50\"><path d=\"M 39.781 25.531 L 33.031 32.281 C 32.89 32.421 32.699 32.5 32.5 32.5 C 32.301 32.5 32.11 32.421 31.969 32.281 C 31.829 32.14 31.75 31.949 31.75 31.75 C 31.75 31.551 31.829 31.36 31.969 31.219 L 37.44 25.75 L 22.75 25.75 C 22.551 25.75 22.36 25.671 22.22 25.53 C 22.079 25.39 22 25.199 22 25 C 22 24.801 22.079 24.61 22.22 24.47 C 22.36 24.329 22.551 24.25 22.75 24.25 L 37.44 24.25 L 31.969 18.781 C 31.829 18.64 31.75 18.449 31.75 18.25 C 31.75 18.051 31.829 17.86 31.969 17.719 C 32.11 17.579 32.301 17.5 32.5 17.5 C 32.699 17.5 32.89 17.579 33.031 17.719 L 39.781 24.469 C 39.85 24.539 39.906 24.622 39.943 24.713 C 39.981 24.804 40.001 24.901 40.001 25 C 40.001 25.099 39.981 25.196 39.943 25.287 C 39.906 25.378 39.85 25.461 39.781 25.531 Z\" fill=\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"></path></svg>',svgContentId:12368662749},\"oh0f9_08D-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 50\"><path d=\"M 39.781 25.531 L 33.031 32.281 C 32.89 32.421 32.699 32.5 32.5 32.5 C 32.301 32.5 32.11 32.421 31.969 32.281 C 31.829 32.14 31.75 31.949 31.75 31.75 C 31.75 31.551 31.829 31.36 31.969 31.219 L 37.44 25.75 L 22.75 25.75 C 22.551 25.75 22.36 25.671 22.22 25.53 C 22.079 25.39 22 25.199 22 25 C 22 24.801 22.079 24.61 22.22 24.47 C 22.36 24.329 22.551 24.25 22.75 24.25 L 37.44 24.25 L 31.969 18.781 C 31.829 18.64 31.75 18.449 31.75 18.25 C 31.75 18.051 31.829 17.86 31.969 17.719 C 32.11 17.579 32.301 17.5 32.5 17.5 C 32.699 17.5 32.89 17.579 33.031 17.719 L 39.781 24.469 C 39.85 24.539 39.906 24.622 39.943 24.713 C 39.981 24.804 40.001 24.901 40.001 25 C 40.001 25.099 39.981 25.196 39.943 25.287 C 39.906 25.378 39.85 25.461 39.781 25.531 Z\" fill=\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"></path></svg>',svgContentId:12368662749},\"Y4bmIiMmw-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 50\"><path d=\"M 39.781 25.531 L 33.031 32.281 C 32.89 32.421 32.699 32.5 32.5 32.5 C 32.301 32.5 32.11 32.421 31.969 32.281 C 31.829 32.14 31.75 31.949 31.75 31.75 C 31.75 31.551 31.829 31.36 31.969 31.219 L 37.44 25.75 L 22.75 25.75 C 22.551 25.75 22.36 25.671 22.22 25.53 C 22.079 25.39 22 25.199 22 25 C 22 24.801 22.079 24.61 22.22 24.47 C 22.36 24.329 22.551 24.25 22.75 24.25 L 37.44 24.25 L 31.969 18.781 C 31.829 18.64 31.75 18.449 31.75 18.25 C 31.75 18.051 31.829 17.86 31.969 17.719 C 32.11 17.579 32.301 17.5 32.5 17.5 C 32.699 17.5 32.89 17.579 33.031 17.719 L 39.781 24.469 C 39.85 24.539 39.906 24.622 39.943 24.713 C 39.981 24.804 40.001 24.901 40.001 25 C 40.001 25.099 39.981 25.196 39.943 25.287 C 39.906 25.378 39.85 25.461 39.781 25.531 Z\" fill=\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"></path></svg>',svgContentId:12368662749}},baseVariant,gestureVariant)})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-USrTa.framer-5gyack, .framer-USrTa .framer-5gyack { display: block; }\",\".framer-USrTa.framer-1u4fuc4 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px; position: relative; text-decoration: none; width: 586px; }\",\".framer-USrTa .framer-63jxfq { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.0588235294117647 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 544px); justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-USrTa .framer-1or2lw9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-USrTa .framer-v8mmhm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-USrTa .framer-b6h2q5, .framer-USrTa .framer-1ilse6y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-USrTa .framer-549cod { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 62px; }\",\".framer-USrTa .framer-orzwfh { flex: none; height: 50px; position: relative; width: 62px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-USrTa.framer-1u4fuc4, .framer-USrTa .framer-63jxfq, .framer-USrTa .framer-v8mmhm, .framer-USrTa .framer-549cod { gap: 0px; } .framer-USrTa.framer-1u4fuc4 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-USrTa.framer-1u4fuc4 > :first-child, .framer-USrTa .framer-v8mmhm > :first-child { margin-top: 0px; } .framer-USrTa.framer-1u4fuc4 > :last-child, .framer-USrTa .framer-v8mmhm > :last-child { margin-bottom: 0px; } .framer-USrTa .framer-63jxfq > *, .framer-USrTa .framer-549cod > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-USrTa .framer-63jxfq > :first-child, .framer-USrTa .framer-549cod > :first-child { margin-left: 0px; } .framer-USrTa .framer-63jxfq > :last-child, .framer-USrTa .framer-549cod > :last-child { margin-right: 0px; } .framer-USrTa .framer-v8mmhm > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-USrTa.framer-v-o33bez .framer-63jxfq { height: var(--framer-aspect-ratio-supported, 189px); }\",...sharedStyle.css,...sharedStyle1.css,'.framer-USrTa[data-border=\"true\"]::after, .framer-USrTa [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 644\n * @framerIntrinsicWidth 586\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fWaiyS4wv\":{\"layout\":[\"fixed\",\"auto\"]},\"Y4bmIiMmw\":{\"layout\":[\"fixed\",\"auto\"]},\"mtT5UuQN5\":{\"layout\":[\"fixed\",\"auto\"]},\"be5rXISAq\":{\"layout\":[\"fixed\",\"auto\"]},\"vnCgR4Nw7\":{\"layout\":[\"fixed\",\"auto\"]},\"TTUPQj92s\":{\"layout\":[\"fixed\",\"auto\"]},\"m2OOFeuC0\":{\"layout\":[\"fixed\",\"auto\"]},\"apSVUgPau\":{\"layout\":[\"fixed\",\"auto\"]},\"Np7Bl3ug6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"S1ZA_r5TM\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerL9iH6cpuF=withCSS(Component,css,\"framer-USrTa\");export default FramerL9iH6cpuF;FramerL9iH6cpuF.displayName=\"Project Card\";FramerL9iH6cpuF.defaultProps={height:644,width:586};addPropertyControls(FramerL9iH6cpuF,{variant:{options:[\"oh0f9_08D\",\"fWaiyS4wv\",\"Y4bmIiMmw\",\"mtT5UuQN5\",\"be5rXISAq\"],optionTitles:[\"Project Card 1\",\"Project Card 2\",\"Project Card 3\",\"Project Card 4\",\"Project Card 5\"],title:\"Variant\",type:ControlType.Enum},S1ZA_r5TM:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerL9iH6cpuF,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL9iH6cpuF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"586\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fWaiyS4wv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y4bmIiMmw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mtT5UuQN5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"be5rXISAq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vnCgR4Nw7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TTUPQj92s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m2OOFeuC0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"apSVUgPau\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Np7Bl3ug6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"644\",\"framerVariables\":\"{\\\"S1ZA_r5TM\\\":\\\"cursor\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1d71865)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;TGS Perfect Condensed\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"TGS Perfect Condensed\",source:\"custom\",url:\"https://framerusercontent.com/assets/OpJMRzWLkBxXv4sWgamHzC4.woff2\"}]}];export const css=['.framer-w0WTV .framer-styles-preset-1cx1ew2:not(.rich-text-wrapper), .framer-w0WTV .framer-styles-preset-1cx1ew2.rich-text-wrapper h3 { --framer-font-family: \"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 105%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, #060608); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-w0WTV .framer-styles-preset-1cx1ew2:not(.rich-text-wrapper), .framer-w0WTV .framer-styles-preset-1cx1ew2.rich-text-wrapper h3 { --framer-font-family: \"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 105%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, #060608); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-w0WTV .framer-styles-preset-1cx1ew2:not(.rich-text-wrapper), .framer-w0WTV .framer-styles-preset-1cx1ew2.rich-text-wrapper h3 { --framer-font-family: \"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 105%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, #060608); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-w0WTV\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/9d5glhavbXD4GVpenVyk/utVjaBrqjKbtlp0jPDqf/CL4sLDRA1.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Pe6T2sviaArNVOYIqMLW/n2zxS0zZbBAnPGFgF8EC/gcWXyUTxt.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/bxL7809M4xwkyaKt9gxb/RAwinYBn3gfkxVSug1vq/mHZTUGTIl.js\";const cycleOrder=[\"FBz38I54P\",\"T8EkImCoT\",\"OLSwIu9BO\",\"YQcsMijKL\",\"U4fHt9XIl\",\"CSeyg0Hfr\",\"oaWqogKWG\",\"ZDuvwg9JV\",\"mvqqFG5Oo\",\"bqz1SqsV1\",\"lLQxIGXHJ\",\"VZlFJgy5M\",\"MtNn50OoN\",\"BNZQSpJOo\",\"eqgUY36or\",\"i62_Ye8QV\",\"jq1ba2Qto\",\"ba8zl_EKb\"];const serializationHash=\"framer-GisB9\";const variantClassNames={ba8zl_EKb:\"framer-v-1jnb9h2\",BNZQSpJOo:\"framer-v-lpg2rq\",bqz1SqsV1:\"framer-v-hjtx9r\",CSeyg0Hfr:\"framer-v-npsw0b\",eqgUY36or:\"framer-v-5a1k90\",FBz38I54P:\"framer-v-wbaxo2\",i62_Ye8QV:\"framer-v-y9njgp\",jq1ba2Qto:\"framer-v-xz5a4i\",lLQxIGXHJ:\"framer-v-q0x2nk\",MtNn50OoN:\"framer-v-6nmlqw\",mvqqFG5Oo:\"framer-v-lqisyr\",oaWqogKWG:\"framer-v-1t9diul\",OLSwIu9BO:\"framer-v-uc41rs\",T8EkImCoT:\"framer-v-1737nzk\",U4fHt9XIl:\"framer-v-1sfybfx\",VZlFJgy5M:\"framer-v-1b60e4v\",YQcsMijKL:\"framer-v-gjh9mh\",ZDuvwg9JV:\"framer-v-18oewci\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Additional Training | Desktop\":\"i62_Ye8QV\",\"Additional Training | Mobile\":\"ba8zl_EKb\",\"Additional Training | Tablet\":\"jq1ba2Qto\",\"College | Desktop\":\"MtNn50OoN\",\"College | Mobile\":\"eqgUY36or\",\"College | Tablet\":\"BNZQSpJOo\",\"Design By Humans | Desktop\":\"OLSwIu9BO\",\"Design By Humans | Mobile\":\"mvqqFG5Oo\",\"Design By Humans Tablet\":\"CSeyg0Hfr\",\"Fifth Sun | Desktop\":\"T8EkImCoT\",\"Fifth Sun | Mobile\":\"ZDuvwg9JV\",\"Fifth Sun | Tablet\":\"U4fHt9XIl\",\"Marine Corps | Desktop\":\"bqz1SqsV1\",\"Marine Corps | Mobile\":\"VZlFJgy5M\",\"Marine Corps | Tablet\":\"lLQxIGXHJ\",\"Work Truck Solutions | Desktop\":\"FBz38I54P\",\"Work Truck Solutions | Mobile\":\"oaWqogKWG\",\"Work Truck Solutions| Tablet\":\"YQcsMijKL\"};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:\"FBz38I54P\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FBz38I54P\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"i62_Ye8QV\",\"jq1ba2Qto\",\"ba8zl_EKb\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wbaxo2\",className,classNames),\"data-framer-name\":\"Work Truck Solutions | Desktop\",layoutDependency:layoutDependency,layoutId:\"FBz38I54P\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ba8zl_EKb:{\"data-framer-name\":\"Additional Training | Mobile\"},BNZQSpJOo:{\"data-framer-name\":\"College | Tablet\"},bqz1SqsV1:{\"data-framer-name\":\"Marine Corps | Desktop\"},CSeyg0Hfr:{\"data-framer-name\":\"Design By Humans Tablet\"},eqgUY36or:{\"data-framer-name\":\"College | Mobile\"},i62_Ye8QV:{\"data-framer-name\":\"Additional Training | Desktop\"},jq1ba2Qto:{\"data-framer-name\":\"Additional Training | Tablet\"},lLQxIGXHJ:{\"data-framer-name\":\"Marine Corps | Tablet\"},MtNn50OoN:{\"data-framer-name\":\"College | Desktop\"},mvqqFG5Oo:{\"data-framer-name\":\"Design By Humans | Mobile\"},oaWqogKWG:{\"data-framer-name\":\"Work Truck Solutions | Mobile\"},OLSwIu9BO:{\"data-framer-name\":\"Design By Humans | Desktop\"},T8EkImCoT:{\"data-framer-name\":\"Fifth Sun | Desktop\"},U4fHt9XIl:{\"data-framer-name\":\"Fifth Sun | Tablet\"},VZlFJgy5M:{\"data-framer-name\":\"Marine Corps | Mobile\"},YQcsMijKL:{\"data-framer-name\":\"Work Truck Solutions| Tablet\"},ZDuvwg9JV:{\"data-framer-name\":\"Fifth Sun | Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f3whjg\",\"data-framer-name\":\"Frame 36\",layoutDependency:layoutDependency,layoutId:\"V1HT2fJI0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p59qmq\",\"data-framer-name\":\"Frame 35\",layoutDependency:layoutDependency,layoutId:\"QMrrDTsc3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\" Sep 2020 - Current\"})}),className:\"framer-sky6sr\",\"data-framer-name\":\"Sep, 2023 - Current\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XPG3HHQl7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ba8zl_EKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"MAY 2024\"})})},BNZQSpJOo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"MAY 2012\"})})},bqz1SqsV1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JAN 2004 - Jan 2008\"})})},CSeyg0Hfr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"March 2012 - JAN 2019\"})})},eqgUY36or:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"MAY 2012\"})})},i62_Ye8QV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"MAY 2024\"})})},jq1ba2Qto:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"MAY 2024\"})})},lLQxIGXHJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JAN 2004 - Jan 2008\"})})},MtNn50OoN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"MAY 2012\"})})},mvqqFG5Oo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"March 2012 - JAN 2019\"})})},OLSwIu9BO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"March 2012 - JAN 2019\"})})},T8EkImCoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JAN 2019 - SEP 2020\"})})},U4fHt9XIl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JAN 2019 - SEP 2020\"})})},VZlFJgy5M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JAN 2004 - Jan 2008\"})})},ZDuvwg9JV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JAN 2019 - SEP 2020\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"Creative Director, Work Truck Solutions\"})}),className:\"framer-m6dh8n\",\"data-framer-name\":\"Product Designer, Coinbase\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SmH3EJaQt\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ba8zl_EKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:/*#__PURE__*/_jsxs(motion.strong,{children:[\"Google Project \",/*#__PURE__*/_jsx(motion.br,{}),\"Management\"]})})}),fonts:[\"Inter\",\"Inter-Bold\"]},BNZQSpJOo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"BA Communication Design, Graphic Design\"})})},bqz1SqsV1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"Active-Duty Sergeant, U.S. Marine Corps\"})})},CSeyg0Hfr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"Senior Designer, Design By Humans\"})})},eqgUY36or:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:[\"BA Communication Design, \",/*#__PURE__*/_jsx(motion.br,{}),\"Graphic Design\"]})})},i62_Ye8QV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Google Project Management\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},jq1ba2Qto:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Google Project Management\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},lLQxIGXHJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"Active-Duty Sergeant, U.S. Marine Corps\"})})},MtNn50OoN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"BA Communication Design, Graphic Design\"})})},mvqqFG5Oo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:[\"Senior Designer, \",/*#__PURE__*/_jsx(motion.br,{}),\"Design By Humans\"]})})},oaWqogKWG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:[\"Creative Director, \",/*#__PURE__*/_jsx(motion.br,{}),\"Work Truck Solutions\"]})})},OLSwIu9BO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"Senior Designer, Design By Humans\"})})},T8EkImCoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"Lead Designer, Fifth Sun\"})})},U4fHt9XIl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"Lead Designer, Fifth Sun\"})})},VZlFJgy5M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:[\"Active-Duty Sergeant, \",/*#__PURE__*/_jsx(motion.br,{}),\"U.S. Marine Corps\"]})})},ZDuvwg9JV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:\"Lead Designer, Fifth Sun\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Provide creative leadership for marketing, sales, and SaaS product teams, elevating marketing materials, design systems, print media, and motion graphics. Increasing YoY sales growth by 19%.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Optimized interaction design and content engagement strategies for inbound/outbound marketing user flows based on user research, yielding a substantial 18% growth in lead generation.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Created large-scale convention booth graphics and motion graphics for displays, contributing to a 21% increase in booth visitor interactions.\"})})]})}),className:\"framer-66xv1k\",\"data-framer-name\":\"Designed and implemented a new email template that effectively communicated important updates and information to users, resulting in a 50% increase in open rates and click-through rates.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cHszox062\",style:{\"--framer-paragraph-spacing\":\"12px\"},variants:{i62_Ye8QV:{\"--extracted-r6o4lv\":\"var(--token-97e10153-8e0d-4d5d-8424-6afa5f4e8bac, rgb(92, 92, 106))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ba8zl_EKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Google Certificate\"})})},BNZQSpJOo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"California State University, Chico\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},bqz1SqsV1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Operated in combat environments, performed individual and team patrol movements, mounted and dismounted. Performed tactical drills, vehicle convoys, and other technical operations.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Received the Navy-Marine Corps Achievement medal in recognition of outstanding job proficiency and unwavering commitment to mission success.\"})})]})})},CSeyg0Hfr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Co-directed a design team promoting high-profile brands, including Star Wars, Marvel, NASA, and Nintendo, yielding a significant 21% increase in brand visibility.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Instructed junior designers and international artists in creative direction and technical development with Adobe Photoshop, Illustrator, and InDesign, leading to a 10% increase in project turnaround times.\\xa0\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Spearheaded in-house product and lifestyle photography, resulting in a 20% cost reduction through efficient internal resource utilization.\"})})]})})},eqgUY36or:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"California State University, Chico\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},i62_Ye8QV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-97e10153-8e0d-4d5d-8424-6afa5f4e8bac, rgb(92, 92, 106)))\"},children:\"Google Certificate\"})})},jq1ba2Qto:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Google Certificate\"})})},lLQxIGXHJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Operated in combat environments, performed individual and team patrol movements, mounted and dismounted. Performed tactical drills, vehicle convoys, and other technical operations.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Received the Navy-Marine Corps Achievement medal in recognition of outstanding job proficiency and unwavering commitment to mission success.\"})})]})})},MtNn50OoN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"California State University, Chico\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},mvqqFG5Oo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Co-directed a design team promoting high-profile brands, including Star Wars, Marvel, NASA, and Nintendo, yielding a significant 21% increase in brand visibility.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Instructed junior designers and international artists in creative direction and technical development with Adobe Photoshop, Illustrator, and InDesign, leading to a 10% increase in project turnaround times.\\xa0\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Spearheaded in-house product and lifestyle photography, resulting in a 20% cost reduction through efficient internal resource utilization.\"})})]})})},OLSwIu9BO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Co-directed a design team promoting high-profile brands, including Star Wars, Marvel, NASA, and Nintendo, yielding a significant 21% increase in brand visibility.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Instructed junior designers and international artists in creative direction and technical development with Adobe Photoshop, Illustrator, and InDesign, leading to a 10% increase in project turnaround times.\\xa0\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Spearheaded in-house product and lifestyle photography, resulting in a 20% cost reduction through efficient internal resource utilization.\"})})]})})},T8EkImCoT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Co-managed the creation of website landing pages, promotional graphics, and printed materials, achieving a 17% YoY increase in website traffic and a 16% YoY rise in product sales.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Researched and communicated technical guidance for major licenses, reinforcing visual consistency and ensuring stringent compliance, resulting in a 100% adherence rate to brand standards.\\xa0\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Implemented automated and ad hoc email and e-newsletter campaigns, enhancing engagement that resulted in a 19% YoY increase in product sales.\"})})]})})},U4fHt9XIl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Co-managed the creation of website landing pages, promotional graphics, and printed materials, achieving a 17% YoY increase in website traffic and a 16% YoY rise in product sales.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Researched and communicated technical guidance for major licenses, reinforcing visual consistency and ensuring stringent compliance, resulting in a 100% adherence rate to brand standards.\\xa0\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Implemented automated and ad hoc email and e-newsletter campaigns, enhancing engagement that resulted in a 19% YoY increase in product sales.\"})})]})})},VZlFJgy5M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Operated in combat environments, performed individual and team patrol movements, mounted and dismounted. Performed tactical drills, vehicle convoys, and other technical operations.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Received the Navy-Marine Corps Achievement medal in recognition of outstanding job proficiency and unwavering commitment to mission success.\"})})]})})},ZDuvwg9JV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Co-managed the creation of website landing pages, promotional graphics, and printed materials, achieving a 17% YoY increase in website traffic and a 16% YoY rise in product sales.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Researched and communicated technical guidance for major licenses, reinforcing visual consistency and ensuring stringent compliance, resulting in a 100% adherence rate to brand standards.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),\"  \"]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Implemented automated and ad hoc email and e-newsletter campaigns, enhancing engagement that resulted in a 19% YoY increase in product sales.\"})})]})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l2xd8j\",\"data-framer-name\":\"Frame 35\",layoutDependency:layoutDependency,layoutId:\"yj1oLPDUU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"JUNE 2023\"})}),className:\"framer-18afmwf\",\"data-framer-name\":\"Sep, 2023 - Current\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t8xqf2ZU2\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Google UX DESIGN\"})})}),className:\"framer-1zxokr\",\"data-framer-name\":\"Product Designer, Coinbase\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"mTHCzNqnF\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-97e10153-8e0d-4d5d-8424-6afa5f4e8bac, rgb(92, 92, 106)))\"},children:\"Google Certificate\"})}),className:\"framer-r3oll4\",\"data-framer-name\":\"Designed and implemented a new email template that effectively communicated important updates and information to users, resulting in a 50% increase in open rates and click-through rates.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vjyzOUAL4\",style:{\"--extracted-r6o4lv\":\"var(--token-97e10153-8e0d-4d5d-8424-6afa5f4e8bac, rgb(92, 92, 106))\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ba8zl_EKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Google Certificate\"})})},jq1ba2Qto:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Google Certificate\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-59eg3x\",\"data-framer-name\":\"Frame 35\",layoutDependency:layoutDependency,layoutId:\"vUSZrLS9u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-eguqas\",\"data-styles-preset\":\"CL4sLDRA1\",children:\"AUGUST 2022\"})}),className:\"framer-6ow73j\",\"data-framer-name\":\"Sep, 2023 - Current\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z7QBNec7L\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1cx1ew2\",\"data-styles-preset\":\"gcWXyUTxt\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"FRONT END WEB DEVELOPMENT\"})})}),className:\"framer-to2y\",\"data-framer-name\":\"Product Designer, Coinbase\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"vhv6hImbq\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-97e10153-8e0d-4d5d-8424-6afa5f4e8bac, rgb(92, 92, 106)))\"},children:\"VetsinTech Certificate\"})}),className:\"framer-buyvpp\",\"data-framer-name\":\"Designed and implemented a new email template that effectively communicated important updates and information to users, resulting in a 50% increase in open rates and click-through rates.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N8Rhq5ROu\",style:{\"--extracted-r6o4lv\":\"var(--token-97e10153-8e0d-4d5d-8424-6afa5f4e8bac, rgb(92, 92, 106))\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ba8zl_EKb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"VetsinTech Certificate\"})})},jq1ba2Qto:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"VetsinTech Certificate\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GisB9.framer-1s402r9, .framer-GisB9 .framer-1s402r9 { display: block; }\",\".framer-GisB9.framer-wbaxo2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-GisB9 .framer-f3whjg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GisB9 .framer-1p59qmq, .framer-GisB9 .framer-l2xd8j, .framer-GisB9 .framer-59eg3x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GisB9 .framer-sky6sr, .framer-GisB9 .framer-18afmwf, .framer-GisB9 .framer-6ow73j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GisB9 .framer-m6dh8n, .framer-GisB9 .framer-1zxokr, .framer-GisB9 .framer-to2y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GisB9 .framer-66xv1k { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GisB9 .framer-r3oll4, .framer-GisB9 .framer-buyvpp { --framer-text-wrap: balance; flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GisB9.framer-wbaxo2, .framer-GisB9 .framer-f3whjg, .framer-GisB9 .framer-1p59qmq, .framer-GisB9 .framer-l2xd8j, .framer-GisB9 .framer-59eg3x { gap: 0px; } .framer-GisB9.framer-wbaxo2 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-GisB9.framer-wbaxo2 > :first-child { margin-left: 0px; } .framer-GisB9.framer-wbaxo2 > :last-child { margin-right: 0px; } .framer-GisB9 .framer-f3whjg > *, .framer-GisB9 .framer-1p59qmq > *, .framer-GisB9 .framer-l2xd8j > *, .framer-GisB9 .framer-59eg3x > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-GisB9 .framer-f3whjg > :first-child, .framer-GisB9 .framer-1p59qmq > :first-child, .framer-GisB9 .framer-l2xd8j > :first-child, .framer-GisB9 .framer-59eg3x > :first-child { margin-top: 0px; } .framer-GisB9 .framer-f3whjg > :last-child, .framer-GisB9 .framer-1p59qmq > :last-child, .framer-GisB9 .framer-l2xd8j > :last-child, .framer-GisB9 .framer-59eg3x > :last-child { margin-bottom: 0px; } }\",\".framer-GisB9.framer-v-1t9diul.framer-wbaxo2 { align-content: flex-start; align-items: flex-start; flex-direction: column; flex-wrap: wrap; max-width: unset; }\",\".framer-GisB9.framer-v-1t9diul .framer-f3whjg, .framer-GisB9.framer-v-18oewci .framer-f3whjg, .framer-GisB9.framer-v-lqisyr .framer-f3whjg, .framer-GisB9.framer-v-1b60e4v .framer-f3whjg { flex: none; width: 100%; }\",\".framer-GisB9.framer-v-1t9diul .framer-sky6sr, .framer-GisB9.framer-v-1b60e4v .framer-sky6sr { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GisB9.framer-v-1t9diul.framer-wbaxo2 { gap: 0px; } .framer-GisB9.framer-v-1t9diul.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GisB9.framer-v-1t9diul.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-GisB9.framer-v-1t9diul.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\".framer-GisB9.framer-v-18oewci.framer-wbaxo2, .framer-GisB9.framer-v-lqisyr.framer-wbaxo2, .framer-GisB9.framer-v-1b60e4v.framer-wbaxo2 { align-content: flex-start; align-items: flex-start; flex-direction: column; width: 900px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GisB9.framer-v-18oewci.framer-wbaxo2 { gap: 0px; } .framer-GisB9.framer-v-18oewci.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GisB9.framer-v-18oewci.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-GisB9.framer-v-18oewci.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GisB9.framer-v-lqisyr.framer-wbaxo2 { gap: 0px; } .framer-GisB9.framer-v-lqisyr.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GisB9.framer-v-lqisyr.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-GisB9.framer-v-lqisyr.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GisB9.framer-v-1b60e4v.framer-wbaxo2 { gap: 0px; } .framer-GisB9.framer-v-1b60e4v.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GisB9.framer-v-1b60e4v.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-GisB9.framer-v-1b60e4v.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\".framer-GisB9.framer-v-5a1k90.framer-wbaxo2, .framer-GisB9.framer-v-1jnb9h2.framer-wbaxo2 { align-content: flex-start; align-items: flex-start; flex-direction: column; width: min-content; }\",\".framer-GisB9.framer-v-5a1k90 .framer-f3whjg { flex: none; flex-wrap: wrap; overflow: hidden; width: 1200px; }\",\".framer-GisB9.framer-v-5a1k90 .framer-1p59qmq, .framer-GisB9.framer-v-xz5a4i .framer-l2xd8j, .framer-GisB9.framer-v-xz5a4i .framer-59eg3x, .framer-GisB9.framer-v-1jnb9h2 .framer-1p59qmq { flex-wrap: wrap; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GisB9.framer-v-5a1k90.framer-wbaxo2 { gap: 0px; } .framer-GisB9.framer-v-5a1k90.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GisB9.framer-v-5a1k90.framer-wbaxo2 > :first-child { margin-top: 0px; } .framer-GisB9.framer-v-5a1k90.framer-wbaxo2 > :last-child { margin-bottom: 0px; } }\",\".framer-GisB9.framer-v-y9njgp .framer-f3whjg, .framer-GisB9.framer-v-xz5a4i .framer-f3whjg { gap: 44px; }\",\".framer-GisB9.framer-v-y9njgp .framer-66xv1k { --framer-text-wrap: balance; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GisB9.framer-v-y9njgp .framer-f3whjg { gap: 0px; } .framer-GisB9.framer-v-y9njgp .framer-f3whjg > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-GisB9.framer-v-y9njgp .framer-f3whjg > :first-child { margin-top: 0px; } .framer-GisB9.framer-v-y9njgp .framer-f3whjg > :last-child { margin-bottom: 0px; } }\",\".framer-GisB9.framer-v-xz5a4i .framer-r3oll4, .framer-GisB9.framer-v-xz5a4i .framer-buyvpp, .framer-GisB9.framer-v-1jnb9h2 .framer-r3oll4, .framer-GisB9.framer-v-1jnb9h2 .framer-buyvpp { --framer-text-wrap-override: balance; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GisB9.framer-v-xz5a4i .framer-f3whjg { gap: 0px; } .framer-GisB9.framer-v-xz5a4i .framer-f3whjg > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-GisB9.framer-v-xz5a4i .framer-f3whjg > :first-child { margin-top: 0px; } .framer-GisB9.framer-v-xz5a4i .framer-f3whjg > :last-child { margin-bottom: 0px; } }\",\".framer-GisB9.framer-v-1jnb9h2 .framer-f3whjg { flex: none; flex-wrap: wrap; gap: 44px; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GisB9.framer-v-1jnb9h2.framer-wbaxo2, .framer-GisB9.framer-v-1jnb9h2 .framer-f3whjg { gap: 0px; } .framer-GisB9.framer-v-1jnb9h2.framer-wbaxo2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GisB9.framer-v-1jnb9h2.framer-wbaxo2 > :first-child, .framer-GisB9.framer-v-1jnb9h2 .framer-f3whjg > :first-child { margin-top: 0px; } .framer-GisB9.framer-v-1jnb9h2.framer-wbaxo2 > :last-child, .framer-GisB9.framer-v-1jnb9h2 .framer-f3whjg > :last-child { margin-bottom: 0px; } .framer-GisB9.framer-v-1jnb9h2 .framer-f3whjg > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 289\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"T8EkImCoT\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"OLSwIu9BO\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"YQcsMijKL\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"U4fHt9XIl\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"CSeyg0Hfr\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"oaWqogKWG\":{\"layout\":[\"fixed\",\"auto\"]},\"ZDuvwg9JV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"mvqqFG5Oo\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"bqz1SqsV1\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"lLQxIGXHJ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"VZlFJgy5M\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"MtNn50OoN\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"BNZQSpJOo\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"eqgUY36or\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"i62_Ye8QV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"jq1ba2Qto\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"ba8zl_EKb\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSGKTYOK6t=withCSS(Component,css,\"framer-GisB9\");export default FramerSGKTYOK6t;FramerSGKTYOK6t.displayName=\"Experience\";FramerSGKTYOK6t.defaultProps={height:289,width:1200};addPropertyControls(FramerSGKTYOK6t,{variant:{options:[\"FBz38I54P\",\"T8EkImCoT\",\"OLSwIu9BO\",\"YQcsMijKL\",\"U4fHt9XIl\",\"CSeyg0Hfr\",\"oaWqogKWG\",\"ZDuvwg9JV\",\"mvqqFG5Oo\",\"bqz1SqsV1\",\"lLQxIGXHJ\",\"VZlFJgy5M\",\"MtNn50OoN\",\"BNZQSpJOo\",\"eqgUY36or\",\"i62_Ye8QV\",\"jq1ba2Qto\",\"ba8zl_EKb\"],optionTitles:[\"Work Truck Solutions | Desktop\",\"Fifth Sun | Desktop\",\"Design By Humans | Desktop\",\"Work Truck Solutions| Tablet\",\"Fifth Sun | Tablet\",\"Design By Humans Tablet\",\"Work Truck Solutions | Mobile\",\"Fifth Sun | Mobile\",\"Design By Humans | Mobile\",\"Marine Corps | Desktop\",\"Marine Corps | Tablet\",\"Marine Corps | Mobile\",\"College | Desktop\",\"College | Tablet\",\"College | Mobile\",\"Additional Training | Desktop\",\"Additional Training | Tablet\",\"Additional Training | Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSGKTYOK6t,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSGKTYOK6t\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"T8EkImCoT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"OLSwIu9BO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"YQcsMijKL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"U4fHt9XIl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"CSeyg0Hfr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"oaWqogKWG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZDuvwg9JV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"mvqqFG5Oo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"bqz1SqsV1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"lLQxIGXHJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"VZlFJgy5M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"MtNn50OoN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"BNZQSpJOo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"eqgUY36or\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"i62_Ye8QV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"jq1ba2Qto\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"ba8zl_EKb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"289\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68f6254)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={OKKq1Dx9i:{hover:true},SSmbu1nN4:{hover:true}};const cycleOrder=[\"OKKq1Dx9i\",\"SSmbu1nN4\"];const serializationHash=\"framer-2PS5q\";const variantClassNames={OKKq1Dx9i:\"framer-v-1ra6v9g\",SSmbu1nN4:\"framer-v-cgafel\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Hire Me\":\"SSmbu1nN4\",\"Visit Link\":\"OKKq1Dx9i\"};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:\"OKKq1Dx9i\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OKKq1Dx9i\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"OKKq1Dx9i-hover\",\"SSmbu1nN4-hover\"].includes(gestureVariant))return true;if(baseVariant===\"SSmbu1nN4\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/smithinteracts/\",openInNewTab:true,...addPropertyOverrides({SSmbu1nN4:{href:\"mailto: josh@smithinteracts.com\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ra6v9g\",className,classNames)} framer-9swwau`,\"data-border\":true,\"data-framer-name\":\"Visit Link\",layoutDependency:layoutDependency,layoutId:\"OKKq1Dx9i\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"OKKq1Dx9i-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"},\"SSmbu1nN4-hover\":{backgroundColor:\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"}},...addPropertyOverrides({\"OKKq1Dx9i-hover\":{\"data-framer-name\":undefined},\"SSmbu1nN4-hover\":{\"data-framer-name\":undefined},SSmbu1nN4:{\"data-framer-name\":\"Hire Me\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:\"Visit Link\"})}),className:\"framer-hy9lsg\",\"data-framer-name\":\"Visit Link\",fonts:[\"GF;Inter Tight-regular\"],layoutDependency:layoutDependency,layoutId:\"edRiTELvf\",style:{\"--extracted-r6o4lv\":\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"OKKq1Dx9i-hover\":{\"--extracted-r6o4lv\":\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"},\"SSmbu1nN4-hover\":{\"--extracted-r6o4lv\":\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"OKKq1Dx9i-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)))\"},children:\"Visit Link\"})})},\"SSmbu1nN4-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)))\"},children:\"Hire Me\"})})},SSmbu1nN4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8)))\"},children:\"Hire Me\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-88is16\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kazHZqXTi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 10\"><path d=\"M 11.854 5.354 L 7.354 9.854 C 7.26 9.948 7.133 10 7 10 C 6.867 10 6.74 9.948 6.646 9.854 C 6.552 9.76 6.5 9.633 6.5 9.5 C 6.5 9.367 6.552 9.24 6.646 9.146 L 10.293 5.5 L 0.5 5.5 C 0.367 5.5 0.24 5.447 0.146 5.354 C 0.053 5.26 0 5.133 0 5 C 0 4.867 0.053 4.74 0.146 4.646 C 0.24 4.553 0.367 4.5 0.5 4.5 L 10.293 4.5 L 6.646 0.854 C 6.552 0.76 6.5 0.633 6.5 0.5 C 6.5 0.367 6.552 0.24 6.646 0.146 C 6.74 0.052 6.867 0 7 0 C 7.133 0 7.26 0.052 7.354 0.146 L 11.854 4.646 C 11.9 4.693 11.937 4.748 11.962 4.809 C 11.987 4.869 12 4.934 12 5 C 12 5.066 11.987 5.131 11.962 5.191 C 11.937 5.252 11.9 5.307 11.854 5.354 Z\" fill=\"var(--token-d6376f5b-0896-4d8d-8a71-1f8876d694f4, rgb(6, 6, 8))\"></path></svg>',svgContentId:10981607630,withExternalLayout:true,...addPropertyOverrides({\"OKKq1Dx9i-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 10\"><path d=\"M 11.854 5.354 L 7.354 9.854 C 7.26 9.948 7.133 10 7 10 C 6.867 10 6.74 9.948 6.646 9.854 C 6.552 9.76 6.5 9.633 6.5 9.5 C 6.5 9.367 6.552 9.24 6.646 9.146 L 10.293 5.5 L 0.5 5.5 C 0.367 5.5 0.24 5.447 0.146 5.354 C 0.053 5.26 0 5.133 0 5 C 0 4.867 0.053 4.74 0.146 4.646 C 0.24 4.553 0.367 4.5 0.5 4.5 L 10.293 4.5 L 6.646 0.854 C 6.552 0.76 6.5 0.633 6.5 0.5 C 6.5 0.367 6.552 0.24 6.646 0.146 C 6.74 0.052 6.867 0 7 0 C 7.133 0 7.26 0.052 7.354 0.146 L 11.854 4.646 C 11.9 4.693 11.937 4.748 11.962 4.809 C 11.987 4.869 12 4.934 12 5 C 12 5.066 11.987 5.131 11.962 5.191 C 11.937 5.252 11.9 5.307 11.854 5.354 Z\" fill=\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"></path></svg>',svgContentId:9153439109},\"SSmbu1nN4-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 10\"><path d=\"M 11.854 5.354 L 7.354 9.854 C 7.26 9.948 7.133 10 7 10 C 6.867 10 6.74 9.948 6.646 9.854 C 6.552 9.76 6.5 9.633 6.5 9.5 C 6.5 9.367 6.552 9.24 6.646 9.146 L 10.293 5.5 L 0.5 5.5 C 0.367 5.5 0.24 5.447 0.146 5.354 C 0.053 5.26 0 5.133 0 5 C 0 4.867 0.053 4.74 0.146 4.646 C 0.24 4.553 0.367 4.5 0.5 4.5 L 10.293 4.5 L 6.646 0.854 C 6.552 0.76 6.5 0.633 6.5 0.5 C 6.5 0.367 6.552 0.24 6.646 0.146 C 6.74 0.052 6.867 0 7 0 C 7.133 0 7.26 0.052 7.354 0.146 L 11.854 4.646 C 11.9 4.693 11.937 4.748 11.962 4.809 C 11.987 4.869 12 4.934 12 5 C 12 5.066 11.987 5.131 11.962 5.191 C 11.937 5.252 11.9 5.307 11.854 5.354 Z\" fill=\"var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253))\"></path></svg>',svgContentId:9153439109},SSmbu1nN4:{svgContentId:8897025623}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2PS5q.framer-9swwau, .framer-2PS5q .framer-9swwau { display: block; }\",\".framer-2PS5q.framer-1ra6v9g { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 10px 18px 10px 18px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-2PS5q .framer-hy9lsg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2PS5q .framer-88is16 { flex: none; height: 10px; position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2PS5q.framer-1ra6v9g { gap: 0px; } .framer-2PS5q.framer-1ra6v9g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2PS5q.framer-1ra6v9g > :first-child { margin-left: 0px; } .framer-2PS5q.framer-1ra6v9g > :last-child { margin-right: 0px; } }\",'.framer-2PS5q[data-border=\"true\"]::after, .framer-2PS5q [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 48\n * @framerIntrinsicWidth 96\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"SSmbu1nN4\":{\"layout\":[\"auto\",\"fixed\"]},\"qNhBIfAu7\":{\"layout\":[\"auto\",\"fixed\"]},\"zMsmGvRAf\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWUPcCODow=withCSS(Component,css,\"framer-2PS5q\");export default FramerWUPcCODow;FramerWUPcCODow.displayName=\"Button\";FramerWUPcCODow.defaultProps={height:48,width:96};addPropertyControls(FramerWUPcCODow,{variant:{options:[\"OKKq1Dx9i\",\"SSmbu1nN4\"],optionTitles:[\"Visit Link\",\"Hire Me\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWUPcCODow,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWUPcCODow\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"96\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SSmbu1nN4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"qNhBIfAu7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zMsmGvRAf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WUPcCODow.map", "// Generated by Framer (68f6254)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"CoKONKGFq\",\"FW8JnloXI\",\"xC4pRIlXn\",\"ik9BeqfNt\",\"TZ9qLzyOR\",\"ALkAFfwbN\",\"v4MORcBmZ\",\"bG1H_NXqD\",\"njMu2Ve3l\",\"G44rJqtd1\",\"QUK57sBTq\"];const serializationHash=\"framer-sYFkX\";const variantClassNames={ALkAFfwbN:\"framer-v-1ngz7ry\",bG1H_NXqD:\"framer-v-yb582r\",CoKONKGFq:\"framer-v-puzouf\",FW8JnloXI:\"framer-v-yj2bor\",G44rJqtd1:\"framer-v-y3fmc6\",ik9BeqfNt:\"framer-v-1q4zxgp\",njMu2Ve3l:\"framer-v-rxjuig\",QUK57sBTq:\"framer-v-yr8jh2\",TZ9qLzyOR:\"framer-v-1qtyfxa\",v4MORcBmZ:\"framer-v-1ztoz2\",xC4pRIlXn:\"framer-v-139vplz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Adobe After Effects\":\"ALkAFfwbN\",\"Adobe InDesign\":\"TZ9qLzyOR\",\"Adobe Premiere\":\"v4MORcBmZ\",\"Adobe XD\":\"bG1H_NXqD\",\"spline 3D\":\"njMu2Ve3l\",css:\"G44rJqtd1\",Figma:\"CoKONKGFq\",Framer:\"FW8JnloXI\",html:\"QUK57sBTq\",Illustrator:\"ik9BeqfNt\",Photoshop:\"xC4pRIlXn\"};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:\"CoKONKGFq\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CoKONKGFq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"QUK57sBTq\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"G44rJqtd1\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"njMu2Ve3l\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"bG1H_NXqD\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"ALkAFfwbN\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"v4MORcBmZ\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"TZ9qLzyOR\")return true;return false;};const isDisplayed7=()=>{if([\"FW8JnloXI\",\"xC4pRIlXn\",\"ik9BeqfNt\",\"TZ9qLzyOR\",\"ALkAFfwbN\",\"v4MORcBmZ\",\"bG1H_NXqD\",\"njMu2Ve3l\",\"G44rJqtd1\",\"QUK57sBTq\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if(baseVariant===\"FW8JnloXI\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"xC4pRIlXn\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"ik9BeqfNt\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-puzouf\",className,classNames),\"data-framer-name\":\"Figma\",layoutDependency:layoutDependency,layoutId:\"CoKONKGFq\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(255, 255, 255))\",borderBottomLeftRadius:19,borderBottomRightRadius:19,borderTopLeftRadius:19,borderTopRightRadius:19,...style},...addPropertyOverrides({ALkAFfwbN:{\"data-framer-name\":\"Adobe After Effects\"},bG1H_NXqD:{\"data-framer-name\":\"Adobe XD\"},FW8JnloXI:{\"data-framer-name\":\"Framer\"},G44rJqtd1:{\"data-framer-name\":\"css\"},ik9BeqfNt:{\"data-framer-name\":\"Illustrator\"},njMu2Ve3l:{\"data-framer-name\":\"spline 3D\"},QUK57sBTq:{\"data-framer-name\":\"html\"},TZ9qLzyOR:{\"data-framer-name\":\"Adobe InDesign\"},v4MORcBmZ:{\"data-framer-name\":\"Adobe Premiere\"},xC4pRIlXn:{\"data-framer-name\":\"Photoshop\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1360enc\",\"data-framer-name\":\"html5\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"yHSQ9n0WU\",svg:'<svg height=\"512\" style=\"enable-background:new 0 0 512 512\" width=\"512\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\"><rect height=\"512\" rx=\"70\" ry=\"70\" style=\"fill:#e44d26;fill-opacity:1;stroke:none\" transform=\"scale(-1)\" width=\"512\" x=\"-512\" y=\"-512\"/><path style=\"fill:#fff;fill-rule:evenodd\" transform=\"translate(44.508 44.096) scale(.82614)\" d=\"m255.8 486.486 133.449-36.997 29.689-332.58H93.063l29.656 332.633z\"/><path d=\"M-353.997 163.215h-12.804v-13.829h-13.995v41.876h13.996v-14.023h12.803v14.023h13.996v-41.876h-13.997v13.829zm20.08.058h12.323v27.989h13.997v-27.99h12.327v-13.886h-38.646v13.887zm68.352.827-8.978-14.714h-14.594v41.876h13.695v-20.756l9.636 14.89h.24l9.63-14.89v20.756h13.938v-41.876h-14.6l-8.967 14.714zm44.534 13.32v-28.034h-14v41.876h33.684V177.42h-19.684z\" style=\"fill:#fff;fill-rule:evenodd\" transform=\"translate(612.426 -116.806) scale(1.22372)\"/><path d=\"M-360.5 255.75h138.25l-2.25 28.5h-105.75l3 27.5h99.5l-7 85.25-56 15.25L-347.5 397l-4.25-43.5H-324l2.25 21.5 30.75 8.75 30.75-8.75 3-35.25h-95.5z\" style=\"fill:#e44d26;fill-opacity:1;stroke:none\" transform=\"translate(612.025 -116.892) scale(1.22372)\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1gbygjz\",\"data-framer-name\":\"css3\",fill:\"black\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"gs1eXc_Sy\",svg:'<svg height=\"512\" style=\"enable-background:new 0 0 512 512\" width=\"512\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\"><rect height=\"512\" rx=\"70\" ry=\"70\" style=\"fill:#379ad6;fill-opacity:1;stroke:none\" transform=\"scale(-1)\" width=\"512\" x=\"-512\" y=\"-512\"/><path style=\"fill:#fff;fill-opacity:1;fill-rule:evenodd\" transform=\"translate(44.523 44.11) scale(.82608)\" d=\"m91.809 117.07 30.784 333.509 133.406 35.922 133.403-35.922 30.789-333.509z\"/><path style=\"fill:#fff;fill-opacity:1;fill-rule:evenodd\" transform=\"translate(44.523 44.11) scale(.82608)\" d=\"M255.997 144.084v313.768l.301.081 107.959-29.07 24.918-284.779z\"/><path d=\"M190.723 143.04h33.955v-13.279h-19.403v-13.298h19.403V101.91h-33.955v41.13zm48.466-26.577c4.543 4.543 6.912 6.717 13.483 13.289-3.84 0-13.483.014-13.483.012v13.277h33.958v-13.28l-13.564-13.298h13.564V101.91h-33.958v14.553zm82.088-14.553h-33.96v14.553c4.543 4.543 6.914 6.717 13.485 13.289-3.84 0-13.484.014-13.484.012v13.277h33.96v-13.28l-13.565-13.298h13.564V101.91z\" style=\"fill:#fff;fill-opacity:1;fill-rule:evenodd\" transform=\"translate(-59.66 -59.66) scale(1.23305)\"/><path d=\"m186.102 207.694 4 27.25 69.5-.5-67 28.25 1.75 27h95l-2.25 35.5-30.5 9.25-31-8.5-1.75-21.25h-27.25l3.5 41.75 55.75 16.25 56.75-15.75 7-84.25h-64.25l66.75-28.25 2-27z\" style=\"fill:#379ad6;fill-opacity:1;stroke:none\" transform=\"translate(-59.66 -59.66) scale(1.23305)\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:420,pixelHeight:420,pixelWidth:420,src:\"https://framerusercontent.com/images/Af8leQkH4c4uJnGyaykx6wj2ZZQ.png\"},className:\"framer-1u0k5lb\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"EaLgaEjHa\"}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-11nsa2g\",\"data-framer-name\":\"AdobeStock_375141824_Editorial_Use_Only_Converted_02\",fill:\"black\",intrinsicHeight:200,intrinsicWidth:200,layoutDependency:layoutDependency,layoutId:\"PYFj8Ur2O\",svg:'<svg data-name=\"1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 200 200\"><rect x=\"1.36\" y=\"1.36\" width=\"197.28\" height=\"197.28\" rx=\"34.5\" ry=\"34.5\" style=\"fill:#450336;stroke-width:0\"/><path d=\"m76.29 97.26 28.08 43.88c.54.68.14 1.22-.54 1.35H87.22c-1.08 0-1.62-.27-2.03-1.08l-20.52-33.75h-.14l-19.85 33.75c-.54.81-.95 1.08-1.76 1.08h-15.8c-.95 0-.95-.81-.54-1.35L54.26 98.2l-26.6-42.67c-.4-.68 0-1.08.54-1.08h16.47c.81 0 1.35 0 1.76.95l19.44 33.35H66L85.17 55.4c.41-.68.68-.95 1.76-.95h14.85c.81 0 1.08.68.68 1.49L76.27 97.26Zm32.54 13.1c0-19.58 14.45-34.84 37.4-34.84 3.11 0 5.4.27 7.7.95V47.71c0-.68.27-.94.81-.94h14.72c.54 0 .68.27.68.81v79.66c0 2.84.27 6.48.41 8.64.13.68 0 .95-.68 1.35-8.51 4.19-18.09 6.62-27 6.62-19.85 0-34.03-10.94-34.03-33.49Zm45.1-21.06c-2.02-.81-4.86-1.22-7.97-1.22-12.15 0-20.39 7.7-20.39 21.47 0 15.26 8.91 21.33 19.17 21.33 3.38 0 6.75-.54 9.18-1.35V89.29Z\" style=\"fill:#ff61f7;stroke-width:0\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-16nuz5c\",\"data-framer-name\":\"AdobeStock_375141824_Editorial_Use_Only_Converted_05\",fill:\"black\",intrinsicHeight:200,intrinsicWidth:200,layoutDependency:layoutDependency,layoutId:\"PScJj9hsM\",svg:'<svg data-name=\"1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 200 200\"><rect x=\"1.32\" y=\"1.32\" width=\"197.37\" height=\"197.37\" rx=\"34.51\" ry=\"34.51\" style=\"fill:#00005c;stroke-width:0\"/><path d=\"m51.35 118.52-8.13 23.18c-.13.8-.53 1.07-1.33 1.07H28.3c-.93 0-1.2-.4-.93-1.33 7.19-20.39 19.32-54.36 27.85-77.41.4-1.33.8-2.66 1.07-7.33 0-.53.4-.8.8-.8h18.39c.67 0 .8.13 1.07.67 9.86 27.31 20.65 57.43 30.78 85.01.27.8 0 1.2-.8 1.2H91.61c-.67 0-.93-.27-1.2-.8l-8.53-23.45H51.37Zm26.91-13.06c-2.66-8.93-9.19-26.91-11.86-36.24h-.13c-2 8.79-7.46 23.85-11.46 36.24h23.45Zm52.1 8.13c.27 10.13 6.53 17.32 19.99 17.32 4.93 0 10.93-.8 16.66-3.33.4-.13.8 0 .8.67v10.66c0 .93-.27 1.2-.8 1.47-5.2 2.66-11.46 3.6-19.99 3.73-24.25 0-33.04-16.52-33.04-33.31 0-19.05 11.33-34.11 31.31-34.11s27.45 14.92 27.45 27.31c0 5.73-.67 8.39-1.2 8.79-1.6.67-6.66.8-13.99.8h-27.18Zm21.32-10.26c4.93 0 5.73-.53 5.86-1.07v-1.47c0-4-2.66-12.66-12.92-12.66-8.66 0-13.19 6.66-14.26 15.19h21.32Z\" style=\"fill:#9998ff;stroke-width:0\"/></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1rg7uvs\",\"data-framer-name\":\"AdobeStock_375141824_Editorial_Use_Only_Converted_04\",fill:\"black\",intrinsicHeight:200,intrinsicWidth:200,layoutDependency:layoutDependency,layoutId:\"kW2QFPXKS\",svg:'<svg data-name=\"1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 200 200\"><rect x=\"1.36\" y=\"1.77\" width=\"197.28\" height=\"197.28\" rx=\"34.5\" ry=\"34.5\" style=\"stroke-width:0;fill:#00025e\"/><path d=\"M44.4 56.47c0-.67.13-.93.8-.93 5.06-.13 15.05-.27 25.17-.27 26.1 0 35.16 13.45 35.29 28.9 0 21.18-17.45 30.37-37.03 30.37h-8.26v26.77c0 .8-.27 1.07-.93 1.07H45.32c-.67 0-.93-.27-.93-.93V56.47Zm15.98 45.15c1.07.13 3.06.27 8.66.27 10.52 0 20.64-4.13 20.64-17.45 0-10.65-6.79-16.52-19.31-16.52-5.19 0-8.92.13-9.99.27v33.43Zm70.19-23.98c.8 0 1.2.27 1.47 1.07.53 1.73 1.07 5.19 1.33 8.12 4.93-6.79 13.32-10.52 19.71-10.52.53 0 1.2 0 1.73.13.67.13.8.27.8 1.33v12.39c0 .67-.27.93-1.07.93-7.59-.27-15.85 2.8-20.51 7.86v42.35c0 .8-.27 1.07-1.07 1.07h-13.98c-.8 0-1.07-.27-1.07-1.07V96.42c0-5.86-.27-13.58-.67-17.98-.13-.53.13-.8.8-.8h12.52Z\" style=\"stroke-width:0;fill:#30a8ff\"/></svg>',withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vzssaj\",\"data-framer-name\":\"AdobeStock_375141824_Editorial_Use_Only_Converted_03\",fill:\"black\",intrinsicHeight:200,intrinsicWidth:200,layoutDependency:layoutDependency,layoutId:\"zUWszsqZ0\",svg:'<svg data-name=\"1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 200 200\"><rect x=\"1.36\" y=\"1.36\" width=\"197.28\" height=\"197.28\" rx=\"34.5\" ry=\"34.5\" style=\"stroke-width:0;fill:#49021e\"/><path d=\"M71.7 141.76c0 .8-.27 1.2-1.2 1.2H56.65c-.8 0-1.07-.4-1.07-1.2V57.05c0-.8.4-.93 1.07-.93h13.98c.8 0 1.07.13 1.07.93v84.71Zm14.92-30.5c0-19.31 14.25-34.36 36.89-34.36 3.06 0 5.33.27 7.59.93V49.46c0-.67.27-.93.8-.93h14.52c.53 0 .67.27.67.8v78.58c0 2.8.27 6.39.4 8.52.13.67 0 .93-.67 1.33-8.39 4.13-17.85 6.53-26.64 6.53-19.58 0-33.56-10.79-33.56-33.03Zm44.48-20.78c-2-.8-4.79-1.2-7.86-1.2-11.99 0-20.11 7.59-20.11 21.18 0 15.05 8.79 21.04 18.91 21.04 3.33 0 6.66-.53 9.06-1.33V90.48Z\" style=\"stroke-width:0;fill:#f36\"/></svg>',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-oqvtnm\",\"data-framer-name\":\"figma\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"I481:833;481:714\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 20C20 17.2386 22.2386 15 25 15C27.7614 15 30 17.2386 30 20C30 22.7614 27.7614 25 25 25C22.2386 25 20 22.7614 20 20Z\" fill=\"#1ABCFE\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 30C10 27.2386 12.2386 25 15 25H20V30C20 32.7614 17.7614 35 15 35C12.2386 35 10 32.7614 10 30Z\" fill=\"#0ACF83\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 5V15H25C27.7614 15 30 12.7614 30 10C30 7.23858 27.7614 5 25 5H20Z\" fill=\"#FF7262\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 10C10 12.7614 12.2386 15 15 15H20V5H15C12.2386 5 10 7.23858 10 10Z\" fill=\"#F24E1E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 20C10 22.7614 12.2386 25 15 25H20V15H15C12.2386 15 10 17.2386 10 20Z\" fill=\"#A259FF\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6q4os\",\"data-framer-name\":\"framer\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"Rgd0lmEGF\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20 37.5C29.665 37.5 37.5 29.665 37.5 20C37.5 10.335 29.665 2.5 20 2.5C10.335 2.5 2.5 10.335 2.5 20C2.5 29.665 10.335 37.5 20 37.5Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.25 25.4167H20V33.7501L11.25 25.4167Z\" fill=\"#0055FF\"/>\\n<path d=\"M20 17.0833H11.25V25.4166H28.75L20 17.0833Z\" fill=\"#00AAFF\"/>\\n<path d=\"M11.25 8.75L20 17.0833H28.75V8.75H11.25Z\" fill=\"#88DDFF\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yob3kx\",\"data-framer-name\":\"adobe_photoshop\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"y12nUV2Gq\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.5 15.1667C2.5 10.7329 2.5 8.51604 3.36287 6.82258C4.12186 5.33296 5.33296 4.12186 6.82258 3.36287C8.51604 2.5 10.7329 2.5 15.1667 2.5H24.8333C29.2671 2.5 31.484 2.5 33.1774 3.36287C34.667 4.12186 35.8781 5.33296 36.6371 6.82258C37.5 8.51604 37.5 10.7329 37.5 15.1667V24.8333C37.5 29.2671 37.5 31.484 36.6371 33.1774C35.8781 34.667 34.667 35.8781 33.1774 36.6371C31.484 37.5 29.2671 37.5 24.8333 37.5H15.1667C10.7329 37.5 8.51604 37.5 6.82258 36.6371C5.33296 35.8781 4.12186 34.667 3.36287 33.1774C2.5 31.484 2.5 29.2671 2.5 24.8333V15.1667Z\" fill=\"#001E36\"/>\\n<path d=\"M10 28.1453V12.7543C10 12.6496 10.0438 12.5897 10.1458 12.5897C11.6529 12.5897 13.1592 12.5 14.6667 12.5C17.1127 12.5 19.7612 13.3364 20.6896 15.8953C20.9083 16.5235 21.025 17.1667 21.025 17.8397C21.025 19.1261 20.7333 20.188 20.15 21.0256C18.5205 23.3654 15.6962 23.3291 13.1646 23.3291V28.1303C13.1844 28.2725 13.0632 28.3397 12.9458 28.3397H10.175C10.0583 28.3397 10 28.2799 10 28.1453ZM13.1792 15.4765V20.5021C14.183 20.5757 15.2334 20.5837 16.1979 20.2628C17.2627 19.9557 17.8458 19.0339 17.8458 17.9295C17.8754 16.9884 17.3626 16.0854 16.4896 15.7457C15.5367 15.3495 14.2078 15.3258 13.1792 15.4765Z\" fill=\"#31A8FF\"/>\\n<path d=\"M30.1208 19.5092C29.6796 19.2767 29.2096 19.1066 28.7238 19.0035C28.0995 18.8566 25.6372 18.3421 25.6363 19.6296C25.6581 20.3484 26.7991 20.7006 27.3033 20.9059C29.0731 21.5135 31.0759 22.5996 31.0365 24.783C31.0906 27.501 28.4572 28.5876 26.1998 28.5878C25.0246 28.6 23.8003 28.418 22.7248 27.9135C22.6222 27.8592 22.5561 27.743 22.5605 27.6245V25.0238C22.5489 24.9195 22.6608 24.8284 22.7483 24.9034C23.8021 25.5407 25.0512 25.8501 26.2702 25.8666C26.8083 25.8666 27.8749 25.8145 27.8668 25.0238C27.8668 24.265 26.5909 23.9162 26.0824 23.7234C25.3451 23.4602 24.6461 23.0957 24.0045 22.6398C23.1077 22.0001 22.5452 20.9746 22.5605 19.8463C22.5553 17.2871 24.9793 16.1384 27.1624 16.1378C28.183 16.1294 29.2789 16.205 30.229 16.6195C30.3656 16.6597 30.3939 16.8036 30.3933 16.9325V19.3647C30.402 19.5157 30.2343 19.5671 30.1208 19.5092Z\" fill=\"#31A8FF\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vuf1z2\",\"data-framer-name\":\"adobe_illustrator\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"fcvXaUaoY\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.5 15.1667C2.5 10.7329 2.5 8.51604 3.36287 6.82258C4.12186 5.33296 5.33296 4.12186 6.82258 3.36287C8.51604 2.5 10.7329 2.5 15.1667 2.5H24.8333C29.2671 2.5 31.484 2.5 33.1774 3.36287C34.667 4.12186 35.8781 5.33296 36.6371 6.82258C37.5 8.51604 37.5 10.7329 37.5 15.1667V24.8333C37.5 29.2671 37.5 31.484 36.6371 33.1774C35.8781 34.667 34.667 35.8781 33.1774 36.6371C31.484 37.5 29.2671 37.5 24.8333 37.5H15.1667C10.7329 37.5 8.51604 37.5 6.82258 36.6371C5.33296 35.8781 4.12186 34.667 3.36287 33.1774C2.5 31.484 2.5 29.2671 2.5 24.8333V15.1667Z\" fill=\"#330000\"/>\\n<path d=\"M19.4603 24.4953H14.0366L12.9331 28.0112C12.9025 28.1418 12.7822 28.2343 12.6514 28.2279H9.90431C9.74765 28.2279 9.69287 28.1396 9.73996 27.963L14.4358 14.0923C14.4828 13.9478 14.5297 13.7832 14.5767 13.5986C14.6381 13.2773 14.6695 12.9507 14.6706 12.6233C14.6571 12.5266 14.7421 12.4412 14.8349 12.4547H18.5681C18.6775 12.4547 18.7401 12.4949 18.7559 12.5752L24.0858 27.9871C24.1327 28.1478 24.0857 28.228 23.9448 28.2279H20.8925C20.7855 28.2401 20.6832 28.1667 20.6577 28.0594L19.4603 24.4953ZM14.8819 21.4611H18.5916C17.9821 19.3784 17.2943 17.323 16.7368 15.2241C16.1353 17.3266 15.479 19.4206 14.8819 21.4611Z\" fill=\"#FF9A00\"/>\\n<path d=\"M27.2551 15.0073C27.0157 15.0171 26.7768 14.9751 26.5543 14.8838C26.3318 14.7925 26.1306 14.654 25.9638 14.4775C25.7975 14.2933 25.6683 14.0772 25.5836 13.8417C25.499 13.6061 25.4606 13.3557 25.4707 13.1049C25.4621 12.8565 25.5048 12.6091 25.5958 12.3788C25.6868 12.1485 25.8242 11.9405 25.999 11.7684C26.172 11.598 26.3763 11.4645 26.6 11.3756C26.8236 11.2868 27.0623 11.2443 27.3021 11.2506C27.8656 11.2506 28.3078 11.4232 28.6287 11.7684C28.7906 11.9477 28.9165 12.1581 28.9991 12.3874C29.0817 12.6168 29.1193 12.8606 29.1099 13.1049C29.1198 13.3567 29.0801 13.6079 28.9934 13.8437C28.9067 14.0795 28.7747 14.2951 28.6052 14.4775C28.428 14.6566 28.2166 14.7962 27.9842 14.8873C27.7519 14.9785 27.5036 15.0194 27.2551 15.0073ZM25.635 27.987V16.4762C25.635 16.3317 25.6974 16.2595 25.8229 16.2595H28.7108C28.8359 16.2595 28.8986 16.3317 28.8987 16.4762V27.987C28.8987 28.1477 28.8361 28.228 28.7108 28.2278H25.8464C25.7055 28.2278 25.6351 28.1476 25.635 27.987Z\" fill=\"#FF9A00\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sYFkX.framer-f9a7bu, .framer-sYFkX .framer-f9a7bu { display: block; }\",\".framer-sYFkX.framer-puzouf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 72px; justify-content: center; overflow: hidden; padding: 17px 21px 17px 21px; position: relative; width: 74px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sYFkX .framer-1360enc, .framer-sYFkX .framer-1gbygjz, .framer-sYFkX .framer-11nsa2g, .framer-sYFkX .framer-16nuz5c, .framer-sYFkX .framer-1rg7uvs, .framer-sYFkX .framer-1vzssaj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-sYFkX .framer-1u0k5lb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-sYFkX .framer-oqvtnm, .framer-sYFkX .framer-6q4os, .framer-sYFkX .framer-1yob3kx, .framer-sYFkX .framer-vuf1z2 { flex: none; height: 40px; position: relative; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sYFkX.framer-puzouf { gap: 0px; } .framer-sYFkX.framer-puzouf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sYFkX.framer-puzouf > :first-child { margin-left: 0px; } .framer-sYFkX.framer-puzouf > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 74\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FW8JnloXI\":{\"layout\":[\"fixed\",\"fixed\"]},\"xC4pRIlXn\":{\"layout\":[\"fixed\",\"fixed\"]},\"ik9BeqfNt\":{\"layout\":[\"fixed\",\"fixed\"]},\"TZ9qLzyOR\":{\"layout\":[\"fixed\",\"fixed\"]},\"ALkAFfwbN\":{\"layout\":[\"fixed\",\"fixed\"]},\"v4MORcBmZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"bG1H_NXqD\":{\"layout\":[\"fixed\",\"fixed\"]},\"njMu2Ve3l\":{\"layout\":[\"fixed\",\"fixed\"]},\"G44rJqtd1\":{\"layout\":[\"fixed\",\"fixed\"]},\"QUK57sBTq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerzr00Tmdx_=withCSS(Component,css,\"framer-sYFkX\");export default Framerzr00Tmdx_;Framerzr00Tmdx_.displayName=\"Tools\";Framerzr00Tmdx_.defaultProps={height:72,width:74};addPropertyControls(Framerzr00Tmdx_,{variant:{options:[\"CoKONKGFq\",\"FW8JnloXI\",\"xC4pRIlXn\",\"ik9BeqfNt\",\"TZ9qLzyOR\",\"ALkAFfwbN\",\"v4MORcBmZ\",\"bG1H_NXqD\",\"njMu2Ve3l\",\"G44rJqtd1\",\"QUK57sBTq\"],optionTitles:[\"Figma\",\"Framer\",\"Photoshop\",\"Illustrator\",\"Adobe InDesign\",\"Adobe After Effects\",\"Adobe Premiere\",\"Adobe XD\",\"spline 3D\",\"css\",\"html\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerzr00Tmdx_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerzr00Tmdx_\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"72\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"74\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FW8JnloXI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xC4pRIlXn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ik9BeqfNt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TZ9qLzyOR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ALkAFfwbN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v4MORcBmZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bG1H_NXqD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"njMu2Ve3l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G44rJqtd1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QUK57sBTq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zr00Tmdx_.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import VisitCursor from\"#framer/local/canvasComponent/jhJl_aApf/jhJl_aApf.js\";import ProjectCard from\"#framer/local/canvasComponent/L9iH6cpuF/L9iH6cpuF.js\";import Footer from\"#framer/local/canvasComponent/rf9xDC3ks/rf9xDC3ks.js\";import TopNav from\"#framer/local/canvasComponent/SatP92P1v/SatP92P1v.js\";import Experience from\"#framer/local/canvasComponent/SGKTYOK6t/SGKTYOK6t.js\";import Button from\"#framer/local/canvasComponent/WUPcCODow/WUPcCODow.js\";import Tools from\"#framer/local/canvasComponent/zr00Tmdx_/zr00Tmdx_.js\";import*as sharedStyle from\"#framer/local/css/mHZTUGTIl/mHZTUGTIl.js\";import metadataProvider from\"#framer/local/webPageMetadata/tAKeyHR37/tAKeyHR37.js\";const TopNavFonts=getFonts(TopNav);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const VimeoFonts=getFonts(Vimeo);const ToolsFonts=getFonts(Tools);const TickerFonts=getFonts(Ticker);const ProjectCardFonts=getFonts(ProjectCard);const ContainerWithFX=withFX(Container);const ExperienceFonts=getFonts(Experience);const FooterFonts=getFonts(Footer);const VisitCursorFonts=getFonts(VisitCursor);const breakpoints={d0GqWRYli:\"(min-width: 810px) and (max-width: 1399px)\",DRFNBKS1b:\"(max-width: 809px)\",IsfVZkKBe:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fyY3O\";const variantClassNames={d0GqWRYli:\"framer-v-91d09r\",DRFNBKS1b:\"framer-v-73afqb\",IsfVZkKBe:\"framer-v-8qwi21\"};const transition1={damping:30,delay:0,mass:1,stiffness:140,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-50};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={delay:.5,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1150,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1150,x:0,y:0};const transition3={delay:.8,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-50,y:0};const transition4={delay:1.3,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:100,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:200};const transition6={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:200};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:150,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:900,x:150,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:900,transition:transition6,x:150,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"IsfVZkKBe\",Phone:\"DRFNBKS1b\",Tablet:\"d0GqWRYli\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IsfVZkKBe\"};};const transition7={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={alignment:\"center\",component:VisitCursor,offset:{x:20,y:20},placement:\"right\",transition:transition7,variant:\"WV4Q39lal\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"d0GqWRYli\",\"DRFNBKS1b\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"NinFV1UqA\");const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"d0GqWRYli\")return false;return true;};const elementId1=useRouteElementId(\"CzITvPFha\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"L6W_4dmTl\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"pjAr8lDsd\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"CZfHZEVtN\");const ref5=React.useRef(null);useCustomCursors({\"1ddylya\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IsfVZkKBe\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-78700829-9deb-4139-a514-ce0eb43d703b, rgb(245, 248, 253)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-8qwi21\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ucrqus\",children:isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tg3bt9 hidden-91d09r hidden-73afqb\",\"data-framer-name\":\"Ellipse 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{y:undefined},DRFNBKS1b:{width:\"min(100vw, 1400px)\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`min(${componentViewport?.width||\"100vw\"}, 1400px)`,y:(componentViewport?.y||0)+48+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DRFNBKS1b:{layoutScroll:true,transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1pfz59z-container\",\"data-framer-appear-id\":\"1pfz59z\",id:elementId,initial:animation1,nodeId:\"NinFV1UqA\",optimized:true,ref:ref1,rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{variant:\"v0iI_NcKh\"},DRFNBKS1b:{variant:\"o0KNAPNqx\"}},children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"NinFV1UqA\",layoutId:\"NinFV1UqA\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ZKcM9msF9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qzz31x\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4gj1qy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9gpy3f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"55.84269662921348px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(184, 229, 31)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"120.08456659619452px\"},children:\"CREATIVE DIRECTOR\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"120.08456659619452px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"120.08456659619452px\"},children:\"& LEAD DESIGNER\"})]})}),viewBox:\"0 0 710 240\"},DRFNBKS1b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"55.84269662921348px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(184, 229, 31)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"59.211275405533634px\"},children:\"CREATIVE DIRECTOR\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"59.211275405533634px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"59.211275405533634px\"},children:\"& LEAD DESIGNER\"})]})}),viewBox:\"0 0 350 118\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"55.84269662921348px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(184, 229, 31)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"104.73870422551087px\"},children:\"CREATIVE DIRECTOR\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"104.73870422551087px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"104.73870422551087px\"},children:\"& LEAD DESIGNER\"})]})}),className:\"framer-1runb5o\",\"data-framer-appear-id\":\"1runb5o\",fonts:[\"CUSTOM;TGS Perfect Condensed\"],initial:animation3,optimized:true,style:{originX:0,transformPerspective:1150},verticalAlignment:\"top\",viewBox:\"0 0 620 210\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"65.66602982807552px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(255, 255, 255))\"},children:\"WITH OVER 15 YEARS OF EXPERIENCE\"})}),viewBox:\"0 0 710 66\"},DRFNBKS1b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"57.348834224153734px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(255, 255, 255))\"},children:\"WITH OVER 15 YEARS OF EXPERIENCE\"})}),viewBox:\"0 0 620 57\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"58.282020899679445px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(255, 255, 255))\"},children:\"WITH OVER 15 YEARS OF EXPERIENCE\"})}),className:\"framer-8osxgc\",\"data-framer-appear-id\":\"8osxgc\",fonts:[\"CUSTOM;TGS Perfect Condensed\"],initial:animation5,optimized:true,verticalAlignment:\"top\",viewBox:\"0 0 630 58\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1byby0r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DRFNBKS1b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-97e10153-8e0d-4d5d-8424-6afa5f4e8bac, rgb(92, 92, 106))\"},children:\"Specialist in product and marketing design that empowers growing businesses.\"})}),fonts:[\"GF;Plus Jakarta Sans-regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-85zgjm\",\"data-styles-preset\":\"mHZTUGTIl\",children:\"Specialist in product and marketing design that empowers growing businesses.\"})}),className:\"framer-6nuxbj\",\"data-framer-appear-id\":\"6nuxbj\",fonts:[\"Inter\"],initial:animation7,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18yq0e1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uit3t7-container\",nodeId:\"fRu5fSo8Y\",scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"fRu5fSo8Y\",layoutId:\"fRu5fSo8Y\",variant:\"SSmbu1nN4\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lp7cum\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1wh5l97-container\",\"data-framer-appear-id\":\"1wh5l97\",initial:animation9,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Vxv8Ny6AM\",optimized:true,rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Vxv8Ny6AM\",isMixedBorderRadius:false,layoutId:\"Vxv8Ny6AM\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1042978921\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2zavre\",\"data-framer-name\":\"Ticker\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15n85nc\",\"data-framer-name\":\"Ticker\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qytbof-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ki1i4PwQI\",scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{gap:51},DRFNBKS1b:{gap:23}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:68,height:\"100%\",hoverFactor:.1,id:\"ki1i4PwQI\",layoutId:\"ki1i4PwQI\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-31tc77-container\",\"data-framer-name\":\"Tools\",inComponentSlot:true,name:\"Tools\",nodeId:\"TT3AfDsXB\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"TT3AfDsXB\",layoutId:\"TT3AfDsXB\",name:\"Tools\",style:{height:\"100%\",width:\"100%\"},variant:\"FW8JnloXI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zus1pk-container\",\"data-framer-name\":\"Tools\",inComponentSlot:true,name:\"Tools\",nodeId:\"iZfU6uXFn\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"iZfU6uXFn\",layoutId:\"iZfU6uXFn\",name:\"Tools\",style:{height:\"100%\",width:\"100%\"},variant:\"CoKONKGFq\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-oelx9b-container\",inComponentSlot:true,nodeId:\"UTcuyS1HC\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"UTcuyS1HC\",layoutId:\"UTcuyS1HC\",style:{height:\"100%\",width:\"100%\"},variant:\"xC4pRIlXn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13kwmtq-container\",inComponentSlot:true,nodeId:\"F0oKoibI2\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"F0oKoibI2\",layoutId:\"F0oKoibI2\",style:{height:\"100%\",width:\"100%\"},variant:\"ik9BeqfNt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-iq3gtt-container\",inComponentSlot:true,nodeId:\"EUGhYVuVG\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"EUGhYVuVG\",layoutId:\"EUGhYVuVG\",style:{height:\"100%\",width:\"100%\"},variant:\"v4MORcBmZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1daksy6-container\",inComponentSlot:true,nodeId:\"EWUS2UlvF\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"EWUS2UlvF\",layoutId:\"EWUS2UlvF\",style:{height:\"100%\",width:\"100%\"},variant:\"bG1H_NXqD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ekx840-container\",inComponentSlot:true,nodeId:\"QueE41kwL\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"QueE41kwL\",layoutId:\"QueE41kwL\",style:{height:\"100%\",width:\"100%\"},variant:\"TZ9qLzyOR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fh7x3k-container\",inComponentSlot:true,nodeId:\"F7bLwshP9\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"F7bLwshP9\",layoutId:\"F7bLwshP9\",style:{height:\"100%\",width:\"100%\"},variant:\"ALkAFfwbN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lmqex6-container\",inComponentSlot:true,nodeId:\"AOnHXyxfM\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"AOnHXyxfM\",layoutId:\"AOnHXyxfM\",style:{height:\"100%\",width:\"100%\"},variant:\"njMu2Ve3l\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10dta28-container\",inComponentSlot:true,nodeId:\"G2tkNhoKT\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"G2tkNhoKT\",layoutId:\"G2tkNhoKT\",style:{height:\"100%\",width:\"100%\"},variant:\"G44rJqtd1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"74px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x3whdq-container\",inComponentSlot:true,nodeId:\"h8yjidd9I\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(Tools,{height:\"100%\",id:\"h8yjidd9I\",layoutId:\"h8yjidd9I\",style:{height:\"100%\",width:\"100%\"},variant:\"QUK57sBTq\",width:\"100%\"})})})],speed:55,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-135ex3s hidden-91d09r\",\"data-framer-name\":\"Hero\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ldnd9\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-arkw6w\",\"data-framer-name\":\"Section PROJECTS\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0jl34\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-3d00d327-da95-4190-8a37-06f05010eb15, rgb(255, 135, 15))\"},children:\"01\"})}),className:\"framer-1t48h5\",\"data-framer-name\":\"01\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DRFNBKS1b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"95%\",\"--framer-text-color\":\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(26, 26, 35))\",\"--framer-text-transform\":\"uppercase\"},children:\"Selected Works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(26, 26, 35))\",\"--framer-text-transform\":\"uppercase\"},children:\"Selected Works\"})}),className:\"framer-1mpxs1z\",\"data-framer-name\":\"Case Studies\",fonts:[\"CUSTOM;TGS Perfect Condensed\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8uq63x\",\"data-framer-name\":\"Project\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1200px) - 8px) / 2, 200px)`,y:undefined},DRFNBKS1b:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px, 1200px), 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px, 1200px) - 28px) / 2, 200px)`,y:(componentViewport?.y||0)+48+940+0+124+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lyf70f-container\",nodeId:\"gWNuy9_DA\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"gWNuy9_DA\",layoutId:\"gWNuy9_DA\",S1ZA_r5TM:\"1ddylya\",style:{width:\"100%\"},variant:\"oh0f9_08D\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1200px) - 8px) / 2, 200px)`,y:undefined},DRFNBKS1b:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px, 1200px), 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px, 1200px) - 28px) / 2, 200px)`,y:(componentViewport?.y||0)+48+940+0+124+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pxqy1m-container\",nodeId:\"LhKHHMRTz\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"LhKHHMRTz\",layoutId:\"LhKHHMRTz\",S1ZA_r5TM:\"1ddylya\",style:{width:\"100%\"},variant:\"fWaiyS4wv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1200px) - 8px) / 2, 200px)`,y:undefined},DRFNBKS1b:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px, 1200px), 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px, 1200px) - 28px) / 2, 200px)`,y:(componentViewport?.y||0)+48+940+0+124+0+672,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-98oawe-container\",nodeId:\"XkyA_NtR2\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"XkyA_NtR2\",layoutId:\"XkyA_NtR2\",S1ZA_r5TM:\"1ddylya\",style:{width:\"100%\"},variant:\"Y4bmIiMmw\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1200px) - 8px) / 2, 200px)`,y:undefined},DRFNBKS1b:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px, 1200px), 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px, 1200px) - 28px) / 2, 200px)`,y:(componentViewport?.y||0)+48+940+0+124+0+672,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dgylrw-container\",nodeId:\"G_J5hBEcp\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"G_J5hBEcp\",layoutId:\"G_J5hBEcp\",S1ZA_r5TM:\"1ddylya\",style:{width:\"100%\"},variant:\"mtT5UuQN5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1200px) - 8px) / 2, 200px)`,y:undefined},DRFNBKS1b:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 40px, 1200px), 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px, 1200px) - 28px) / 2, 200px)`,y:(componentViewport?.y||0)+48+940+0+124+0+1344,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dgy6yl-container\",nodeId:\"VTTVc0ZN6\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ProjectCard,{height:\"100%\",id:\"VTTVc0ZN6\",layoutId:\"VTTVc0ZN6\",S1ZA_r5TM:\"1ddylya\",style:{width:\"100%\"},variant:\"be5rXISAq\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16f8p39\",\"data-framer-name\":\"Section EXPERIENCE\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k53ffz\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-3d00d327-da95-4190-8a37-06f05010eb15, rgb(255, 135, 15))\"},children:\"02\"})}),className:\"framer-e70siq\",\"data-framer-name\":\"02\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DRFNBKS1b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"95%\",\"--framer-text-color\":\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Work Experience\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Work Experience\"})}),className:\"framer-pbv22m\",\"data-framer-name\":\"Work Experience\",fonts:[\"CUSTOM;TGS Perfect Condensed\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-156udg4\",\"data-framer-name\":\"Frame 54\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:undefined},DRFNBKS1b:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+3188+0+148+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DRFNBKS1b:{__framer__enter:animation14,__framer__exit:animation15,style:{transformPerspective:900}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ue3v4g-container\",nodeId:\"ojGtkwkcn\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{variant:\"YQcsMijKL\"},DRFNBKS1b:{variant:\"oaWqogKWG\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"ojGtkwkcn\",layoutId:\"ojGtkwkcn\",style:{width:\"100%\"},variant:\"FBz38I54P\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:undefined},DRFNBKS1b:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+3188+0+148+0+353,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xp23mx-container\",nodeId:\"reMvvFaMS\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{variant:\"U4fHt9XIl\"},DRFNBKS1b:{variant:\"ZDuvwg9JV\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"reMvvFaMS\",layoutId:\"reMvvFaMS\",style:{width:\"100%\"},variant:\"T8EkImCoT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:undefined},DRFNBKS1b:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+3188+0+148+0+706,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tx7kma-container\",nodeId:\"tL0grKBWD\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{variant:\"CSeyg0Hfr\"},DRFNBKS1b:{variant:\"mvqqFG5Oo\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"tL0grKBWD\",layoutId:\"tL0grKBWD\",style:{width:\"100%\"},variant:\"OLSwIu9BO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:undefined},DRFNBKS1b:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+3188+0+148+0+1059,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p95uiv-container\",nodeId:\"btxNc9GQl\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{variant:\"lLQxIGXHJ\"},DRFNBKS1b:{variant:\"VZlFJgy5M\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"btxNc9GQl\",layoutId:\"btxNc9GQl\",style:{width:\"100%\"},variant:\"bqz1SqsV1\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kru0j0\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-3d00d327-da95-4190-8a37-06f05010eb15, rgb(255, 135, 15))\"},children:\"03\"})}),className:\"framer-qdcfg1\",\"data-framer-name\":\"03\",fonts:[\"GF;Inter Tight-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DRFNBKS1b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"95%\",\"--framer-text-color\":\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Education\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RHUyBQZXJmZWN0IENvbmRlbnNlZA==\",\"--framer-font-family\":'\"TGS Perfect Condensed\", \"TGS Perfect Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-138ef10f-c9a0-41b2-8a54-b5baa6e3b33b, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Education\"})}),className:\"framer-b512s8\",\"data-framer-name\":\"Education\",fonts:[\"CUSTOM;TGS Perfect Condensed\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e7shid\",\"data-framer-name\":\"Frame 54\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:undefined},DRFNBKS1b:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+3188+0+1700+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DRFNBKS1b:{__framer__enter:animation14,__framer__exit:animation15,style:{transformPerspective:900}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14rdl6h-container\",nodeId:\"liE87N5uL\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{variant:\"BNZQSpJOo\"},DRFNBKS1b:{variant:\"eqgUY36or\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"liE87N5uL\",layoutId:\"liE87N5uL\",style:{width:\"100%\"},variant:\"MtNn50OoN\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px)`,y:undefined},DRFNBKS1b:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 200px)`,y:(componentViewport?.y||0)+48+3188+0+1700+0+353,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t77aqf-container\",nodeId:\"XLypRyF7S\",rendersWithMotion:true,scopeId:\"tAKeyHR37\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{variant:\"jq1ba2Qto\"},DRFNBKS1b:{variant:\"ba8zl_EKb\"}},children:/*#__PURE__*/_jsx(Experience,{height:\"100%\",id:\"XLypRyF7S\",layoutId:\"XLypRyF7S\",style:{width:\"100%\"},variant:\"i62_Ye8QV\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{y:undefined},DRFNBKS1b:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:`min(${componentViewport?.width||\"100vw\"}, 1400px)`,y:(componentViewport?.y||0)+48+5666,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12ht11b-container\",id:elementId4,nodeId:\"CZfHZEVtN\",ref:ref5,scopeId:\"tAKeyHR37\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d0GqWRYli:{variant:\"XbUxNChlE\"},DRFNBKS1b:{variant:\"RdS6qK0tp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"CZfHZEVtN\",layoutId:\"CZfHZEVtN\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ORDBu7oYR\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fyY3O.framer-1cpxir4, .framer-fyY3O .framer-1cpxir4 { display: block; }\",\".framer-fyY3O.framer-8qwi21 { align-content: center; align-items: center; background-color: var(--token-78700829-9deb-4139-a514-ce0eb43d703b, #f5f8fd); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 136px; height: min-content; justify-content: center; overflow: visible; padding: 48px 0px 0px 0px; position: relative; width: 1400px; }\",\".framer-fyY3O .framer-ucrqus { flex: none; height: 1906px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-fyY3O .framer-1tg3bt9 { -webkit-filter: blur(250px); aspect-ratio: 1 / 1; background-color: #64f2ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(250px); flex: none; height: var(--framer-aspect-ratio-supported, 600px); left: 0px; position: absolute; top: -582px; width: 600px; z-index: 0; }\",\".framer-fyY3O .framer-1pfz59z-container { flex: none; height: auto; max-width: 1400px; position: relative; scroll-margin-top: 30px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-fyY3O .framer-qzz31x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 100px; position: relative; width: 1400px; }\",\".framer-fyY3O .framer-4gj1qy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fyY3O .framer-9gpy3f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-fyY3O .framer-1runb5o, .framer-fyY3O .framer-8osxgc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fyY3O .framer-1byby0r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fyY3O .framer-6nuxbj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fyY3O .framer-18yq0e1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fyY3O .framer-1uit3t7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-fyY3O .framer-1lp7cum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-fyY3O .framer-1wh5l97-container { flex: 1 0 0px; height: 300px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fyY3O .framer-2zavre { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fyY3O .framer-15n85nc { 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: visible; padding: 0px 100px 0px 100px; position: relative; width: 1400px; }\",\".framer-fyY3O .framer-qytbof-container { flex: none; height: 72px; position: relative; width: 1246px; }\",\".framer-fyY3O .framer-31tc77-container, .framer-fyY3O .framer-zus1pk-container, .framer-fyY3O .framer-oelx9b-container, .framer-fyY3O .framer-13kwmtq-container, .framer-fyY3O .framer-iq3gtt-container, .framer-fyY3O .framer-1daksy6-container, .framer-fyY3O .framer-ekx840-container, .framer-fyY3O .framer-1fh7x3k-container, .framer-fyY3O .framer-1lmqex6-container, .framer-fyY3O .framer-10dta28-container, .framer-fyY3O .framer-1x3whdq-container { height: 72px; position: relative; width: 74px; }\",\".framer-fyY3O .framer-135ex3s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 152px; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-fyY3O .framer-13ldnd9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; min-height: 72px; min-width: 1246px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fyY3O .framer-arkw6w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; scroll-margin-top: 30px; width: 100%; }\",\".framer-fyY3O .framer-c0jl34, .framer-fyY3O .framer-1k53ffz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fyY3O .framer-1t48h5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 15px; word-break: break-word; word-wrap: break-word; }\",\".framer-fyY3O .framer-1mpxs1z, .framer-fyY3O .framer-pbv22m, .framer-fyY3O .framer-b512s8 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fyY3O .framer-8uq63x { display: grid; flex: none; gap: 28px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fyY3O .framer-lyf70f-container, .framer-fyY3O .framer-1pxqy1m-container, .framer-fyY3O .framer-98oawe-container, .framer-fyY3O .framer-1dgylrw-container, .framer-fyY3O .framer-1dgy6yl-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-fyY3O .framer-16f8p39 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; scroll-margin-top: 30px; width: 100%; }\",\".framer-fyY3O .framer-e70siq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 19px; word-break: break-word; word-wrap: break-word; }\",\".framer-fyY3O .framer-156udg4, .framer-fyY3O .framer-1e7shid { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fyY3O .framer-ue3v4g-container, .framer-fyY3O .framer-1xp23mx-container, .framer-fyY3O .framer-1tx7kma-container, .framer-fyY3O .framer-1p95uiv-container, .framer-fyY3O .framer-14rdl6h-container, .framer-fyY3O .framer-1t77aqf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-fyY3O .framer-1kru0j0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fyY3O .framer-qdcfg1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 20px; word-break: break-word; word-wrap: break-word; }\",\".framer-fyY3O .framer-12ht11b-container { flex: none; height: auto; max-width: 1400px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fyY3O.framer-8qwi21, .framer-fyY3O .framer-qzz31x, .framer-fyY3O .framer-4gj1qy, .framer-fyY3O .framer-9gpy3f, .framer-fyY3O .framer-1byby0r, .framer-fyY3O .framer-18yq0e1, .framer-fyY3O .framer-1lp7cum, .framer-fyY3O .framer-2zavre, .framer-fyY3O .framer-15n85nc, .framer-fyY3O .framer-135ex3s, .framer-fyY3O .framer-13ldnd9, .framer-fyY3O .framer-arkw6w, .framer-fyY3O .framer-c0jl34, .framer-fyY3O .framer-16f8p39, .framer-fyY3O .framer-1k53ffz, .framer-fyY3O .framer-156udg4, .framer-fyY3O .framer-1kru0j0, .framer-fyY3O .framer-1e7shid { gap: 0px; } .framer-fyY3O.framer-8qwi21 > * { margin: 0px; margin-bottom: calc(136px / 2); margin-top: calc(136px / 2); } .framer-fyY3O.framer-8qwi21 > :first-child, .framer-fyY3O .framer-9gpy3f > :first-child, .framer-fyY3O .framer-1byby0r > :first-child, .framer-fyY3O .framer-18yq0e1 > :first-child, .framer-fyY3O .framer-135ex3s > :first-child, .framer-fyY3O .framer-13ldnd9 > :first-child, .framer-fyY3O .framer-arkw6w > :first-child, .framer-fyY3O .framer-16f8p39 > :first-child, .framer-fyY3O .framer-156udg4 > :first-child, .framer-fyY3O .framer-1e7shid > :first-child { margin-top: 0px; } .framer-fyY3O.framer-8qwi21 > :last-child, .framer-fyY3O .framer-9gpy3f > :last-child, .framer-fyY3O .framer-1byby0r > :last-child, .framer-fyY3O .framer-18yq0e1 > :last-child, .framer-fyY3O .framer-135ex3s > :last-child, .framer-fyY3O .framer-13ldnd9 > :last-child, .framer-fyY3O .framer-arkw6w > :last-child, .framer-fyY3O .framer-16f8p39 > :last-child, .framer-fyY3O .framer-156udg4 > :last-child, .framer-fyY3O .framer-1e7shid > :last-child { margin-bottom: 0px; } .framer-fyY3O .framer-qzz31x > *, .framer-fyY3O .framer-4gj1qy > *, .framer-fyY3O .framer-1lp7cum > *, .framer-fyY3O .framer-2zavre > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fyY3O .framer-qzz31x > :first-child, .framer-fyY3O .framer-4gj1qy > :first-child, .framer-fyY3O .framer-1lp7cum > :first-child, .framer-fyY3O .framer-2zavre > :first-child, .framer-fyY3O .framer-15n85nc > :first-child, .framer-fyY3O .framer-c0jl34 > :first-child, .framer-fyY3O .framer-1k53ffz > :first-child, .framer-fyY3O .framer-1kru0j0 > :first-child { margin-left: 0px; } .framer-fyY3O .framer-qzz31x > :last-child, .framer-fyY3O .framer-4gj1qy > :last-child, .framer-fyY3O .framer-1lp7cum > :last-child, .framer-fyY3O .framer-2zavre > :last-child, .framer-fyY3O .framer-15n85nc > :last-child, .framer-fyY3O .framer-c0jl34 > :last-child, .framer-fyY3O .framer-1k53ffz > :last-child, .framer-fyY3O .framer-1kru0j0 > :last-child { margin-right: 0px; } .framer-fyY3O .framer-9gpy3f > *, .framer-fyY3O .framer-1byby0r > *, .framer-fyY3O .framer-18yq0e1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fyY3O .framer-15n85nc > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-fyY3O .framer-135ex3s > *, .framer-fyY3O .framer-16f8p39 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-fyY3O .framer-13ldnd9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-fyY3O .framer-arkw6w > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-fyY3O .framer-c0jl34 > *, .framer-fyY3O .framer-1k53ffz > *, .framer-fyY3O .framer-1kru0j0 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-fyY3O .framer-156udg4 > *, .framer-fyY3O .framer-1e7shid > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",...sharedStyle.css,\"@media (min-width: 810px) and (max-width: 1399px) { .framer-fyY3O.framer-8qwi21 { gap: 50px; padding: 32px 0px 0px 0px; width: 810px; } .framer-fyY3O .framer-ucrqus { order: 0; } .framer-fyY3O .framer-1pfz59z-container { order: 1; } .framer-fyY3O .framer-qzz31x { order: 2; padding: 0px 50px 0px 50px; width: 100%; } .framer-fyY3O .framer-4gj1qy { flex-direction: column; height: min-content; } .framer-fyY3O .framer-9gpy3f { gap: 11px; width: 100%; } .framer-fyY3O .framer-1lp7cum { padding: 20px 0px 0px 0px; width: 100%; } .framer-fyY3O .framer-1wh5l97-container { height: 340px; } .framer-fyY3O .framer-2zavre { order: 3; } .framer-fyY3O .framer-15n85nc { flex: 1 0 0px; padding: 0px 40px 0px 40px; width: 1px; z-index: 0; } .framer-fyY3O .framer-qytbof-container { height: 100px; width: 81%; } .framer-fyY3O .framer-arkw6w { order: 4; padding: 0px 40px 0px 40px; } .framer-fyY3O .framer-8uq63x { gap: 8px; } .framer-fyY3O .framer-16f8p39 { order: 5; padding: 0px 40px 0px 40px; } .framer-fyY3O .framer-12ht11b-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fyY3O.framer-8qwi21, .framer-fyY3O .framer-4gj1qy, .framer-fyY3O .framer-9gpy3f, .framer-fyY3O .framer-8uq63x { gap: 0px; } .framer-fyY3O.framer-8qwi21 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-fyY3O.framer-8qwi21 > :first-child, .framer-fyY3O .framer-4gj1qy > :first-child, .framer-fyY3O .framer-9gpy3f > :first-child { margin-top: 0px; } .framer-fyY3O.framer-8qwi21 > :last-child, .framer-fyY3O .framer-4gj1qy > :last-child, .framer-fyY3O .framer-9gpy3f > :last-child { margin-bottom: 0px; } .framer-fyY3O .framer-4gj1qy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fyY3O .framer-9gpy3f > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-fyY3O .framer-8uq63x > *, .framer-fyY3O .framer-8uq63x > :first-child, .framer-fyY3O .framer-8uq63x > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-fyY3O.framer-8qwi21 { gap: 36px; overflow: hidden; width: 390px; } .framer-fyY3O .framer-ucrqus { height: 800px; order: 1; z-index: 1; } .framer-fyY3O .framer-1pfz59z-container { left: 50%; order: 0; position: fixed; top: 0px; transform: translateX(-50%); z-index: 4; } .framer-fyY3O .framer-qzz31x { order: 2; padding: 0px 30px 0px 30px; width: 100%; } .framer-fyY3O .framer-4gj1qy { flex-direction: column; gap: 0px; height: min-content; padding: 60px 0px 0px 0px; } .framer-fyY3O .framer-9gpy3f, .framer-fyY3O .framer-qytbof-container { width: 100%; } .framer-fyY3O .framer-1runb5o { overflow: visible; } .framer-fyY3O .framer-6nuxbj { white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-fyY3O .framer-1lp7cum { padding: 30px 0px 0px 0px; width: 100%; } .framer-fyY3O .framer-1wh5l97-container { height: 244px; } .framer-fyY3O .framer-2zavre { order: 3; } .framer-fyY3O .framer-15n85nc { flex: 1 0 0px; gap: 0px; padding: 0px 20px 0px 20px; width: 1px; } .framer-fyY3O .framer-13ldnd9 { gap: 0px; min-width: unset; width: 100%; } .framer-fyY3O .framer-arkw6w { order: 4; padding: 40px 20px 0px 20px; } .framer-fyY3O .framer-8uq63x { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-fyY3O .framer-16f8p39 { max-width: unset; order: 5; padding: 0px 20px 0px 20px; } .framer-fyY3O .framer-156udg4 { align-content: flex-start; align-items: flex-start; flex-wrap: wrap; } .framer-fyY3O .framer-1e7shid { align-content: flex-start; align-items: flex-start; flex-wrap: wrap; overflow: hidden; } .framer-fyY3O .framer-12ht11b-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fyY3O.framer-8qwi21, .framer-fyY3O .framer-4gj1qy, .framer-fyY3O .framer-15n85nc, .framer-fyY3O .framer-13ldnd9 { gap: 0px; } .framer-fyY3O.framer-8qwi21 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-fyY3O.framer-8qwi21 > :first-child, .framer-fyY3O .framer-4gj1qy > :first-child, .framer-fyY3O .framer-13ldnd9 > :first-child { margin-top: 0px; } .framer-fyY3O.framer-8qwi21 > :last-child, .framer-fyY3O .framer-4gj1qy > :last-child, .framer-fyY3O .framer-13ldnd9 > :last-child { margin-bottom: 0px; } .framer-fyY3O .framer-4gj1qy > *, .framer-fyY3O .framer-13ldnd9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fyY3O .framer-15n85nc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-fyY3O .framer-15n85nc > :first-child { margin-left: 0px; } .framer-fyY3O .framer-15n85nc > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6047\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"d0GqWRYli\":{\"layout\":[\"fixed\",\"auto\"]},\"DRFNBKS1b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"NinFV1UqA\":{\"pattern\":\":NinFV1UqA\",\"name\":\"top\"},\"CzITvPFha\":{\"pattern\":\":CzITvPFha\",\"name\":\"hero\"},\"L6W_4dmTl\":{\"pattern\":\":L6W_4dmTl\",\"name\":\"case-studies\"},\"pjAr8lDsd\":{\"pattern\":\":pjAr8lDsd\",\"name\":\"work-experience\"},\"CZfHZEVtN\":{\"pattern\":\":CZfHZEVtN\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramertAKeyHR37=withCSS(Component,css,\"framer-fyY3O\");export default FramertAKeyHR37;FramertAKeyHR37.displayName=\"Home\";FramertAKeyHR37.defaultProps={height:6047,width:1400};addFonts(FramertAKeyHR37,[{explicitInter:true,fonts:[{family:\"TGS Perfect Condensed\",source:\"custom\",url:\"https://framerusercontent.com/assets/OpJMRzWLkBxXv4sWgamHzC4.woff2\"},{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:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"}]},...TopNavFonts,...ButtonFonts,...VimeoFonts,...ToolsFonts,...TickerFonts,...ProjectCardFonts,...ExperienceFonts,...FooterFonts,...VisitCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertAKeyHR37\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d0GqWRYli\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DRFNBKS1b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1400\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"6047\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"NinFV1UqA\\\":{\\\"pattern\\\":\\\":NinFV1UqA\\\",\\\"name\\\":\\\"top\\\"},\\\"CzITvPFha\\\":{\\\"pattern\\\":\\\":CzITvPFha\\\",\\\"name\\\":\\\"hero\\\"},\\\"L6W_4dmTl\\\":{\\\"pattern\\\":\\\":L6W_4dmTl\\\",\\\"name\\\":\\\"case-studies\\\"},\\\"pjAr8lDsd\\\":{\\\"pattern\\\":\\\":pjAr8lDsd\\\",\\\"name\\\":\\\"work-experience\\\"},\\\"CZfHZEVtN\\\":{\\\"pattern\\\":\\\":CZfHZEVtN\\\",\\\"name\\\":\\\"footer\\\"}}\"}},\"__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", "t", "r", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "t", "s", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "i", "h", "u", "d", "f", "l", "g", "glide", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "noopReturn", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText2", "css", "FramerjhJl_aApf", "withCSS", "jhJl_aApf_default", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "S1ZA_r5TM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "RichText2", "SVG", "css", "FramerL9iH6cpuF", "withCSS", "L9iH6cpuF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "css", "FramerSGKTYOK6t", "withCSS", "SGKTYOK6t_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "SVG", "css", "FramerWUPcCODow", "withCSS", "WUPcCODow_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "Image2", "css", "Framerzr00Tmdx_", "withCSS", "zr00Tmdx_default", "addPropertyControls", "ControlType", "addFonts", "TopNavFonts", "getFonts", "SatP92P1v_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonFonts", "WUPcCODow_default", "VimeoFonts", "Vimeo_default", "ToolsFonts", "zr00Tmdx_default", "TickerFonts", "Ticker", "ProjectCardFonts", "L9iH6cpuF_default", "ContainerWithFX", "withFX", "ExperienceFonts", "SGKTYOK6t_default", "FooterFonts", "rf9xDC3ks_default", "VisitCursorFonts", "jhJl_aApf_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "animation9", "animation10", "transition6", "animation11", "animation12", "animation13", "animation14", "animation15", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition7", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "isDisplayed1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "x", "css", "FramertAKeyHR37", "withCSS", "tAKeyHR37_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
