{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js", "ssg:https://boosters.flowbase.co/before-after-framer.js#Pi7ExYI4gXmQ", "ssg:https://framerusercontent.com/modules/uRf0o2jTjAR2XlDStTwD/waUhYR9GqiP5tJ7tWFGd/Before_After.js", "ssg:https://framerusercontent.com/modules/tMi4eDOjdt2RYKb51MEd/8uojGoGqWdcTtN7HJ13V/D3OwGjzGm.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import * as Sr from \"react\";\nimport Yr, { forwardRef as $t, useContext as Be, createContext as Ur, createElement as ne, Fragment as qr, useRef as te, useEffect as We, useState as Dt } from \"react\";\nvar Re = {}, jt = {\n  get exports() {\n    return Re;\n  },\n  set exports(e) {\n    Re = e;\n  }\n}, le = {};\n/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nvar Rr;\nfunction Lt() {\n  if (Rr)\n    return le;\n  Rr = 1;\n  var e = Yr, r = Symbol.for(\"react.element\"), n = Symbol.for(\"react.fragment\"), a = Object.prototype.hasOwnProperty, i = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, s = { key: !0, ref: !0, __self: !0, __source: !0 };\n  function l(u, d, g) {\n    var f, v = {}, C = null, T = null;\n    g !== void 0 && (C = \"\" + g), d.key !== void 0 && (C = \"\" + d.key), d.ref !== void 0 && (T = d.ref);\n    for (f in d)\n      a.call(d, f) && !s.hasOwnProperty(f) && (v[f] = d[f]);\n    if (u && u.defaultProps)\n      for (f in d = u.defaultProps, d)\n        v[f] === void 0 && (v[f] = d[f]);\n    return { $$typeof: r, type: u, key: C, ref: T, props: v, _owner: i.current };\n  }\n  return le.Fragment = n, le.jsx = l, le.jsxs = l, le;\n}\nvar ue = {};\n/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nvar Or;\nfunction Vt() {\n  return Or || (Or = 1, process.env.NODE_ENV !== \"production\" && function() {\n    var e = Yr, r = Symbol.for(\"react.element\"), n = Symbol.for(\"react.portal\"), a = Symbol.for(\"react.fragment\"), i = Symbol.for(\"react.strict_mode\"), s = Symbol.for(\"react.profiler\"), l = Symbol.for(\"react.provider\"), u = Symbol.for(\"react.context\"), d = Symbol.for(\"react.forward_ref\"), g = Symbol.for(\"react.suspense\"), f = Symbol.for(\"react.suspense_list\"), v = Symbol.for(\"react.memo\"), C = Symbol.for(\"react.lazy\"), T = Symbol.for(\"react.offscreen\"), x = Symbol.iterator, h = \"@@iterator\";\n    function O(t) {\n      if (t === null || typeof t != \"object\")\n        return null;\n      var o = x && t[x] || t[h];\n      return typeof o == \"function\" ? o : null;\n    }\n    var E = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n    function p(t) {\n      {\n        for (var o = arguments.length, c = new Array(o > 1 ? o - 1 : 0), m = 1; m < o; m++)\n          c[m - 1] = arguments[m];\n        P(\"error\", t, c);\n      }\n    }\n    function P(t, o, c) {\n      {\n        var m = E.ReactDebugCurrentFrame, w = m.getStackAddendum();\n        w !== \"\" && (o += \"%s\", c = c.concat([w]));\n        var k = c.map(function(y) {\n          return String(y);\n        });\n        k.unshift(\"Warning: \" + o), Function.prototype.apply.call(console[t], console, k);\n      }\n    }\n    var q = !1, D = !1, V = !1, R = !1, Ne = !1, K;\n    K = Symbol.for(\"react.module.reference\");\n    function Q(t) {\n      return !!(typeof t == \"string\" || typeof t == \"function\" || t === a || t === s || Ne || t === i || t === g || t === f || R || t === T || q || D || V || typeof t == \"object\" && t !== null && (t.$$typeof === C || t.$$typeof === v || t.$$typeof === l || t.$$typeof === u || t.$$typeof === d || // This needs to include all possible module reference object\n      // types supported by any Flight configuration anywhere since\n      // we don't know which Flight build this will end up being used\n      // with.\n      t.$$typeof === K || t.getModuleId !== void 0));\n    }\n    function ct(t, o, c) {\n      var m = t.displayName;\n      if (m)\n        return m;\n      var w = o.displayName || o.name || \"\";\n      return w !== \"\" ? c + \"(\" + w + \")\" : c;\n    }\n    function rr(t) {\n      return t.displayName || \"Context\";\n    }\n    function G(t) {\n      if (t == null)\n        return null;\n      if (typeof t.tag == \"number\" && p(\"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"), typeof t == \"function\")\n        return t.displayName || t.name || null;\n      if (typeof t == \"string\")\n        return t;\n      switch (t) {\n        case a:\n          return \"Fragment\";\n        case n:\n          return \"Portal\";\n        case s:\n          return \"Profiler\";\n        case i:\n          return \"StrictMode\";\n        case g:\n          return \"Suspense\";\n        case f:\n          return \"SuspenseList\";\n      }\n      if (typeof t == \"object\")\n        switch (t.$$typeof) {\n          case u:\n            var o = t;\n            return rr(o) + \".Consumer\";\n          case l:\n            var c = t;\n            return rr(c._context) + \".Provider\";\n          case d:\n            return ct(t, t.render, \"ForwardRef\");\n          case v:\n            var m = t.displayName || null;\n            return m !== null ? m : G(t.type) || \"Memo\";\n          case C: {\n            var w = t, k = w._payload, y = w._init;\n            try {\n              return G(y(k));\n            } catch {\n              return null;\n            }\n          }\n        }\n      return null;\n    }\n    var Z = Object.assign, se = 0, tr, nr, ar, ir, or, sr, cr;\n    function lr() {\n    }\n    lr.__reactDisabledLog = !0;\n    function lt() {\n      {\n        if (se === 0) {\n          tr = console.log, nr = console.info, ar = console.warn, ir = console.error, or = console.group, sr = console.groupCollapsed, cr = console.groupEnd;\n          var t = {\n            configurable: !0,\n            enumerable: !0,\n            value: lr,\n            writable: !0\n          };\n          Object.defineProperties(console, {\n            info: t,\n            log: t,\n            warn: t,\n            error: t,\n            group: t,\n            groupCollapsed: t,\n            groupEnd: t\n          });\n        }\n        se++;\n      }\n    }\n    function ut() {\n      {\n        if (se--, se === 0) {\n          var t = {\n            configurable: !0,\n            enumerable: !0,\n            writable: !0\n          };\n          Object.defineProperties(console, {\n            log: Z({}, t, {\n              value: tr\n            }),\n            info: Z({}, t, {\n              value: nr\n            }),\n            warn: Z({}, t, {\n              value: ar\n            }),\n            error: Z({}, t, {\n              value: ir\n            }),\n            group: Z({}, t, {\n              value: or\n            }),\n            groupCollapsed: Z({}, t, {\n              value: sr\n            }),\n            groupEnd: Z({}, t, {\n              value: cr\n            })\n          });\n        }\n        se < 0 && p(\"disabledDepth fell below zero. This is a bug in React. Please file an issue.\");\n      }\n    }\n    var Ae = E.ReactCurrentDispatcher, Ie;\n    function ve(t, o, c) {\n      {\n        if (Ie === void 0)\n          try {\n            throw Error();\n          } catch (w) {\n            var m = w.stack.trim().match(/\\n( *(at )?)/);\n            Ie = m && m[1] || \"\";\n          }\n        return `\n` + Ie + t;\n      }\n    }\n    var $e = !1, ge;\n    {\n      var ft = typeof WeakMap == \"function\" ? WeakMap : Map;\n      ge = new ft();\n    }\n    function ur(t, o) {\n      if (!t || $e)\n        return \"\";\n      {\n        var c = ge.get(t);\n        if (c !== void 0)\n          return c;\n      }\n      var m;\n      $e = !0;\n      var w = Error.prepareStackTrace;\n      Error.prepareStackTrace = void 0;\n      var k;\n      k = Ae.current, Ae.current = null, lt();\n      try {\n        if (o) {\n          var y = function() {\n            throw Error();\n          };\n          if (Object.defineProperty(y.prototype, \"props\", {\n            set: function() {\n              throw Error();\n            }\n          }), typeof Reflect == \"object\" && Reflect.construct) {\n            try {\n              Reflect.construct(y, []);\n            } catch (J) {\n              m = J;\n            }\n            Reflect.construct(t, [], y);\n          } else {\n            try {\n              y.call();\n            } catch (J) {\n              m = J;\n            }\n            t.call(y.prototype);\n          }\n        } else {\n          try {\n            throw Error();\n          } catch (J) {\n            m = J;\n          }\n          t();\n        }\n      } catch (J) {\n        if (J && m && typeof J.stack == \"string\") {\n          for (var b = J.stack.split(`\n`), F = m.stack.split(`\n`), N = b.length - 1, A = F.length - 1; N >= 1 && A >= 0 && b[N] !== F[A]; )\n            A--;\n          for (; N >= 1 && A >= 0; N--, A--)\n            if (b[N] !== F[A]) {\n              if (N !== 1 || A !== 1)\n                do\n                  if (N--, A--, A < 0 || b[N] !== F[A]) {\n                    var Y = `\n` + b[N].replace(\" at new \", \" at \");\n                    return t.displayName && Y.includes(\"<anonymous>\") && (Y = Y.replace(\"<anonymous>\", t.displayName)), typeof t == \"function\" && ge.set(t, Y), Y;\n                  }\n                while (N >= 1 && A >= 0);\n              break;\n            }\n        }\n      } finally {\n        $e = !1, Ae.current = k, ut(), Error.prepareStackTrace = w;\n      }\n      var re = t ? t.displayName || t.name : \"\", _r = re ? ve(re) : \"\";\n      return typeof t == \"function\" && ge.set(t, _r), _r;\n    }\n    function dt(t, o, c) {\n      return ur(t, !1);\n    }\n    function pt(t) {\n      var o = t.prototype;\n      return !!(o && o.isReactComponent);\n    }\n    function be(t, o, c) {\n      if (t == null)\n        return \"\";\n      if (typeof t == \"function\")\n        return ur(t, pt(t));\n      if (typeof t == \"string\")\n        return ve(t);\n      switch (t) {\n        case g:\n          return ve(\"Suspense\");\n        case f:\n          return ve(\"SuspenseList\");\n      }\n      if (typeof t == \"object\")\n        switch (t.$$typeof) {\n          case d:\n            return dt(t.render);\n          case v:\n            return be(t.type, o, c);\n          case C: {\n            var m = t, w = m._payload, k = m._init;\n            try {\n              return be(k(w), o, c);\n            } catch {\n            }\n          }\n        }\n      return \"\";\n    }\n    var ye = Object.prototype.hasOwnProperty, fr = {}, dr = E.ReactDebugCurrentFrame;\n    function Ee(t) {\n      if (t) {\n        var o = t._owner, c = be(t.type, t._source, o ? o.type : null);\n        dr.setExtraStackFrame(c);\n      } else\n        dr.setExtraStackFrame(null);\n    }\n    function ht(t, o, c, m, w) {\n      {\n        var k = Function.call.bind(ye);\n        for (var y in t)\n          if (k(t, y)) {\n            var b = void 0;\n            try {\n              if (typeof t[y] != \"function\") {\n                var F = Error((m || \"React class\") + \": \" + c + \" type `\" + y + \"` is invalid; it must be a function, usually from the `prop-types` package, but received `\" + typeof t[y] + \"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.\");\n                throw F.name = \"Invariant Violation\", F;\n              }\n              b = t[y](o, y, m, c, null, \"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\");\n            } catch (N) {\n              b = N;\n            }\n            b && !(b instanceof Error) && (Ee(w), p(\"%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).\", m || \"React class\", c, y, typeof b), Ee(null)), b instanceof Error && !(b.message in fr) && (fr[b.message] = !0, Ee(w), p(\"Failed %s type: %s\", c, b.message), Ee(null));\n          }\n      }\n    }\n    var mt = Array.isArray;\n    function De(t) {\n      return mt(t);\n    }\n    function vt(t) {\n      {\n        var o = typeof Symbol == \"function\" && Symbol.toStringTag, c = o && t[Symbol.toStringTag] || t.constructor.name || \"Object\";\n        return c;\n      }\n    }\n    function gt(t) {\n      try {\n        return pr(t), !1;\n      } catch {\n        return !0;\n      }\n    }\n    function pr(t) {\n      return \"\" + t;\n    }\n    function hr(t) {\n      if (gt(t))\n        return p(\"The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.\", vt(t)), pr(t);\n    }\n    var ce = E.ReactCurrentOwner, bt = {\n      key: !0,\n      ref: !0,\n      __self: !0,\n      __source: !0\n    }, mr, vr, je;\n    je = {};\n    function yt(t) {\n      if (ye.call(t, \"ref\")) {\n        var o = Object.getOwnPropertyDescriptor(t, \"ref\").get;\n        if (o && o.isReactWarning)\n          return !1;\n      }\n      return t.ref !== void 0;\n    }\n    function Et(t) {\n      if (ye.call(t, \"key\")) {\n        var o = Object.getOwnPropertyDescriptor(t, \"key\").get;\n        if (o && o.isReactWarning)\n          return !1;\n      }\n      return t.key !== void 0;\n    }\n    function xt(t, o) {\n      if (typeof t.ref == \"string\" && ce.current && o && ce.current.stateNode !== o) {\n        var c = G(ce.current.type);\n        je[c] || (p('Component \"%s\" contains the string ref \"%s\". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', G(ce.current.type), t.ref), je[c] = !0);\n      }\n    }\n    function wt(t, o) {\n      {\n        var c = function() {\n          mr || (mr = !0, p(\"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\", o));\n        };\n        c.isReactWarning = !0, Object.defineProperty(t, \"key\", {\n          get: c,\n          configurable: !0\n        });\n      }\n    }\n    function _t(t, o) {\n      {\n        var c = function() {\n          vr || (vr = !0, p(\"%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\", o));\n        };\n        c.isReactWarning = !0, Object.defineProperty(t, \"ref\", {\n          get: c,\n          configurable: !0\n        });\n      }\n    }\n    var St = function(t, o, c, m, w, k, y) {\n      var b = {\n        // This tag allows us to uniquely identify this as a React Element\n        $$typeof: r,\n        // Built-in properties that belong on the element\n        type: t,\n        key: o,\n        ref: c,\n        props: y,\n        // Record the component responsible for creating this element.\n        _owner: k\n      };\n      return b._store = {}, Object.defineProperty(b._store, \"validated\", {\n        configurable: !1,\n        enumerable: !1,\n        writable: !0,\n        value: !1\n      }), Object.defineProperty(b, \"_self\", {\n        configurable: !1,\n        enumerable: !1,\n        writable: !1,\n        value: m\n      }), Object.defineProperty(b, \"_source\", {\n        configurable: !1,\n        enumerable: !1,\n        writable: !1,\n        value: w\n      }), Object.freeze && (Object.freeze(b.props), Object.freeze(b)), b;\n    };\n    function Rt(t, o, c, m, w) {\n      {\n        var k, y = {}, b = null, F = null;\n        c !== void 0 && (hr(c), b = \"\" + c), Et(o) && (hr(o.key), b = \"\" + o.key), yt(o) && (F = o.ref, xt(o, w));\n        for (k in o)\n          ye.call(o, k) && !bt.hasOwnProperty(k) && (y[k] = o[k]);\n        if (t && t.defaultProps) {\n          var N = t.defaultProps;\n          for (k in N)\n            y[k] === void 0 && (y[k] = N[k]);\n        }\n        if (b || F) {\n          var A = typeof t == \"function\" ? t.displayName || t.name || \"Unknown\" : t;\n          b && wt(y, A), F && _t(y, A);\n        }\n        return St(t, b, F, w, m, ce.current, y);\n      }\n    }\n    var Le = E.ReactCurrentOwner, gr = E.ReactDebugCurrentFrame;\n    function ee(t) {\n      if (t) {\n        var o = t._owner, c = be(t.type, t._source, o ? o.type : null);\n        gr.setExtraStackFrame(c);\n      } else\n        gr.setExtraStackFrame(null);\n    }\n    var Ve;\n    Ve = !1;\n    function Fe(t) {\n      return typeof t == \"object\" && t !== null && t.$$typeof === r;\n    }\n    function br() {\n      {\n        if (Le.current) {\n          var t = G(Le.current.type);\n          if (t)\n            return `\n\nCheck the render method of \\`` + t + \"`.\";\n        }\n        return \"\";\n      }\n    }\n    function Ot(t) {\n      {\n        if (t !== void 0) {\n          var o = t.fileName.replace(/^.*[\\\\\\/]/, \"\"), c = t.lineNumber;\n          return `\n\nCheck your code at ` + o + \":\" + c + \".\";\n        }\n        return \"\";\n      }\n    }\n    var yr = {};\n    function kt(t) {\n      {\n        var o = br();\n        if (!o) {\n          var c = typeof t == \"string\" ? t : t.displayName || t.name;\n          c && (o = `\n\nCheck the top-level render call using <` + c + \">.\");\n        }\n        return o;\n      }\n    }\n    function Er(t, o) {\n      {\n        if (!t._store || t._store.validated || t.key != null)\n          return;\n        t._store.validated = !0;\n        var c = kt(o);\n        if (yr[c])\n          return;\n        yr[c] = !0;\n        var m = \"\";\n        t && t._owner && t._owner !== Le.current && (m = \" It was passed a child from \" + G(t._owner.type) + \".\"), ee(t), p('Each child in a list should have a unique \"key\" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', c, m), ee(null);\n      }\n    }\n    function xr(t, o) {\n      {\n        if (typeof t != \"object\")\n          return;\n        if (De(t))\n          for (var c = 0; c < t.length; c++) {\n            var m = t[c];\n            Fe(m) && Er(m, o);\n          }\n        else if (Fe(t))\n          t._store && (t._store.validated = !0);\n        else if (t) {\n          var w = O(t);\n          if (typeof w == \"function\" && w !== t.entries)\n            for (var k = w.call(t), y; !(y = k.next()).done; )\n              Fe(y.value) && Er(y.value, o);\n        }\n      }\n    }\n    function Ct(t) {\n      {\n        var o = t.type;\n        if (o == null || typeof o == \"string\")\n          return;\n        var c;\n        if (typeof o == \"function\")\n          c = o.propTypes;\n        else if (typeof o == \"object\" && (o.$$typeof === d || // Note: Memo only checks outer props here.\n        // Inner props are checked in the reconciler.\n        o.$$typeof === v))\n          c = o.propTypes;\n        else\n          return;\n        if (c) {\n          var m = G(o);\n          ht(c, t.props, \"prop\", m, t);\n        } else if (o.PropTypes !== void 0 && !Ve) {\n          Ve = !0;\n          var w = G(o);\n          p(\"Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?\", w || \"Unknown\");\n        }\n        typeof o.getDefaultProps == \"function\" && !o.getDefaultProps.isReactClassApproved && p(\"getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.\");\n      }\n    }\n    function Tt(t) {\n      {\n        for (var o = Object.keys(t.props), c = 0; c < o.length; c++) {\n          var m = o[c];\n          if (m !== \"children\" && m !== \"key\") {\n            ee(t), p(\"Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.\", m), ee(null);\n            break;\n          }\n        }\n        t.ref !== null && (ee(t), p(\"Invalid attribute `ref` supplied to `React.Fragment`.\"), ee(null));\n      }\n    }\n    function wr(t, o, c, m, w, k) {\n      {\n        var y = Q(t);\n        if (!y) {\n          var b = \"\";\n          (t === void 0 || typeof t == \"object\" && t !== null && Object.keys(t).length === 0) && (b += \" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.\");\n          var F = Ot(w);\n          F ? b += F : b += br();\n          var N;\n          t === null ? N = \"null\" : De(t) ? N = \"array\" : t !== void 0 && t.$$typeof === r ? (N = \"<\" + (G(t.type) || \"Unknown\") + \" />\", b = \" Did you accidentally export a JSX literal instead of a component?\") : N = typeof t, p(\"React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s\", N, b);\n        }\n        var A = Rt(t, o, c, w, k);\n        if (A == null)\n          return A;\n        if (y) {\n          var Y = o.children;\n          if (Y !== void 0)\n            if (m)\n              if (De(Y)) {\n                for (var re = 0; re < Y.length; re++)\n                  xr(Y[re], t);\n                Object.freeze && Object.freeze(Y);\n              } else\n                p(\"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\");\n            else\n              xr(Y, t);\n        }\n        return t === a ? Tt(A) : Ct(A), A;\n      }\n    }\n    function Pt(t, o, c) {\n      return wr(t, o, c, !0);\n    }\n    function Nt(t, o, c) {\n      return wr(t, o, c, !1);\n    }\n    var At = Nt, It = Pt;\n    ue.Fragment = a, ue.jsx = At, ue.jsxs = It;\n  }()), ue;\n}\n(function(e) {\n  process.env.NODE_ENV === \"production\" ? e.exports = Lt() : e.exports = Vt();\n})(jt);\nconst L = Re.jsx, Br = Re.jsxs;\nfunction ze() {\n  return ze = Object.assign ? Object.assign.bind() : function(e) {\n    for (var r = 1; r < arguments.length; r++) {\n      var n = arguments[r];\n      for (var a in n)\n        Object.prototype.hasOwnProperty.call(n, a) && (e[a] = n[a]);\n    }\n    return e;\n  }, ze.apply(this, arguments);\n}\nfunction Hr(e) {\n  var r = /* @__PURE__ */ Object.create(null);\n  return function(n) {\n    return r[n] === void 0 && (r[n] = e(n)), r[n];\n  };\n}\nvar Ft = /^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/, Mt = /* @__PURE__ */ Hr(\n  function(e) {\n    return Ft.test(e) || e.charCodeAt(0) === 111 && e.charCodeAt(1) === 110 && e.charCodeAt(2) < 91;\n  }\n  /* Z+1 */\n);\nfunction Wt(e) {\n  if (e.sheet)\n    return e.sheet;\n  for (var r = 0; r < document.styleSheets.length; r++)\n    if (document.styleSheets[r].ownerNode === e)\n      return document.styleSheets[r];\n}\nfunction zt(e) {\n  var r = document.createElement(\"style\");\n  return r.setAttribute(\"data-emotion\", e.key), e.nonce !== void 0 && r.setAttribute(\"nonce\", e.nonce), r.appendChild(document.createTextNode(\"\")), r.setAttribute(\"data-s\", \"\"), r;\n}\nvar Yt = /* @__PURE__ */ function() {\n  function e(n) {\n    var a = this;\n    this._insertTag = function(i) {\n      var s;\n      a.tags.length === 0 ? a.insertionPoint ? s = a.insertionPoint.nextSibling : a.prepend ? s = a.container.firstChild : s = a.before : s = a.tags[a.tags.length - 1].nextSibling, a.container.insertBefore(i, s), a.tags.push(i);\n    }, this.isSpeedy = n.speedy === void 0 ? process.env.NODE_ENV === \"production\" : n.speedy, this.tags = [], this.ctr = 0, this.nonce = n.nonce, this.key = n.key, this.container = n.container, this.prepend = n.prepend, this.insertionPoint = n.insertionPoint, this.before = null;\n  }\n  var r = e.prototype;\n  return r.hydrate = function(a) {\n    a.forEach(this._insertTag);\n  }, r.insert = function(a) {\n    this.ctr % (this.isSpeedy ? 65e3 : 1) === 0 && this._insertTag(zt(this));\n    var i = this.tags[this.tags.length - 1];\n    if (process.env.NODE_ENV !== \"production\") {\n      var s = a.charCodeAt(0) === 64 && a.charCodeAt(1) === 105;\n      s && this._alreadyInsertedOrderInsensitiveRule && console.error(`You're attempting to insert the following rule:\n` + a + \"\\n\\n`@import` rules must be before all other types of rules in a stylesheet but other rules have already been inserted. Please ensure that `@import` rules are before all other rules.\"), this._alreadyInsertedOrderInsensitiveRule = this._alreadyInsertedOrderInsensitiveRule || !s;\n    }\n    if (this.isSpeedy) {\n      var l = Wt(i);\n      try {\n        l.insertRule(a, l.cssRules.length);\n      } catch (u) {\n        process.env.NODE_ENV !== \"production\" && !/:(-moz-placeholder|-moz-focus-inner|-moz-focusring|-ms-input-placeholder|-moz-read-write|-moz-read-only|-ms-clear|-ms-expand|-ms-reveal){/.test(a) && console.error('There was a problem inserting the following rule: \"' + a + '\"', u);\n      }\n    } else\n      i.appendChild(document.createTextNode(a));\n    this.ctr++;\n  }, r.flush = function() {\n    this.tags.forEach(function(a) {\n      return a.parentNode && a.parentNode.removeChild(a);\n    }), this.tags = [], this.ctr = 0, process.env.NODE_ENV !== \"production\" && (this._alreadyInsertedOrderInsensitiveRule = !1);\n  }, e;\n}(), j = \"-ms-\", Oe = \"-moz-\", _ = \"-webkit-\", He = \"comm\", Ge = \"rule\", Je = \"decl\", Ut = \"@import\", Gr = \"@keyframes\", qt = Math.abs, Ce = String.fromCharCode, Bt = Object.assign;\nfunction Ht(e, r) {\n  return $(e, 0) ^ 45 ? (((r << 2 ^ $(e, 0)) << 2 ^ $(e, 1)) << 2 ^ $(e, 2)) << 2 ^ $(e, 3) : 0;\n}\nfunction Jr(e) {\n  return e.trim();\n}\nfunction Gt(e, r) {\n  return (e = r.exec(e)) ? e[0] : e;\n}\nfunction S(e, r, n) {\n  return e.replace(r, n);\n}\nfunction Ye(e, r) {\n  return e.indexOf(r);\n}\nfunction $(e, r) {\n  return e.charCodeAt(r) | 0;\n}\nfunction de(e, r, n) {\n  return e.slice(r, n);\n}\nfunction B(e) {\n  return e.length;\n}\nfunction Xe(e) {\n  return e.length;\n}\nfunction xe(e, r) {\n  return r.push(e), e;\n}\nfunction Jt(e, r) {\n  return e.map(r).join(\"\");\n}\nvar Te = 1, ie = 1, Xr = 0, M = 0, I = 0, oe = \"\";\nfunction Pe(e, r, n, a, i, s, l) {\n  return { value: e, root: r, parent: n, type: a, props: i, children: s, line: Te, column: ie, length: l, return: \"\" };\n}\nfunction fe(e, r) {\n  return Bt(Pe(\"\", null, null, \"\", null, null, 0), e, { length: -e.length }, r);\n}\nfunction Xt() {\n  return I;\n}\nfunction Kt() {\n  return I = M > 0 ? $(oe, --M) : 0, ie--, I === 10 && (ie = 1, Te--), I;\n}\nfunction W() {\n  return I = M < Xr ? $(oe, M++) : 0, ie++, I === 10 && (ie = 1, Te++), I;\n}\nfunction H() {\n  return $(oe, M);\n}\nfunction we() {\n  return M;\n}\nfunction me(e, r) {\n  return de(oe, e, r);\n}\nfunction pe(e) {\n  switch (e) {\n    case 0:\n    case 9:\n    case 10:\n    case 13:\n    case 32:\n      return 5;\n    case 33:\n    case 43:\n    case 44:\n    case 47:\n    case 62:\n    case 64:\n    case 126:\n    case 59:\n    case 123:\n    case 125:\n      return 4;\n    case 58:\n      return 3;\n    case 34:\n    case 39:\n    case 40:\n    case 91:\n      return 2;\n    case 41:\n    case 93:\n      return 1;\n  }\n  return 0;\n}\nfunction Kr(e) {\n  return Te = ie = 1, Xr = B(oe = e), M = 0, [];\n}\nfunction Zr(e) {\n  return oe = \"\", e;\n}\nfunction _e(e) {\n  return Jr(me(M - 1, Ue(e === 91 ? e + 2 : e === 40 ? e + 1 : e)));\n}\nfunction Zt(e) {\n  for (; (I = H()) && I < 33; )\n    W();\n  return pe(e) > 2 || pe(I) > 3 ? \"\" : \" \";\n}\nfunction Qt(e, r) {\n  for (; --r && W() && !(I < 48 || I > 102 || I > 57 && I < 65 || I > 70 && I < 97); )\n    ;\n  return me(e, we() + (r < 6 && H() == 32 && W() == 32));\n}\nfunction Ue(e) {\n  for (; W(); )\n    switch (I) {\n      case e:\n        return M;\n      case 34:\n      case 39:\n        e !== 34 && e !== 39 && Ue(I);\n        break;\n      case 40:\n        e === 41 && Ue(e);\n        break;\n      case 92:\n        W();\n        break;\n    }\n  return M;\n}\nfunction en(e, r) {\n  for (; W() && e + I !== 47 + 10; )\n    if (e + I === 42 + 42 && H() === 47)\n      break;\n  return \"/*\" + me(r, M - 1) + \"*\" + Ce(e === 47 ? e : W());\n}\nfunction rn(e) {\n  for (; !pe(H()); )\n    W();\n  return me(e, M);\n}\nfunction tn(e) {\n  return Zr(Se(\"\", null, null, null, [\"\"], e = Kr(e), 0, [0], e));\n}\nfunction Se(e, r, n, a, i, s, l, u, d) {\n  for (var g = 0, f = 0, v = l, C = 0, T = 0, x = 0, h = 1, O = 1, E = 1, p = 0, P = \"\", q = i, D = s, V = a, R = P; O; )\n    switch (x = p, p = W()) {\n      case 40:\n        if (x != 108 && $(R, v - 1) == 58) {\n          Ye(R += S(_e(p), \"&\", \"&\\f\"), \"&\\f\") != -1 && (E = -1);\n          break;\n        }\n      case 34:\n      case 39:\n      case 91:\n        R += _e(p);\n        break;\n      case 9:\n      case 10:\n      case 13:\n      case 32:\n        R += Zt(x);\n        break;\n      case 92:\n        R += Qt(we() - 1, 7);\n        continue;\n      case 47:\n        switch (H()) {\n          case 42:\n          case 47:\n            xe(nn(en(W(), we()), r, n), d);\n            break;\n          default:\n            R += \"/\";\n        }\n        break;\n      case 123 * h:\n        u[g++] = B(R) * E;\n      case 125 * h:\n      case 59:\n      case 0:\n        switch (p) {\n          case 0:\n          case 125:\n            O = 0;\n          case 59 + f:\n            T > 0 && B(R) - v && xe(T > 32 ? Cr(R + \";\", a, n, v - 1) : Cr(S(R, \" \", \"\") + \";\", a, n, v - 2), d);\n            break;\n          case 59:\n            R += \";\";\n          default:\n            if (xe(V = kr(R, r, n, g, f, i, u, P, q = [], D = [], v), s), p === 123)\n              if (f === 0)\n                Se(R, r, V, V, q, s, v, u, D);\n              else\n                switch (C === 99 && $(R, 3) === 110 ? 100 : C) {\n                  case 100:\n                  case 109:\n                  case 115:\n                    Se(e, V, V, a && xe(kr(e, V, V, 0, 0, i, u, P, i, q = [], v), D), i, D, v, u, a ? q : D);\n                    break;\n                  default:\n                    Se(R, V, V, V, [\"\"], D, 0, u, D);\n                }\n        }\n        g = f = T = 0, h = E = 1, P = R = \"\", v = l;\n        break;\n      case 58:\n        v = 1 + B(R), T = x;\n      default:\n        if (h < 1) {\n          if (p == 123)\n            --h;\n          else if (p == 125 && h++ == 0 && Kt() == 125)\n            continue;\n        }\n        switch (R += Ce(p), p * h) {\n          case 38:\n            E = f > 0 ? 1 : (R += \"\\f\", -1);\n            break;\n          case 44:\n            u[g++] = (B(R) - 1) * E, E = 1;\n            break;\n          case 64:\n            H() === 45 && (R += _e(W())), C = H(), f = v = B(P = R += rn(we())), p++;\n            break;\n          case 45:\n            x === 45 && B(R) == 2 && (h = 0);\n        }\n    }\n  return s;\n}\nfunction kr(e, r, n, a, i, s, l, u, d, g, f) {\n  for (var v = i - 1, C = i === 0 ? s : [\"\"], T = Xe(C), x = 0, h = 0, O = 0; x < a; ++x)\n    for (var E = 0, p = de(e, v + 1, v = qt(h = l[x])), P = e; E < T; ++E)\n      (P = Jr(h > 0 ? C[E] + \" \" + p : S(p, /&\\f/g, C[E]))) && (d[O++] = P);\n  return Pe(e, r, n, i === 0 ? Ge : u, d, g, f);\n}\nfunction nn(e, r, n) {\n  return Pe(e, r, n, He, Ce(Xt()), de(e, 2, -2), 0);\n}\nfunction Cr(e, r, n, a) {\n  return Pe(e, r, n, Je, de(e, 0, a), de(e, a + 1, -1), a);\n}\nfunction ae(e, r) {\n  for (var n = \"\", a = Xe(e), i = 0; i < a; i++)\n    n += r(e[i], i, e, r) || \"\";\n  return n;\n}\nfunction an(e, r, n, a) {\n  switch (e.type) {\n    case Ut:\n    case Je:\n      return e.return = e.return || e.value;\n    case He:\n      return \"\";\n    case Gr:\n      return e.return = e.value + \"{\" + ae(e.children, a) + \"}\";\n    case Ge:\n      e.value = e.props.join(\",\");\n  }\n  return B(n = ae(e.children, a)) ? e.return = e.value + \"{\" + n + \"}\" : \"\";\n}\nfunction on(e) {\n  var r = Xe(e);\n  return function(n, a, i, s) {\n    for (var l = \"\", u = 0; u < r; u++)\n      l += e[u](n, a, i, s) || \"\";\n    return l;\n  };\n}\nfunction sn(e) {\n  return function(r) {\n    r.root || (r = r.return) && e(r);\n  };\n}\nvar cn = function(r, n, a) {\n  for (var i = 0, s = 0; i = s, s = H(), i === 38 && s === 12 && (n[a] = 1), !pe(s); )\n    W();\n  return me(r, M);\n}, ln = function(r, n) {\n  var a = -1, i = 44;\n  do\n    switch (pe(i)) {\n      case 0:\n        i === 38 && H() === 12 && (n[a] = 1), r[a] += cn(M - 1, n, a);\n        break;\n      case 2:\n        r[a] += _e(i);\n        break;\n      case 4:\n        if (i === 44) {\n          r[++a] = H() === 58 ? \"&\\f\" : \"\", n[a] = r[a].length;\n          break;\n        }\n      default:\n        r[a] += Ce(i);\n    }\n  while (i = W());\n  return r;\n}, un = function(r, n) {\n  return Zr(ln(Kr(r), n));\n}, Tr = /* @__PURE__ */ new WeakMap(), fn = function(r) {\n  if (!(r.type !== \"rule\" || !r.parent || // positive .length indicates that this rule contains pseudo\n  // negative .length indicates that this rule has been already prefixed\n  r.length < 1)) {\n    for (var n = r.value, a = r.parent, i = r.column === a.column && r.line === a.line; a.type !== \"rule\"; )\n      if (a = a.parent, !a)\n        return;\n    if (!(r.props.length === 1 && n.charCodeAt(0) !== 58 && !Tr.get(a)) && !i) {\n      Tr.set(r, !0);\n      for (var s = [], l = un(n, s), u = a.props, d = 0, g = 0; d < l.length; d++)\n        for (var f = 0; f < u.length; f++, g++)\n          r.props[g] = s[d] ? l[d].replace(/&\\f/g, u[f]) : u[f] + \" \" + l[d];\n    }\n  }\n}, dn = function(r) {\n  if (r.type === \"decl\") {\n    var n = r.value;\n    // charcode for l\n    n.charCodeAt(0) === 108 && // charcode for b\n    n.charCodeAt(2) === 98 && (r.return = \"\", r.value = \"\");\n  }\n}, pn = \"emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason\", hn = function(r) {\n  return r.type === \"comm\" && r.children.indexOf(pn) > -1;\n}, mn = function(r) {\n  return function(n, a, i) {\n    if (!(n.type !== \"rule\" || r.compat)) {\n      var s = n.value.match(/(:first|:nth|:nth-last)-child/g);\n      if (s) {\n        for (var l = !!n.parent, u = l ? n.parent.children : (\n          // global rule at the root level\n          i\n        ), d = u.length - 1; d >= 0; d--) {\n          var g = u[d];\n          if (g.line < n.line)\n            break;\n          if (g.column < n.column) {\n            if (hn(g))\n              return;\n            break;\n          }\n        }\n        s.forEach(function(f) {\n          console.error('The pseudo class \"' + f + '\" is potentially unsafe when doing server-side rendering. Try changing it to \"' + f.split(\"-child\")[0] + '-of-type\".');\n        });\n      }\n    }\n  };\n}, Qr = function(r) {\n  return r.type.charCodeAt(1) === 105 && r.type.charCodeAt(0) === 64;\n}, vn = function(r, n) {\n  for (var a = r - 1; a >= 0; a--)\n    if (!Qr(n[a]))\n      return !0;\n  return !1;\n}, Pr = function(r) {\n  r.type = \"\", r.value = \"\", r.return = \"\", r.children = \"\", r.props = \"\";\n}, gn = function(r, n, a) {\n  Qr(r) && (r.parent ? (console.error(\"`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles.\"), Pr(r)) : vn(n, a) && (console.error(\"`@import` rules can't be after other rules. Please put your `@import` rules before your other rules.\"), Pr(r)));\n};\nfunction et(e, r) {\n  switch (Ht(e, r)) {\n    case 5103:\n      return _ + \"print-\" + e + e;\n    case 5737:\n    case 4201:\n    case 3177:\n    case 3433:\n    case 1641:\n    case 4457:\n    case 2921:\n    case 5572:\n    case 6356:\n    case 5844:\n    case 3191:\n    case 6645:\n    case 3005:\n    case 6391:\n    case 5879:\n    case 5623:\n    case 6135:\n    case 4599:\n    case 4855:\n    case 4215:\n    case 6389:\n    case 5109:\n    case 5365:\n    case 5621:\n    case 3829:\n      return _ + e + e;\n    case 5349:\n    case 4246:\n    case 4810:\n    case 6968:\n    case 2756:\n      return _ + e + Oe + e + j + e + e;\n    case 6828:\n    case 4268:\n      return _ + e + j + e + e;\n    case 6165:\n      return _ + e + j + \"flex-\" + e + e;\n    case 5187:\n      return _ + e + S(e, /(\\w+).+(:[^]+)/, _ + \"box-$1$2\" + j + \"flex-$1$2\") + e;\n    case 5443:\n      return _ + e + j + \"flex-item-\" + S(e, /flex-|-self/, \"\") + e;\n    case 4675:\n      return _ + e + j + \"flex-line-pack\" + S(e, /align-content|flex-|-self/, \"\") + e;\n    case 5548:\n      return _ + e + j + S(e, \"shrink\", \"negative\") + e;\n    case 5292:\n      return _ + e + j + S(e, \"basis\", \"preferred-size\") + e;\n    case 6060:\n      return _ + \"box-\" + S(e, \"-grow\", \"\") + _ + e + j + S(e, \"grow\", \"positive\") + e;\n    case 4554:\n      return _ + S(e, /([^-])(transform)/g, \"$1\" + _ + \"$2\") + e;\n    case 6187:\n      return S(S(S(e, /(zoom-|grab)/, _ + \"$1\"), /(image-set)/, _ + \"$1\"), e, \"\") + e;\n    case 5495:\n    case 3959:\n      return S(e, /(image-set\\([^]*)/, _ + \"$1$`$1\");\n    case 4968:\n      return S(S(e, /(.+:)(flex-)?(.*)/, _ + \"box-pack:$3\" + j + \"flex-pack:$3\"), /s.+-b[^;]+/, \"justify\") + _ + e + e;\n    case 4095:\n    case 3583:\n    case 4068:\n    case 2532:\n      return S(e, /(.+)-inline(.+)/, _ + \"$1$2\") + e;\n    case 8116:\n    case 7059:\n    case 5753:\n    case 5535:\n    case 5445:\n    case 5701:\n    case 4933:\n    case 4677:\n    case 5533:\n    case 5789:\n    case 5021:\n    case 4765:\n      if (B(e) - 1 - r > 6)\n        switch ($(e, r + 1)) {\n          case 109:\n            if ($(e, r + 4) !== 45)\n              break;\n          case 102:\n            return S(e, /(.+:)(.+)-([^]+)/, \"$1\" + _ + \"$2-$3$1\" + Oe + ($(e, r + 3) == 108 ? \"$3\" : \"$2-$3\")) + e;\n          case 115:\n            return ~Ye(e, \"stretch\") ? et(S(e, \"stretch\", \"fill-available\"), r) + e : e;\n        }\n      break;\n    case 4949:\n      if ($(e, r + 1) !== 115)\n        break;\n    case 6444:\n      switch ($(e, B(e) - 3 - (~Ye(e, \"!important\") && 10))) {\n        case 107:\n          return S(e, \":\", \":\" + _) + e;\n        case 101:\n          return S(e, /(.+:)([^;!]+)(;|!.+)?/, \"$1\" + _ + ($(e, 14) === 45 ? \"inline-\" : \"\") + \"box$3$1\" + _ + \"$2$3$1\" + j + \"$2box$3\") + e;\n      }\n      break;\n    case 5936:\n      switch ($(e, r + 11)) {\n        case 114:\n          return _ + e + j + S(e, /[svh]\\w+-[tblr]{2}/, \"tb\") + e;\n        case 108:\n          return _ + e + j + S(e, /[svh]\\w+-[tblr]{2}/, \"tb-rl\") + e;\n        case 45:\n          return _ + e + j + S(e, /[svh]\\w+-[tblr]{2}/, \"lr\") + e;\n      }\n      return _ + e + j + e + e;\n  }\n  return e;\n}\nvar bn = function(r, n, a, i) {\n  if (r.length > -1 && !r.return)\n    switch (r.type) {\n      case Je:\n        r.return = et(r.value, r.length);\n        break;\n      case Gr:\n        return ae([fe(r, {\n          value: S(r.value, \"@\", \"@\" + _)\n        })], i);\n      case Ge:\n        if (r.length)\n          return Jt(r.props, function(s) {\n            switch (Gt(s, /(::plac\\w+|:read-\\w+)/)) {\n              case \":read-only\":\n              case \":read-write\":\n                return ae([fe(r, {\n                  props: [S(s, /:(read-\\w+)/, \":\" + Oe + \"$1\")]\n                })], i);\n              case \"::placeholder\":\n                return ae([fe(r, {\n                  props: [S(s, /:(plac\\w+)/, \":\" + _ + \"input-$1\")]\n                }), fe(r, {\n                  props: [S(s, /:(plac\\w+)/, \":\" + Oe + \"$1\")]\n                }), fe(r, {\n                  props: [S(s, /:(plac\\w+)/, j + \"input-$1\")]\n                })], i);\n            }\n            return \"\";\n          });\n    }\n}, yn = [bn], En = function(r) {\n  var n = r.key;\n  if (process.env.NODE_ENV !== \"production\" && !n)\n    throw new Error(`You have to configure \\`key\\` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache.\nIf multiple caches share the same key they might \"fight\" for each other's style elements.`);\n  if (n === \"css\") {\n    var a = document.querySelectorAll(\"style[data-emotion]:not([data-s])\");\n    Array.prototype.forEach.call(a, function(h) {\n      var O = h.getAttribute(\"data-emotion\");\n      O.indexOf(\" \") !== -1 && (document.head.appendChild(h), h.setAttribute(\"data-s\", \"\"));\n    });\n  }\n  var i = r.stylisPlugins || yn;\n  if (process.env.NODE_ENV !== \"production\" && /[^a-z-]/.test(n))\n    throw new Error('Emotion key must only contain lower case alphabetical characters and - but \"' + n + '\" was passed');\n  var s = {}, l, u = [];\n  l = r.container || document.head, Array.prototype.forEach.call(\n    // this means we will ignore elements which don't have a space in them which\n    // means that the style elements we're looking at are only Emotion 11 server-rendered style elements\n    document.querySelectorAll('style[data-emotion^=\"' + n + ' \"]'),\n    function(h) {\n      for (var O = h.getAttribute(\"data-emotion\").split(\" \"), E = 1; E < O.length; E++)\n        s[O[E]] = !0;\n      u.push(h);\n    }\n  );\n  var d, g = [fn, dn];\n  process.env.NODE_ENV !== \"production\" && g.push(mn({\n    get compat() {\n      return x.compat;\n    }\n  }), gn);\n  {\n    var f, v = [an, process.env.NODE_ENV !== \"production\" ? function(h) {\n      h.root || (h.return ? f.insert(h.return) : h.value && h.type !== He && f.insert(h.value + \"{}\"));\n    } : sn(function(h) {\n      f.insert(h);\n    })], C = on(g.concat(i, v)), T = function(O) {\n      return ae(tn(O), C);\n    };\n    d = function(O, E, p, P) {\n      f = p, process.env.NODE_ENV !== \"production\" && E.map !== void 0 && (f = {\n        insert: function(D) {\n          p.insert(D + E.map);\n        }\n      }), T(O ? O + \"{\" + E.styles + \"}\" : E.styles), P && (x.inserted[E.name] = !0);\n    };\n  }\n  var x = {\n    key: n,\n    sheet: new Yt({\n      key: n,\n      container: l,\n      nonce: r.nonce,\n      speedy: r.speedy,\n      prepend: r.prepend,\n      insertionPoint: r.insertionPoint\n    }),\n    nonce: r.nonce,\n    inserted: s,\n    registered: {},\n    insert: d\n  };\n  return x.sheet.hydrate(u), x;\n}, xn = !0;\nfunction rt(e, r, n) {\n  var a = \"\";\n  return n.split(\" \").forEach(function(i) {\n    e[i] !== void 0 ? r.push(e[i] + \";\") : a += i + \" \";\n  }), a;\n}\nvar Ke = function(r, n, a) {\n  var i = r.key + \"-\" + n.name;\n  // we only need to add the styles to the registered cache if the\n  // class name could be used further down\n  // the tree but if it's a string tag, we know it won't\n  // so we don't have to add it to registered cache.\n  // this improves memory usage since we can avoid storing the whole style string\n  (a === !1 || // we need to always store it if we're in compat mode and\n  // in node since emotion-server relies on whether a style is in\n  // the registered cache to know whether a style is global or not\n  // also, note that this check will be dead code eliminated in the browser\n  xn === !1) && r.registered[i] === void 0 && (r.registered[i] = n.styles);\n}, tt = function(r, n, a) {\n  Ke(r, n, a);\n  var i = r.key + \"-\" + n.name;\n  if (r.inserted[n.name] === void 0) {\n    var s = n;\n    do\n      r.insert(n === s ? \".\" + i : \"\", s, r.sheet, !0), s = s.next;\n    while (s !== void 0);\n  }\n};\nfunction wn(e) {\n  for (var r = 0, n, a = 0, i = e.length; i >= 4; ++a, i -= 4)\n    n = e.charCodeAt(a) & 255 | (e.charCodeAt(++a) & 255) << 8 | (e.charCodeAt(++a) & 255) << 16 | (e.charCodeAt(++a) & 255) << 24, n = /* Math.imul(k, m): */\n    (n & 65535) * 1540483477 + ((n >>> 16) * 59797 << 16), n ^= /* k >>> r: */\n    n >>> 24, r = /* Math.imul(k, m): */\n    (n & 65535) * 1540483477 + ((n >>> 16) * 59797 << 16) ^ /* Math.imul(h, m): */\n    (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16);\n  switch (i) {\n    case 3:\n      r ^= (e.charCodeAt(a + 2) & 255) << 16;\n    case 2:\n      r ^= (e.charCodeAt(a + 1) & 255) << 8;\n    case 1:\n      r ^= e.charCodeAt(a) & 255, r = /* Math.imul(h, m): */\n      (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16);\n  }\n  return r ^= r >>> 13, r = /* Math.imul(h, m): */\n  (r & 65535) * 1540483477 + ((r >>> 16) * 59797 << 16), ((r ^ r >>> 15) >>> 0).toString(36);\n}\nvar _n = {\n  animationIterationCount: 1,\n  borderImageOutset: 1,\n  borderImageSlice: 1,\n  borderImageWidth: 1,\n  boxFlex: 1,\n  boxFlexGroup: 1,\n  boxOrdinalGroup: 1,\n  columnCount: 1,\n  columns: 1,\n  flex: 1,\n  flexGrow: 1,\n  flexPositive: 1,\n  flexShrink: 1,\n  flexNegative: 1,\n  flexOrder: 1,\n  gridRow: 1,\n  gridRowEnd: 1,\n  gridRowSpan: 1,\n  gridRowStart: 1,\n  gridColumn: 1,\n  gridColumnEnd: 1,\n  gridColumnSpan: 1,\n  gridColumnStart: 1,\n  msGridRow: 1,\n  msGridRowSpan: 1,\n  msGridColumn: 1,\n  msGridColumnSpan: 1,\n  fontWeight: 1,\n  lineHeight: 1,\n  opacity: 1,\n  order: 1,\n  orphans: 1,\n  tabSize: 1,\n  widows: 1,\n  zIndex: 1,\n  zoom: 1,\n  WebkitLineClamp: 1,\n  // SVG-related properties\n  fillOpacity: 1,\n  floodOpacity: 1,\n  stopOpacity: 1,\n  strokeDasharray: 1,\n  strokeDashoffset: 1,\n  strokeMiterlimit: 1,\n  strokeOpacity: 1,\n  strokeWidth: 1\n}, Nr = `You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\\\00d7';\" should become \"content: '\\\\\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`, Sn = \"You have passed in falsy value as style object's key (can happen when in example you pass unexported component as computed key).\", Rn = /[A-Z]|^ms/g, nt = /_EMO_([^_]+?)_([^]*?)_EMO_/g, Ze = function(r) {\n  return r.charCodeAt(1) === 45;\n}, Ar = function(r) {\n  return r != null && typeof r != \"boolean\";\n}, Me = /* @__PURE__ */ Hr(function(e) {\n  return Ze(e) ? e : e.replace(Rn, \"-$&\").toLowerCase();\n}), ke = function(r, n) {\n  switch (r) {\n    case \"animation\":\n    case \"animationName\":\n      if (typeof n == \"string\")\n        return n.replace(nt, function(a, i, s) {\n          return U = {\n            name: i,\n            styles: s,\n            next: U\n          }, i;\n        });\n  }\n  return _n[r] !== 1 && !Ze(r) && typeof n == \"number\" && n !== 0 ? n + \"px\" : n;\n};\nif (process.env.NODE_ENV !== \"production\") {\n  var On = /(var|attr|counters?|url|element|(((repeating-)?(linear|radial))|conic)-gradient)\\(|(no-)?(open|close)-quote/, kn = [\"normal\", \"none\", \"initial\", \"inherit\", \"unset\"], Cn = ke, Tn = /^-ms-/, Pn = /-(.)/g, Ir = {};\n  ke = function(r, n) {\n    if (r === \"content\" && (typeof n != \"string\" || kn.indexOf(n) === -1 && !On.test(n) && (n.charAt(0) !== n.charAt(n.length - 1) || n.charAt(0) !== '\"' && n.charAt(0) !== \"'\")))\n      throw new Error(\"You seem to be using a value for 'content' without quotes, try replacing it with `content: '\\\"\" + n + \"\\\"'`\");\n    var a = Cn(r, n);\n    return a !== \"\" && !Ze(r) && r.indexOf(\"-\") !== -1 && Ir[r] === void 0 && (Ir[r] = !0, console.error(\"Using kebab-case for css properties in objects is not supported. Did you mean \" + r.replace(Tn, \"ms-\").replace(Pn, function(i, s) {\n      return s.toUpperCase();\n    }) + \"?\")), a;\n  };\n}\nvar at = \"Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.\";\nfunction he(e, r, n) {\n  if (n == null)\n    return \"\";\n  if (n.__emotion_styles !== void 0) {\n    if (process.env.NODE_ENV !== \"production\" && n.toString() === \"NO_COMPONENT_SELECTOR\")\n      throw new Error(at);\n    return n;\n  }\n  switch (typeof n) {\n    case \"boolean\":\n      return \"\";\n    case \"object\": {\n      if (n.anim === 1)\n        return U = {\n          name: n.name,\n          styles: n.styles,\n          next: U\n        }, n.name;\n      if (n.styles !== void 0) {\n        var a = n.next;\n        if (a !== void 0)\n          for (; a !== void 0; )\n            U = {\n              name: a.name,\n              styles: a.styles,\n              next: U\n            }, a = a.next;\n        var i = n.styles + \";\";\n        return process.env.NODE_ENV !== \"production\" && n.map !== void 0 && (i += n.map), i;\n      }\n      return Nn(e, r, n);\n    }\n    case \"function\": {\n      if (e !== void 0) {\n        var s = U, l = n(e);\n        return U = s, he(e, r, l);\n      } else\n        process.env.NODE_ENV !== \"production\" && console.error(\"Functions that are interpolated in css calls will be stringified.\\nIf you want to have a css call based on props, create a function that returns a css call like this\\nlet dynamicStyle = (props) => css`color: ${props.color}`\\nIt can be called directly with props or interpolated in a styled call like this\\nlet SomeComponent = styled('div')`${dynamicStyle}`\");\n      break;\n    }\n    case \"string\":\n      if (process.env.NODE_ENV !== \"production\") {\n        var u = [], d = n.replace(nt, function(f, v, C) {\n          var T = \"animation\" + u.length;\n          return u.push(\"const \" + T + \" = keyframes`\" + C.replace(/^@keyframes animation-\\w+/, \"\") + \"`\"), \"${\" + T + \"}\";\n        });\n        u.length && console.error(\"`keyframes` output got interpolated into plain string, please wrap it with `css`.\\n\\nInstead of doing this:\\n\\n\" + [].concat(u, [\"`\" + d + \"`\"]).join(`\n`) + `\n\nYou should wrap it with \\`css\\` like this:\n\n` + (\"css`\" + d + \"`\"));\n      }\n      break;\n  }\n  if (r == null)\n    return n;\n  var g = r[n];\n  return g !== void 0 ? g : n;\n}\nfunction Nn(e, r, n) {\n  var a = \"\";\n  if (Array.isArray(n))\n    for (var i = 0; i < n.length; i++)\n      a += he(e, r, n[i]) + \";\";\n  else\n    for (var s in n) {\n      var l = n[s];\n      if (typeof l != \"object\")\n        r != null && r[l] !== void 0 ? a += s + \"{\" + r[l] + \"}\" : Ar(l) && (a += Me(s) + \":\" + ke(s, l) + \";\");\n      else {\n        if (s === \"NO_COMPONENT_SELECTOR\" && process.env.NODE_ENV !== \"production\")\n          throw new Error(at);\n        if (Array.isArray(l) && typeof l[0] == \"string\" && (r == null || r[l[0]] === void 0))\n          for (var u = 0; u < l.length; u++)\n            Ar(l[u]) && (a += Me(s) + \":\" + ke(s, l[u]) + \";\");\n        else {\n          var d = he(e, r, l);\n          switch (s) {\n            case \"animation\":\n            case \"animationName\": {\n              a += Me(s) + \":\" + d + \";\";\n              break;\n            }\n            default:\n              process.env.NODE_ENV !== \"production\" && s === \"undefined\" && console.error(Sn), a += s + \"{\" + d + \"}\";\n          }\n        }\n      }\n    }\n  return a;\n}\nvar $r = /label:\\s*([^\\s;\\n{]+)\\s*(;|$)/g, it;\nprocess.env.NODE_ENV !== \"production\" && (it = /\\/\\*#\\ssourceMappingURL=data:application\\/json;\\S+\\s+\\*\\//g);\nvar U, qe = function(r, n, a) {\n  if (r.length === 1 && typeof r[0] == \"object\" && r[0] !== null && r[0].styles !== void 0)\n    return r[0];\n  var i = !0, s = \"\";\n  U = void 0;\n  var l = r[0];\n  l == null || l.raw === void 0 ? (i = !1, s += he(a, n, l)) : (process.env.NODE_ENV !== \"production\" && l[0] === void 0 && console.error(Nr), s += l[0]);\n  for (var u = 1; u < r.length; u++)\n    s += he(a, n, r[u]), i && (process.env.NODE_ENV !== \"production\" && l[u] === void 0 && console.error(Nr), s += l[u]);\n  var d;\n  process.env.NODE_ENV !== \"production\" && (s = s.replace(it, function(C) {\n    return d = C, \"\";\n  })), $r.lastIndex = 0;\n  for (var g = \"\", f; (f = $r.exec(s)) !== null; )\n    g += \"-\" + // $FlowFixMe we know it's not null\n    f[1];\n  var v = wn(s) + g;\n  return process.env.NODE_ENV !== \"production\" ? {\n    name: v,\n    styles: s,\n    map: d,\n    next: U,\n    toString: function() {\n      return \"You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop).\";\n    }\n  } : {\n    name: v,\n    styles: s,\n    next: U\n  };\n}, An = function(r) {\n  return r();\n}, In = Sr[\"useInsertionEffect\"] ? Sr[\"useInsertionEffect\"] : !1, ot = In || An, $n = {}.hasOwnProperty, Qe = /* @__PURE__ */ Ur(\n  // we're doing this to avoid preconstruct's dead code elimination in this one case\n  // because this module is primarily intended for the browser and node\n  // but it's also required in react native and similar environments sometimes\n  // and we could have a special build just for that\n  // but this is much easier and the native packages\n  // might use a different theme context in the future anyway\n  typeof HTMLElement < \"u\" ? /* @__PURE__ */ En({\n    key: \"css\"\n  }) : null\n);\nprocess.env.NODE_ENV !== \"production\" && (Qe.displayName = \"EmotionCacheContext\");\nQe.Provider;\nvar st = function(r) {\n  return /* @__PURE__ */ $t(function(n, a) {\n    var i = Be(Qe);\n    return r(n, i, a);\n  });\n}, er = /* @__PURE__ */ Ur({});\nprocess.env.NODE_ENV !== \"production\" && (er.displayName = \"EmotionThemeContext\");\nvar Dr = \"__EMOTION_TYPE_PLEASE_DO_NOT_USE__\", jr = \"__EMOTION_LABEL_PLEASE_DO_NOT_USE__\", Dn = function(r) {\n  var n = r.cache, a = r.serialized, i = r.isStringTag;\n  return Ke(n, a, i), ot(function() {\n    return tt(n, a, i);\n  }), null;\n}, jn = /* @__PURE__ */ st(function(e, r, n) {\n  var a = e.css;\n  typeof a == \"string\" && r.registered[a] !== void 0 && (a = r.registered[a]);\n  var i = e[Dr], s = [a], l = \"\";\n  typeof e.className == \"string\" ? l = rt(r.registered, s, e.className) : e.className != null && (l = e.className + \" \");\n  var u = qe(s, void 0, Be(er));\n  if (process.env.NODE_ENV !== \"production\" && u.name.indexOf(\"-\") === -1) {\n    var d = e[jr];\n    d && (u = qe([u, \"label:\" + d + \";\"]));\n  }\n  l += r.key + \"-\" + u.name;\n  var g = {};\n  for (var f in e)\n    $n.call(e, f) && f !== \"css\" && f !== Dr && (process.env.NODE_ENV === \"production\" || f !== jr) && (g[f] = e[f]);\n  return g.ref = n, g.className = l, /* @__PURE__ */ ne(qr, null, /* @__PURE__ */ ne(Dn, {\n    cache: r,\n    serialized: u,\n    isStringTag: typeof i == \"string\"\n  }), /* @__PURE__ */ ne(i, g));\n});\nprocess.env.NODE_ENV !== \"production\" && (jn.displayName = \"EmotionCssPropInternal\");\nvar Ln = Mt, Vn = function(r) {\n  return r !== \"theme\";\n}, Lr = function(r) {\n  return typeof r == \"string\" && // 96 is one less than the char code\n  // for \"a\" so this is checking that\n  // it's a lowercase character\n  r.charCodeAt(0) > 96 ? Ln : Vn;\n}, Vr = function(r, n, a) {\n  var i;\n  if (n) {\n    var s = n.shouldForwardProp;\n    i = r.__emotion_forwardProp && s ? function(l) {\n      return r.__emotion_forwardProp(l) && s(l);\n    } : s;\n  }\n  return typeof i != \"function\" && a && (i = r.__emotion_forwardProp), i;\n}, Fr = `You have illegal escape sequence in your template literal, most likely inside content's property value.\nBecause you write your CSS inside a JavaScript string you actually have to do double escaping, so for example \"content: '\\\\00d7';\" should become \"content: '\\\\\\\\00d7';\".\nYou can read more about this here:\nhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`, Fn = function(r) {\n  var n = r.cache, a = r.serialized, i = r.isStringTag;\n  return Ke(n, a, i), ot(function() {\n    return tt(n, a, i);\n  }), null;\n}, Mn = function e(r, n) {\n  if (process.env.NODE_ENV !== \"production\" && r === void 0)\n    throw new Error(`You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.`);\n  var a = r.__emotion_real === r, i = a && r.__emotion_base || r, s, l;\n  n !== void 0 && (s = n.label, l = n.target);\n  var u = Vr(r, n, a), d = u || Lr(i), g = !d(\"as\");\n  return function() {\n    var f = arguments, v = a && r.__emotion_styles !== void 0 ? r.__emotion_styles.slice(0) : [];\n    if (s !== void 0 && v.push(\"label:\" + s + \";\"), f[0] == null || f[0].raw === void 0)\n      v.push.apply(v, f);\n    else {\n      process.env.NODE_ENV !== \"production\" && f[0][0] === void 0 && console.error(Fr), v.push(f[0][0]);\n      for (var C = f.length, T = 1; T < C; T++)\n        process.env.NODE_ENV !== \"production\" && f[0][T] === void 0 && console.error(Fr), v.push(f[T], f[0][T]);\n    }\n    var x = st(function(h, O, E) {\n      var p = g && h.as || i, P = \"\", q = [], D = h;\n      if (h.theme == null) {\n        D = {};\n        for (var V in h)\n          D[V] = h[V];\n        D.theme = Be(er);\n      }\n      typeof h.className == \"string\" ? P = rt(O.registered, q, h.className) : h.className != null && (P = h.className + \" \");\n      var R = qe(v.concat(q), O.registered, D);\n      P += O.key + \"-\" + R.name, l !== void 0 && (P += \" \" + l);\n      var Ne = g && u === void 0 ? Lr(p) : d, K = {};\n      for (var Q in h)\n        g && Q === \"as\" || // $FlowFixMe\n        Ne(Q) && (K[Q] = h[Q]);\n      return K.className = P, K.ref = E, /* @__PURE__ */ ne(qr, null, /* @__PURE__ */ ne(Fn, {\n        cache: O,\n        serialized: R,\n        isStringTag: typeof p == \"string\"\n      }), /* @__PURE__ */ ne(p, K));\n    });\n    return x.displayName = s !== void 0 ? s : \"Styled(\" + (typeof i == \"string\" ? i : i.displayName || i.name || \"Component\") + \")\", x.defaultProps = r.defaultProps, x.__emotion_real = x, x.__emotion_base = i, x.__emotion_styles = v, x.__emotion_forwardProp = u, Object.defineProperty(x, \"toString\", {\n      value: function() {\n        return l === void 0 && process.env.NODE_ENV !== \"production\" ? \"NO_COMPONENT_SELECTOR\" : \".\" + l;\n      }\n    }), x.withComponent = function(h, O) {\n      return e(h, ze({}, n, O, {\n        shouldForwardProp: Vr(x, O, !0)\n      })).apply(void 0, v);\n    }, x;\n  };\n}, Wn = [\n  \"a\",\n  \"abbr\",\n  \"address\",\n  \"area\",\n  \"article\",\n  \"aside\",\n  \"audio\",\n  \"b\",\n  \"base\",\n  \"bdi\",\n  \"bdo\",\n  \"big\",\n  \"blockquote\",\n  \"body\",\n  \"br\",\n  \"button\",\n  \"canvas\",\n  \"caption\",\n  \"cite\",\n  \"code\",\n  \"col\",\n  \"colgroup\",\n  \"data\",\n  \"datalist\",\n  \"dd\",\n  \"del\",\n  \"details\",\n  \"dfn\",\n  \"dialog\",\n  \"div\",\n  \"dl\",\n  \"dt\",\n  \"em\",\n  \"embed\",\n  \"fieldset\",\n  \"figcaption\",\n  \"figure\",\n  \"footer\",\n  \"form\",\n  \"h1\",\n  \"h2\",\n  \"h3\",\n  \"h4\",\n  \"h5\",\n  \"h6\",\n  \"head\",\n  \"header\",\n  \"hgroup\",\n  \"hr\",\n  \"html\",\n  \"i\",\n  \"iframe\",\n  \"img\",\n  \"input\",\n  \"ins\",\n  \"kbd\",\n  \"keygen\",\n  \"label\",\n  \"legend\",\n  \"li\",\n  \"link\",\n  \"main\",\n  \"map\",\n  \"mark\",\n  \"marquee\",\n  \"menu\",\n  \"menuitem\",\n  \"meta\",\n  \"meter\",\n  \"nav\",\n  \"noscript\",\n  \"object\",\n  \"ol\",\n  \"optgroup\",\n  \"option\",\n  \"output\",\n  \"p\",\n  \"param\",\n  \"picture\",\n  \"pre\",\n  \"progress\",\n  \"q\",\n  \"rp\",\n  \"rt\",\n  \"ruby\",\n  \"s\",\n  \"samp\",\n  \"script\",\n  \"section\",\n  \"select\",\n  \"small\",\n  \"source\",\n  \"span\",\n  \"strong\",\n  \"style\",\n  \"sub\",\n  \"summary\",\n  \"sup\",\n  \"table\",\n  \"tbody\",\n  \"td\",\n  \"textarea\",\n  \"tfoot\",\n  \"th\",\n  \"thead\",\n  \"time\",\n  \"title\",\n  \"tr\",\n  \"track\",\n  \"u\",\n  \"ul\",\n  \"var\",\n  \"video\",\n  \"wbr\",\n  // SVG\n  \"circle\",\n  \"clipPath\",\n  \"defs\",\n  \"ellipse\",\n  \"foreignObject\",\n  \"g\",\n  \"image\",\n  \"line\",\n  \"linearGradient\",\n  \"mask\",\n  \"path\",\n  \"pattern\",\n  \"polygon\",\n  \"polyline\",\n  \"radialGradient\",\n  \"rect\",\n  \"stop\",\n  \"svg\",\n  \"text\",\n  \"tspan\"\n], z = Mn.bind();\nWn.forEach(function(e) {\n  z[e] = z(e);\n});\nconst zn = (e) => Br(Yn, {\n  children: [L(Un, {\n    src: \"https://assets.website-files.com/5beab1239ac88487c3a6608f/616b9cffac007b154cee8afc_Logo.webp\"\n  }), L(qn, {\n    children: e.text\n  })]\n}), Yn = z.div`\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  flex-direction: column;\n  row-gap: 20px;\n\n  width: 100%;\n  height: 100%;\n\n  border-radius: 18px;\n\n  min-width: 600px;\n  min-height: 400px;\n\n  background: #f7f8fd;\n`, Un = z.img`\n  width: 160px;\n`, qn = z.span`\n  color: #061237;\n  font-family: Inter, sans-serif;\n  font-size: 18px;\n  line-height: 36px;\n`, Bn = 50;\nvar Hn = ((e) => (e[e.Left = 0] = \"Left\", e[e.Right = 1] = \"Right\", e))(Hn || {});\nconst Gn = (e) => {\n  var x, h, O, E;\n  if (!((x = e.left) != null && x.src) || !((h = e.right) != null && h.src)) {\n    let p = 2;\n    return ((O = e.left) != null && O.src || (E = e.right) != null && E.src) && p--, L(zn, {\n      text: `Upload ${p} image${p > 1 ? \"s\" : \"\"} to continue`\n    });\n  }\n  const r = te(null), n = te(null), a = te(null), i = te(null), s = te(null), l = te(null), u = (p) => {\n    r.current.style.clipPath = `inset(0px 0px 0px ${p}%)`, a.current.style.left = `${p}%`;\n  }, d = (p) => n.current.value = `${p}`, g = (p) => {\n    u(+p.target.value);\n  };\n  We(() => {\n    u(e.position);\n  }, [e.position]), We(() => {\n    f(), e.position !== Bn && (u(e.position), d(e.position));\n  }, []);\n  const f = () => {\n    var P;\n    const p = (P = a.current) == null ? void 0 : P.firstChild;\n    i.current && p && i.current.style.setProperty(\"--thumb-size\", `${p.clientWidth}px`);\n  }, v = () => {\n    r.current.style.transition = \"clip-path 0.3s\", a.current.style.transition = \"left 0.3s\";\n  }, C = () => {\n    r.current.style.transition = \"\", a.current.style.transition = \"\";\n  }, T = (p) => {\n    switch (v(), p) {\n      case 0:\n        u(0), d(0);\n        break;\n      case 1:\n        u(100), d(100);\n        break;\n    }\n    setTimeout(C, 300);\n  };\n  return Br(Jn, {\n    ref: i,\n    borderRadius: e.radius,\n    background: e.bg,\n    children: [L(Wr, {\n      ref: s,\n      hp: \"left\",\n      vp: e.label.position,\n      x: e.label.x,\n      y: e.label.y,\n      onClick: () => T(0),\n      children: e.customLabel ? e.leftLabel : L(zr, {\n        children: e.label.before\n      })\n    }), L(Wr, {\n      ref: l,\n      hp: \"right\",\n      vp: e.label.position,\n      x: e.label.x,\n      y: e.label.y,\n      onClick: () => T(1),\n      children: e.customLabel ? e.rightLabel : L(zr, {\n        children: e.label.after\n      })\n    }), L(Xn, {\n      ref: r,\n      children: L(Mr, {\n        src: e.right.src,\n        srcSet: e.right.srcSet,\n        alt: e.right.alt\n      })\n    }), L(Mr, {\n      src: e.left.src,\n      srcSet: e.left.srcSet,\n      alt: e.left.alt\n    }), L(Zn, {\n      type: \"range\",\n      ref: n,\n      min: \"0\",\n      max: \"100\",\n      onChange: g\n    }), L(Kn, {\n      ref: a,\n      color: e.line.color,\n      width: e.line.width,\n      children: e.customHandle ? e.handle : L(Qn, {})\n    })]\n  });\n}, Jn = z.div`\n  position: relative;\n  display: inline-block;\n  overflow: hidden;\n  width: 100%;\n  height: 100%;\n  border-radius: ${(e) => e.borderRadius}px;\n  background: ${(e) => e.background};\n`, Xn = z.div`\n  position: absolute;\n  z-index: 1;\n  bottom: 0;\n  right: 0;\n  left: 0;\n  top: 0;\n`, Mr = z.img`\n  vertical-align: bottom;\n  object-fit: cover;\n  height: 100%;\n  width: 100%;\n}`, Kn = z.div`\n  pointer-events: none;\n\n  display: flex;\n  align-items: center;\n  justify-content: center;\n\n  position: absolute;\n  z-index: 2;\n\n  left: 50%;\n  bottom: 0;\n  top: 0;\n\n  transform: translateX(-50%);\n\n  &:before {\n    content: '';\n\n    position: absolute;\n    left: 50%;\n    bottom: 0;\n    top: 0;\n\n    width: ${(e) => e.width}px;\n    background: ${(e) => e.color};\n\n    transform: translateX(-50%);\n  }\n`, Zn = z.input`\n  bottom: 0;\n  cursor: pointer;\n  height: 100%;\n  left: -1px;\n  margin: 0;\n  opacity: 0;\n  position: absolute;\n  top: 0;\n  touch-action: auto;\n  width: calc(100% + 2px);\n  z-index: 2;\n\n  &::-webkit-slider-thumb {\n    -webkit-appearance: none;\n    width: calc(var(--thumb-size) * 2);\n    height: calc(var(--thumb-size) * 1.5);\n  }\n`, Qn = z.div`\n  flex-shrink: 0;\n  position: relative;\n\n  width: 64px;\n  height: 64px;\n  background: rgba(255, 255, 255, 0.4);\n  border: 1px solid rgba(255, 255, 255, 0.24);\n  border-radius: 50%;\n\n  &:before,\n  &:after {\n    content: '';\n\n    position: absolute;\n    top: 50%;\n\n    border-left: 2px solid;\n    border-top: 2px solid;\n\n    height: 8px;\n    width: 8px;\n\n    transform-origin: 0 0;\n  }\n\n  &:before {\n    left: 18px;\n    transform: rotate(-45deg);\n  }\n\n  &:after {\n    right: 8px;\n    transform: rotate(135deg);\n  }\n`, Wr = z.div`\n  position: absolute;\n  z-index: 3;\n\n  cursor: pointer;\n\n  ${(e) => `${e.vp}: ${e.y}px;`}\n  ${(e) => `${e.hp}: ${e.x}px;`}\n`, zr = z.div`\n  display: flex;\n  flex-direction: row;\n  align-items: flex-start;\n  padding: 2px 16px;\n  background: rgba(255, 255, 255, 0.48);\n  border: 1px solid rgba(255, 255, 255, 0.24);\n  border-radius: 6px;\n\n  font-family: Inter, sans-serif;\n  font-weight: 500;\n  font-size: 14px;\n  line-height: 28px;\n  color: #000000;\n`, ea = ({ loading: e, loaded: r }) => {\n  const [n, a] = Dt(!0);\n  return We(() => a(!1), []), n ? e : r;\n}, X = (e) => {\n  var r, n;\n  return !((r = e.left) != null && r.src) || !((n = e.right) != null && n.src);\n}, ta = {\n  left: {\n    type: \"responsiveimage\",\n    title: \"Left Image\"\n  },\n  right: {\n    type: \"responsiveimage\",\n    title: \"Right Image\",\n    description: \"[Flowbase](https://www.flowbase.co/) is the worlds largest component resource site. Explore endless components and templates to inspire your workflows and help you build better, faster.\"\n  },\n  radius: {\n    type: \"number\",\n    defaultValue: 0,\n    min: 0,\n    max: 999,\n    step: 1,\n    displayStepper: !0,\n    hidden: X\n  },\n  bg: {\n    type: \"color\",\n    title: \"Background\",\n    defaultValue: \"#e4e6f1\"\n  },\n  position: {\n    type: \"number\",\n    defaultValue: 50,\n    description: \"Starting position of the handle\",\n    min: 0,\n    max: 100,\n    step: 1,\n    displayStepper: !0,\n    hidden: X\n  },\n  customHandle: {\n    type: \"boolean\",\n    defaultValue: !1,\n    hidden: X\n  },\n  handle: {\n    type: \"componentinstance\",\n    title: \"Handle\",\n    hidden: (e) => X(e) || !e.customHandle\n  },\n  label: {\n    type: \"object\",\n    hidden: X,\n    controls: {\n      position: {\n        type: \"enum\",\n        defaultValue: \"row\",\n        options: [\"top\", \"bottom\"],\n        optionTitles: [\"Top\", \"Bottom\"]\n      },\n      x: {\n        type: \"number\",\n        defaultValue: 24,\n        min: 0,\n        max: 999,\n        step: 1,\n        displayStepper: !0\n      },\n      y: {\n        type: \"number\",\n        defaultValue: 24,\n        min: 0,\n        max: 999,\n        step: 1,\n        displayStepper: !0\n      },\n      before: {\n        type: \"string\",\n        defaultValue: \"Before\"\n      },\n      after: {\n        type: \"string\",\n        defaultValue: \"After\"\n      }\n    }\n  },\n  customLabel: {\n    type: \"boolean\",\n    defaultValue: !1,\n    hidden: X\n  },\n  leftLabel: {\n    type: \"componentinstance\",\n    title: \"Left Label\",\n    hidden: (e) => X(e) || !e.customLabel\n  },\n  rightLabel: {\n    type: \"componentinstance\",\n    title: \"Left Label\",\n    hidden: (e) => X(e) || !e.customLabel\n  },\n  line: {\n    type: \"object\",\n    hidden: X,\n    controls: {\n      color: {\n        type: \"color\",\n        defaultValue: \"rgba(255, 255, 255, 0.4)\"\n      },\n      width: {\n        type: \"number\",\n        defaultValue: 1,\n        min: 0,\n        max: 99,\n        step: 1,\n        displayStepper: !0\n      }\n    }\n  }\n}, na = (e) => L(ea, {\n  loading: L(\"div\", {\n    style: {\n      width: \"100%\",\n      height: \"100%\",\n      borderRadius: `${e.radius}px`,\n      background: e.bg\n    }\n  }),\n  loaded: L(Gn, {\n    ...e\n  })\n});\nexport {\n  na as BeforeAfter,\n  ta as propertyControls\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls}from\"framer\";import{propertyControls,BeforeAfter as Component}from\"https://boosters.flowbase.co/before-after-framer.js#Pi7ExYI4gXmQ\";addPropertyControls(BeforeAfter,propertyControls);export default function BeforeAfter(props){return /*#__PURE__*/_jsx(Component,{...props});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BeforeAfter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Before_After.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Carousel1 from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js\";import Header from\"#framer/local/canvasComponent/oR_dPqPns/oR_dPqPns.js\";import{withuseBackToTopVisibility}from\"#framer/local/codeFile/n1ceOYy/back_to_top.js\";import BeforeAfter from\"#framer/local/codeFile/AOlv3Uv/Before_After.js\";import metadataProvider from\"#framer/local/webPageMetadata/D3OwGjzGm/D3OwGjzGm.js\";const HeaderFonts=getFonts(Header);const MotionAWithuseBackToTopVisibility37sin4=withCodeBoundaryForOverrides(motion.a,{nodeId:\"fEuKyIMuH\",override:withuseBackToTopVisibility,scopeId:\"D3OwGjzGm\"});const CarouselFonts=getFonts(Carousel);const Carousel1Fonts=getFonts(Carousel1);const BeforeAfterFonts=getFonts(BeforeAfter);const EmbedFonts=getFonts(Embed);const breakpoints={Bk5kahbHL:\"(max-width: 599px)\",dNc879Ogt:\"(min-width: 600px) and (max-width: 1023px)\",tSz_FiMCa:\"(min-width: 1024px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TJuPB\";const variantClassNames={Bk5kahbHL:\"framer-v-doyzdn\",dNc879Ogt:\"framer-v-6tteh7\",tSz_FiMCa:\"framer-v-scdf9i\"};const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition1};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"tSz_FiMCa\",Phone:\"Bk5kahbHL\",Tablet:\"dNc879Ogt\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tSz_FiMCa\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Iv5JWT3SK\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"HsdQiFcZV\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"uM49IdFVj\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"qtZLuOIFb\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"A9vXR0aQM\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"vUHf0P4mn\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"NXiS717Y2\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"TCyQ9qsc2\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"bt2pSabXG\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"IdC6sGnTt\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"cmTFoaSLi\");const ref11=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tSz_FiMCa\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(246, 246, 246); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-scdf9i\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jfq094\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:77,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8f8oaq-container\",nodeId:\"ekuEiIHNW\",scopeId:\"D3OwGjzGm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{variant:\"dh8hSPl1V\"},dNc879Ogt:{variant:\"dh8hSPl1V\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"ekuEiIHNW\",layoutId:\"ekuEiIHNW\",style:{width:\"100%\"},variant:\"RR0xE9I2q\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D3OwGjzGm\"},motionChild:true,nodeId:\"fEuKyIMuH\",openInNewTab:false,scopeId:\"D3OwGjzGm\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithuseBackToTopVisibility37sin4,{className:\"framer-37sin4 framer-1prb6m6\",\"data-border\":true,\"data-framer-name\":\"back to top button\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-anbbc0\",\"data-framer-name\":\"arrow_back\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,style:{rotate:180},svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_262_1087\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"24\" height=\"25\">\\n<rect y=\"24.5\" width=\"24\" height=\"24\" transform=\"rotate(-90 0 24.5)\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_262_1087)\">\\n<path d=\"M13 16.675L18.6 11.075L20 12.5L12 20.5L4 12.5L5.4 11.075L11 16.675L11 4.5L13 4.5L13 16.675Z\" fill=\"#0013C0\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1csb1rm\",\"data-framer-name\":\"Desktop - Responsive (Max 1600, Min 1024)\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sx9cda\",\"data-framer-name\":\"Frame 146\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kxw7k2\",\"data-framer-name\":\"Frame 148\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-52dgzk\",\"data-framer-name\":\"Frame 124\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h26nxg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dw2n9v\",\"data-framer-name\":\"overview\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Design Sync\"})}),className:\"framer-3oyym2\",\"data-framer-name\":\"Project overview\",fonts:[\"Inter-ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"A plugin design for Figma that improves design-to-production consistency.\"})}),className:\"framer-yfe0gm\",\"data-framer-name\":\"I designed a responsive website for the Japan Sage Market, a small, locally owned Japanese Market & Deli In Salt Lake City, Utah. They have been in business-serving the community for over 100. This website aims to broaden their reach, and further connect the community to their offerings and rich history in Salt Lake City.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:176,intrinsicWidth:183.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+77+0+0+24+0+0+0+40+0+0),pixelHeight:184,pixelWidth:184,src:\"https://framerusercontent.com/images/ddZ7e7b68yPZtCrxQzQar3dlY1I.png\"},className:\"framer-1mg543g\",\"data-framer-name\":\"Figma logo\"})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:821.6,intrinsicWidth:1536,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+77+0+0+24+0+0+0+40+432),pixelHeight:1027,pixelWidth:1920,sizes:`min(min(max(min(${componentViewport?.width||\"100vw\"}, 1600px), 320px) - 32px, 1302px), 800px)`,src:\"https://framerusercontent.com/images/1kFiOg9ZeEaCsq8SoOLm6d8eBTo.jpg\",srcSet:\"https://framerusercontent.com/images/1kFiOg9ZeEaCsq8SoOLm6d8eBTo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1kFiOg9ZeEaCsq8SoOLm6d8eBTo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1kFiOg9ZeEaCsq8SoOLm6d8eBTo.jpg 1920w\"},className:\"framer-6bz5br\",\"data-framer-name\":\"Variant 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cr1hxb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:461.6,intrinsicWidth:900.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+77+0+0+24+0+0+0+40+432+38.5),pixelHeight:577,pixelWidth:1126,sizes:`calc(min(min(max(min(${componentViewport?.width||\"100vw\"}, 1600px), 320px) - 32px, 1302px), 800px) * 0.8229)`,src:\"https://framerusercontent.com/images/2vaswGb0uGaX1T7abfqnAqWmIII.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2vaswGb0uGaX1T7abfqnAqWmIII.png?scale-down-to=512 512w,https://framerusercontent.com/images/2vaswGb0uGaX1T7abfqnAqWmIII.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2vaswGb0uGaX1T7abfqnAqWmIII.png 1126w\"},className:\"framer-1ow8xmu\",\"data-framer-name\":\"DS UI\",transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mqbrtx\",\"data-framer-name\":\"overview\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17uypf8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m2frkx\",\"data-framer-name\":\"overview\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"The Problem\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"The Problem\"})}),className:\"framer-h3tc6o\",\"data-framer-name\":\"Project overview\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Product teams\u2014including product managers, designers, and engineers\u2014struggle to maintain consistency between design and production due to the lack of automated tools. Current manual processes are error-prone, leading to misalignments and inefficiencies.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Product teams\u2014including product managers, designers, and engineers\u2014struggle to maintain consistency between design and production due to the lack of automated tools. Current manual processes are error-prone, leading to misalignments and inefficiencies.\"})}),className:\"framer-frfg43\",\"data-framer-name\":\"I designed a responsive website for the Japan Sage Market, a small, locally owned Japanese Market & Deli In Salt Lake City, Utah. They have been in business-serving the community for over 100. This website aims to broaden their reach, and further connect the community to their offerings and rich history in Salt Lake City.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l15sf\",\"data-framer-name\":\"overview\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"The solution\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"The solution\"})}),className:\"framer-fg91rw\",\"data-framer-name\":\"Project overview\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"I designed a plugin for Figma to bridge the gap between design and production. It cross-references design files with production code, flags inconsistencies, and provides actionable solutions to ensure alignment and maintain design consistency.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"I designed a plugin for Figma to bridge the gap between design and production. It cross-references design files with production code, flags inconsistencies, and provides actionable solutions to ensure alignment and maintain design consistency.\"})}),className:\"framer-17lamnc\",\"data-framer-name\":\"I designed a responsive website for the Japan Sage Market, a small, locally owned Japanese Market & Deli In Salt Lake City, Utah. They have been in business-serving the community for over 100. This website aims to broaden their reach, and further connect the community to their offerings and rich history in Salt Lake City.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sidcdc\",\"data-border\":true,\"data-framer-name\":\"Frame 100\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pum4ju\",\"data-framer-name\":\"User Research\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d6kamk\",\"data-framer-name\":\"Frame 219\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\"},children:\"User Research\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"User Research\"})}),className:\"framer-1d183e1\",\"data-framer-name\":\"User Research\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Direction: \"}),\"Exploring challenges a nd opportunities in improving digital workspace tools.\"]})}),className:\"framer-b7c4rc\",\"data-framer-name\":\"Direction: Exploring challenges and opportunities in improving digital workspace tools.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ku1p2x\",\"data-framer-name\":\"Frame 220\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Research approach\"})}),className:\"framer-1mpus1m\",\"data-framer-name\":\"Research approach\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rk8il8\",\"data-framer-name\":\"Frame 221\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s2udmx\",\"data-framer-name\":\"Frame 222\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v1w9gx\",\"data-framer-name\":\"search\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:101,intrinsicWidth:101,svg:'<svg width=\"101\" height=\"101\" viewBox=\"0 0 101 101\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_315_592\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"101\" height=\"101\">\\n<rect x=\"0.333008\" y=\"0.429688\" width=\"100\" height=\"100\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_592)\">\\n<path d=\"M81.9987 87.9297L55.7487 61.6797C53.6654 63.3464 51.2695 64.6658 48.5612 65.638C45.8529 66.6102 42.9709 67.0964 39.9154 67.0964C32.3459 67.0964 25.9397 64.4748 20.6966 59.2318C15.4536 53.9887 12.832 47.5825 12.832 40.013C12.832 32.4436 15.4536 26.0373 20.6966 20.7943C25.9397 15.5512 32.3459 12.9297 39.9154 12.9297C47.4848 12.9297 53.8911 15.5512 59.1341 20.7943C64.3772 26.0373 66.9987 32.4436 66.9987 40.013C66.9987 43.0686 66.5126 45.9505 65.5404 48.6589C64.5681 51.3672 63.2487 53.763 61.582 55.8464L87.832 82.0964L81.9987 87.9297ZM39.9154 58.763C45.1237 58.763 49.5508 56.9401 53.1966 53.2943C56.8424 49.6484 58.6654 45.2214 58.6654 40.013C58.6654 34.8047 56.8424 30.3776 53.1966 26.7318C49.5508 23.0859 45.1237 21.263 39.9154 21.263C34.707 21.263 30.2799 23.0859 26.6341 26.7318C22.9883 30.3776 21.1654 34.8047 21.1654 40.013C21.1654 45.2214 22.9883 49.6484 26.6341 53.2943C30.2799 56.9401 34.707 58.763 39.9154 58.763Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Phase 1: Discovery\"})}),className:\"framer-1ovvk7f\",\"data-framer-name\":\"Phase 1: Broad Exploration\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"User interviews across diverse roles to identify general pain points\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-18dni57\",\"data-framer-name\":\"User interviews across diverse roles to identify general pain points\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3y8p1o\",\"data-framer-name\":\"arrow_forward\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_332_1072\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"80\" height=\"80\">\\n<rect width=\"80\" height=\"80\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_332_1072)\">\\n<path d=\"M53.9163 43.334H13.333V36.6673H53.9163L35.2497 18.0007L39.9997 13.334L66.6663 40.0007L39.9997 66.6673L35.2497 62.0007L53.9163 43.334Z\" fill=\"black\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hsfklg\",\"data-framer-name\":\"Frame 225\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qj117p\",\"data-framer-name\":\"emoji_objects\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:101,intrinsicWidth:100,svg:'<svg width=\"100\" height=\"101\" viewBox=\"0 0 100 101\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_315_613\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"100\" height=\"101\">\\n<rect y=\"0.429688\" width=\"100\" height=\"100\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_613)\">\\n<path d=\"M50.0003 92.097C48.1948 92.097 46.5628 91.663 45.1045 90.7949C43.6462 89.9269 42.5003 88.7637 41.667 87.3053C39.3753 87.3053 37.4135 86.4894 35.7816 84.8574C34.1496 83.2255 33.3337 81.2637 33.3337 78.972V64.1803C29.2364 61.472 25.9552 57.8956 23.4899 53.4512C21.0246 49.0067 19.792 44.1803 19.792 38.972C19.792 30.5692 22.726 23.4338 28.5941 17.5658C34.4621 11.6977 41.5975 8.76367 50.0003 8.76367C58.4031 8.76367 65.5385 11.6977 71.4066 17.5658C77.2746 23.4338 80.2087 30.5692 80.2087 38.972C80.2087 44.3192 78.976 49.1803 76.5107 53.5553C74.0455 57.9303 70.7642 61.472 66.667 64.1803V78.972C66.667 81.2637 65.851 83.2255 64.2191 84.8574C62.5871 86.4894 60.6253 87.3053 58.3337 87.3053C57.5003 88.7637 56.3545 89.9269 54.8962 90.7949C53.4378 91.663 51.8059 92.097 50.0003 92.097ZM41.667 78.972H58.3337V75.222H41.667V78.972ZM41.667 71.0553H58.3337V67.097H41.667V71.0553ZM40.8337 58.7637H46.8753V47.5137L37.7087 38.347L42.0837 33.972L50.0003 41.8887L57.917 33.972L62.292 38.347L53.1253 47.5137V58.7637H59.167C62.917 56.9581 65.9726 54.3019 68.3337 50.7949C70.6948 47.288 71.8753 43.347 71.8753 38.972C71.8753 32.8609 69.7573 27.6873 65.5212 23.4512C61.2851 19.2151 56.1114 17.097 50.0003 17.097C43.8892 17.097 38.7156 19.2151 34.4795 23.4512C30.2434 27.6873 28.1253 32.8609 28.1253 38.972C28.1253 43.347 29.3059 47.288 31.667 50.7949C34.0281 54.3019 37.0837 56.9581 40.8337 58.7637Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Key Insights Identified\"})}),className:\"framer-1kqvwlu\",\"data-framer-name\":\"Key Insights Identified\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Design-to-production inconsistencies emerged as a critical issue\"})}),className:\"framer-9gkud\",\"data-framer-name\":\"Design-to-production inconsistencies emerged as a critical issue\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8c8djk\",\"data-framer-name\":\"arrow_forward\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_332_1072\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"80\" height=\"80\">\\n<rect width=\"80\" height=\"80\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_332_1072)\">\\n<path d=\"M53.9163 43.334H13.333V36.6673H53.9163L35.2497 18.0007L39.9997 13.334L66.6663 40.0007L39.9997 66.6673L35.2497 62.0007L53.9163 43.334Z\" fill=\"black\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w2luzz\",\"data-framer-name\":\"Frame 226\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-e360bo\",\"data-framer-name\":\"search\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:101,intrinsicWidth:101,svg:'<svg width=\"101\" height=\"101\" viewBox=\"0 0 101 101\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_315_602\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"101\" height=\"101\">\\n<rect x=\"0.666016\" y=\"0.429688\" width=\"100\" height=\"100\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_602)\">\\n<mask id=\"mask1_315_602\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"101\" height=\"101\">\\n<rect x=\"0.729492\" y=\"0.671875\" width=\"100\" height=\"100\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask1_315_602)\">\\n<path d=\"M50.7292 92.3392C44.9653 92.3392 39.5486 91.2454 34.4792 89.0579C29.4097 86.8704 25 83.9017 21.25 80.1517C17.5 76.4017 14.5313 71.992 12.3438 66.9225C10.1563 61.8531 9.0625 56.4364 9.0625 50.6725C9.0625 44.9086 10.1563 39.492 12.3438 34.4225C14.5313 29.3531 17.5 24.9434 21.25 21.1934C25 17.4434 29.4097 14.4746 34.4792 12.2871C39.5486 10.0996 44.9653 9.00586 50.7292 9.00586C56.4931 9.00586 61.9097 10.0996 66.9792 12.2871C72.0486 14.4746 76.4583 17.4434 80.2083 21.1934C83.9583 24.9434 86.9271 29.3531 89.1146 34.4225C91.3021 39.492 92.3958 44.9086 92.3958 50.6725C92.3958 56.4364 91.3021 61.8531 89.1146 66.9225C86.9271 71.992 83.9583 76.4017 80.2083 80.1517C76.4583 83.9017 72.0486 86.8704 66.9792 89.0579C61.9097 91.2454 56.4931 92.3392 50.7292 92.3392ZM50.7292 84.0059C60.0347 84.0059 67.9167 80.7767 74.375 74.3184C80.8333 67.86 84.0625 59.9781 84.0625 50.6725C84.0625 41.367 80.8333 33.485 74.375 27.0267C67.9167 20.5684 60.0347 17.3392 50.7292 17.3392C41.4236 17.3392 33.5417 20.5684 27.0833 27.0267C20.625 33.485 17.3958 41.367 17.3958 50.6725C17.3958 59.9781 20.625 67.86 27.0833 74.3184C33.5417 80.7767 41.4236 84.0059 50.7292 84.0059ZM50.7292 75.6725C43.7847 75.6725 37.8819 73.242 33.0208 68.3809C28.1597 63.5198 25.7292 57.617 25.7292 50.6725C25.7292 43.7281 28.1597 37.8253 33.0208 32.9642C37.8819 28.1031 43.7847 25.6725 50.7292 25.6725C57.6736 25.6725 63.5764 28.1031 68.4375 32.9642C73.2986 37.8253 75.7292 43.7281 75.7292 50.6725C75.7292 57.617 73.2986 63.5198 68.4375 68.3809C63.5764 73.242 57.6736 75.6725 50.7292 75.6725ZM50.7292 67.3392C55.3125 67.3392 59.2361 65.7073 62.5 62.4434C65.7639 59.1795 67.3958 55.2559 67.3958 50.6725C67.3958 46.0892 65.7639 42.1656 62.5 38.9017C59.2361 35.6378 55.3125 34.0059 50.7292 34.0059C46.1458 34.0059 42.2222 35.6378 38.9583 38.9017C35.6944 42.1656 34.0625 46.0892 34.0625 50.6725C34.0625 55.2559 35.6944 59.1795 38.9583 62.4434C42.2222 65.7073 46.1458 67.3392 50.7292 67.3392ZM50.7292 59.0059C48.4375 59.0059 46.4757 58.1899 44.8438 56.5579C43.2118 54.926 42.3958 52.9642 42.3958 50.6725C42.3958 48.3809 43.2118 46.4191 44.8438 44.7871C46.4757 43.1552 48.4375 42.3392 50.7292 42.3392C53.0208 42.3392 54.9826 43.1552 56.6146 44.7871C58.2465 46.4191 59.0625 48.3809 59.0625 50.6725C59.0625 52.9642 58.2465 54.926 56.6146 56.5579C54.9826 58.1899 53.0208 59.0059 50.7292 59.0059Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Phase 2: Narrow Focus\"})}),className:\"framer-jphbqm\",\"data-framer-name\":\"Phase 2: Focused Investigation\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Targeted surveys to explore design-to-production challenges in depth\"})}),className:\"framer-p9m13\",\"data-framer-name\":\"Targeted surveys to explore design-to-production challenges in depth\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yyiqal\",\"data-framer-name\":\"Frame 221\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"Phase 1: User Interviews\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\"},children:\"Phase 1: User Interviews\"})}),className:\"framer-jc2ggk\",\"data-framer-name\":\"Phase 1: User Interviews\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r2toeb\",\"data-border\":true,\"data-framer-name\":\"user interviewdescription\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"The initial phase involved broad exploration through interviews with professionals from diverse roles and industries. These conversations helped identify general pain points in digital workspace tools.\"})})},dNc879Ogt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"The initial phase involved broad exploration through interviews with professionals from diverse roles and industries. These conversations helped identify general pain points in digital workspace tools.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"The initial phase involved broad exploration through interviews with professionals from diverse roles and industries. These conversations helped identify general pain points in digital workspace tools.\"})}),className:\"framer-rbmwrb\",\"data-framer-name\":\"The initial phase involved broad exploration through interviews with professionals from diverse roles and industries. These conversations helped identify general pain points in digital workspace tools.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10xjru4\",\"data-framer-name\":\"Frame 222\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l2ks22\",\"data-framer-name\":\"user interviewdescription\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-elr2ow\",\"data-framer-name\":\"Frame 227\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gmpoum\",\"data-framer-name\":\"Frame 230\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kdns1b\",\"data-framer-name\":\"Frame 234\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dmt54q\",\"data-framer-name\":\"Frame 232\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8w2uvh\",\"data-framer-name\":\"person\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" viewBox=\"0 0 38 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_315_671\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"38\" height=\"39\">\\n<rect y=\"0.429688\" width=\"38\" height=\"38\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_671)\">\\n<path d=\"M18.9997 19.4303C17.258 19.4303 15.767 18.8102 14.5268 17.5699C13.2865 16.3296 12.6663 14.8387 12.6663 13.097C12.6663 11.3553 13.2865 9.86437 14.5268 8.62409C15.767 7.38381 17.258 6.76367 18.9997 6.76367C20.7413 6.76367 22.2323 7.38381 23.4726 8.62409C24.7129 9.86437 25.333 11.3553 25.333 13.097C25.333 14.8387 24.7129 16.3296 23.4726 17.5699C22.2323 18.8102 20.7413 19.4303 18.9997 19.4303ZM6.33301 32.097V27.6637C6.33301 26.7664 6.56391 25.9418 7.02572 25.1897C7.48752 24.4376 8.10106 23.8637 8.86634 23.4678C10.5025 22.6498 12.165 22.0362 13.8538 21.6272C15.5427 21.2182 17.258 21.0137 18.9997 21.0137C20.7413 21.0137 22.4566 21.2182 24.1455 21.6272C25.8344 22.0362 27.4969 22.6498 29.133 23.4678C29.8983 23.8637 30.5118 24.4376 30.9736 25.1897C31.4354 25.9418 31.6663 26.7664 31.6663 27.6637V32.097H6.33301ZM9.49967 28.9303H28.4997V27.6637C28.4997 27.3734 28.4271 27.1095 28.282 26.872C28.1368 26.6345 27.9455 26.4498 27.708 26.3178C26.283 25.6053 24.8448 25.071 23.3934 24.7147C21.942 24.3585 20.4775 24.1803 18.9997 24.1803C17.5219 24.1803 16.0573 24.3585 14.6059 24.7147C13.1545 25.071 11.7163 25.6053 10.2913 26.3178C10.0538 26.4498 9.86252 26.6345 9.71738 26.872C9.57224 27.1095 9.49967 27.3734 9.49967 27.6637V28.9303ZM18.9997 16.2637C19.8705 16.2637 20.616 15.9536 21.2361 15.3335C21.8563 14.7133 22.1663 13.9678 22.1663 13.097C22.1663 12.2262 21.8563 11.4807 21.2361 10.8605C20.616 10.2404 19.8705 9.93034 18.9997 9.93034C18.1288 9.93034 17.3834 10.2404 16.7632 10.8605C16.1431 11.4807 15.833 12.2262 15.833 13.097C15.833 13.9678 16.1431 14.7133 16.7632 15.3335C17.3834 15.9536 18.1288 16.2637 18.9997 16.2637Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"Interview Participants\"})}),className:\"framer-1g3i0pj\",\"data-framer-name\":\"Who I Spoke To\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Diverse roles across multiple industries\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Diverse roles across multiple industries\"})}),className:\"framer-qav8ag\",\"data-framer-name\":\"Diverse roles across multiple industries\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q1chjw\",\"data-framer-name\":\"Frame 235\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Creative Director, Brand Agency\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Full-stack Dev, Healthcare\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Back-end Dev, Finance\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Coffee Shop Owner, Retail\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Product Manager, Tech\"})})]})}),className:\"framer-a8w7hr\",\"data-framer-name\":\"Creative Director\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lpxadq\",\"data-framer-name\":\"Frame 230\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m3nxmi\",\"data-framer-name\":\"Frame 230\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19bzo98\",\"data-framer-name\":\"Frame 234\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sp0hvy\",\"data-framer-name\":\"Frame 232\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-akq1cj\",\"data-framer-name\":\"error\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" viewBox=\"0 0 38 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_315_706\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"38\" height=\"39\">\\n<rect y=\"0.429688\" width=\"38\" height=\"38\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_706)\">\\n<path d=\"M19.0003 27.3457C19.4489 27.3457 19.825 27.194 20.1285 26.8905C20.4319 26.587 20.5837 26.211 20.5837 25.7624C20.5837 25.3138 20.4319 24.9377 20.1285 24.6342C19.825 24.3308 19.4489 24.179 19.0003 24.179C18.5517 24.179 18.1757 24.3308 17.8722 24.6342C17.5687 24.9377 17.417 25.3138 17.417 25.7624C17.417 26.211 17.5687 26.587 17.8722 26.8905C18.1757 27.194 18.5517 27.3457 19.0003 27.3457ZM17.417 21.0124H20.5837V11.5124H17.417V21.0124ZM19.0003 35.2624C16.81 35.2624 14.7517 34.8467 12.8253 34.0155C10.8989 33.1842 9.22324 32.0561 7.79824 30.6311C6.37324 29.2061 5.24512 27.5304 4.41387 25.604C3.58262 23.6776 3.16699 21.6193 3.16699 19.429C3.16699 17.2388 3.58262 15.1804 4.41387 13.254C5.24512 11.3276 6.37324 9.65195 7.79824 8.22695C9.22324 6.80195 10.8989 5.67383 12.8253 4.84258C14.7517 4.01133 16.81 3.5957 19.0003 3.5957C21.1906 3.5957 23.2489 4.01133 25.1753 4.84258C27.1017 5.67383 28.7774 6.80195 30.2024 8.22695C31.6274 9.65195 32.7555 11.3276 33.5868 13.254C34.418 15.1804 34.8337 17.2388 34.8337 19.429C34.8337 21.6193 34.418 23.6776 33.5868 25.604C32.7555 27.5304 31.6274 29.2061 30.2024 30.6311C28.7774 32.0561 27.1017 33.1842 25.1753 34.0155C23.2489 34.8467 21.1906 35.2624 19.0003 35.2624ZM19.0003 32.0957C22.5364 32.0957 25.5316 30.8686 27.9857 28.4145C30.4399 25.9603 31.667 22.9651 31.667 19.429C31.667 15.8929 30.4399 12.8978 27.9857 10.4436C25.5316 7.98945 22.5364 6.76237 19.0003 6.76237C15.4642 6.76237 12.4691 7.98945 10.0149 10.4436C7.56074 12.8978 6.33366 15.8929 6.33366 19.429C6.33366 22.9651 7.56074 25.9603 10.0149 28.4145C12.4691 30.8686 15.4642 32.0957 19.0003 32.0957Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"Pain Points\"})}),className:\"framer-ybbtmk\",\"data-framer-name\":\"Pain Points\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Issues identified across participants\"})})},dNc879Ogt:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UFAgTmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"PP Neue Montreal\", \"PP Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Issues identified across participants\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UFAgTmV1ZSBNb250cmVhbC01MDA=\",\"--framer-font-family\":'\"PP Neue Montreal\", \"PP Neue Montreal Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),fonts:[\"GF;PP Neue Montreal-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Issues identified across participants\"})}),className:\"framer-18h2597\",\"data-framer-name\":\"Issues identified across participants\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z5wjqj\",\"data-framer-name\":\"Frame 235\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Gaps in task management and scheduling\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Inefficient team coordination\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Lack if seamless calendar integration\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Design-to-production inconsistencies\"})})]})}),className:\"framer-9yo1lv\",\"data-framer-name\":\"Creative Director\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oygzt7\",\"data-border\":true,\"data-framer-name\":\"Frame 223\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iqafwo\",\"data-framer-name\":\"Frame 240\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gp4eeh\",\"data-framer-name\":\"emoji_objects\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" viewBox=\"0 0 38 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_316_714\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"38\" height=\"39\">\\n<rect y=\"0.429688\" width=\"38\" height=\"38\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_316_714)\">\\n<path d=\"M18.9997 35.2624C18.3136 35.2624 17.6934 35.0974 17.1393 34.7676C16.5851 34.4377 16.1497 33.9957 15.833 33.4415C14.9622 33.4415 14.2167 33.1315 13.5965 32.5113C12.9764 31.8912 12.6663 31.1457 12.6663 30.2749V24.654C11.1094 23.6249 9.86252 22.2658 8.92572 20.577C7.98891 18.8881 7.52051 17.054 7.52051 15.0749C7.52051 11.8818 8.63544 9.17036 10.8653 6.94049C13.0952 4.71063 15.8066 3.5957 18.9997 3.5957C22.1927 3.5957 24.9042 4.71063 27.134 6.94049C29.3639 9.17036 30.4788 11.8818 30.4788 15.0749C30.4788 17.1068 30.0104 18.954 29.0736 20.6165C28.1368 22.279 26.89 23.6249 25.333 24.654V30.2749C25.333 31.1457 25.0229 31.8912 24.4028 32.5113C23.7827 33.1315 23.0372 33.4415 22.1663 33.4415C21.8497 33.9957 21.4143 34.4377 20.8601 34.7676C20.3059 35.0974 19.6858 35.2624 18.9997 35.2624ZM15.833 30.2749H22.1663V28.8499H15.833V30.2749ZM15.833 27.2665H22.1663V25.7624H15.833V27.2665ZM15.5163 22.5957H17.8122V18.3207L14.3288 14.8374L15.9913 13.1749L18.9997 16.1832L22.008 13.1749L23.6705 14.8374L20.1872 18.3207V22.5957H22.483C23.908 21.9096 25.0691 20.9002 25.9663 19.5676C26.8636 18.2349 27.3122 16.7374 27.3122 15.0749C27.3122 12.7526 26.5073 10.7867 24.8976 9.17695C23.2879 7.56723 21.3219 6.76237 18.9997 6.76237C16.6775 6.76237 14.7115 7.56723 13.1018 9.17695C11.492 10.7867 10.6872 12.7526 10.6872 15.0749C10.6872 16.7374 11.1358 18.2349 12.033 19.5676C12.9302 20.9002 14.0913 21.9096 15.5163 22.5957Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\"},children:\"The Standout Insight That Narrowed Our Focus\"})}),className:\"framer-1078yyi\",\"data-framer-name\":\"The Standout Insight That Narrowed Our Focus\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mgsvw\",\"data-framer-name\":\"user interviewdescription\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"While the interviews revealed several pain points, one issue stood out significantly:\"})})},dNc879Ogt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"While the interviews revealed several pain points, one issue stood out significantly:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"While the interviews revealed several pain points, one issue stood out significantly:\"})}),className:\"framer-ipihqr\",\"data-framer-name\":\"While the interviews revealed several pain points, one issue stood out significantly:\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ar5tgx\",\"data-border\":true,\"data-framer-name\":\"Frame 241\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Design-to-production inconsistencies emerged as a key issue worth deeper exploration, highlighted particularly by the product manager.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\"},children:\"Design-to-production inconsistencies emerged as a key issue worth deeper exploration, highlighted particularly by the product manager.\"})}),className:\"framer-lrxiib\",\"data-framer-name\":\"Design-to-production inconsistencies emerged as a key issue worth deeper exploration, highlighted particularly by the product manager.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xdrvxn\",\"data-framer-name\":\"Frame 242\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"This insight directly shaped the second phase of research, narrowing our focus to specifically investigate this critical challenge through targeted surveys.\"})})},dNc879Ogt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"This insight directly shaped the second phase of research, narrowing our focus to specifically investigate this critical challenge through targeted surveys.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"This insight directly shaped the second phase of research, narrowing our focus to specifically investigate this critical challenge through targeted surveys.\"})}),className:\"framer-122dkbc\",\"data-framer-name\":\"This insight directly shaped the second phase of research, narrowing our focus to specifically investigate this critical challenge through targeted surveys.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-trwh1u\",\"data-framer-name\":\"Frame 225\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\"},children:\"Phase 2: Targeted Surveys\"})}),className:\"framer-z7q65d\",\"data-framer-name\":\"Phase 2: Targeted Surveys\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jnq97g\",\"data-border\":true,\"data-framer-name\":\"user interviewdescription\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Based on the key insight from interviews, the survey phase narrowed the research scope to focus specifically on design-to-production inconsistencies, collecting targeted data from product teams.\"})})},dNc879Ogt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Based on the key insight from interviews, the survey phase narrowed the research scope to focus specifically on design-to-production inconsistencies, collecting targeted data from product teams.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Based on the key insight from interviews, the survey phase narrowed the research scope to focus specifically on design-to-production inconsistencies, collecting targeted data from product teams.\"})}),className:\"framer-cdrks3\",\"data-framer-name\":\"Based on the key insight from interviews, the survey phase narrowed the research scope to focus specifically on design-to-production inconsistencies, collecting targeted data from product teams.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14zdrwr\",\"data-framer-name\":\"Frame 244\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u45t1p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z29524\",\"data-framer-name\":\"Frame 226\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-imfih1\",\"data-framer-name\":\"Frame 240\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dwkpiz\",\"data-framer-name\":\"person\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" viewBox=\"0 0 38 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_320_802\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"38\" height=\"39\">\\n<rect y=\"0.429688\" width=\"38\" height=\"38\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_320_802)\">\\n<path d=\"M18.9997 19.4303C17.258 19.4303 15.767 18.8102 14.5268 17.5699C13.2865 16.3296 12.6663 14.8387 12.6663 13.097C12.6663 11.3553 13.2865 9.86437 14.5268 8.62409C15.767 7.38381 17.258 6.76367 18.9997 6.76367C20.7413 6.76367 22.2323 7.38381 23.4726 8.62409C24.7129 9.86437 25.333 11.3553 25.333 13.097C25.333 14.8387 24.7129 16.3296 23.4726 17.5699C22.2323 18.8102 20.7413 19.4303 18.9997 19.4303ZM6.33301 32.097V27.6637C6.33301 26.7664 6.56391 25.9418 7.02572 25.1897C7.48752 24.4376 8.10106 23.8637 8.86634 23.4678C10.5025 22.6498 12.165 22.0362 13.8538 21.6272C15.5427 21.2182 17.258 21.0137 18.9997 21.0137C20.7413 21.0137 22.4566 21.2182 24.1455 21.6272C25.8344 22.0362 27.4969 22.6498 29.133 23.4678C29.8983 23.8637 30.5118 24.4376 30.9736 25.1897C31.4354 25.9418 31.6663 26.7664 31.6663 27.6637V32.097H6.33301ZM9.49967 28.9303H28.4997V27.6637C28.4997 27.3734 28.4271 27.1095 28.282 26.872C28.1368 26.6345 27.9455 26.4498 27.708 26.3178C26.283 25.6053 24.8448 25.071 23.3934 24.7147C21.942 24.3585 20.4775 24.1803 18.9997 24.1803C17.5219 24.1803 16.0573 24.3585 14.6059 24.7147C13.1545 25.071 11.7163 25.6053 10.2913 26.3178C10.0538 26.4498 9.86252 26.6345 9.71738 26.872C9.57224 27.1095 9.49967 27.3734 9.49967 27.6637V28.9303ZM18.9997 16.2637C19.8705 16.2637 20.616 15.9536 21.2361 15.3335C21.8563 14.7133 22.1663 13.9678 22.1663 13.097C22.1663 12.2262 21.8563 11.4807 21.2361 10.8605C20.616 10.2404 19.8705 9.93034 18.9997 9.93034C18.1288 9.93034 17.3834 10.2404 16.7632 10.8605C16.1431 11.4807 15.833 12.2262 15.833 13.097C15.833 13.9678 16.1431 14.7133 16.7632 15.3335C17.3834 15.9536 18.1288 16.2637 18.9997 16.2637Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"Survey Participants\"})}),className:\"framer-1yvcgvq\",\"data-framer-name\":\"Survey Participants\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Targeting product team members\"})}),className:\"framer-flr1j5\",\"data-framer-name\":\"Targeting product team members (the triad)\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n2phck\",\"data-framer-name\":\"survey participants\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-w6qzbn\",\"data-framer-name\":\"Frame 241\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Product Managers\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"UX/UI Designers\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Developers\"})})]})}),className:\"framer-1eryasf\",\"data-framer-name\":\"Tools and workflows used\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o13owo\",\"data-framer-name\":\"Frame 227\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17zqm2v\",\"data-framer-name\":\"Frame 240\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e43wrf\",\"data-framer-name\":\"search\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" viewBox=\"0 0 38 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_320_796\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"38\" height=\"39\">\\n<rect y=\"0.429688\" width=\"38\" height=\"38\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_320_796)\">\\n<mask id=\"mask1_320_796\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"39\" height=\"39\">\\n<rect x=\"0.0234375\" y=\"0.521484\" width=\"38\" height=\"38\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask1_320_796)\">\\n<path d=\"M19.0238 35.3542C16.8335 35.3542 14.7752 34.9385 12.8488 34.1073C10.9224 33.276 9.24668 32.1479 7.82168 30.7229C6.39668 29.2979 5.26855 27.6222 4.4373 25.6958C3.60605 23.7694 3.19043 21.7111 3.19043 19.5208C3.19043 17.3306 3.60605 15.2722 4.4373 13.3458C5.26855 11.4194 6.39668 9.74375 7.82168 8.31875C9.24668 6.89375 10.9224 5.76563 12.8488 4.93438C14.7752 4.10312 16.8335 3.6875 19.0238 3.6875C21.214 3.6875 23.2724 4.10312 25.1988 4.93438C27.1252 5.76563 28.8008 6.89375 30.2258 8.31875C31.6508 9.74375 32.779 11.4194 33.6102 13.3458C34.4415 15.2722 34.8571 17.3306 34.8571 19.5208C34.8571 21.7111 34.4415 23.7694 33.6102 25.6958C32.779 27.6222 31.6508 29.2979 30.2258 30.7229C28.8008 32.1479 27.1252 33.276 25.1988 34.1073C23.2724 34.9385 21.214 35.3542 19.0238 35.3542ZM19.0238 32.1875C22.5599 32.1875 25.555 30.9604 28.0092 28.5063C30.4633 26.0521 31.6904 23.0569 31.6904 19.5208C31.6904 15.9847 30.4633 12.9896 28.0092 10.5354C25.555 8.08125 22.5599 6.85417 19.0238 6.85417C15.4877 6.85417 12.4925 8.08125 10.0383 10.5354C7.58418 12.9896 6.3571 15.9847 6.3571 19.5208C6.3571 23.0569 7.58418 26.0521 10.0383 28.5063C12.4925 30.9604 15.4877 32.1875 19.0238 32.1875ZM19.0238 29.0208C16.3849 29.0208 14.1418 28.0972 12.2946 26.25C10.4474 24.4028 9.52376 22.1597 9.52376 19.5208C9.52376 16.8819 10.4474 14.6389 12.2946 12.7917C14.1418 10.9444 16.3849 10.0208 19.0238 10.0208C21.6627 10.0208 23.9057 10.9444 25.7529 12.7917C27.6002 14.6389 28.5238 16.8819 28.5238 19.5208C28.5238 22.1597 27.6002 24.4028 25.7529 26.25C23.9057 28.0972 21.6627 29.0208 19.0238 29.0208ZM19.0238 25.8542C20.7654 25.8542 22.2564 25.234 23.4967 23.9938C24.737 22.7535 25.3571 21.2625 25.3571 19.5208C25.3571 17.7792 24.737 16.2882 23.4967 15.0479C22.2564 13.8076 20.7654 13.1875 19.0238 13.1875C17.2821 13.1875 15.7911 13.8076 14.5508 15.0479C13.3106 16.2882 12.6904 17.7792 12.6904 19.5208C12.6904 21.2625 13.3106 22.7535 14.5508 23.9938C15.7911 25.234 17.2821 25.8542 19.0238 25.8542ZM19.0238 22.6875C18.1529 22.6875 17.4074 22.3774 16.7873 21.7573C16.1672 21.1372 15.8571 20.3917 15.8571 19.5208C15.8571 18.65 16.1672 17.9045 16.7873 17.2844C17.4074 16.6642 18.1529 16.3542 19.0238 16.3542C19.8946 16.3542 20.6401 16.6642 21.2602 17.2844C21.8804 17.9045 22.1904 18.65 22.1904 19.5208C22.1904 20.3917 21.8804 21.1372 21.2602 21.7573C20.6401 22.3774 19.8946 22.6875 19.0238 22.6875Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"Focused Survey Areas\"})}),className:\"framer-v0c9s2\",\"data-framer-name\":\"Focused Survey Areas\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Targeting design-to-production challenges\"})}),className:\"framer-1chzh8\",\"data-framer-name\":\"Specifically targeting design-to-production challenges\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2e9g6q\",\"data-framer-name\":\"survey participants\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ydqdnt\",\"data-framer-name\":\"Frame 241\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Tools and workflows used\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Communication methods\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Frequency and impact of design-production mismatches\"})})]})}),className:\"framer-17zewg7\",\"data-framer-name\":\"Tools and workflows used\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kq96pb\",\"data-border\":true,\"data-framer-name\":\"Frame 228\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kq5dev\",\"data-framer-name\":\"Frame 240\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u5q15y\",\"data-framer-name\":\"search_insights\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_336_1080\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"25\" height=\"25\">\\n<rect x=\"0.626465\" y=\"0.433594\" width=\"24\" height=\"24\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_336_1080)\">\\n<path d=\"M10.6265 16.4336C12.2931 16.4336 13.7098 15.8503 14.8765 14.6836C16.0431 13.5169 16.6265 12.1003 16.6265 10.4336C16.6265 8.76693 16.0431 7.35026 14.8765 6.18359C13.7098 5.01693 12.2931 4.43359 10.6265 4.43359C8.9598 4.43359 7.54313 5.01693 6.37646 6.18359C5.2098 7.35026 4.62646 8.76693 4.62646 10.4336C4.62646 12.1003 5.2098 13.5169 6.37646 14.6836C7.54313 15.8503 8.9598 16.4336 10.6265 16.4336ZM9.62646 13.4336V6.43359H11.6265V13.4336H9.62646ZM6.12646 13.4336V8.43359H8.12646V13.4336H6.12646ZM13.1265 13.4336V9.43359H15.1265V13.4336H13.1265ZM21.2265 22.4336L15.5515 16.7586C14.8681 17.2919 14.1098 17.7044 13.2765 17.9961C12.4431 18.2878 11.5598 18.4336 10.6265 18.4336C8.39313 18.4336 6.50146 17.6586 4.95146 16.1086C3.40146 14.5586 2.62646 12.6669 2.62646 10.4336C2.62646 8.20026 3.40146 6.30859 4.95146 4.75859C6.50146 3.20859 8.39313 2.43359 10.6265 2.43359C12.8598 2.43359 14.7515 3.20859 16.3015 4.75859C17.8515 6.30859 18.6265 8.20026 18.6265 10.4336C18.6265 11.3669 18.4806 12.2503 18.189 13.0836C17.8973 13.9169 17.4848 14.6753 16.9515 15.3586L22.6265 21.0336L21.2265 22.4336Z\" fill=\"black\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\"},children:\"Key Survey Findings\"})}),className:\"framer-1290gav\",\"data-framer-name\":\"Key Survey Findings\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18t6r5m\",\"data-framer-name\":\"survey participants\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v0dhc\",\"data-border\":true,\"data-framer-name\":\"Frame 241\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Communication Challenges: \"}),\"While communication between designers and developers is generally effective (rated 3/5 or 4/5), misunderstandings, especially via tools like Slack, often lead to misalignments.\"]})}),className:\"framer-yigmn1\",\"data-framer-name\":\"Communication Challenges: While communication between designers and developers is generally effective (rated 3/5 or 4/5), misunderstandings, especially via tools like Slack, often lead to misalignments.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18qdkh\",\"data-border\":true,\"data-framer-name\":\"Frame 244\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Design-Production Mismatches: \"}),\"Half of respondents encounter mismatches frequently, stemming from versioning issues, inconsistent templates, and unclear processes.\"]})}),className:\"framer-1d5doy1\",\"data-framer-name\":\"Design-Production Mismatches: Half of respondents encounter mismatches frequently, stemming from versioning issues, inconsistent templates, and unclear processes.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jbonl4\",\"data-border\":true,\"data-framer-name\":\"Frame 245\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Current Solutions Are Limited: \"}),\"Teams rely on frequent communication, Jira tickets, and QA testing, but larger organizations struggle to standardize workflows effectively.\"]})}),className:\"framer-by3v9y\",\"data-framer-name\":\"Current Solutions Are Limited: Teams rely on frequent communication, Jira tickets, and QA testing, but larger organizations struggle to standardize workflows effectively.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y8ffa3\",\"data-border\":true,\"data-framer-name\":\"Frame 246\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Desired Improvements:\"}),' Respondents want centralized tools for version control, automated design-production comparisons, and a clear \"source of truth\" for live production status.']})}),className:\"framer-46n8jt\",\"data-framer-name\":'Desired Improvements: Respondents want centralized tools for version control, automated design-production comparisons, and a clear \"source of truth\" for live production status.',fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o6nkpw\",\"data-framer-name\":\"Frame 94\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u1tx77\",\"data-framer-name\":\"Frame 234\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2dwbc\",\"data-framer-name\":\"Frame 232\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vhribn\",\"data-framer-name\":\"person\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" viewBox=\"0 0 38 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_315_671\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"38\" height=\"39\">\\n<rect y=\"0.429688\" width=\"38\" height=\"38\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_315_671)\">\\n<path d=\"M18.9997 19.4303C17.258 19.4303 15.767 18.8102 14.5268 17.5699C13.2865 16.3296 12.6663 14.8387 12.6663 13.097C12.6663 11.3553 13.2865 9.86437 14.5268 8.62409C15.767 7.38381 17.258 6.76367 18.9997 6.76367C20.7413 6.76367 22.2323 7.38381 23.4726 8.62409C24.7129 9.86437 25.333 11.3553 25.333 13.097C25.333 14.8387 24.7129 16.3296 23.4726 17.5699C22.2323 18.8102 20.7413 19.4303 18.9997 19.4303ZM6.33301 32.097V27.6637C6.33301 26.7664 6.56391 25.9418 7.02572 25.1897C7.48752 24.4376 8.10106 23.8637 8.86634 23.4678C10.5025 22.6498 12.165 22.0362 13.8538 21.6272C15.5427 21.2182 17.258 21.0137 18.9997 21.0137C20.7413 21.0137 22.4566 21.2182 24.1455 21.6272C25.8344 22.0362 27.4969 22.6498 29.133 23.4678C29.8983 23.8637 30.5118 24.4376 30.9736 25.1897C31.4354 25.9418 31.6663 26.7664 31.6663 27.6637V32.097H6.33301ZM9.49967 28.9303H28.4997V27.6637C28.4997 27.3734 28.4271 27.1095 28.282 26.872C28.1368 26.6345 27.9455 26.4498 27.708 26.3178C26.283 25.6053 24.8448 25.071 23.3934 24.7147C21.942 24.3585 20.4775 24.1803 18.9997 24.1803C17.5219 24.1803 16.0573 24.3585 14.6059 24.7147C13.1545 25.071 11.7163 25.6053 10.2913 26.3178C10.0538 26.4498 9.86252 26.6345 9.71738 26.872C9.57224 27.1095 9.49967 27.3734 9.49967 27.6637V28.9303ZM18.9997 16.2637C19.8705 16.2637 20.616 15.9536 21.2361 15.3335C21.8563 14.7133 22.1663 13.9678 22.1663 13.097C22.1663 12.2262 21.8563 11.4807 21.2361 10.8605C20.616 10.2404 19.8705 9.93034 18.9997 9.93034C18.1288 9.93034 17.3834 10.2404 16.7632 10.8605C16.1431 11.4807 15.833 12.2262 15.833 13.097C15.833 13.9678 16.1431 14.7133 16.7632 15.3335C17.3834 15.9536 18.1288 16.2637 18.9997 16.2637Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"User Personas\"})}),className:\"framer-1px0hkp\",\"data-framer-name\":\"Who I Spoke To\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:'The research points to three primary personas which represents the core of a product team, the \"Triad\".'})}),className:\"framer-1kx2oo2\",\"data-framer-name\":\"Diverse roles across multiple industries\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qzm8o1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tcKSLUsEe\",scopeId:\"D3OwGjzGm\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"tcKSLUsEe\",layoutId:\"tcKSLUsEe\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:true},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"982px\",src:\"https://framerusercontent.com/images/7VYwJoRxNNjzH2ivpfTjo9kZBE.png\",srcSet:\"https://framerusercontent.com/images/7VYwJoRxNNjzH2ivpfTjo9kZBE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7VYwJoRxNNjzH2ivpfTjo9kZBE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7VYwJoRxNNjzH2ivpfTjo9kZBE.png 1646w\"},className:\"framer-ri1298\",\"data-border\":true,\"data-framer-name\":\"Sofia\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"982px\",src:\"https://framerusercontent.com/images/alwvQP0hmWWOrsuwmIsQuZQUPeg.png\",srcSet:\"https://framerusercontent.com/images/alwvQP0hmWWOrsuwmIsQuZQUPeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/alwvQP0hmWWOrsuwmIsQuZQUPeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/alwvQP0hmWWOrsuwmIsQuZQUPeg.png 1646w\"},className:\"framer-19unmpn\",\"data-border\":true,\"data-framer-name\":\"Miguel\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"982px\",src:\"https://framerusercontent.com/images/MPaGWY1eeDFBVevyaxmi7uNbs.png\",srcSet:\"https://framerusercontent.com/images/MPaGWY1eeDFBVevyaxmi7uNbs.png?scale-down-to=512 512w,https://framerusercontent.com/images/MPaGWY1eeDFBVevyaxmi7uNbs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MPaGWY1eeDFBVevyaxmi7uNbs.png 1646w\"},className:\"framer-m92eha\",\"data-border\":true,\"data-framer-name\":\"Ethan\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7b5r2o\",\"data-border\":true,\"data-framer-name\":\"Frame 101\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fr85a9\",\"data-framer-name\":\"Frame 118\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18o7syn\",\"data-framer-name\":\"Frame 94\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UFAgTmV1ZSBNb250cmVhbC03MDA=\",\"--framer-font-family\":'\"PP Neue Montreal\", \"PP Neue Montreal Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"User Flow\"})}),className:\"framer-if3t70\",\"data-framer-name\":\"User flows (placeholder for interactive file)\",fonts:[\"GF;PP Neue Montreal-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+77+0+0+24+7828.8+0+0+0+160),positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px), 320px) - 32px, 1302px)`,src:\"https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png\",srcSet:\"https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png 3956w\"}},dNc879Ogt:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+77+0+0+24+6973.2+0+0+0+44.8),positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px), 320px) - 32px, 1302px)`,src:\"https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png\",srcSet:\"https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png 3956w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+77+0+0+24+6512.4+0+0+0+44.8),positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px), 320px) - 32px, 1302px)`,src:\"https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png\",srcSet:\"https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0rImkg9bDcw9hubIur0bz9r6xuE.png 3956w\"},className:\"framer-1c78dyi\",\"data-framer-name\":\"Kaden - Designlab Phase 2 Figjam (38) 1\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xtgw6h\",\"data-framer-name\":\"Frame 129\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sw1prt\",\"data-framer-name\":\"Frame 95\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Low Fidelity wireframes\"})}),className:\"framer-1kmv27t\",\"data-framer-name\":\"Lo-fi wireframes\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cc2l0-container\",isModuleExternal:true,nodeId:\"ISMuaM8sH\",scopeId:\"D3OwGjzGm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNc879Ogt:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Carousel1,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"ISMuaM8sH\",layoutId:\"ISMuaM8sH\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"700px\",src:\"https://framerusercontent.com/images/SyIXflOuk0zwQOTZTyBqlMYXMU.png\",srcSet:\"https://framerusercontent.com/images/SyIXflOuk0zwQOTZTyBqlMYXMU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SyIXflOuk0zwQOTZTyBqlMYXMU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SyIXflOuk0zwQOTZTyBqlMYXMU.png 1652w\"},className:\"framer-ipw8sa\",\"data-framer-name\":\"image 204\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"700px\",src:\"https://framerusercontent.com/images/g0s19fezMSoStkkIYOEOUi7k.png\",srcSet:\"https://framerusercontent.com/images/g0s19fezMSoStkkIYOEOUi7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/g0s19fezMSoStkkIYOEOUi7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g0s19fezMSoStkkIYOEOUi7k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/g0s19fezMSoStkkIYOEOUi7k.png 4096w\"},className:\"framer-15oue79\",\"data-framer-name\":\"image 206\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"700px\",src:\"https://framerusercontent.com/images/rjQ61ncdkfazAaXSbaIedMgybJ4.png\",srcSet:\"https://framerusercontent.com/images/rjQ61ncdkfazAaXSbaIedMgybJ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/rjQ61ncdkfazAaXSbaIedMgybJ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjQ61ncdkfazAaXSbaIedMgybJ4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rjQ61ncdkfazAaXSbaIedMgybJ4.png 4096w\"},className:\"framer-7hm7rl\",\"data-framer-name\":\"image 208\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p5z9ot\",\"data-framer-name\":\"Frame 131\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z7t5ot\",\"data-framer-name\":\"Frame 95\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"High Fidelity Mock-ups\"})}),className:\"framer-k643g7\",\"data-framer-name\":\"Hi-fi mock-ups\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18tgg78\",\"data-framer-name\":\"Frame 184\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e48euh-container\",isModuleExternal:true,nodeId:\"p_kcCbP6P\",scopeId:\"D3OwGjzGm\",children:/*#__PURE__*/_jsx(Carousel1,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"p_kcCbP6P\",layoutId:\"p_kcCbP6P\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"700px\",src:\"https://framerusercontent.com/images/Ht3GBG7HxEqwqZGfujUMoJnjk.png\",srcSet:\"https://framerusercontent.com/images/Ht3GBG7HxEqwqZGfujUMoJnjk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ht3GBG7HxEqwqZGfujUMoJnjk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ht3GBG7HxEqwqZGfujUMoJnjk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ht3GBG7HxEqwqZGfujUMoJnjk.png 3580w\"},className:\"framer-n4rrv1\",\"data-framer-name\":\"iMac\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"700px\",src:\"https://framerusercontent.com/images/cp2PlQawtaIbFYuc3kWG7oeDxk0.png\",srcSet:\"https://framerusercontent.com/images/cp2PlQawtaIbFYuc3kWG7oeDxk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/cp2PlQawtaIbFYuc3kWG7oeDxk0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cp2PlQawtaIbFYuc3kWG7oeDxk0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cp2PlQawtaIbFYuc3kWG7oeDxk0.png 3718w\"},className:\"framer-100v7ha\",\"data-framer-name\":\"iMac\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"700px\",src:\"https://framerusercontent.com/images/bIrd7PKLLFm2DJpa14QBi1uvKos.png\",srcSet:\"https://framerusercontent.com/images/bIrd7PKLLFm2DJpa14QBi1uvKos.png?scale-down-to=512 512w,https://framerusercontent.com/images/bIrd7PKLLFm2DJpa14QBi1uvKos.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bIrd7PKLLFm2DJpa14QBi1uvKos.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bIrd7PKLLFm2DJpa14QBi1uvKos.png 3662w\"},className:\"framer-1vqqzem\",\"data-framer-name\":\"iMac\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1avm9rz\",\"data-border\":true,\"data-framer-name\":\"Frame 102\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-209zn2\",\"data-framer-name\":\"Frame 116\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Usability testing\"})}),className:\"framer-f4vdcq\",\"data-framer-name\":\"Usability testing\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gm0k6d\",\"data-framer-name\":\"Frame 123\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hg4r5\",\"data-framer-name\":\"Frame 112\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Goals\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"This usability test aimed to evaluate the intuitiveness and effectiveness of a Figma prototype feature designed to streamline the design-to-production process. The primary objective is to determine whether the tool successfully addresses key pain points such as versioning issues, communication gaps, and alignment challenges. By enabling users to cross-reference design files with the live production environment and automatically flag inconsistencies, the feature seeks to save time and improve workflow efficiency for design and development teams.\"})]})},dNc879Ogt:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Goals\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"This usability test aimed to evaluate the intuitiveness and effectiveness of a Figma prototype feature designed to streamline the design-to-production process. The primary objective is to determine whether the tool successfully addresses key pain points such as versioning issues, communication gaps, and alignment challenges. By enabling users to cross-reference design files with the live production environment and automatically flag inconsistencies, the feature seeks to save time and improve workflow efficiency for design and development teams.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Goals\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"This usability test aimed to evaluate the intuitiveness and effectiveness of a Figma prototype feature designed to streamline the design-to-production process. The primary objective is to determine whether the tool successfully addresses key pain points such as versioning issues, communication gaps, and alignment challenges. By enabling users to cross-reference design files with the live production environment and automatically flag inconsistencies, the feature seeks to save time and improve workflow efficiency for design and development teams.\"})]}),className:\"framer-12g6ycz\",\"data-framer-name\":\"Goals This usability test aimed to evaluate the intuitiveness and effectiveness of a Figma prototype feature designed to streamline the design-to-production process. The primary objective is to determine whether the tool successfully addresses key pain points such as versioning issues, communication gaps, and alignment challenges. By enabling users to cross-reference design files with the live production environment and automatically flag inconsistencies, the feature seeks to save time and improve workflow efficiency for design and development teams.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14002n\",\"data-framer-name\":\"Frame 113\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Results\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Usability testing validated the tool\u2019s potential and highlighted areas for improvement. Participants praised its intuitive design and workflow benefits but suggested enhancements to boost usability. Key requests included zoom and click-to-detail functionality for inspecting flagged inconsistencies, improved formatting and button placement in the action bar, and clearer terminology. Safety features like confirmation prompts and interactive breadcrumb navigation were also recommended to reduce errors and confusion. Overall, participants recognized the tool\u2019s ease of use and value in addressing design-to-production challenges.\"})]})},dNc879Ogt:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Results\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Usability testing validated the tool\u2019s potential and highlighted areas for improvement. Participants praised its intuitive design and workflow benefits but suggested enhancements to boost usability. Key requests included zoom and click-to-detail functionality for inspecting flagged inconsistencies, improved formatting and button placement in the action bar, and clearer terminology. Safety features like confirmation prompts and interactive breadcrumb navigation were also recommended to reduce errors and confusion. Overall, participants recognized the tool\u2019s ease of use and value in addressing design-to-production challenges.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Results\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Usability testing validated the tool\u2019s potential and highlighted areas for improvement. Participants praised its intuitive design and workflow benefits but suggested enhancements to boost usability. Key requests included zoom and click-to-detail functionality for inspecting flagged inconsistencies, improved formatting and button placement in the action bar, and clearer terminology. Safety features like confirmation prompts and interactive breadcrumb navigation were also recommended to reduce errors and confusion. Overall, participants recognized the tool\u2019s ease of use and value in addressing design-to-production challenges.\"})]}),className:\"framer-13n602n\",\"data-framer-name\":\"Results Usability testing validated the tool\u2019s potential and highlighted areas for improvement. Participants praised its intuitive design and workflow benefits but suggested enhancements to boost usability. Key requests included zoom and click-to-detail functionality for inspecting flagged inconsistencies, improved formatting and button placement in the action bar, and clearer terminology. Safety features like confirmation prompts and interactive breadcrumb navigation were also recommended to reduce errors and confusion. Overall, participants recognized the tool\u2019s ease of use and value in addressing design-to-production challenges.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jsjdk1\",\"data-framer-name\":\"Frame 189\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Iterations\"})}),className:\"framer-1dnms1w\",\"data-framer-name\":\"Enhancements\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16n0fu5\",\"data-framer-name\":\"Frame 195\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-686k40\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ee6sp\",\"data-framer-name\":\"Frame 197\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vvhxpo\",\"data-framer-name\":\"Frame 112\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Reformat the action bar & include breadcrumbs\"})}),className:\"framer-vyuci4\",\"data-framer-name\":\"Reformat the action bar & include breadcrumbs\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1opxxiu\",\"data-framer-name\":\"Frame 195\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2r727g\",\"data-framer-name\":\"Frame 196\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tzgdt8\",\"data-framer-name\":\"Frame 194\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Change: \"}),\"Reorganize the action bar by aligning text and buttons more consistently and repositioning the buttons to the right for a cleaner layout. Add breadcrumbs.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Change: \"}),\"Reorganize the action bar by aligning text and buttons more consistently and repositioning the buttons to the right for a cleaner layout. Add breadcrumbs.\"]})}),className:\"framer-1oocjlk\",\"data-framer-name\":\"Change: Reorganize the action bar by aligning text and buttons more consistently and repositioning the buttons to the right for a cleaner layout. Add breadcrumbs.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vuqn3u\",\"data-framer-name\":\"Frame 194\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Benefit: \"}),\"This will make the action bar more visually appealing and easier to navigate, improving the overall user experience. Breadcrumbs will help with navigation and make it clear to the user what they are applying changes to.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Benefit: \"}),\"This will make the action bar more visually appealing and easier to navigate, improving the overall user experience. Breadcrumbs will help with navigation and make it clear to the user what they are applying changes to.\"]})}),className:\"framer-1l21dt7\",\"data-framer-name\":\"Benefit: This will make the action bar more visually appealing and easier to navigate, improving the overall user experience. Breadcrumbs will help with navigation and make it clear to the user what they are applying changes to.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g7sz3d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1spvuu9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c91xai\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\"},children:\"Before\"})}),className:\"framer-1ggvxmo\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1md6i7h\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\"},children:\"After\"})}),className:\"framer-zqigvb\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kj4ngl-container\",isAuthoredByUser:true,nodeId:\"I0z0qe533\",scopeId:\"D3OwGjzGm\",children:/*#__PURE__*/_jsx(BeforeAfter,{bg:\"rgb(228, 230, 241)\",customHandle:false,customLabel:false,handle:[],height:\"100%\",id:\"I0z0qe533\",label:{after:\"\",before:\"\",position:\"bottom\",x:24,y:24},layoutId:\"I0z0qe533\",left:addImageAlt({src:\"https://framerusercontent.com/images/nuz3EeywJTRRJmgsrLYEiJ4k1b4.png\",srcSet:\"https://framerusercontent.com/images/nuz3EeywJTRRJmgsrLYEiJ4k1b4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nuz3EeywJTRRJmgsrLYEiJ4k1b4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nuz3EeywJTRRJmgsrLYEiJ4k1b4.png 1128w\"},\"\"),leftLabel:[],line:{color:\"rgba(255, 255, 255, 0.4)\",width:1},position:50,radius:0,right:addImageAlt({src:\"https://framerusercontent.com/images/ezyz5kEsptln6Ao9aqshu7i7z94.png\",srcSet:\"https://framerusercontent.com/images/ezyz5kEsptln6Ao9aqshu7i7z94.png?scale-down-to=512 512w,https://framerusercontent.com/images/ezyz5kEsptln6Ao9aqshu7i7z94.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ezyz5kEsptln6Ao9aqshu7i7z94.png 1126w\"},\"\"),rightLabel:[],style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i1deau\",\"data-framer-name\":\"Frame 194\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1onyscn\",\"data-framer-name\":\"Frame 197\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qmg4pf\",\"data-framer-name\":\"Frame 112\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Implement Safety Measures\"})}),className:\"framer-1979hnf\",\"data-framer-name\":\"Implement safety measures\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18jn9to\",\"data-framer-name\":\"Frame 195\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gqtuo0\",\"data-framer-name\":\"Frame 196\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10cgx2a\",\"data-framer-name\":\"Frame 194\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Change: \"}),\"Add confirmation prompts (e.g., \u201CAre you sure you want to update?\u201D) before making significant changes or updates to design files.\"]})}),className:\"framer-181a350\",\"data-framer-name\":\"Change: Add confirmation prompts (e.g., \u201CAre you sure you want to update?\u201D) before making significant changes or updates to design files.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mabvnp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"Benefit: \"}),\"This will prevent accidental changes and provide an added layer of protection for users, especially in high-stakes workflows.\"]})}),className:\"framer-35aloh\",\"data-framer-name\":\"Benefit: This will prevent accidental changes and provide an added layer of protection for users, especially in high-stakes workflows.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bk5kahbHL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+77+0+0+24+8950.4+100+776+0+911.6+0+424),sizes:`min(min(min(max(min(${componentViewport?.width||\"100vw\"}, 1600px), 320px) - 32px, 1304px), 1302px), 800px)`,src:\"https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png\",srcSet:\"https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png 2252w\"}},dNc879Ogt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+77+0+0+24+8524.6+100+776+0+943.6+0+424),sizes:`min(min(min(max(min(${componentViewport?.width||\"100vw\"}, 1600px), 320px) - 32px, 1304px), 1302px), 800px)`,src:\"https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png\",srcSet:\"https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png 2252w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+77+0+0+24+7518.8+100+540+0+819.6+0+284),sizes:`min(min(min(max(min(${componentViewport?.width||\"100vw\"}, 1600px), 320px) - 32px, 1304px), 1302px), 800px)`,src:\"https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png\",srcSet:\"https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nipVt7FTEINX6WQVBIP3FateHk.png 2252w\"},className:\"framer-o59wqq\",\"data-framer-name\":\"image 218\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xu2jpl\",\"data-border\":true,\"data-framer-name\":\"Frame 125\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Next steps\"})}),className:\"framer-17iw0e0\",\"data-framer-name\":\"Next steps\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k0hq7b\",\"data-framer-name\":\"Frame 156\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fetutk\",\"data-framer-name\":\"Frame 115\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"Additional research\"})}),className:\"framer-1bjx2rt\",\"data-framer-name\":\"Additional research\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wl2sv2\",\"data-framer-name\":\"Frame 112\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Defining the most common types of inconsistencies, such as alignment, incorrect use of semantic tokens, spacing, sizing, typography, etc.\"})}),className:\"framer-61ux7u\",\"data-framer-name\":\"Defining kind of inconsistencies are most common whether it be alignment, incorrect use of semantic tokens, spacing, sizing, typography etc.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dgfh88\",\"data-framer-name\":\"Frame 116\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"Building the tool\"})}),className:\"framer-mu9y6v\",\"data-framer-name\":\"Building the tool\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x5q12i\",\"data-framer-name\":\"Frame 112\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Develop MVP in Figma's plugin environment. Test and iterate. \"})}),className:\"framer-1nrpqzt\",\"data-framer-name\":\"Determining how to create the tool. What kind of framework is required for what we are trying to accomplish?\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tsjrjo\",\"data-border\":true,\"data-framer-name\":\"Frame 151\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16qt99\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(30, 30, 30)\"},children:\"Demo\"})}),className:\"framer-y2h2jf\",\"data-framer-name\":\"Demo\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12k7x3r\",\"data-framer-name\":\"smart_display\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:51,svg:'<svg width=\"51\" height=\"51\" viewBox=\"0 0 51 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_262_1111\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"51\" height=\"51\">\\n<rect x=\"0.5\" y=\"0.742188\" width=\"50\" height=\"50\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_262_1111)\">\\n<path d=\"M20.292 35.1178L34.8753 25.7428L20.292 16.3678V35.1178ZM8.83366 42.4095C7.68783 42.4095 6.70692 42.0015 5.89095 41.1855C5.07498 40.3696 4.66699 39.3887 4.66699 38.2428V13.2428C4.66699 12.097 5.07498 11.1161 5.89095 10.3001C6.70692 9.48416 7.68783 9.07617 8.83366 9.07617H42.167C43.3128 9.07617 44.2937 9.48416 45.1097 10.3001C45.9257 11.1161 46.3337 12.097 46.3337 13.2428V38.2428C46.3337 39.3887 45.9257 40.3696 45.1097 41.1855C44.2937 42.0015 43.3128 42.4095 42.167 42.4095H8.83366ZM8.83366 38.2428H42.167V13.2428H8.83366V38.2428Z\" fill=\"#1F1F1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nz0t8a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hq0JfYEpt\",scopeId:\"D3OwGjzGm\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'style=\"position: relative; padding-bottom: 44.583333333333336%; height: 0;\"><iframe src=\"https://www.loom.com/embed/178348a5e0ac45acb73407601e7dbeaf?sid=78483b88-f2f4-4dba-8fc4-96f63c625168\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%;\"></iframe></',id:\"hq0JfYEpt\",layoutId:\"hq0JfYEpt\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9dyw7n\",\"data-framer-name\":\"Frame 83\",id:elementId10,ref:ref11,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v3vcni\",\"data-framer-name\":\"Frame 212\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3s9o4\",\"data-framer-name\":\"Frame 84\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(246, 246, 246)\"},children:\"Lets chat.\"})}),className:\"framer-irjuc\",\"data-framer-name\":\"Lets chat.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(246, 246, 246)\"},children:\"Now that you've seen some of my work, lets talk business!\"})}),className:\"framer-cgh3nh\",\"data-framer-name\":\"Now that you know a bit about me, please feel free to reach out!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"mailto:kdeckdesign@gmail.com?subject=Portfolio%20Inquiry&body=Hi%20Kaden%2C%0A\",motionChild:true,nodeId:\"Js_AP49EI\",scopeId:\"D3OwGjzGm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9znw9q framer-1prb6m6\",\"data-framer-name\":\"Frame 22\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(0, 19, 192)\"},children:\"Email me\"})}),className:\"framer-msiduq\",\"data-framer-name\":\"Email me\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TJuPB.framer-1prb6m6, .framer-TJuPB .framer-1prb6m6 { display: block; }\",\".framer-TJuPB.framer-scdf9i { align-content: center; align-items: center; background-color: #f6f6f6; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1024px; }\",\".framer-TJuPB .framer-jfq094 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 0px 16px; position: sticky; top: 10px; width: 100%; z-index: 1; }\",\".framer-TJuPB .framer-8f8oaq-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-TJuPB .framer-37sin4 { --border-bottom-width: 2px; --border-color: #241ab8; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.7); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; bottom: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: hidden; padding: 11px 20px 11px 20px; position: fixed; right: 16px; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-TJuPB .framer-anbbc0 { flex: none; height: 25px; position: relative; width: 24px; }\",\".framer-TJuPB .framer-1csb1rm { align-content: center; align-items: center; background-color: #f6f6f6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1600px; min-height: 1024px; min-width: 320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1sx9cda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 16px 24px 16px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-kxw7k2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1302px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-52dgzk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-h26nxg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1dw2n9v, .framer-TJuPB .framer-1m2frkx, .framer-TJuPB .framer-l15sf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TJuPB .framer-3oyym2, .framer-TJuPB .framer-yfe0gm, .framer-TJuPB .framer-h3tc6o, .framer-TJuPB .framer-frfg43, .framer-TJuPB .framer-fg91rw, .framer-TJuPB .framer-17lamnc, .framer-TJuPB .framer-1d183e1, .framer-TJuPB .framer-b7c4rc, .framer-TJuPB .framer-1mpus1m, .framer-TJuPB .framer-1ovvk7f, .framer-TJuPB .framer-18dni57, .framer-TJuPB .framer-1kqvwlu, .framer-TJuPB .framer-9gkud, .framer-TJuPB .framer-jphbqm, .framer-TJuPB .framer-p9m13, .framer-TJuPB .framer-jc2ggk, .framer-TJuPB .framer-a8w7hr, .framer-TJuPB .framer-9yo1lv, .framer-TJuPB .framer-ipihqr, .framer-TJuPB .framer-z7q65d, .framer-TJuPB .framer-flr1j5, .framer-TJuPB .framer-1chzh8, .framer-TJuPB .framer-f4vdcq, .framer-TJuPB .framer-12g6ycz, .framer-TJuPB .framer-13n602n, .framer-TJuPB .framer-1dnms1w, .framer-TJuPB .framer-vyuci4, .framer-TJuPB .framer-1oocjlk, .framer-TJuPB .framer-1l21dt7, .framer-TJuPB .framer-1979hnf, .framer-TJuPB .framer-181a350, .framer-TJuPB .framer-35aloh, .framer-TJuPB .framer-17iw0e0, .framer-TJuPB .framer-61ux7u, .framer-TJuPB .framer-1nrpqzt { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TJuPB .framer-1mg543g { aspect-ratio: 1.0409090909090908 / 1; border-bottom-left-radius: 27px; border-bottom-right-radius: 27px; border-top-left-radius: 27px; border-top-right-radius: 27px; flex: none; height: var(--framer-aspect-ratio-supported, 114px); overflow: visible; position: relative; width: 12%; z-index: 0; }\",\".framer-TJuPB .framer-6bz5br { align-content: center; align-items: center; aspect-ratio: 1.86952288218111 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 428px); justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-cr1hxb { -webkit-filter: blur(0px); aspect-ratio: 1.8666666666666667 / 1; background-color: #000000; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; filter: blur(0px); flex: none; height: var(--framer-aspect-ratio-supported, 428px); opacity: 0.66; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-1ow8xmu { aspect-ratio: 1.9526462395543176 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 337px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 82%; z-index: 0; }\",\".framer-TJuPB .framer-mqbrtx, .framer-TJuPB .framer-1kdns1b, .framer-TJuPB .framer-19bzo98, .framer-TJuPB .framer-1u1tx77, .framer-TJuPB .framer-p5z9ot { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-17uypf8, .framer-TJuPB .framer-l2ks22 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-sidcdc { --border-bottom-width: 0px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1302px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-pum4ju { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-d6kamk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 10px 10px 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1ku1p2x { align-content: center; align-items: center; background-color: #cfd1dd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 16px 10px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-rk8il8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-s2udmx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 1px; }\",\".framer-TJuPB .framer-v1w9gx, .framer-TJuPB .framer-e360bo { flex: none; height: 101px; position: relative; width: 101px; }\",\".framer-TJuPB .framer-3y8p1o, .framer-TJuPB .framer-8c8djk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-TJuPB .framer-1hsfklg, .framer-TJuPB .framer-1w2luzz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 1px; }\",\".framer-TJuPB .framer-1qj117p { flex: none; height: 101px; position: relative; width: 100px; }\",\".framer-TJuPB .framer-yyiqal, .framer-TJuPB .framer-10xjru4, .framer-TJuPB .framer-trwh1u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-r2toeb, .framer-TJuPB .framer-jnq97g { --border-bottom-width: 0px; --border-color: #ababab; --border-left-width: 2px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-rbmwrb, .framer-TJuPB .framer-1078yyi, .framer-TJuPB .framer-lrxiib, .framer-TJuPB .framer-122dkbc, .framer-TJuPB .framer-cdrks3, .framer-TJuPB .framer-1eryasf, .framer-TJuPB .framer-17zewg7, .framer-TJuPB .framer-1290gav, .framer-TJuPB .framer-yigmn1, .framer-TJuPB .framer-1d5doy1, .framer-TJuPB .framer-by3v9y, .framer-TJuPB .framer-46n8jt { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-TJuPB .framer-elr2ow { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-1gmpoum { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-dmt54q, .framer-TJuPB .framer-1sp0hvy, .framer-TJuPB .framer-h2dwbc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 398px; }\",\".framer-TJuPB .framer-8w2uvh, .framer-TJuPB .framer-akq1cj, .framer-TJuPB .framer-dwkpiz, .framer-TJuPB .framer-1e43wrf, .framer-TJuPB .framer-1vhribn { flex: none; height: 39px; position: relative; width: 38px; }\",\".framer-TJuPB .framer-1g3i0pj, .framer-TJuPB .framer-qav8ag, .framer-TJuPB .framer-ybbtmk, .framer-TJuPB .framer-18h2597, .framer-TJuPB .framer-1yvcgvq, .framer-TJuPB .framer-v0c9s2, .framer-TJuPB .framer-1px0hkp, .framer-TJuPB .framer-1kx2oo2, .framer-TJuPB .framer-if3t70, .framer-TJuPB .framer-1kmv27t, .framer-TJuPB .framer-k643g7, .framer-TJuPB .framer-1bjx2rt, .framer-TJuPB .framer-mu9y6v, .framer-TJuPB .framer-y2h2jf, .framer-TJuPB .framer-irjuc, .framer-TJuPB .framer-msiduq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TJuPB .framer-1q1chjw { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-lpxadq { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 211px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-1m3nxmi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-z5wjqj { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-oygzt7 { --border-bottom-width: 0px; --border-color: #000000; --border-left-width: 2px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: #ced1de; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 16px 10px 16px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1iqafwo, .framer-TJuPB .framer-imfih1, .framer-TJuPB .framer-1kq5dev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1gp4eeh, .framer-TJuPB .framer-1u5q15y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-TJuPB .framer-mgsvw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 48px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1ar5tgx { --border-bottom-width: 1px; --border-color: #ababab; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffe7a3; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 24px 16px 24px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-1xdrvxn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-14zdrwr, .framer-TJuPB .framer-18tgg78, .framer-TJuPB .framer-1jsjdk1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-u45t1p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-z29524, .framer-TJuPB .framer-1o13owo { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-1n2phck { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 128px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-w6qzbn { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-17zqm2v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 344px; }\",\".framer-TJuPB .framer-2e9g6q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-ydqdnt { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-kq96pb { --border-bottom-width: 1px; --border-color: #ababab; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #cfd1dd; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-18t6r5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1v0dhc, .framer-TJuPB .framer-18qdkh, .framer-TJuPB .framer-1jbonl4, .framer-TJuPB .framer-y8ffa3 { --border-bottom-width: 1px; --border-color: #ababab; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 16px 24px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-1o6nkpw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1302px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1qzm8o1-container { flex: none; height: auto; max-width: 900px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-ri1298, .framer-TJuPB .framer-19unmpn { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.35); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1.4828660081479033 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 662px); justify-content: center; padding: 0px; position: relative; width: 982px; }\",\".framer-TJuPB .framer-m92eha { --border-bottom-width: 1px; --border-color: #a6a6a6; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.484220018034265 / 1; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; height: var(--framer-aspect-ratio-supported, 662px); position: relative; width: 982px; }\",\".framer-TJuPB .framer-7b5r2o { --border-bottom-width: 0px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1302px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1fr85a9, .framer-TJuPB .framer-xtgw6h, .framer-TJuPB .framer-209zn2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-18o7syn, .framer-TJuPB .framer-1sw1prt, .framer-TJuPB .framer-z7t5ot, .framer-TJuPB .framer-1vvhxpo, .framer-TJuPB .framer-1opxxiu, .framer-TJuPB .framer-1qmg4pf, .framer-TJuPB .framer-18jn9to, .framer-TJuPB .framer-wl2sv2, .framer-TJuPB .framer-1x5q12i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1c78dyi { aspect-ratio: 2.043388429752066 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 486px); position: relative; width: 100%; }\",\".framer-TJuPB .framer-1cc2l0-container, .framer-TJuPB .framer-1e48euh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-TJuPB .framer-ipw8sa { aspect-ratio: 1.5163119815040869 / 1; height: var(--framer-aspect-ratio-supported, 462px); position: relative; width: 700px; }\",\".framer-TJuPB .framer-15oue79, .framer-TJuPB .framer-7hm7rl { aspect-ratio: 1.519287851831295 / 1; height: var(--framer-aspect-ratio-supported, 461px); position: relative; width: 700px; }\",\".framer-TJuPB .framer-n4rrv1 { aspect-ratio: 1.3338301043219076 / 1; height: var(--framer-aspect-ratio-supported, 525px); position: relative; width: 700px; }\",\".framer-TJuPB .framer-100v7ha { aspect-ratio: 1.391304347826087 / 1; height: var(--framer-aspect-ratio-supported, 503px); position: relative; width: 700px; }\",\".framer-TJuPB .framer-1vqqzem { aspect-ratio: 1.3328477785870356 / 1; height: var(--framer-aspect-ratio-supported, 525px); position: relative; width: 700px; }\",\".framer-TJuPB .framer-1avm9rz { --border-bottom-width: 0px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1304px; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1gm0k6d, .framer-TJuPB .framer-2r727g, .framer-TJuPB .framer-gqtuo0, .framer-TJuPB .framer-1k0hq7b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-16hg4r5, .framer-TJuPB .framer-14002n { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 636px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TJuPB .framer-16n0fu5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-686k40 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-13ee6sp, .framer-TJuPB .framer-1onyscn { align-content: flex-start; align-items: flex-start; border-bottom-right-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1tzgdt8, .framer-TJuPB .framer-1vuqn3u, .framer-TJuPB .framer-10cgx2a { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TJuPB .framer-1g7sz3d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1spvuu9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1c91xai { --border-bottom-width: 1px; --border-color: #6e6e6e; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #d1d1d1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-1ggvxmo, .framer-TJuPB .framer-zqigvb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TJuPB .framer-1md6i7h { --border-bottom-width: 1px; --border-color: #6e6e6e; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #d1d1d1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-kj4ngl-container { flex: none; height: auto; max-width: 800px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-i1deau { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1302px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1mabvnp { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TJuPB .framer-o59wqq { aspect-ratio: 2.700239875968008 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 296px); max-width: 800px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-xu2jpl { --border-bottom-width: 0px; --border-color: #1e1e1e; --border-left-width: 2px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1304px; overflow: visible; padding: 0px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-1fetutk, .framer-TJuPB .framer-1dgfh88 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TJuPB .framer-tsjrjo { --border-bottom-width: 0px; --border-color: #1e1e1e; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 674px; justify-content: flex-start; max-width: 1302px; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-16qt99 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TJuPB .framer-12k7x3r { flex: none; height: 51px; position: relative; width: 51px; }\",\".framer-TJuPB .framer-1nz0t8a-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-9dyw7n { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 160px 16px 160px 16px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-v3vcni { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1302px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TJuPB .framer-s3s9o4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TJuPB .framer-cgh3nh { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 228px; word-break: break-word; word-wrap: break-word; }\",\".framer-TJuPB .framer-9znw9q { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; max-width: 368px; overflow: hidden; padding: 11px 20px 11px 20px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TJuPB.framer-scdf9i, .framer-TJuPB .framer-jfq094, .framer-TJuPB .framer-37sin4, .framer-TJuPB .framer-1csb1rm, .framer-TJuPB .framer-1sx9cda, .framer-TJuPB .framer-kxw7k2, .framer-TJuPB .framer-52dgzk, .framer-TJuPB .framer-h26nxg, .framer-TJuPB .framer-1dw2n9v, .framer-TJuPB .framer-6bz5br, .framer-TJuPB .framer-mqbrtx, .framer-TJuPB .framer-17uypf8, .framer-TJuPB .framer-1m2frkx, .framer-TJuPB .framer-l15sf, .framer-TJuPB .framer-sidcdc, .framer-TJuPB .framer-pum4ju, .framer-TJuPB .framer-d6kamk, .framer-TJuPB .framer-1ku1p2x, .framer-TJuPB .framer-rk8il8, .framer-TJuPB .framer-s2udmx, .framer-TJuPB .framer-1hsfklg, .framer-TJuPB .framer-1w2luzz, .framer-TJuPB .framer-yyiqal, .framer-TJuPB .framer-r2toeb, .framer-TJuPB .framer-10xjru4, .framer-TJuPB .framer-l2ks22, .framer-TJuPB .framer-elr2ow, .framer-TJuPB .framer-1gmpoum, .framer-TJuPB .framer-1kdns1b, .framer-TJuPB .framer-dmt54q, .framer-TJuPB .framer-1q1chjw, .framer-TJuPB .framer-lpxadq, .framer-TJuPB .framer-1m3nxmi, .framer-TJuPB .framer-19bzo98, .framer-TJuPB .framer-1sp0hvy, .framer-TJuPB .framer-z5wjqj, .framer-TJuPB .framer-oygzt7, .framer-TJuPB .framer-1iqafwo, .framer-TJuPB .framer-mgsvw, .framer-TJuPB .framer-trwh1u, .framer-TJuPB .framer-jnq97g, .framer-TJuPB .framer-14zdrwr, .framer-TJuPB .framer-u45t1p, .framer-TJuPB .framer-z29524, .framer-TJuPB .framer-imfih1, .framer-TJuPB .framer-1n2phck, .framer-TJuPB .framer-1o13owo, .framer-TJuPB .framer-17zqm2v, .framer-TJuPB .framer-2e9g6q, .framer-TJuPB .framer-kq96pb, .framer-TJuPB .framer-1kq5dev, .framer-TJuPB .framer-18t6r5m, .framer-TJuPB .framer-1v0dhc, .framer-TJuPB .framer-18qdkh, .framer-TJuPB .framer-1jbonl4, .framer-TJuPB .framer-y8ffa3, .framer-TJuPB .framer-1o6nkpw, .framer-TJuPB .framer-1u1tx77, .framer-TJuPB .framer-h2dwbc, .framer-TJuPB .framer-ri1298, .framer-TJuPB .framer-19unmpn, .framer-TJuPB .framer-7b5r2o, .framer-TJuPB .framer-1fr85a9, .framer-TJuPB .framer-18o7syn, .framer-TJuPB .framer-xtgw6h, .framer-TJuPB .framer-1sw1prt, .framer-TJuPB .framer-p5z9ot, .framer-TJuPB .framer-z7t5ot, .framer-TJuPB .framer-18tgg78, .framer-TJuPB .framer-1avm9rz, .framer-TJuPB .framer-209zn2, .framer-TJuPB .framer-1gm0k6d, .framer-TJuPB .framer-16hg4r5, .framer-TJuPB .framer-14002n, .framer-TJuPB .framer-1jsjdk1, .framer-TJuPB .framer-16n0fu5, .framer-TJuPB .framer-686k40, .framer-TJuPB .framer-13ee6sp, .framer-TJuPB .framer-1vvhxpo, .framer-TJuPB .framer-1opxxiu, .framer-TJuPB .framer-2r727g, .framer-TJuPB .framer-1tzgdt8, .framer-TJuPB .framer-1vuqn3u, .framer-TJuPB .framer-1g7sz3d, .framer-TJuPB .framer-1c91xai, .framer-TJuPB .framer-1md6i7h, .framer-TJuPB .framer-i1deau, .framer-TJuPB .framer-1onyscn, .framer-TJuPB .framer-1qmg4pf, .framer-TJuPB .framer-18jn9to, .framer-TJuPB .framer-gqtuo0, .framer-TJuPB .framer-10cgx2a, .framer-TJuPB .framer-1mabvnp, .framer-TJuPB .framer-xu2jpl, .framer-TJuPB .framer-1k0hq7b, .framer-TJuPB .framer-1fetutk, .framer-TJuPB .framer-wl2sv2, .framer-TJuPB .framer-1dgfh88, .framer-TJuPB .framer-1x5q12i, .framer-TJuPB .framer-tsjrjo, .framer-TJuPB .framer-16qt99, .framer-TJuPB .framer-v3vcni, .framer-TJuPB .framer-s3s9o4, .framer-TJuPB .framer-9znw9q { gap: 0px; } .framer-TJuPB.framer-scdf9i > *, .framer-TJuPB .framer-1csb1rm > *, .framer-TJuPB .framer-1dw2n9v > *, .framer-TJuPB .framer-mqbrtx > *, .framer-TJuPB .framer-1m2frkx > *, .framer-TJuPB .framer-l15sf > *, .framer-TJuPB .framer-1kdns1b > *, .framer-TJuPB .framer-1q1chjw > *, .framer-TJuPB .framer-19bzo98 > *, .framer-TJuPB .framer-z5wjqj > *, .framer-TJuPB .framer-1u1tx77 > *, .framer-TJuPB .framer-p5z9ot > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TJuPB.framer-scdf9i > :first-child, .framer-TJuPB .framer-jfq094 > :first-child, .framer-TJuPB .framer-1csb1rm > :first-child, .framer-TJuPB .framer-1sx9cda > :first-child, .framer-TJuPB .framer-kxw7k2 > :first-child, .framer-TJuPB .framer-52dgzk > :first-child, .framer-TJuPB .framer-1dw2n9v > :first-child, .framer-TJuPB .framer-6bz5br > :first-child, .framer-TJuPB .framer-mqbrtx > :first-child, .framer-TJuPB .framer-1m2frkx > :first-child, .framer-TJuPB .framer-l15sf > :first-child, .framer-TJuPB .framer-sidcdc > :first-child, .framer-TJuPB .framer-pum4ju > :first-child, .framer-TJuPB .framer-d6kamk > :first-child, .framer-TJuPB .framer-1ku1p2x > :first-child, .framer-TJuPB .framer-s2udmx > :first-child, .framer-TJuPB .framer-1hsfklg > :first-child, .framer-TJuPB .framer-1w2luzz > :first-child, .framer-TJuPB .framer-yyiqal > :first-child, .framer-TJuPB .framer-10xjru4 > :first-child, .framer-TJuPB .framer-elr2ow > :first-child, .framer-TJuPB .framer-1gmpoum > :first-child, .framer-TJuPB .framer-1kdns1b > :first-child, .framer-TJuPB .framer-1q1chjw > :first-child, .framer-TJuPB .framer-lpxadq > :first-child, .framer-TJuPB .framer-1m3nxmi > :first-child, .framer-TJuPB .framer-19bzo98 > :first-child, .framer-TJuPB .framer-z5wjqj > :first-child, .framer-TJuPB .framer-oygzt7 > :first-child, .framer-TJuPB .framer-mgsvw > :first-child, .framer-TJuPB .framer-trwh1u > :first-child, .framer-TJuPB .framer-14zdrwr > :first-child, .framer-TJuPB .framer-z29524 > :first-child, .framer-TJuPB .framer-1o13owo > :first-child, .framer-TJuPB .framer-kq96pb > :first-child, .framer-TJuPB .framer-18t6r5m > :first-child, .framer-TJuPB .framer-1o6nkpw > :first-child, .framer-TJuPB .framer-1u1tx77 > :first-child, .framer-TJuPB .framer-7b5r2o > :first-child, .framer-TJuPB .framer-1fr85a9 > :first-child, .framer-TJuPB .framer-18o7syn > :first-child, .framer-TJuPB .framer-xtgw6h > :first-child, .framer-TJuPB .framer-1sw1prt > :first-child, .framer-TJuPB .framer-p5z9ot > :first-child, .framer-TJuPB .framer-z7t5ot > :first-child, .framer-TJuPB .framer-18tgg78 > :first-child, .framer-TJuPB .framer-1avm9rz > :first-child, .framer-TJuPB .framer-209zn2 > :first-child, .framer-TJuPB .framer-16hg4r5 > :first-child, .framer-TJuPB .framer-14002n > :first-child, .framer-TJuPB .framer-1jsjdk1 > :first-child, .framer-TJuPB .framer-16n0fu5 > :first-child, .framer-TJuPB .framer-13ee6sp > :first-child, .framer-TJuPB .framer-1vvhxpo > :first-child, .framer-TJuPB .framer-1opxxiu > :first-child, .framer-TJuPB .framer-1tzgdt8 > :first-child, .framer-TJuPB .framer-1vuqn3u > :first-child, .framer-TJuPB .framer-1g7sz3d > :first-child, .framer-TJuPB .framer-i1deau > :first-child, .framer-TJuPB .framer-1onyscn > :first-child, .framer-TJuPB .framer-1qmg4pf > :first-child, .framer-TJuPB .framer-18jn9to > :first-child, .framer-TJuPB .framer-10cgx2a > :first-child, .framer-TJuPB .framer-1mabvnp > :first-child, .framer-TJuPB .framer-xu2jpl > :first-child, .framer-TJuPB .framer-1fetutk > :first-child, .framer-TJuPB .framer-wl2sv2 > :first-child, .framer-TJuPB .framer-1dgfh88 > :first-child, .framer-TJuPB .framer-1x5q12i > :first-child, .framer-TJuPB .framer-tsjrjo > :first-child, .framer-TJuPB .framer-s3s9o4 > :first-child { margin-top: 0px; } .framer-TJuPB.framer-scdf9i > :last-child, .framer-TJuPB .framer-jfq094 > :last-child, .framer-TJuPB .framer-1csb1rm > :last-child, .framer-TJuPB .framer-1sx9cda > :last-child, .framer-TJuPB .framer-kxw7k2 > :last-child, .framer-TJuPB .framer-52dgzk > :last-child, .framer-TJuPB .framer-1dw2n9v > :last-child, .framer-TJuPB .framer-6bz5br > :last-child, .framer-TJuPB .framer-mqbrtx > :last-child, .framer-TJuPB .framer-1m2frkx > :last-child, .framer-TJuPB .framer-l15sf > :last-child, .framer-TJuPB .framer-sidcdc > :last-child, .framer-TJuPB .framer-pum4ju > :last-child, .framer-TJuPB .framer-d6kamk > :last-child, .framer-TJuPB .framer-1ku1p2x > :last-child, .framer-TJuPB .framer-s2udmx > :last-child, .framer-TJuPB .framer-1hsfklg > :last-child, .framer-TJuPB .framer-1w2luzz > :last-child, .framer-TJuPB .framer-yyiqal > :last-child, .framer-TJuPB .framer-10xjru4 > :last-child, .framer-TJuPB .framer-elr2ow > :last-child, .framer-TJuPB .framer-1gmpoum > :last-child, .framer-TJuPB .framer-1kdns1b > :last-child, .framer-TJuPB .framer-1q1chjw > :last-child, .framer-TJuPB .framer-lpxadq > :last-child, .framer-TJuPB .framer-1m3nxmi > :last-child, .framer-TJuPB .framer-19bzo98 > :last-child, .framer-TJuPB .framer-z5wjqj > :last-child, .framer-TJuPB .framer-oygzt7 > :last-child, .framer-TJuPB .framer-mgsvw > :last-child, .framer-TJuPB .framer-trwh1u > :last-child, .framer-TJuPB .framer-14zdrwr > :last-child, .framer-TJuPB .framer-z29524 > :last-child, .framer-TJuPB .framer-1o13owo > :last-child, .framer-TJuPB .framer-kq96pb > :last-child, .framer-TJuPB .framer-18t6r5m > :last-child, .framer-TJuPB .framer-1o6nkpw > :last-child, .framer-TJuPB .framer-1u1tx77 > :last-child, .framer-TJuPB .framer-7b5r2o > :last-child, .framer-TJuPB .framer-1fr85a9 > :last-child, .framer-TJuPB .framer-18o7syn > :last-child, .framer-TJuPB .framer-xtgw6h > :last-child, .framer-TJuPB .framer-1sw1prt > :last-child, .framer-TJuPB .framer-p5z9ot > :last-child, .framer-TJuPB .framer-z7t5ot > :last-child, .framer-TJuPB .framer-18tgg78 > :last-child, .framer-TJuPB .framer-1avm9rz > :last-child, .framer-TJuPB .framer-209zn2 > :last-child, .framer-TJuPB .framer-16hg4r5 > :last-child, .framer-TJuPB .framer-14002n > :last-child, .framer-TJuPB .framer-1jsjdk1 > :last-child, .framer-TJuPB .framer-16n0fu5 > :last-child, .framer-TJuPB .framer-13ee6sp > :last-child, .framer-TJuPB .framer-1vvhxpo > :last-child, .framer-TJuPB .framer-1opxxiu > :last-child, .framer-TJuPB .framer-1tzgdt8 > :last-child, .framer-TJuPB .framer-1vuqn3u > :last-child, .framer-TJuPB .framer-1g7sz3d > :last-child, .framer-TJuPB .framer-i1deau > :last-child, .framer-TJuPB .framer-1onyscn > :last-child, .framer-TJuPB .framer-1qmg4pf > :last-child, .framer-TJuPB .framer-18jn9to > :last-child, .framer-TJuPB .framer-10cgx2a > :last-child, .framer-TJuPB .framer-1mabvnp > :last-child, .framer-TJuPB .framer-xu2jpl > :last-child, .framer-TJuPB .framer-1fetutk > :last-child, .framer-TJuPB .framer-wl2sv2 > :last-child, .framer-TJuPB .framer-1dgfh88 > :last-child, .framer-TJuPB .framer-1x5q12i > :last-child, .framer-TJuPB .framer-tsjrjo > :last-child, .framer-TJuPB .framer-s3s9o4 > :last-child { margin-bottom: 0px; } .framer-TJuPB .framer-jfq094 > *, .framer-TJuPB .framer-6bz5br > *, .framer-TJuPB .framer-d6kamk > *, .framer-TJuPB .framer-1ku1p2x > *, .framer-TJuPB .framer-yyiqal > *, .framer-TJuPB .framer-10xjru4 > *, .framer-TJuPB .framer-oygzt7 > *, .framer-TJuPB .framer-trwh1u > *, .framer-TJuPB .framer-z29524 > *, .framer-TJuPB .framer-1o13owo > *, .framer-TJuPB .framer-kq96pb > *, .framer-TJuPB .framer-18o7syn > *, .framer-TJuPB .framer-1sw1prt > *, .framer-TJuPB .framer-z7t5ot > *, .framer-TJuPB .framer-16hg4r5 > *, .framer-TJuPB .framer-14002n > *, .framer-TJuPB .framer-1vvhxpo > *, .framer-TJuPB .framer-1opxxiu > *, .framer-TJuPB .framer-1tzgdt8 > *, .framer-TJuPB .framer-1vuqn3u > *, .framer-TJuPB .framer-1g7sz3d > *, .framer-TJuPB .framer-1qmg4pf > *, .framer-TJuPB .framer-18jn9to > *, .framer-TJuPB .framer-10cgx2a > *, .framer-TJuPB .framer-1mabvnp > *, .framer-TJuPB .framer-wl2sv2 > *, .framer-TJuPB .framer-1x5q12i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TJuPB .framer-37sin4 > *, .framer-TJuPB .framer-dmt54q > *, .framer-TJuPB .framer-1sp0hvy > *, .framer-TJuPB .framer-h2dwbc > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-TJuPB .framer-37sin4 > :first-child, .framer-TJuPB .framer-h26nxg > :first-child, .framer-TJuPB .framer-17uypf8 > :first-child, .framer-TJuPB .framer-rk8il8 > :first-child, .framer-TJuPB .framer-r2toeb > :first-child, .framer-TJuPB .framer-l2ks22 > :first-child, .framer-TJuPB .framer-dmt54q > :first-child, .framer-TJuPB .framer-1sp0hvy > :first-child, .framer-TJuPB .framer-1iqafwo > :first-child, .framer-TJuPB .framer-jnq97g > :first-child, .framer-TJuPB .framer-u45t1p > :first-child, .framer-TJuPB .framer-imfih1 > :first-child, .framer-TJuPB .framer-1n2phck > :first-child, .framer-TJuPB .framer-17zqm2v > :first-child, .framer-TJuPB .framer-2e9g6q > :first-child, .framer-TJuPB .framer-1kq5dev > :first-child, .framer-TJuPB .framer-1v0dhc > :first-child, .framer-TJuPB .framer-18qdkh > :first-child, .framer-TJuPB .framer-1jbonl4 > :first-child, .framer-TJuPB .framer-y8ffa3 > :first-child, .framer-TJuPB .framer-h2dwbc > :first-child, .framer-TJuPB .framer-ri1298 > :first-child, .framer-TJuPB .framer-19unmpn > :first-child, .framer-TJuPB .framer-1gm0k6d > :first-child, .framer-TJuPB .framer-686k40 > :first-child, .framer-TJuPB .framer-2r727g > :first-child, .framer-TJuPB .framer-1c91xai > :first-child, .framer-TJuPB .framer-1md6i7h > :first-child, .framer-TJuPB .framer-gqtuo0 > :first-child, .framer-TJuPB .framer-1k0hq7b > :first-child, .framer-TJuPB .framer-16qt99 > :first-child, .framer-TJuPB .framer-v3vcni > :first-child, .framer-TJuPB .framer-9znw9q > :first-child { margin-left: 0px; } .framer-TJuPB .framer-37sin4 > :last-child, .framer-TJuPB .framer-h26nxg > :last-child, .framer-TJuPB .framer-17uypf8 > :last-child, .framer-TJuPB .framer-rk8il8 > :last-child, .framer-TJuPB .framer-r2toeb > :last-child, .framer-TJuPB .framer-l2ks22 > :last-child, .framer-TJuPB .framer-dmt54q > :last-child, .framer-TJuPB .framer-1sp0hvy > :last-child, .framer-TJuPB .framer-1iqafwo > :last-child, .framer-TJuPB .framer-jnq97g > :last-child, .framer-TJuPB .framer-u45t1p > :last-child, .framer-TJuPB .framer-imfih1 > :last-child, .framer-TJuPB .framer-1n2phck > :last-child, .framer-TJuPB .framer-17zqm2v > :last-child, .framer-TJuPB .framer-2e9g6q > :last-child, .framer-TJuPB .framer-1kq5dev > :last-child, .framer-TJuPB .framer-1v0dhc > :last-child, .framer-TJuPB .framer-18qdkh > :last-child, .framer-TJuPB .framer-1jbonl4 > :last-child, .framer-TJuPB .framer-y8ffa3 > :last-child, .framer-TJuPB .framer-h2dwbc > :last-child, .framer-TJuPB .framer-ri1298 > :last-child, .framer-TJuPB .framer-19unmpn > :last-child, .framer-TJuPB .framer-1gm0k6d > :last-child, .framer-TJuPB .framer-686k40 > :last-child, .framer-TJuPB .framer-2r727g > :last-child, .framer-TJuPB .framer-1c91xai > :last-child, .framer-TJuPB .framer-1md6i7h > :last-child, .framer-TJuPB .framer-gqtuo0 > :last-child, .framer-TJuPB .framer-1k0hq7b > :last-child, .framer-TJuPB .framer-16qt99 > :last-child, .framer-TJuPB .framer-v3vcni > :last-child, .framer-TJuPB .framer-9znw9q > :last-child { margin-right: 0px; } .framer-TJuPB .framer-1sx9cda > *, .framer-TJuPB .framer-7b5r2o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TJuPB .framer-kxw7k2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-TJuPB .framer-52dgzk > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-TJuPB .framer-h26nxg > *, .framer-TJuPB .framer-1iqafwo > *, .framer-TJuPB .framer-imfih1 > *, .framer-TJuPB .framer-17zqm2v > *, .framer-TJuPB .framer-1kq5dev > *, .framer-TJuPB .framer-ri1298 > *, .framer-TJuPB .framer-19unmpn > *, .framer-TJuPB .framer-686k40 > *, .framer-TJuPB .framer-1c91xai > *, .framer-TJuPB .framer-1md6i7h > *, .framer-TJuPB .framer-16qt99 > *, .framer-TJuPB .framer-9znw9q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TJuPB .framer-17uypf8 > *, .framer-TJuPB .framer-r2toeb > *, .framer-TJuPB .framer-l2ks22 > *, .framer-TJuPB .framer-jnq97g > *, .framer-TJuPB .framer-u45t1p > *, .framer-TJuPB .framer-1gm0k6d > *, .framer-TJuPB .framer-2r727g > *, .framer-TJuPB .framer-gqtuo0 > *, .framer-TJuPB .framer-1k0hq7b > *, .framer-TJuPB .framer-v3vcni > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-TJuPB .framer-sidcdc > *, .framer-TJuPB .framer-pum4ju > *, .framer-TJuPB .framer-14zdrwr > *, .framer-TJuPB .framer-1o6nkpw > *, .framer-TJuPB .framer-18tgg78 > *, .framer-TJuPB .framer-1avm9rz > *, .framer-TJuPB .framer-1jsjdk1 > *, .framer-TJuPB .framer-16n0fu5 > *, .framer-TJuPB .framer-xu2jpl > *, .framer-TJuPB .framer-tsjrjo > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-TJuPB .framer-rk8il8 > *, .framer-TJuPB .framer-1n2phck > *, .framer-TJuPB .framer-2e9g6q > *, .framer-TJuPB .framer-1v0dhc > *, .framer-TJuPB .framer-18qdkh > *, .framer-TJuPB .framer-1jbonl4 > *, .framer-TJuPB .framer-y8ffa3 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-TJuPB .framer-s2udmx > *, .framer-TJuPB .framer-1hsfklg > *, .framer-TJuPB .framer-1w2luzz > *, .framer-TJuPB .framer-elr2ow > *, .framer-TJuPB .framer-lpxadq > *, .framer-TJuPB .framer-mgsvw > *, .framer-TJuPB .framer-18t6r5m > *, .framer-TJuPB .framer-1fr85a9 > *, .framer-TJuPB .framer-xtgw6h > *, .framer-TJuPB .framer-209zn2 > *, .framer-TJuPB .framer-13ee6sp > *, .framer-TJuPB .framer-i1deau > *, .framer-TJuPB .framer-1onyscn > *, .framer-TJuPB .framer-1fetutk > *, .framer-TJuPB .framer-1dgfh88 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TJuPB .framer-1gmpoum > *, .framer-TJuPB .framer-1m3nxmi > *, .framer-TJuPB .framer-s3s9o4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",'.framer-TJuPB[data-border=\"true\"]::after, .framer-TJuPB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 600px) and (max-width: 1023px) { .framer-TJuPB.framer-scdf9i { width: 600px; } .framer-TJuPB .framer-1mg543g { border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; height: var(--framer-aspect-ratio-supported, 65px); } .framer-TJuPB .framer-6bz5br, .framer-TJuPB .framer-cr1hxb { height: var(--framer-aspect-ratio-supported, 304px); } .framer-TJuPB .framer-1ow8xmu { height: var(--framer-aspect-ratio-supported, 239px); } .framer-TJuPB .framer-17uypf8 { gap: 16px; } .framer-TJuPB .framer-dmt54q, .framer-TJuPB .framer-1sp0hvy { width: 100%; } .framer-TJuPB .framer-1g3i0pj { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-TJuPB .framer-qav8ag, .framer-TJuPB .framer-18h2597 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-TJuPB .framer-lpxadq { align-self: stretch; height: auto; } .framer-TJuPB .framer-1m3nxmi, .framer-TJuPB .framer-z5wjqj { flex: none; height: min-content; } .framer-TJuPB .framer-u45t1p, .framer-TJuPB .framer-1gm0k6d, .framer-TJuPB .framer-gqtuo0, .framer-TJuPB .framer-1k0hq7b { flex-direction: column; } .framer-TJuPB .framer-z29524, .framer-TJuPB .framer-1o13owo, .framer-TJuPB .framer-16hg4r5, .framer-TJuPB .framer-14002n, .framer-TJuPB .framer-1tzgdt8, .framer-TJuPB .framer-1vuqn3u, .framer-TJuPB .framer-10cgx2a, .framer-TJuPB .framer-1mabvnp, .framer-TJuPB .framer-1fetutk, .framer-TJuPB .framer-1dgfh88 { flex: none; width: 100%; } .framer-TJuPB .framer-1c78dyi { height: var(--framer-aspect-ratio-supported, 277px); } .framer-TJuPB .framer-1sw1prt { order: 0; } .framer-TJuPB .framer-1cc2l0-container { height: 745px; order: 1; } .framer-TJuPB .framer-2r727g { flex-direction: column; gap: 16px; } .framer-TJuPB .framer-o59wqq { height: var(--framer-aspect-ratio-supported, 211px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TJuPB .framer-17uypf8, .framer-TJuPB .framer-u45t1p, .framer-TJuPB .framer-1gm0k6d, .framer-TJuPB .framer-2r727g, .framer-TJuPB .framer-gqtuo0, .framer-TJuPB .framer-1k0hq7b { gap: 0px; } .framer-TJuPB .framer-17uypf8 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-TJuPB .framer-17uypf8 > :first-child { margin-left: 0px; } .framer-TJuPB .framer-17uypf8 > :last-child { margin-right: 0px; } .framer-TJuPB .framer-u45t1p > *, .framer-TJuPB .framer-1gm0k6d > *, .framer-TJuPB .framer-gqtuo0 > *, .framer-TJuPB .framer-1k0hq7b > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-TJuPB .framer-u45t1p > :first-child, .framer-TJuPB .framer-1gm0k6d > :first-child, .framer-TJuPB .framer-2r727g > :first-child, .framer-TJuPB .framer-gqtuo0 > :first-child, .framer-TJuPB .framer-1k0hq7b > :first-child { margin-top: 0px; } .framer-TJuPB .framer-u45t1p > :last-child, .framer-TJuPB .framer-1gm0k6d > :last-child, .framer-TJuPB .framer-2r727g > :last-child, .framer-TJuPB .framer-gqtuo0 > :last-child, .framer-TJuPB .framer-1k0hq7b > :last-child { margin-bottom: 0px; } .framer-TJuPB .framer-2r727g > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (max-width: 599px) { .framer-TJuPB.framer-scdf9i { width: 390px; } .framer-TJuPB .framer-1mg543g { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: var(--framer-aspect-ratio-supported, 41px); } .framer-TJuPB .framer-6bz5br, .framer-TJuPB .framer-cr1hxb { height: var(--framer-aspect-ratio-supported, 192px); } .framer-TJuPB .framer-1ow8xmu { height: var(--framer-aspect-ratio-supported, 151px); } .framer-TJuPB .framer-17uypf8 { gap: 16px; } .framer-TJuPB .framer-rk8il8, .framer-TJuPB .framer-l2ks22, .framer-TJuPB .framer-u45t1p, .framer-TJuPB .framer-1gm0k6d, .framer-TJuPB .framer-2r727g, .framer-TJuPB .framer-gqtuo0, .framer-TJuPB .framer-1k0hq7b, .framer-TJuPB .framer-v3vcni { flex-direction: column; } .framer-TJuPB .framer-s2udmx, .framer-TJuPB .framer-elr2ow, .framer-TJuPB .framer-lpxadq, .framer-TJuPB .framer-z29524, .framer-TJuPB .framer-1o13owo, .framer-TJuPB .framer-16hg4r5, .framer-TJuPB .framer-14002n, .framer-TJuPB .framer-1tzgdt8, .framer-TJuPB .framer-1vuqn3u, .framer-TJuPB .framer-10cgx2a, .framer-TJuPB .framer-1mabvnp, .framer-TJuPB .framer-1fetutk, .framer-TJuPB .framer-1dgfh88, .framer-TJuPB .framer-s3s9o4, .framer-TJuPB .framer-9znw9q { flex: none; width: 100%; } .framer-TJuPB .framer-1hsfklg, .framer-TJuPB .framer-1w2luzz { flex: none; height: min-content; width: 100%; } .framer-TJuPB .framer-1gmpoum, .framer-TJuPB .framer-1m3nxmi { align-content: center; align-items: center; } .framer-TJuPB .framer-dmt54q, .framer-TJuPB .framer-1sp0hvy { width: 100%; } .framer-TJuPB .framer-18h2597, .framer-TJuPB .framer-if3t70 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-TJuPB .framer-mgsvw { padding: 0px; } .framer-TJuPB .framer-1c78dyi { height: var(--framer-aspect-ratio-supported, 175px); } .framer-TJuPB .framer-o59wqq { height: var(--framer-aspect-ratio-supported, 133px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TJuPB .framer-17uypf8, .framer-TJuPB .framer-rk8il8, .framer-TJuPB .framer-l2ks22, .framer-TJuPB .framer-u45t1p, .framer-TJuPB .framer-1gm0k6d, .framer-TJuPB .framer-2r727g, .framer-TJuPB .framer-gqtuo0, .framer-TJuPB .framer-1k0hq7b, .framer-TJuPB .framer-v3vcni { gap: 0px; } .framer-TJuPB .framer-17uypf8 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-TJuPB .framer-17uypf8 > :first-child { margin-left: 0px; } .framer-TJuPB .framer-17uypf8 > :last-child { margin-right: 0px; } .framer-TJuPB .framer-rk8il8 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TJuPB .framer-rk8il8 > :first-child, .framer-TJuPB .framer-l2ks22 > :first-child, .framer-TJuPB .framer-u45t1p > :first-child, .framer-TJuPB .framer-1gm0k6d > :first-child, .framer-TJuPB .framer-2r727g > :first-child, .framer-TJuPB .framer-gqtuo0 > :first-child, .framer-TJuPB .framer-1k0hq7b > :first-child, .framer-TJuPB .framer-v3vcni > :first-child { margin-top: 0px; } .framer-TJuPB .framer-rk8il8 > :last-child, .framer-TJuPB .framer-l2ks22 > :last-child, .framer-TJuPB .framer-u45t1p > :last-child, .framer-TJuPB .framer-1gm0k6d > :last-child, .framer-TJuPB .framer-2r727g > :last-child, .framer-TJuPB .framer-gqtuo0 > :last-child, .framer-TJuPB .framer-1k0hq7b > :last-child, .framer-TJuPB .framer-v3vcni > :last-child { margin-bottom: 0px; } .framer-TJuPB .framer-l2ks22 > *, .framer-TJuPB .framer-u45t1p > *, .framer-TJuPB .framer-1gm0k6d > *, .framer-TJuPB .framer-2r727g > *, .framer-TJuPB .framer-gqtuo0 > *, .framer-TJuPB .framer-1k0hq7b > *, .framer-TJuPB .framer-v3vcni > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8654\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dNc879Ogt\":{\"layout\":[\"fixed\",\"auto\"]},\"Bk5kahbHL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Iv5JWT3SK\":{\"pattern\":\":Iv5JWT3SK\",\"name\":\"top\"},\"HsdQiFcZV\":{\"pattern\":\":HsdQiFcZV\",\"name\":\"top\"},\"uM49IdFVj\":{\"pattern\":\":uM49IdFVj\",\"name\":\"top\"},\"qtZLuOIFb\":{\"pattern\":\":qtZLuOIFb\",\"name\":\"top\"},\"A9vXR0aQM\":{\"pattern\":\":A9vXR0aQM\",\"name\":\"research\"},\"vUHf0P4mn\":{\"pattern\":\":vUHf0P4mn\",\"name\":\"define\"},\"NXiS717Y2\":{\"pattern\":\":NXiS717Y2\",\"name\":\"design\"},\"TCyQ9qsc2\":{\"pattern\":\":TCyQ9qsc2\",\"name\":\"test\"},\"bt2pSabXG\":{\"pattern\":\":bt2pSabXG\",\"name\":\"next-steps\"},\"IdC6sGnTt\":{\"pattern\":\":IdC6sGnTt\",\"name\":\"demo\"},\"cmTFoaSLi\":{\"pattern\":\":cmTFoaSLi\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FramerD3OwGjzGm=withCSS(Component,css,\"framer-TJuPB\");export default FramerD3OwGjzGm;FramerD3OwGjzGm.displayName=\"Page\";FramerD3OwGjzGm.defaultProps={height:8654,width:1024};addFonts(FramerD3OwGjzGm,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...HeaderFonts,...CarouselFonts,...Carousel1Fonts,...BeforeAfterFonts,...EmbedFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD3OwGjzGm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"8654\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dNc879Ogt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bk5kahbHL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"Iv5JWT3SK\\\":{\\\"pattern\\\":\\\":Iv5JWT3SK\\\",\\\"name\\\":\\\"top\\\"},\\\"HsdQiFcZV\\\":{\\\"pattern\\\":\\\":HsdQiFcZV\\\",\\\"name\\\":\\\"top\\\"},\\\"uM49IdFVj\\\":{\\\"pattern\\\":\\\":uM49IdFVj\\\",\\\"name\\\":\\\"top\\\"},\\\"qtZLuOIFb\\\":{\\\"pattern\\\":\\\":qtZLuOIFb\\\",\\\"name\\\":\\\"top\\\"},\\\"A9vXR0aQM\\\":{\\\"pattern\\\":\\\":A9vXR0aQM\\\",\\\"name\\\":\\\"research\\\"},\\\"vUHf0P4mn\\\":{\\\"pattern\\\":\\\":vUHf0P4mn\\\",\\\"name\\\":\\\"define\\\"},\\\"NXiS717Y2\\\":{\\\"pattern\\\":\\\":NXiS717Y2\\\",\\\"name\\\":\\\"design\\\"},\\\"TCyQ9qsc2\\\":{\\\"pattern\\\":\\\":TCyQ9qsc2\\\",\\\"name\\\":\\\"test\\\"},\\\"bt2pSabXG\\\":{\\\"pattern\\\":\\\":bt2pSabXG\\\",\\\"name\\\":\\\"next-steps\\\"},\\\"IdC6sGnTt\\\":{\\\"pattern\\\":\\\":IdC6sGnTt\\\",\\\"name\\\":\\\"demo\\\"},\\\"cmTFoaSLi\\\":{\\\"pattern\\\":\\\":cmTFoaSLi\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1024\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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ACtB,OAAO,EAAE,UAAYV,EAAG,EAAE,IAAMF,EAAmBa,GAAGjB,EAAI,KAAsBiB,GAAGrC,GAAI,CACrF,MAAOuB,EACP,WAAYU,EACZ,YAAa,OAAOR,GAAK,QAC3B,CAAC,EAAmBY,GAAGZ,EAAG,CAAC,CAAC,CAC9B,CAAC,EACD,OAAOL,EAAE,YAAcX,IAAM,OAASA,EAAI,WAAa,OAAO,GAAK,SAAW,EAAI,EAAE,aAAe,EAAE,MAAQ,aAAe,IAAKW,EAAE,aAAenB,EAAE,aAAcmB,EAAE,eAAiBA,EAAGA,EAAE,eAAiB,EAAGA,EAAE,iBAAmBH,EAAGG,EAAE,sBAAwBT,EAAG,OAAO,eAAeS,EAAG,WAAY,CACtS,MAAO,UAAW,CAChB,MAAyF,IAAMV,CACjG,CACF,CAAC,EAAGU,EAAE,cAAgB,SAASE,EAAGC,EAAG,CACnC,OAAO,EAAED,EAAGgB,GAAG,CAAC,EAAGpC,EAAGqB,EAAG,CACvB,kBAAmBX,GAAGQ,EAAGG,EAAG,EAAE,CAChC,CAAC,CAAC,EAAE,MAAM,OAAQN,CAAC,CACrB,EAAGG,CACL,CACF,EAAGmB,GAAK,CACN,IACA,OACA,UACA,OACA,UACA,QACA,QACA,IACA,OACA,MACA,MACA,MACA,aACA,OACA,KACA,SACA,SACA,UACA,OACA,OACA,MACA,WACA,OACA,WACA,KACA,MACA,UACA,MACA,SACA,MACA,KACA,KACA,KACA,QACA,WACA,aACA,SACA,SACA,OACA,KACA,KACA,KACA,KACA,KACA,KACA,OACA,SACA,SACA,KACA,OACA,IACA,SACA,MACA,QACA,MACA,MACA,SACA,QACA,SACA,KACA,OACA,OACA,MACA,OACA,UACA,OACA,WACA,OACA,QACA,MACA,WACA,SACA,KACA,WACA,SACA,SACA,IACA,QACA,UACA,MACA,WACA,IACA,KACA,KACA,OACA,IACA,OACA,SACA,UACA,SACA,QACA,SACA,OACA,SACA,QACA,MACA,UACA,MACA,QACA,QACA,KACA,WACA,QACA,KACA,QACA,OACA,QACA,KACA,QACA,IACA,KACA,MACA,QACA,MAEA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",
  "names": ["clamp", "t", "e", "n", "isNumber", "t", "isString", "isEasingList", "t", "isNumber", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "t", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "r", "f", "clamp", "getEasingForSegment", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "r", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Z", "createAxisInfo", "createScrollInfo", "X", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Y", "J", "resolveEdge", "isString", "isNumber", "Q", "resolveOffset", "ee", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "te", "ne", "oe", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "n", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "Z", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "Re", "jt", "le", "Rr", "Lt", "e", "r", "n", "a", "s", "l", "u", "d", "g", "f", "v", "C", "T", "Lt", "jt", "L", "Re", "Br", "ze", "r", "n", "a", "Hr", "Ft", "Mt", "Wt", "zt", "Yt", "s", "i", "l", "j", "Oe", "_", "He", "Ge", "Je", "Ut", "Gr", "qt", "Ce", "Bt", "Ht", "$", "Jr", "Gt", "S", "Ye", "de", "B", "Xe", "xe", "Jt", "Te", "ie", "Xr", "M", "I", "oe", "Pe", "fe", "Xt", "Kt", "W", "H", "we", "me", "pe", "Kr", "Zr", "_e", "Ue", "Zt", "Qt", "en", "rn", "tn", "Se", "u", "d", "g", "f", "v", "C", "T", "x", "h", "O", "E", "p", "P", "q", "D", "V", "R", "nn", "Cr", "kr", "ae", "an", "on", "sn", "cn", "ln", "un", "Tr", "fn", "dn", "et", "r", "Ht", "_", "Oe", "j", "S", "B", "$", "Ye", "bn", "n", "i", "Je", "Gr", "ae", "fe", "Ge", "Jt", "s", "Gt", "yn", "En", "h", "O", "l", "u", "E", "d", "g", "fn", "dn", "f", "v", "an", "sn", "C", "on", "T", "tn", "p", "P", "x", "Yt", "xn", "rt", "a", "Ke", "tt", "wn", "_n", "Rn", "nt", "Ze", "r", "Ar", "Me", "Hr", "ke", "n", "i", "s", "U", "_n", "he", "r", "n", "U", "a", "Nn", "s", "l", "u", "d", "g", "Ar", "Me", "ke", "$r", "U", "qe", "r", "n", "i", "s", "l", "he", "u", "d", "$r", "g", "f", "v", "wn", "An", "In", "ie", "ot", "$n", "Qe", "z", "En", "st", "Y", "re", "er", "Ln", "Mt", "Vn", "r", "Lr", "Vr", "n", "i", "s", "l", "Fn", "r", "n", "i", "Ke", "ot", "tt", "Mn", "a", "s", "l", "u", "Vr", "d", "Lr", "g", "f", "v", "C", "T", "x", "st", "h", "O", "E", "p", "P", "q", "D", "V", "re", "er", "rt", "R", "qe", "Ne", "Q", "B", "ze", "Wn", "z", "zn", "Br", "Yn", "L", "Un", "qn", "Bn", "Hn", "Gn", "pe", "ue", "Jn", "Wr", "zr", "Xn", "Mr", "Zn", "Kn", "Qn", "ea", "ye", "X", "ta", "na", "addPropertyControls", "BeforeAfter", "ta", "props", "p", "na", "HeaderFonts", "getFonts", "oR_dPqPns_default", "MotionAWithuseBackToTopVisibility37sin4", "withCodeBoundaryForOverrides", "motion", "withuseBackToTopVisibility", "CarouselFonts", "Carousel", "Carousel1Fonts", "BeforeAfterFonts", "BeforeAfter", "EmbedFonts", "Embed", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "oR_dPqPns_default", "Link", "MotionAWithuseBackToTopVisibility37sin4", "SVG", "RichText", "x", "Image2", "getLoadingLazyAtYPosition", "Carousel", "BeforeAfter", "Embed", "css", "FramerD3OwGjzGm", "withCSS", "D3OwGjzGm_default", "addFonts", "HeaderFonts", "CarouselFonts", "Carousel1Fonts", "BeforeAfterFonts", "EmbedFonts", "__FramerMetadata__"]
}
