{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/9yhZnwQnqadGwS8iJufN/Ticker.js", "ssg:https://framerusercontent.com/modules/cn4wZr6TFzIuxFEcKSh2/WqDbQbSU5uTops7cHXow/Hx77_WsN9.js", "ssg:https://framerusercontent.com/modules/zDtqZWbhG7WuTBmbs2lR/7UoQfq9whZllAD2lWmt4/YoIZt5qsx.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 e,jsxs as t}from\"react/jsx-runtime\";import{Children as i,useEffect as n,useState as l,useRef as r,useMemo as o,createRef as a,useCallback as d,cloneElement as p}from\"react\";import{addPropertyControls as u,ControlType as c,RenderTarget as s}from\"framer\";import{useAnimationFrame as h,useReducedMotion as f,LayoutGroup as g,useInView as m,useMotionValue as y,useTransform as v,motion as x,wrap as b}from\"framer-motion\";import{resize as w}from\"@motionone/dom\";let I=100,T={left:e=>`translateX(-${e}px)`,right:e=>`translateX(${e}px)`,top:e=>`translateY(-${e}px)`,bottom:e=>`translateY(${e}px)`},S=\"undefined\"!=typeof Animation&&\"function\"==typeof Animation.prototype.updatePlaybackRate;/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function $(u){/* Props */let{slots:c,gap:I,padding:$,paddingPerSide:N,paddingTop:O,paddingRight:P,paddingBottom:H,paddingLeft:L,speed:z,hoverFactor:R,direction:j,alignment:F,sizingOptions:D,fadeOptions:E,style:K}=u,{fadeContent:X,overflow:Y,fadeWidth:G,fadeInset:q,fadeAlpha:J}=E,{widthType:Q,heightType:U}=D,Z=N?`${O}px ${P}px ${H}px ${L}px`:`${$}px`,_=s.current()===s.canvas,ee=i.count(c),et=ee>0;!0===j&&(j=\"left\");let ei=\"left\"===j||\"right\"===j,en=y(0),el=T[j],er=v(en,el),eo=r(null),ea=o(()=>[/*#__PURE__*/a(),/*#__PURE__*/a()],[]),[ed,ep]=l({parent:null,children:null}),eu=[],ec=[],es=0,eh=0;_&&(es=ee?Math.floor(10/ee):0,eh=1),!_&&et&&ed.parent&&(es=Math.min(es=Math.round(ed.parent/ed.children*2)+1,100),eh=1);/* Measure parent and child */let ef=d(()=>{if(et&&eo.current){let e=ei?eo.current.offsetWidth:eo.current.offsetHeight,t=ea[0].current?ei?ea[0].current.offsetLeft:ea[0].current.offsetTop:0,i=ea[1].current?ei?ea[1].current.offsetLeft+ea[1].current.offsetWidth:ea[1].current.offsetTop+ea[1].current.offsetHeight:0;ep({parent:e,children:i-t+I});}},[]),eg=_?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(et){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!_){/**\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 e=r(!0);n(()=>(ef(),w(eo.current,({contentSize:t})=>{!e.current&&(t.width||t.height)&&ef(),e.current=!1;})),[]);}eu=i.map(c,(t,i)=>{var n,l,r,o;let a;0===i&&(a=ea[0]),i===c.length-1&&(a=ea[1]);let d={width:Q?null===(n=t.props)||void 0===n?void 0:n.width:\"100%\",height:U?null===(l=t.props)||void 0===l?void 0:l.height:\"100%\"};return /*#__PURE__*/e(g,{inherit:\"id\",children:/*#__PURE__*/e(\"li\",{ref:a,style:d,children:/*#__PURE__*/p(t,{style:{...null===(r=t.props)||void 0===r?void 0:r.style,...d,flexShrink:0,...eg},layoutId:t.props.layoutId?t.props.layoutId+\"-original-\"+i:void 0},null===(o=t.props)||void 0===o?void 0:o.children)})});});}if(!_)for(let t=0;t<es;t++)ec=[...ec,...i.map(c,(i,n)=>{var l,r,o,a,d,u;let c={width:Q?null===(l=i.props)||void 0===l?void 0:l.width:\"100%\",height:U?null===(r=i.props)||void 0===r?void 0:r.height:\"100%\"};return /*#__PURE__*/e(g,{inherit:\"id\",children:/*#__PURE__*/e(\"li\",{style:c,\"aria-hidden\":!0,children:/*#__PURE__*/p(i,{key:t+\" \"+n,style:{...null===(o=i.props)||void 0===o?void 0:o.style,width:Q?null===(a=i.props)||void 0===a?void 0:a.width:\"100%\",height:U?null===(d=i.props)||void 0===d?void 0:d.height:\"100%\",flexShrink:0,...eg},layoutId:i.props.layoutId?i.props.layoutId+\"-dupe-\"+t:void 0},null===(u=i.props)||void 0===u?void 0:u.children)},t+\"li\"+n)},t+\"lg\"+n);})];let em=ed.children+ed.children*Math.round(ed.parent/ed.children),ey=r(null),ev=r(null),ex=r(0),eb=r(!1),ew=f(),eI=r(null),eT=r(null);/**\n     * Setup animations\n     */if(!_){let e=m(eo);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */S?n(()=>{if(!ew&&em&&z)return eT.current=eI.current.animate({transform:[el(0),el(em)]},{duration:Math.abs(em)/z*1e3,iterations:1/0,easing:\"linear\"}),()=>eT.current.cancel();},[R,em,z]):/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */h(t=>{if(!em||ew||S)return;null===ey.current&&(ey.current=t),t-=ey.current;let i=null===ev.current?0:t-ev.current,n=i*(z/1e3);eb.current&&(n*=R),ex.current+=n,ex.current=b(0,em,ex.current),ev.current=t,e&&en.set(ex.current);});}let eS=G/2,e$=W(q,0,eS),eC=100-q,eM=`linear-gradient(${ei?\"to right\":\"to bottom\"}, rgba(0, 0, 0, ${J}) ${e$}%, rgba(0, 0, 0, 1) ${eS}%, rgba(0, 0, 0, 1) ${100-G/2}%, rgba(0, 0, 0, ${J}) ${eC}%)`;return /* Empty state */et?/*#__PURE__*/e(\"section\",{style:{...C,opacity:eh,WebkitMaskImage:X?eM:void 0,MozMaskImage:X?eM:void 0,maskImage:X?eM:void 0,overflow:Y?\"visible\":\"hidden\",padding:Z},ref:eo,children:/*#__PURE__*/t(x.ul,{ref:eI,style:{...C,gap:I,top:\"bottom\"===j&&B(em)?-em:void 0,left:\"right\"===j&&B(em)?-em:void 0,placeItems:F,position:\"relative\",flexDirection:ei?\"row\":\"column\",...K,transform:S?void 0:er,willChange:_?\"auto\":\"transform\"},onMouseEnter:()=>{eb.current=!0,eT.current&&eT.current.updatePlaybackRate(R);},onMouseLeave:()=>{eb.current=!1,eT.current&&eT.current.updatePlaybackRate(1);},children:[eu,ec]})}):/*#__PURE__*/t(\"section\",{style:M,children:[/*#__PURE__*/e(\"div\",{style:V,children:\"\u2728\"}),/*#__PURE__*/e(\"p\",{style:k,children:\"Connect to Content\"}),/*#__PURE__*/e(\"p\",{style:A,children:\"Add layers or components to infinitely loop on your page.\"})]});}/* Default Properties */$.defaultProps={gap:10,padding:10,sizingOptions:{widthType:!0,heightType:!0},fadeOptions:{fadeContent:!0,overflow:!1,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:!0},/* Property Controls */u($,{slots:{type:c.Array,title:\"Children\",control:{type:c.ComponentInstance}},speed:{type:c.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:!0,step:5},direction:{type:c.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:!0},alignment:{type:c.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:!0},gap:{type:c.Number,title:\"Gap\"},padding:{title:\"Padding\",type:c.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:c.Object,title:\"Sizing\",controls:{widthType:{type:c.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:!0},heightType:{type:c.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:!0}}},fadeOptions:{type:c.Object,title:\"Clipping\",controls:{fadeContent:{type:c.Boolean,title:\"Fade\",defaultValue:!0},overflow:{type:c.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:!1,hidden:e=>!0===e.fadeContent},fadeWidth:{type:c.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:e=>!1===e.fadeContent},fadeInset:{type:c.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:e=>!1===e.fadeContent},fadeAlpha:{type:c.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden:e=>!1===e.fadeContent}}},hoverFactor:{type:c.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:!0,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */let C={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"},M={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\"},V={fontSize:32,marginBottom:10},k={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"},A={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"},W=(e,t,i)=>Math.min(Math.max(e,t),i),B=e=>\"number\"==typeof e&&!isNaN(e);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (32b4767)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,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/ef5o3iEjXFWPeJ16Amg4/mcUeDld6yg5b4htNj347/apzLN_0g5.js\";const enabledGestures={V_nTVCAfe:{hover:true}};const cycleOrder=[\"V_nTVCAfe\",\"qVg1vVHG2\"];const serializationHash=\"framer-XwtvE\";const variantClassNames={qVg1vVHG2:\"framer-v-1po2iuk\",V_nTVCAfe:\"framer-v-9ku0u\"};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 transitions={default:{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={\"Variant 1\":\"V_nTVCAfe\",\"Variant 2\":\"qVg1vVHG2\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,J5ZrpbQb5:(_ref=title!==null&&title!==void 0?title:props.J5ZrpbQb5)!==null&&_ref!==void 0?_ref:\"Start with Brand\",SLb2a407O:link!==null&&link!==void 0?link:props.SLb2a407O,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"V_nTVCAfe\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,SLb2a407O,J5ZrpbQb5,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"V_nTVCAfe\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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:transition,children:/*#__PURE__*/_jsx(Link,{href:SLb2a407O,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-9ku0u\",className,classNames)} framer-1c0qocd`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"V_nTVCAfe\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(77, 77, 77)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(57px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,boxShadow:\"none\",WebkitBackdropFilter:\"blur(57px)\",...style},variants:{\"V_nTVCAfe-hover\":{backgroundColor:\"rgb(60, 60, 60)\",boxShadow:\"0px 0.6021873017743928px 1.3248120639036642px -0.3333333333333333px rgba(0, 0, 0, 0.05903), 0px 2.288533303243457px 5.034773267135606px -0.6666666666666666px rgba(0, 0, 0, 0.08433), 0px 10px 22px -1px rgba(0, 0, 0, 0.2)\"}},...addPropertyOverrides({\"V_nTVCAfe-hover\":{\"data-framer-name\":undefined},qVg1vVHG2:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-yvaguh\",\"data-styles-preset\":\"apzLN_0g5\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(77, 77, 77))\"},children:\"Start with Brand\"})}),className:\"framer-13thgoo\",layoutDependency:layoutDependency,layoutId:\"CA5Sx2Mod\",style:{\"--extracted-r6o4lv\":\"rgb(77, 77, 77)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:J5ZrpbQb5,variants:{\"V_nTVCAfe-hover\":{\"--extracted-r6o4lv\":\"rgb(245, 245, 245)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"V_nTVCAfe-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-yvaguh\",\"data-styles-preset\":\"apzLN_0g5\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"Start with Brand \u2192\"})}),text:undefined},qVg1vVHG2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-yvaguh\",\"data-styles-preset\":\"apzLN_0g5\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(77, 77, 77))\"},children:\"Coming Soon\"})}),text:undefined}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-XwtvE[data-border=\"true\"]::after, .framer-XwtvE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XwtvE.framer-1c0qocd, .framer-XwtvE .framer-1c0qocd { display: block; }\",\".framer-XwtvE.framer-9ku0u { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 20px 20px 20px; position: relative; text-decoration: none; width: 280px; }\",\".framer-XwtvE .framer-13thgoo { flex: none; height: auto; position: relative; 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-XwtvE.framer-9ku0u { gap: 0px; } .framer-XwtvE.framer-9ku0u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XwtvE.framer-9ku0u > :first-child { margin-top: 0px; } .framer-XwtvE.framer-9ku0u > :last-child { margin-bottom: 0px; } }\",\".framer-XwtvE.framer-v-1po2iuk.framer-9ku0u { cursor: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 69\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qVg1vVHG2\":{\"layout\":[\"fixed\",\"auto\"]},\"JPsJo4mA7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SLb2a407O\":\"link\",\"J5ZrpbQb5\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerHx77_WsN9=withCSS(Component,css,\"framer-XwtvE\");export default FramerHx77_WsN9;FramerHx77_WsN9.displayName=\"featureToPage\";FramerHx77_WsN9.defaultProps={height:69,width:280};addPropertyControls(FramerHx77_WsN9,{variant:{options:[\"V_nTVCAfe\",\"qVg1vVHG2\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},SLb2a407O:{title:\"Link\",type:ControlType.Link},J5ZrpbQb5:{defaultValue:\"Start with Brand\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerHx77_WsN9,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHx77_WsN9\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"69\",\"framerIntrinsicWidth\":\"280\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"SLb2a407O\\\":\\\"link\\\",\\\"J5ZrpbQb5\\\":\\\"title\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qVg1vVHG2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JPsJo4mA7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f979fb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/Ycw95yYPzpr98rHtCJMh/BlurGradient.js\";import FeatureToPage from\"https://framerusercontent.com/modules/cn4wZr6TFzIuxFEcKSh2/WqDbQbSU5uTops7cHXow/Hx77_WsN9.js\";const FeatureToPageFonts=getFonts(FeatureToPage);const BlurGradientFonts=getFonts(BlurGradient);const enabledGestures={BOln7756t:{hover:true},Db8Of8e8H:{hover:true},e6L21yRPi:{hover:true},mgvnf2ve5:{hover:true},TMNpkgU9Z:{hover:true},wtaygCf8N:{hover:true}};const cycleOrder=[\"mgvnf2ve5\",\"wtaygCf8N\",\"Db8Of8e8H\",\"e6L21yRPi\",\"NdXfX0epD\",\"lV7A0oRAQ\",\"BOln7756t\",\"TMNpkgU9Z\",\"aEK7RIqtT\",\"CPiyPl4Lz\"];const serializationHash=\"framer-tFjbv\";const variantClassNames={aEK7RIqtT:\"framer-v-hcq03q\",BOln7756t:\"framer-v-c0ml0\",CPiyPl4Lz:\"framer-v-muwgcw\",Db8Of8e8H:\"framer-v-wbrvr9\",e6L21yRPi:\"framer-v-15m1xm9\",lV7A0oRAQ:\"framer-v-p5gk6k\",mgvnf2ve5:\"framer-v-1d603kw\",NdXfX0epD:\"framer-v-1u3wkoe\",TMNpkgU9Z:\"framer-v-1msgwkp\",wtaygCf8N:\"framer-v-abg869\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 5\":\"NdXfX0epD\",\"Variant 6\":\"lV7A0oRAQ\",\"Variant 7\":\"BOln7756t\",\"Variant 8\":\"TMNpkgU9Z\",brand:\"mgvnf2ve5\",brandInactive:\"Db8Of8e8H\",brandStatic:\"aEK7RIqtT\",porfolioStatic:\"CPiyPl4Lz\",portfolio:\"wtaygCf8N\",portfolioInactive:\"e6L21yRPi\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,igMYoBH9G:tap!==null&&tap!==void 0?tap:props.igMYoBH9G,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"mgvnf2ve5\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,igMYoBH9G,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"mgvnf2ve5\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapc2dt3u=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(igMYoBH9G){const res=await igMYoBH9G(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"wtaygCf8N-hover\",\"e6L21yRPi-hover\",\"TMNpkgU9Z-hover\"].includes(gestureVariant))return false;if([\"wtaygCf8N\",\"e6L21yRPi\",\"NdXfX0epD\",\"lV7A0oRAQ\",\"TMNpkgU9Z\",\"aEK7RIqtT\",\"CPiyPl4Lz\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"wtaygCf8N-hover\",\"e6L21yRPi-hover\",\"TMNpkgU9Z-hover\"].includes(gestureVariant))return false;if([\"wtaygCf8N\",\"e6L21yRPi\",\"TMNpkgU9Z\",\"CPiyPl4Lz\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"NdXfX0epD\")return true;return false;};const isDisplayed3=()=>{if([\"wtaygCf8N-hover\",\"e6L21yRPi-hover\",\"TMNpkgU9Z-hover\"].includes(gestureVariant))return true;if([\"wtaygCf8N\",\"e6L21yRPi\",\"TMNpkgU9Z\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed4=()=>{if(baseVariant===\"lV7A0oRAQ\")return true;return false;};const isDisplayed5=()=>{if([\"mgvnf2ve5-hover\",\"wtaygCf8N-hover\",\"Db8Of8e8H-hover\",\"e6L21yRPi-hover\"].includes(gestureVariant))return false;if([\"wtaygCf8N\",\"Db8Of8e8H\",\"e6L21yRPi\",\"aEK7RIqtT\",\"CPiyPl4Lz\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(gestureVariant===\"mgvnf2ve5-hover\")return true;return false;};const isDisplayed7=()=>{if(gestureVariant===\"wtaygCf8N-hover\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"CPiyPl4Lz\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"aEK7RIqtT\")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:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1d603kw\",className,classNames),\"data-border\":true,\"data-framer-name\":\"brand\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mgvnf2ve5\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapc2dt3u,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(224, 224, 224)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.5833333333333333px rgba(0, 0, 0, 0.22395), 0px 2.288533303243457px 2.288533303243457px -3.1666666666666665px rgba(0, 0, 0, 0.18601), 0px 10px 10px -4.75px rgba(0, 0, 0, 0.0125)\",...style},variants:{\"mgvnf2ve5-hover\":{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.5833333333333333px rgba(0, 0, 0, 0), 0px 2.288533303243457px 2.288533303243457px -3.1666666666666665px rgba(0, 0, 0, 0), 0px 10px 10px -4.75px rgba(0, 0, 0, 0)\"},\"wtaygCf8N-hover\":{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.5833333333333333px rgba(0, 0, 0, 0), 0px 2.288533303243457px 2.288533303243457px -3.1666666666666665px rgba(0, 0, 0, 0), 0px 10px 10px -4.75px rgba(0, 0, 0, 0)\"},aEK7RIqtT:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},CPiyPl4Lz:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},e6L21yRPi:{\"--border-left-width\":\"0.5px\"}},...addPropertyOverrides({\"BOln7756t-hover\":{\"data-framer-name\":undefined},\"Db8Of8e8H-hover\":{\"data-framer-name\":undefined},\"e6L21yRPi-hover\":{\"data-framer-name\":undefined},\"mgvnf2ve5-hover\":{\"data-framer-name\":undefined},\"TMNpkgU9Z-hover\":{\"data-framer-name\":undefined},\"wtaygCf8N-hover\":{\"data-framer-name\":undefined},aEK7RIqtT:{\"data-framer-name\":\"brandStatic\"},BOln7756t:{\"data-framer-name\":\"Variant 7\"},CPiyPl4Lz:{\"data-framer-name\":\"porfolioStatic\"},Db8Of8e8H:{\"data-framer-name\":\"brandInactive\"},e6L21yRPi:{\"data-framer-name\":\"portfolioInactive\"},lV7A0oRAQ:{\"data-framer-name\":\"Variant 6\"},NdXfX0epD:{\"data-framer-name\":\"Variant 5\"},TMNpkgU9Z:{\"data-framer-name\":\"Variant 8\"},wtaygCf8N:{\"data-framer-name\":\"portfolio\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:894.5,intrinsicWidth:894.5,pixelHeight:1789,pixelWidth:1789,sizes:\"303px\",src:\"https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=512 512w, https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png 1789w\"},className:\"framer-1lgv0hh\",\"data-framer-name\":\"Rectangle_1\",layoutDependency:layoutDependency,layoutId:\"qCLw3vyp_\",style:{filter:\"grayscale(0) hue-rotate(0deg)\",opacity:.4,rotate:180,WebkitFilter:\"grayscale(0) hue-rotate(0deg)\"},transformTemplate:transformTemplate1,variants:{\"Db8Of8e8H-hover\":{filter:\"grayscale(0.2) hue-rotate(0deg)\",WebkitFilter:\"grayscale(0.2) hue-rotate(0deg)\"},\"mgvnf2ve5-hover\":{opacity:1,rotate:0},Db8Of8e8H:{opacity:.3}},...addPropertyOverrides({\"mgvnf2ve5-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:894.5,intrinsicWidth:894.5,pixelHeight:1789,pixelWidth:1789,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 476px)`,src:\"https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=512 512w, https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png 1789w\"},transformTemplate:undefined},Db8Of8e8H:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:515.5,intrinsicWidth:515.5,pixelHeight:1031,pixelWidth:1031,sizes:\"516px\",src:\"https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png 1031w\"},className:\"framer-2fg338\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"dAQ2eqO_i\",transformTemplate:transformTemplate2,...addPropertyOverrides({\"mgvnf2ve5-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:515.5,intrinsicWidth:515.5,pixelHeight:1031,pixelWidth:1031,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 120px)`,src:\"https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png 1031w\"},transformTemplate:undefined}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:894.5,intrinsicWidth:894.5,pixelHeight:1789,pixelWidth:1789,src:\"https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=512 512w, https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png 1789w\"},className:\"framer-96vfey\",\"data-framer-name\":\"Rectangle_1\",layoutDependency:layoutDependency,layoutId:\"UTav5jlUg\",style:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},...addPropertyOverrides({NdXfX0epD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:894.5,intrinsicWidth:894.5,pixelHeight:1789,pixelWidth:1789,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 544px)`,src:\"https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=512 512w, https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/VPdVwfQr0aynHNh1XbZsIieQBxY.png 1789w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10x5rcx\",layoutDependency:layoutDependency,layoutId:\"XivP6iuT4\",style:{filter:\"grayscale(1) blur(0px)\",opacity:1,rotate:0,WebkitFilter:\"grayscale(1) blur(0px)\"},variants:{\"e6L21yRPi-hover\":{filter:\"grayscale(0.2) blur(0px)\",WebkitFilter:\"grayscale(0.2) blur(0px)\"},\"wtaygCf8N-hover\":{rotate:-45},e6L21yRPi:{opacity:.3},TMNpkgU9Z:{filter:\"grayscale(0) blur(0px)\",WebkitFilter:\"grayscale(0) blur(0px)\"},wtaygCf8N:{filter:\"grayscale(0) blur(0px)\",WebkitFilter:\"grayscale(0) blur(0px)\"}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,src:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512 512w, https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png 600w\"},className:\"framer-o5yrtf\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"stJwMNVOh\",style:{filter:\"none\",opacity:.7,WebkitFilter:\"none\"},variants:{\"wtaygCf8N-hover\":{filter:\"hue-rotate(25deg) saturate(1.2)\",opacity:.3,WebkitFilter:\"hue-rotate(25deg) saturate(1.2)\"},TMNpkgU9Z:{opacity:.4},wtaygCf8N:{opacity:.4}},...addPropertyOverrides({\"wtaygCf8N-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512 512w, https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png 600w\"}},e6L21yRPi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512 512w, https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png 600w\"}},TMNpkgU9Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512 512w, https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png 600w\"}},wtaygCf8N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512 512w, https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png 600w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,src:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512 512w, https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png 600w\"},className:\"framer-xr8jdo\",\"data-framer-name\":\"Rectangle_1\",layoutDependency:layoutDependency,layoutId:\"KVO8VAYB7\",style:{filter:\"none\",opacity:.7,WebkitFilter:\"none\"},variants:{\"wtaygCf8N-hover\":{filter:\"saturate(1.2)\",opacity:.3,WebkitFilter:\"saturate(1.2)\"},TMNpkgU9Z:{opacity:.4},wtaygCf8N:{opacity:.4}},...addPropertyOverrides({\"wtaygCf8N-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512 512w, https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png 600w\"}},e6L21yRPi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512 512w, https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png 600w\"}},TMNpkgU9Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512 512w, https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png 600w\"}},wtaygCf8N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512 512w, https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png 600w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300.5,pixelHeight:206,pixelWidth:601,src:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512 512w, https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png 601w\"},className:\"framer-hmolte\",\"data-framer-name\":\"Rectangle_2\",layoutDependency:layoutDependency,layoutId:\"KBUUHsoPn\",style:{filter:\"none\",opacity:.7,WebkitFilter:\"none\"},variants:{\"wtaygCf8N-hover\":{filter:\"saturate(1.2)\",opacity:.3,WebkitFilter:\"saturate(1.2)\"},TMNpkgU9Z:{opacity:.4},wtaygCf8N:{opacity:.4}},...addPropertyOverrides({\"wtaygCf8N-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300.5,pixelHeight:206,pixelWidth:601,sizes:\"423px\",src:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512 512w, https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png 601w\"}},e6L21yRPi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300.5,pixelHeight:206,pixelWidth:601,sizes:\"205px\",src:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512 512w, https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png 601w\"}},TMNpkgU9Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300.5,pixelHeight:206,pixelWidth:601,sizes:\"205px\",src:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512 512w, https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png 601w\"}},wtaygCf8N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300.5,pixelHeight:206,pixelWidth:601,sizes:\"205px\",src:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512 512w, https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png 601w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103.5,intrinsicWidth:300,pixelHeight:207,pixelWidth:600,src:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512 512w, https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png 600w\"},className:\"framer-crj5xj\",\"data-framer-name\":\"Rectangle_3\",layoutDependency:layoutDependency,layoutId:\"Dj9YlpQ51\",style:{filter:\"none\",opacity:.7,WebkitFilter:\"none\"},variants:{\"wtaygCf8N-hover\":{filter:\"saturate(1.2)\",opacity:.3,WebkitFilter:\"saturate(1.2)\"},TMNpkgU9Z:{opacity:.4},wtaygCf8N:{opacity:.4}},...addPropertyOverrides({\"wtaygCf8N-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103.5,intrinsicWidth:300,pixelHeight:207,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512 512w, https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png 600w\"}},e6L21yRPi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103.5,intrinsicWidth:300,pixelHeight:207,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512 512w, https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png 600w\"}},TMNpkgU9Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103.5,intrinsicWidth:300,pixelHeight:207,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512 512w, https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png 600w\"}},wtaygCf8N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103.5,intrinsicWidth:300,pixelHeight:207,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512 512w, https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png 600w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,src:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512 512w, https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png 600w\"},className:\"framer-1asal6b\",\"data-framer-name\":\"Rectangle_4\",layoutDependency:layoutDependency,layoutId:\"y5itq4HVD\",style:{filter:\"none\",opacity:.7,WebkitFilter:\"none\"},variants:{\"wtaygCf8N-hover\":{filter:\"saturate(1.2)\",opacity:.3,WebkitFilter:\"saturate(1.2)\"},TMNpkgU9Z:{opacity:.4},wtaygCf8N:{opacity:.4}},...addPropertyOverrides({\"wtaygCf8N-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512 512w, https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png 600w\"}},e6L21yRPi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512 512w, https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png 600w\"}},TMNpkgU9Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512 512w, https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png 600w\"}},wtaygCf8N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512 512w, https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png 600w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,src:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512 512w, https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png 600w\"},className:\"framer-1rekcmt\",\"data-framer-name\":\"Rectangle_5\",layoutDependency:layoutDependency,layoutId:\"i6LoXLfHw\",style:{filter:\"none\",opacity:.7,WebkitFilter:\"none\"},variants:{\"wtaygCf8N-hover\":{filter:\"saturate(1.2)\",opacity:.3,WebkitFilter:\"saturate(1.2)\"},TMNpkgU9Z:{opacity:.4},wtaygCf8N:{opacity:.4}},...addPropertyOverrides({\"wtaygCf8N-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512 512w, https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png 600w\"}},e6L21yRPi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512 512w, https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png 600w\"}},TMNpkgU9Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512 512w, https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png 600w\"}},wtaygCf8N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"205px\",src:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512 512w, https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png 600w\"}}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:515.5,intrinsicWidth:515.5,pixelHeight:1031,pixelWidth:1031,src:\"https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png 1031w\"},className:\"framer-14gx9f8\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Pb4vUhoG8\",...addPropertyOverrides({NdXfX0epD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:515.5,intrinsicWidth:515.5,pixelHeight:1031,pixelWidth:1031,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 232px)`,src:\"https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ESN8Ay451htsIIG6v2GXYQrQQ.png 1031w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MMQTL6TGV\"},implicitPathVariables:undefined},{href:{webPageId:\"MMQTL6TGV\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kwna13-container\",layoutDependency:layoutDependency,layoutId:\"gfH9OlWMr-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(FeatureToPage,{height:\"100%\",id:\"gfH9OlWMr\",J5ZrpbQb5:\"Start with Brand\",layoutId:\"gfH9OlWMr\",SLb2a407O:resolvedLinks[0],style:{width:\"100%\"},variant:\"V_nTVCAfe\",width:\"100%\",...addPropertyOverrides({NdXfX0epD:{SLb2a407O:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IEJvbGQ=\",\"--framer-font-family\":'\"Geist Bold\", \"Geist Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(37, 37, 37))\"},children:\"Brand\"})}),className:\"framer-q8mh4q\",fonts:[\"CUSTOM;Geist Bold\"],layoutDependency:layoutDependency,layoutId:\"TKO7XYc3u\",style:{\"--extracted-1of0zx5\":\"rgb(37, 37, 37)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gw4b61\",layoutDependency:layoutDependency,layoutId:\"ZPxtw8TJa\",style:{filter:\"grayscale(0) blur(0px)\",rotate:-45,WebkitFilter:\"grayscale(0) blur(0px)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png?scale-down-to=512 512w, https://framerusercontent.com/images/2u1oMc3Ql2cKhmUJRZbeEQXRLA.png 600w\"},className:\"framer-1b2c07c\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"Tiv3R_Ea3\",style:{filter:\"hue-rotate(25deg)\",opacity:.3,WebkitFilter:\"hue-rotate(25deg)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png?scale-down-to=512 512w, https://framerusercontent.com/images/Xv06d45C9L3LNrlFbSYVeCFVXg.png 600w\"},className:\"framer-7ymqxb\",\"data-framer-name\":\"Rectangle_1\",layoutDependency:layoutDependency,layoutId:\"FfAy_naaz\",style:{opacity:.3}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300.5,pixelHeight:206,pixelWidth:601,sizes:\"423px\",src:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png?scale-down-to=512 512w, https://framerusercontent.com/images/Zet3egn6OZ5rmCqNud3l7XjbxCI.png 601w\"},className:\"framer-ps3j35\",\"data-framer-name\":\"Rectangle_2\",layoutDependency:layoutDependency,layoutId:\"Ycl272C2k\",style:{opacity:.3}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103.5,intrinsicWidth:300,pixelHeight:207,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png?scale-down-to=512 512w, https://framerusercontent.com/images/Ij3cn8k5TPt07hvFJAIyJGJ1j4U.png 600w\"},className:\"framer-e7ac96\",\"data-framer-name\":\"Rectangle_3\",layoutDependency:layoutDependency,layoutId:\"h6GnoVWSZ\",style:{opacity:.3}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png?scale-down-to=512 512w, https://framerusercontent.com/images/5Gn77wkADr680Q4SQl1ZVtzEEtA.png 600w\"},className:\"framer-hb9n2y\",\"data-framer-name\":\"Rectangle_4\",layoutDependency:layoutDependency,layoutId:\"g_0AckzG2\",style:{opacity:.3}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:103,intrinsicWidth:300,pixelHeight:206,pixelWidth:600,sizes:\"423px\",src:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png?scale-down-to=512 512w, https://framerusercontent.com/images/UxnZY8NSLr5E7toyZqJ5iHoYE2k.png 600w\"},className:\"framer-147wg1l\",\"data-framer-name\":\"Rectangle_5\",layoutDependency:layoutDependency,layoutId:\"P7cDtI68q\",style:{opacity:.3}})]}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO0dlaXN0IEJvbGQ=\",\"--framer-font-family\":'\"Geist Bold\", \"Geist Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(37, 37, 37))\"},children:\"Portfolio\"})}),className:\"framer-ecn89n\",fonts:[\"CUSTOM;Geist Bold\"],layoutDependency:layoutDependency,layoutId:\"Qyslz9foZ\",style:{\"--extracted-1of0zx5\":\"rgb(37, 37, 37)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13fwg53-container\",layoutDependency:layoutDependency,layoutId:\"Oq_wam1wr-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(FeatureToPage,{height:\"100%\",id:\"Oq_wam1wr\",J5ZrpbQb5:\"Coming Soon\",layoutId:\"Oq_wam1wr\",style:{width:\"100%\"},variant:\"qVg1vVHG2\",width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16l0y7j-container\",layoutDependency:layoutDependency,layoutId:\"O3vys3fex-container\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:10,borderRadius:0,direction:\"toBottom\",height:\"100%\",id:\"O3vys3fex\",layoutId:\"O3vys3fex\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ce3i0y-container\",layoutDependency:layoutDependency,layoutId:\"uVBKL_on7-container\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:10,borderRadius:0,direction:\"toBottom\",height:\"100%\",id:\"uVBKL_on7\",layoutId:\"uVBKL_on7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3dcvfe-container\",layoutDependency:layoutDependency,layoutId:\"ux9TrqpyH-container\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:10,borderRadius:0,direction:\"toBottom\",height:\"100%\",id:\"ux9TrqpyH\",layoutId:\"ux9TrqpyH\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:544,intrinsicWidth:544,pixelHeight:1088,pixelWidth:1088,src:\"https://framerusercontent.com/images/RPJzYwBhcIFbgCY0rhSxdOkJQLc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RPJzYwBhcIFbgCY0rhSxdOkJQLc.png?scale-down-to=512 512w, https://framerusercontent.com/images/RPJzYwBhcIFbgCY0rhSxdOkJQLc.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/RPJzYwBhcIFbgCY0rhSxdOkJQLc.png 1088w\"},className:\"framer-1q0ppb\",\"data-framer-name\":\"portfolio\",layoutDependency:layoutDependency,layoutId:\"r0o20m4Kh\",transformTemplate:transformTemplate2,...addPropertyOverrides({CPiyPl4Lz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:544,intrinsicWidth:544,pixelHeight:1088,pixelWidth:1088,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/RPJzYwBhcIFbgCY0rhSxdOkJQLc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RPJzYwBhcIFbgCY0rhSxdOkJQLc.png?scale-down-to=512 512w, https://framerusercontent.com/images/RPJzYwBhcIFbgCY0rhSxdOkJQLc.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/RPJzYwBhcIFbgCY0rhSxdOkJQLc.png 1088w\"}}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/IcVZsInDt0QlzBGh1XJixcVec.png\",srcSet:\"https://framerusercontent.com/images/IcVZsInDt0QlzBGh1XJixcVec.png?scale-down-to=512 512w, https://framerusercontent.com/images/IcVZsInDt0QlzBGh1XJixcVec.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/IcVZsInDt0QlzBGh1XJixcVec.png 1200w\"},className:\"framer-53qvnj\",\"data-framer-name\":\"Glass_Circles_Copy_3_1200x1200\",layoutDependency:layoutDependency,layoutId:\"zIEt5GREy\",transformTemplate:transformTemplate2,...addPropertyOverrides({aEK7RIqtT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/IcVZsInDt0QlzBGh1XJixcVec.png\",srcSet:\"https://framerusercontent.com/images/IcVZsInDt0QlzBGh1XJixcVec.png?scale-down-to=512 512w, https://framerusercontent.com/images/IcVZsInDt0QlzBGh1XJixcVec.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/IcVZsInDt0QlzBGh1XJixcVec.png 1200w\"}}},baseVariant,gestureVariant)})]})})})});});const css=['.framer-tFjbv[data-border=\"true\"]::after, .framer-tFjbv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tFjbv.framer-15neex1, .framer-tFjbv .framer-15neex1 { display: block; }\",\".framer-tFjbv.framer-1d603kw { cursor: default; height: 400px; overflow: hidden; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tFjbv .framer-1lgv0hh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 303px); left: 50%; overflow: visible; position: absolute; top: 45%; width: 303px; }\",\".framer-tFjbv .framer-2fg338 { aspect-ratio: 1 / 1; bottom: -470px; flex: none; height: var(--framer-aspect-ratio-supported, 516px); left: 50%; overflow: visible; position: absolute; width: 516px; }\",\".framer-tFjbv .framer-96vfey { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1413px); left: -272px; overflow: visible; position: absolute; right: -272px; top: -501px; }\",\".framer-tFjbv .framer-10x5rcx { flex: none; height: 426px; left: calc(50.057537399309574% - 205px / 2); overflow: visible; position: absolute; top: 95px; width: 205px; }\",\".framer-tFjbv .framer-o5yrtf { flex: none; height: 71px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 150px; }\",\".framer-tFjbv .framer-xr8jdo { flex: none; height: 71px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 191px; }\",\".framer-tFjbv .framer-hmolte { flex: none; height: 71px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 232px; }\",\".framer-tFjbv .framer-crj5xj { bottom: 82px; flex: none; height: 71px; left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-tFjbv .framer-1asal6b { bottom: 41px; flex: none; height: 71px; left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-tFjbv .framer-1rekcmt { bottom: 0px; flex: none; height: 71px; left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-tFjbv .framer-14gx9f8 { aspect-ratio: 1 / 1; bottom: -493px; flex: none; height: var(--framer-aspect-ratio-supported, 782px); left: -115px; overflow: visible; position: absolute; right: -116px; }\",\".framer-tFjbv .framer-kwna13-container { bottom: 22px; flex: none; height: auto; left: 50%; position: absolute; width: 300px; }\",\".framer-tFjbv .framer-q8mh4q { flex: none; height: auto; left: 50%; position: absolute; top: 49%; white-space: pre; width: auto; }\",\".framer-tFjbv .framer-gw4b61 { bottom: -224px; flex: none; overflow: visible; position: absolute; right: -17px; top: -204px; width: 545px; }\",\".framer-tFjbv .framer-1b2c07c { bottom: 97px; flex: none; height: 145px; left: calc(40.73394495412847% - 423px / 2); overflow: visible; position: absolute; width: 423px; }\",\".framer-tFjbv .framer-7ymqxb { bottom: 191px; flex: none; height: 145px; overflow: visible; position: absolute; right: 26px; width: 423px; }\",\".framer-tFjbv .framer-ps3j35 { bottom: 371px; flex: none; height: 146px; left: calc(38.899082568807366% - 423px / 2); overflow: visible; position: absolute; width: 423px; }\",\".framer-tFjbv .framer-e7ac96 { flex: none; height: 146px; left: calc(56.33027522935782% - 423px / 2); overflow: visible; position: absolute; top: 402px; width: 423px; }\",\".framer-tFjbv .framer-hb9n2y { flex: none; height: 146px; left: calc(37.06422018348626% - 423px / 2); overflow: visible; position: absolute; top: 214px; width: 423px; }\",\".framer-tFjbv .framer-147wg1l { flex: none; height: 146px; left: calc(60.73394495412846% - 423px / 2); overflow: visible; position: absolute; top: 120px; width: 423px; }\",\".framer-tFjbv .framer-ecn89n { flex: none; height: auto; left: 50%; position: absolute; top: 48%; white-space: pre; width: auto; }\",\".framer-tFjbv .framer-13fwg53-container { bottom: 30px; flex: none; height: auto; left: 50%; position: absolute; width: 300px; }\",\".framer-tFjbv .framer-16l0y7j-container { bottom: 12px; flex: none; height: 46%; left: calc(50.00000000000002% - 356px / 2); position: absolute; width: 356px; z-index: 2; }\",\".framer-tFjbv .framer-1ce3i0y-container, .framer-tFjbv .framer-3dcvfe-container { flex: none; height: 50%; left: 0px; position: absolute; right: 0px; top: -200px; z-index: 2; }\",\".framer-tFjbv .framer-1q0ppb, .framer-tFjbv .framer-53qvnj { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; left: 50%; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-tFjbv.framer-v-abg869 .framer-10x5rcx { left: calc(50.00000000000002% - 205px / 2); top: -95px; }\",\".framer-tFjbv.framer-v-abg869 .framer-o5yrtf, .framer-tFjbv.framer-v-abg869 .framer-xr8jdo, .framer-tFjbv.framer-v-abg869 .framer-hmolte, .framer-tFjbv.framer-v-abg869 .framer-crj5xj, .framer-tFjbv.framer-v-abg869 .framer-1asal6b, .framer-tFjbv.framer-v-abg869 .framer-1rekcmt { aspect-ratio: 2.887323943661972 / 1; height: var(--framer-aspect-ratio-supported, 71px); }\",\".framer-tFjbv.framer-v-wbrvr9 .framer-1lgv0hh { top: 36px; }\",\".framer-tFjbv.framer-v-15m1xm9 .framer-10x5rcx { left: calc(49.81818181818184% - 205px / 2); top: -70px; }\",\".framer-tFjbv.framer-v-1msgwkp .framer-10x5rcx { left: calc(50.00000000000002% - 205px / 2); top: -65px; }\",\".framer-tFjbv.framer-v-1d603kw.hover .framer-1lgv0hh { height: var(--framer-aspect-ratio-supported, 876px); left: -238px; right: -238px; top: -478px; width: unset; }\",\".framer-tFjbv.framer-v-1d603kw.hover .framer-2fg338 { bottom: -377px; height: var(--framer-aspect-ratio-supported, 520px); left: -59px; right: -60px; width: unset; }\",\".framer-tFjbv.framer-v-abg869.hover .framer-10x5rcx { bottom: -224px; height: unset; left: unset; right: -17px; top: -204px; width: 545px; }\",\".framer-tFjbv.framer-v-abg869.hover .framer-o5yrtf { aspect-ratio: unset; bottom: 77px; height: 145px; left: calc(38.899082568807366% - 423px / 2); right: unset; top: unset; width: 423px; }\",\".framer-tFjbv.framer-v-abg869.hover .framer-xr8jdo { aspect-ratio: unset; bottom: 161px; height: 145px; left: unset; right: 26px; top: unset; width: 423px; }\",\".framer-tFjbv.framer-v-abg869.hover .framer-hmolte { aspect-ratio: unset; bottom: 331px; height: 146px; left: calc(38.899082568807366% - 423px / 2); right: unset; top: unset; width: 423px; }\",\".framer-tFjbv.framer-v-abg869.hover .framer-crj5xj { aspect-ratio: unset; bottom: unset; height: 146px; left: calc(56.33027522935782% - 423px / 2); right: unset; top: 422px; width: 423px; }\",\".framer-tFjbv.framer-v-abg869.hover .framer-1asal6b { aspect-ratio: unset; bottom: unset; height: 146px; left: calc(37.06422018348626% - 423px / 2); right: unset; top: 244px; width: 423px; }\",\".framer-tFjbv.framer-v-abg869.hover .framer-1rekcmt { aspect-ratio: unset; bottom: unset; height: 146px; left: calc(60.73394495412846% - 423px / 2); right: unset; top: 180px; width: 423px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wtaygCf8N\":{\"layout\":[\"fixed\",\"fixed\"]},\"Db8Of8e8H\":{\"layout\":[\"fixed\",\"fixed\"]},\"e6L21yRPi\":{\"layout\":[\"fixed\",\"fixed\"]},\"NdXfX0epD\":{\"layout\":[\"fixed\",\"fixed\"]},\"lV7A0oRAQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"BOln7756t\":{\"layout\":[\"fixed\",\"fixed\"]},\"TMNpkgU9Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"aEK7RIqtT\":{\"layout\":[\"fixed\",\"fixed\"]},\"CPiyPl4Lz\":{\"layout\":[\"fixed\",\"fixed\"]},\"R_jr0ZkRy\":{\"layout\":[\"fixed\",\"fixed\"]},\"geC2RkrvY\":{\"layout\":[\"fixed\",\"fixed\"]},\"G0AWH_ycE\":{\"layout\":[\"fixed\",\"fixed\"]},\"EXfEqPoVM\":{\"layout\":[\"fixed\",\"fixed\"]},\"pr2AYvKhb\":{\"layout\":[\"fixed\",\"fixed\"]},\"bqVtr5YJI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"igMYoBH9G\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYoIZt5qsx=withCSS(Component,css,\"framer-tFjbv\");export default FramerYoIZt5qsx;FramerYoIZt5qsx.displayName=\"animFeature\";FramerYoIZt5qsx.defaultProps={height:400,width:400};addPropertyControls(FramerYoIZt5qsx,{variant:{options:[\"mgvnf2ve5\",\"wtaygCf8N\",\"Db8Of8e8H\",\"e6L21yRPi\",\"NdXfX0epD\",\"lV7A0oRAQ\",\"BOln7756t\",\"TMNpkgU9Z\",\"aEK7RIqtT\",\"CPiyPl4Lz\"],optionTitles:[\"brand\",\"portfolio\",\"brandInactive\",\"portfolioInactive\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"brandStatic\",\"porfolioStatic\"],title:\"Variant\",type:ControlType.Enum},igMYoBH9G:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerYoIZt5qsx,[{family:\"Geist Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/xwymHMxeZX6DV0bbAhDQA7823iY.woff2\"},...FeatureToPageFonts,...BlurGradientFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYoIZt5qsx\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerVariables\":\"{\\\"igMYoBH9G\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"400\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wtaygCf8N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Db8Of8e8H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e6L21yRPi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NdXfX0epD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lV7A0oRAQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BOln7756t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TMNpkgU9Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aEK7RIqtT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CPiyPl4Lz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R_jr0ZkRy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"geC2RkrvY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G0AWH_ycE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EXfEqPoVM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pr2AYvKhb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bqVtr5YJI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "l", "cubicBezier", "__rest", "e", "t", "o", "n", "e", "t", "r", "n", "calcGeneratorVelocity", "s", "a", "velocityPerSecond", "r", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "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", "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", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "T", "e", "S", "$", "u", "c", "I", "N", "O", "P", "H", "L", "z", "R", "j", "F", "D", "E", "K", "X", "Y", "G", "q", "J", "Q", "U", "Z", "_", "RenderTarget", "ee", "et", "ei", "en", "useMotionValue", "el", "er", "useTransform", "eo", "pe", "ea", "se", "W", "ed", "ep", "ye", "eu", "ec", "es", "eh", "ef", "te", "t", "i", "eg", "ue", "resize", "n", "l", "r", "o", "a", "d", "p", "LayoutGroup", "em", "ey", "ev", "ex", "eb", "ew", "useReducedMotion", "eI", "eT", "useInView", "useAnimationFrame", "wrap", "eS", "e$", "eC", "eM", "C", "motion", "B", "M", "V", "k", "A", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "SLb2a407O", "J5ZrpbQb5", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerHx77_WsN9", "withCSS", "Hx77_WsN9_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "FeatureToPageFonts", "getFonts", "Hx77_WsN9_default", "BlurGradientFonts", "BlurGradient_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "igMYoBH9G", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapc2dt3u", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "router", "useRouter", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "RichText2", "css", "FramerYoIZt5qsx", "withCSS", "YoIZt5qsx_default", "addPropertyControls", "ControlType", "addFonts"]
}
