{
  "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/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/n1qmsE6opnuGq0m3WEqZ/NfbIAUMaiV46oFwpcZjv/f4FKvrZNr.js", "ssg:https://framerusercontent.com/modules/ApcJSzezEVWoSlnyl7K4/tOfsO6Ks7IJwaq9hfAuL/frzDF2raE.js", "ssg:https://framerusercontent.com/modules/6Rvwr6L00mCDs2ddlcBr/vhA5QqgvzJ72ypGfoFoY/G0v_5eiCd.js", "ssg:https://framerusercontent.com/modules/561QTvRdzwciYwLhMI5K/fSyjaVTdvQbBFkRCwIIq/WdNZ4ASY1.js", "ssg:https://framerusercontent.com/modules/2s63aVDJSaxMuO5ALlbL/OjwlmLmm8l6TU7XJ4Umn/O7Gb9eo_e.js", "ssg:https://framerusercontent.com/modules/6S3zBmTTeXda1zuypyUE/wdkoqzDiSpsFnqtbjfQg/W89lCHWP4.js", "ssg:https://framerusercontent.com/modules/tSkqeLCWu3E6EnXL88b4/mgb4Z7ZhdfaLNAAko8na/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const 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 { useState, useEffect } from \"react\";\nexport const isBrowser = () => typeof document === \"object\";\nexport function getBrowserVisibilityProp() {\n  if (!isBrowser()) return;\n  if (typeof document.hidden !== \"undefined\") {\n    // Opera 12.10 and Firefox 18 and later support\n    return \"visibilitychange\";\n  } else if (typeof document.msHidden !== \"undefined\") {\n    return \"msvisibilitychange\";\n  } else if (typeof document.webkitHidden !== \"undefined\") {\n    return \"webkitvisibilitychange\";\n  }\n}\nexport function getBrowserDocumentHiddenProp() {\n  if (!isBrowser()) return;\n  if (typeof document.hidden !== \"undefined\") {\n    return \"hidden\";\n  } else if (typeof document.msHidden !== \"undefined\") {\n    return \"msHidden\";\n  } else if (typeof document.webkitHidden !== \"undefined\") {\n    return \"webkitHidden\";\n  }\n}\nexport function getIsDocumentHidden() {\n  if (!isBrowser()) return;\n  return !document[getBrowserDocumentHiddenProp()];\n}\nexport function usePageVisibility() {\n  if (!isBrowser()) return;\n  const [isVisible, setIsVisible] = useState(getIsDocumentHidden());\n  const onVisibilityChange = () => setIsVisible(getIsDocumentHidden());\n  useEffect(() => {\n    const visibilityChange = getBrowserVisibilityProp();\n    document.addEventListener(visibilityChange, onVisibilityChange, false);\n    return () => {\n      document.removeEventListener(visibilityChange, onVisibilityChange);\n    };\n  });\n  return isVisible;\n}\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"getBrowserVisibilityProp\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"getIsDocumentHidden\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"usePageVisibility\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"isBrowser\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"getBrowserDocumentHiddenProp\": {\n      \"type\": \"function\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./UsePageVisibility.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { Children, useLayoutEffect, useEffect, useState, useRef, useMemo, createRef, useCallback, cloneElement, forwardRef } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport { motion, animate, useMotionValue, useTransform, LayoutGroup, wrap, sync } from \"framer-motion\";\nimport { resize } from \"@motionone/dom\";\nimport { usePageVisibility } from \"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\"; /**\n                                                                                                                                          *\n                                                                                                                                          * SLIDESHOW\n                                                                                                                                          * V2 with Drag\n                                                                                                                                          * By Benjamin and Matt\n                                                                                                                                          *\n                                                                                                                                          * @framerIntrinsicWidth 400\n                                                                                                                                          * @framerIntrinsicHeight 200\n                                                                                                                                          *\n                                                                                                                                          * @framerDisableUnlink\n                                                                                                                                          *\n                                                                                                                                          * @framerSupportedLayoutWidth fixed\n                                                                                                                                          * @framerSupportedLayoutHeight fixed\n                                                                                                                                          */\nexport default function Slideshow(props) {\n  /**\n  * Properties\n  */\n  const {\n    slots,\n    startFrom,\n    direction,\n    effectsOptions,\n    autoPlayControl,\n    dragControl,\n    alignment,\n    gap,\n    padding,\n    paddingPerSide,\n    paddingTop,\n    paddingRight,\n    paddingBottom,\n    paddingLeft,\n    itemAmount,\n    fadeOptions,\n    intervalControl,\n    transitionControl,\n    arrowOptions,\n    borderRadius,\n    progressOptions,\n    style\n  } = props;\n  const {\n    effectsOpacity,\n    effectsScale,\n    effectsRotate,\n    effectsPerspective,\n    effectsHover\n  } = effectsOptions;\n  const {\n    fadeContent,\n    overflow,\n    fadeWidth,\n    fadeInset,\n    fadeAlpha\n  } = fadeOptions;\n  const {\n    showMouseControls,\n    arrowSize,\n    arrowRadius,\n    arrowFill,\n    leftArrow,\n    rightArrow,\n    arrowShouldSpace = true,\n    arrowShouldFadeIn = false,\n    arrowPosition,\n    arrowPadding,\n    arrowGap,\n    arrowPaddingTop,\n    arrowPaddingRight,\n    arrowPaddingBottom,\n    arrowPaddingLeft\n  } = arrowOptions;\n  const {\n    showProgressDots,\n    dotSize,\n    dotsInset,\n    dotsRadius,\n    dotsPadding,\n    dotsGap,\n    dotsFill,\n    dotsBackground,\n    dotsActiveOpacity,\n    dotsOpacity,\n    dotsBlur\n  } = progressOptions;\n  const paddingValue = paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : `${padding}px`; /**\n                                                                                                                                  * Checks\n                                                                                                                                  */\n  const isCanvas = RenderTarget.current() === RenderTarget.canvas;\n  const hasChildren = Children.count(slots) > 0;\n  const isHorizontal = direction === \"left\" || direction === \"right\";\n  const isInverted = direction === \"right\" || direction === \"bottom\"; /**\n                                                                      * Empty state for Canvas\n                                                                      */\n  if (!hasChildren) {\n    return /*#__PURE__*/_jsxs(\"section\", {\n      style: placeholderStyles,\n      children: [/*#__PURE__*/_jsx(\"div\", {\n        style: emojiStyles,\n        children: \"\u2B50\uFE0F\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: titleStyles,\n        children: \"Connect to Content\"\n      }), /*#__PURE__*/_jsx(\"p\", {\n        style: subtitleStyles,\n        children: \"Add layers or components to make infinite auto-playing slideshows.\"\n      })]\n    });\n  } /**\n    * Refs, State\n    */\n  const parentRef = useRef(null);\n  const childrenRef = useMemo(() => {\n    return slots.map(index => /*#__PURE__*/createRef());\n  }, [slots]);\n  const timeoutRef = useRef(undefined);\n  const [size, setSize] = useState({\n    parent: null,\n    children: null,\n    item: null,\n    itemWidth: null,\n    itemHeight: null\n  }); /* For pausing on hover */\n  const [isHovering, setIsHovering] = useState(false);\n  const [shouldPlayOnHover, setShouldPlayOnHover] = useState(autoPlayControl); /* For cursor updates */\n  const [isMouseDown, setIsMouseDown] = useState(false); /* Check if resizing */\n  const [isResizing, setIsResizing] = useState(false); /**\n                                                       * Array for children\n                                                       */\n  const dupedChildren = [];\n  let duplicateBy = 4;\n  if (isCanvas) {\n    duplicateBy = 1;\n  } /**\n    * Measure parent, child, items\n    */\n  const measure = useCallback(() => {\n    sync.read(() => {\n      if (hasChildren && parentRef.current) {\n        const total = slots.length - 1;\n        const parentLength = isHorizontal ? parentRef.current.offsetWidth : parentRef.current.offsetHeight;\n        const start = childrenRef[0].current ? isHorizontal ? childrenRef[0].current.offsetLeft : childrenRef[0].current.offsetTop : 0;\n        const end = childrenRef[total].current ? isHorizontal ? childrenRef[total].current.offsetLeft + childrenRef[total].current.offsetWidth : childrenRef[total].current.offsetTop + childrenRef[total].current.offsetHeight : 0;\n        const childrenLength = end - start + gap;\n        const itemSize = childrenRef[0].current ? isHorizontal ? childrenRef[0].current.offsetWidth : childrenRef[0].current.offsetHeight : 0;\n        const itemWidth = childrenRef[0].current ? childrenRef[0].current.offsetWidth : 0;\n        const itemHeight = childrenRef[0].current ? childrenRef[0].current.offsetHeight : 0;\n        setSize({\n          parent: parentLength,\n          children: childrenLength,\n          item: itemSize,\n          itemWidth,\n          itemHeight\n        });\n      }\n    });\n  }, [hasChildren]); /**\n                     * Add refs to all children\n                     * Added itemAmount for resizing\n                     */\n  useLayoutEffect(() => {\n    if (hasChildren) measure();\n  }, [hasChildren, itemAmount]); /**\n                                 * Track whether this is the initial resize event. By default this will fire on mount,\n                                 * which we do in the useEffect. We should only fire it on subsequent resizes.\n                                 */\n  let initialResize = useRef(true);\n  useEffect(() => {\n    return resize(parentRef.current, ({\n      contentSize\n    }) => {\n      if (!initialResize.current && (contentSize.width || contentSize.height)) {\n        measure();\n        setIsResizing(true);\n      }\n      initialResize.current = false;\n    });\n  }, []);\n  useEffect(() => {\n    if (isResizing) {\n      const timer = setTimeout(() => setIsResizing(false), 500);\n      return () => clearTimeout(timer);\n    }\n  }, [isResizing]); /**\n                    * Animation, pagination\n                    */\n  const totalItems = slots === null || slots === void 0 ? void 0 : slots.length;\n  const childrenSize = isCanvas ? 0 : size === null || size === void 0 ? void 0 : size.children;\n  const itemWithGap = (size === null || size === void 0 ? void 0 : size.item) + gap;\n  const itemOffset = startFrom * itemWithGap;\n  const [currentItem, setCurrentItem] = useState(startFrom + totalItems);\n  const [isDragging, setIsDragging] = useState(false); /* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */\n  const isVisible = usePageVisibility();\n  const factor = isInverted ? 1 : -1; /* The x and y values to start from */\n  const xOrY = useMotionValue(childrenSize); /* For canvas only. Using xOrY is slower upon page switching */\n  const canvasPosition = isHorizontal ? -startFrom * ((size === null || size === void 0 ? void 0 : size.itemWidth) + gap) : -startFrom * ((size === null || size === void 0 ? void 0 : size.itemHeight) + gap); /* Calculate the new value to animate to */\n  const newPosition = () => factor * currentItem * itemWithGap; /* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */\n  const wrappedValue = !isCanvas ? useTransform(xOrY, value => {\n    const wrapped = wrap(-childrenSize, -childrenSize * 2, value);\n    return isNaN(wrapped) ? 0 : wrapped;\n  }) : 0; /* Convert the current item to a wrapping index for dots */\n  const wrappedIndex = wrap(0, totalItems, currentItem);\n  const wrappedIndexInverted = wrap(0, -totalItems, currentItem); /* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */\n  useLayoutEffect(() => {\n    if ((size === null || size === void 0 ? void 0 : size.children) === null) return; /* Initial measure */ // if (initialResize.current) {\n    //     xOrY.set((childrenSize + itemOffset) * factor)\n    // }\n    /* Subsequent resizes */\n    if (!initialResize.current && isResizing) {\n      xOrY.set(newPosition());\n    }\n  }, [size, childrenSize, factor, itemOffset, currentItem, itemWithGap, isResizing]); /**\n                                                                                      * Page item methods\n                                                                                      * Switching, deltas, autoplaying\n                                                                                      */ /* Next and previous function, animates the X */\n  const switchPages = () => {\n    if (isCanvas || !hasChildren || !size.parent || isDragging) return;\n    if (xOrY.get() !== newPosition()) {\n      animate(xOrY, newPosition(), transitionControl);\n    }\n    if (autoPlayControl && shouldPlayOnHover) {\n      timeoutRef.current = setTimeout(() => {\n        setCurrentItem(currentItem + 1);\n        switchPages();\n      }, intervalControl * 1e3);\n    }\n  }; /* Page navigation functions */\n  const setDelta = delta => {\n    if (!isInverted) {\n      setCurrentItem(currentItem + delta);\n    } else {\n      setCurrentItem(currentItem - delta);\n    }\n  };\n  const setPage = index => {\n    const currentItemWrapped = wrap(0, totalItems, currentItem);\n    const currentItemWrappedInvert = wrap(0, -totalItems, currentItem);\n    const goto = index - currentItemWrapped;\n    const gotoInverted = index - Math.abs(currentItemWrappedInvert);\n    if (!isInverted) {\n      setCurrentItem(currentItem + goto);\n    } else {\n      setCurrentItem(currentItem - gotoInverted);\n    }\n  }; /**\n     * Drag\n     */\n  const handleDragStart = () => {\n    setIsDragging(true);\n  };\n  const handleDragEnd = (event, {\n    offset,\n    velocity\n  }) => {\n    setIsDragging(false);\n    const offsetXorY = isHorizontal ? offset.x : offset.y;\n    const velocityThreshold = 200 // Based on testing, can be tweaked or could be 0\n    ;\n    const velocityXorY = isHorizontal ? velocity.x : velocity.y;\n    const isHalfOfNext = offsetXorY < -size.item / 2;\n    const isHalfOfPrev = offsetXorY > size.item / 2; /* In case you drag more than 1 item left or right */\n    const normalizedOffset = Math.abs(offsetXorY);\n    const itemDelta = Math.round(normalizedOffset / size.item); /* Minimum delta is 1 to initiate a page switch */ /* For velocity use only */\n    const itemDeltaFromOne = itemDelta === 0 ? 1 : itemDelta; /* For quick flicks, even with low offsets */\n    if (velocityXorY > velocityThreshold) {\n      setDelta(-itemDeltaFromOne);\n    } else if (velocityXorY < -velocityThreshold) {\n      setDelta(itemDeltaFromOne);\n    } else {\n      /* For dragging over half of the current item with 0 velocity */if (isHalfOfNext) {\n        setDelta(itemDelta);\n      }\n      if (isHalfOfPrev) {\n        setDelta(-itemDelta);\n      }\n    }\n  }; /* Kickstart the auto-playing once we have all the children */\n  useEffect(() => {\n    if (!isVisible || isResizing) return;\n    switchPages();\n    return () => timeoutRef.current && clearTimeout(timeoutRef.current);\n  }, [dupedChildren, isVisible, isResizing]); /* Create copies of our children to create a perfect loop */\n  let childCounter = 0; /**\n                        * Sizing\n                        * */\n  let columnOrRowValue = `calc(${100 / itemAmount}% - ${gap}px + ${gap / itemAmount}px)`; /**\n                                                                                          * Nested array to create duplicates of the children for infinite looping\n                                                                                          * These are wrapped around, and start at a full \"page\" worth of offset\n                                                                                          * as defined above.\n                                                                                          */\n  for (let index = 0; index < duplicateBy; index++) {\n    dupedChildren.push(...Children.map(slots, (child, childIndex) => {\n      let ref;\n      if (childIndex === 0) {\n        ref = childrenRef[0];\n      }\n      if (childIndex === slots.length - 1) {\n        ref = childrenRef[1];\n      }\n      return /*#__PURE__*/_jsx(Slide, {\n        ref: childrenRef[childIndex],\n        slideKey: index + childIndex + \"lg\",\n        index: index,\n        width: isHorizontal ? itemAmount > 1 ? columnOrRowValue : \"100%\" : \"100%\",\n        height: !isHorizontal ? itemAmount > 1 ? columnOrRowValue : \"100%\" : \"100%\",\n        size: size,\n        child: child,\n        numChildren: slots === null || slots === void 0 ? void 0 : slots.length,\n        wrappedValue: wrappedValue,\n        childCounter: childCounter++,\n        gap: gap,\n        isCanvas: isCanvas,\n        isHorizontal: isHorizontal,\n        effectsOpacity: effectsOpacity,\n        effectsScale: effectsScale,\n        effectsRotate: effectsRotate,\n        children: index + childIndex\n      }, index + childIndex + \"lg\");\n    }));\n  } /**\n    * Fades with masks\n    */\n  const fadeDirection = isHorizontal ? \"to right\" : \"to bottom\";\n  const fadeWidthStart = fadeWidth / 2;\n  const fadeWidthEnd = 100 - fadeWidth / 2;\n  const fadeInsetStart = clamp(fadeInset, 0, fadeWidthStart);\n  const fadeInsetEnd = 100 - fadeInset;\n  const fadeMask = `linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`; /**\n                                                                                                                                                                                                                              * Dots\n                                                                                                                                                                                                                              */\n  const dots = [];\n  const dotsBlurStyle = {};\n  if (showProgressDots) {\n    for (let i = 0; i < (slots === null || slots === void 0 ? void 0 : slots.length); i++) {\n      dots.push( /*#__PURE__*/_jsx(Dot, {\n        dotStyle: {\n          ...dotStyle,\n          width: dotSize,\n          height: dotSize,\n          backgroundColor: dotsFill\n        },\n        buttonStyle: baseButtonStyles,\n        selectedOpacity: dotsActiveOpacity,\n        opacity: dotsOpacity,\n        onClick: () => setPage(i),\n        wrappedIndex: wrappedIndex,\n        wrappedIndexInverted: wrappedIndexInverted,\n        total: totalItems,\n        index: i,\n        gap: dotsGap,\n        padding: dotsPadding,\n        isHorizontal: isHorizontal,\n        isInverted: isInverted\n      }, i));\n    }\n    if (dotsBlur > 0) {\n      dotsBlurStyle.backdropFilter = dotsBlurStyle.WebkitBackdropFilter = dotsBlurStyle.MozBackdropFilter = `blur(${dotsBlur}px)`;\n    }\n  }\n  const dragProps = dragControl ? {\n    drag: isHorizontal ? \"x\" : \"y\",\n    onDragStart: handleDragStart,\n    onDragEnd: handleDragEnd,\n    dragDirectionLock: true,\n    values: {\n      x: xOrY,\n      y: xOrY\n    },\n    dragMomentum: false\n  } : {};\n  const arrowHasTop = arrowPosition === \"top-left\" || arrowPosition === \"top-mid\" || arrowPosition === \"top-right\";\n  const arrowHasBottom = arrowPosition === \"bottom-left\" || arrowPosition === \"bottom-mid\" || arrowPosition === \"bottom-right\";\n  const arrowHasLeft = arrowPosition === \"top-left\" || arrowPosition === \"bottom-left\";\n  const arrowHasRight = arrowPosition === \"top-right\" || arrowPosition === \"bottom-right\";\n  const arrowHasMid = arrowPosition === \"top-mid\" || arrowPosition === \"bottom-mid\" || arrowPosition === \"auto\";\n  return /*#__PURE__*/_jsxs(\"section\", {\n    style: {\n      ...containerStyle,\n      padding: paddingValue,\n      WebkitMaskImage: fadeContent ? fadeMask : undefined,\n      MozMaskImage: fadeContent ? fadeMask : undefined,\n      maskImage: fadeContent ? fadeMask : undefined,\n      opacity: (size === null || size === void 0 ? void 0 : size.item) !== null ? 1 : 0,\n      userSelect: \"none\"\n    },\n    onMouseEnter: () => {\n      setIsHovering(true);\n      if (!effectsHover) setShouldPlayOnHover(false);\n    },\n    onMouseLeave: () => {\n      setIsHovering(false);\n      if (!effectsHover) setShouldPlayOnHover(true);\n    },\n    onMouseDown: event => {\n      // Preventdefault fixes the cursor switching to text on drag on safari\n      event.preventDefault();\n      setIsMouseDown(true);\n    },\n    onMouseUp: () => setIsMouseDown(false),\n    children: [/*#__PURE__*/_jsx(\"div\", {\n      style: {\n        width: \"100%\",\n        height: \"100%\",\n        margin: 0,\n        padding: \"inherit\",\n        position: \"absolute\",\n        inset: 0,\n        overflow: overflow ? \"visible\" : \"hidden\",\n        borderRadius: borderRadius,\n        userSelect: \"none\",\n        perspective: isCanvas ? \"none\" : effectsPerspective\n      },\n      children: /*#__PURE__*/_jsx(motion.ul, {\n        ref: parentRef,\n        ...dragProps,\n        style: {\n          ...containerStyle,\n          gap: gap,\n          placeItems: alignment,\n          x: isHorizontal ? isCanvas ? canvasPosition : wrappedValue : 0,\n          y: !isHorizontal ? isCanvas ? canvasPosition : wrappedValue : 0,\n          flexDirection: isHorizontal ? \"row\" : \"column\",\n          transformStyle: effectsRotate !== 0 && !isCanvas ? \"preserve-3d\" : undefined,\n          cursor: dragControl ? isMouseDown ? \"grabbing\" : \"grab\" : \"auto\",\n          userSelect: \"none\",\n          ...style\n        },\n        children: dupedChildren\n      })\n    }), /*#__PURE__*/_jsxs(\"fieldset\", {\n      style: {\n        ...controlsStyles\n      },\n      \"aria-label\": \"Slideshow pagination controls\",\n      className: \"framer--slideshow-controls\",\n      children: [/*#__PURE__*/_jsxs(motion.div, {\n        style: {\n          position: \"absolute\",\n          display: \"flex\",\n          flexDirection: isHorizontal ? \"row\" : \"column\",\n          justifyContent: arrowShouldSpace ? \"space-between\" : \"center\",\n          gap: arrowShouldSpace ? \"unset\" : arrowGap,\n          opacity: arrowShouldFadeIn ? 0 : 1,\n          alignItems: \"center\",\n          inset: arrowPadding,\n          top: arrowShouldSpace ? arrowPadding : arrowHasTop ? arrowPaddingTop : \"unset\",\n          left: arrowShouldSpace ? arrowPadding : arrowHasLeft ? arrowPaddingLeft : arrowHasMid ? 0 : \"unset\",\n          right: arrowShouldSpace ? arrowPadding : arrowHasRight ? arrowPaddingRight : arrowHasMid ? 0 : \"unset\",\n          bottom: arrowShouldSpace ? arrowPadding : arrowHasBottom ? arrowPaddingBottom : \"unset\"\n        },\n        animate: arrowShouldFadeIn && {\n          opacity: isHovering ? 1 : 0\n        },\n        transition: transitionControl,\n        children: [/*#__PURE__*/_jsx(motion.button, {\n          type: \"button\",\n          style: {\n            ...baseButtonStyles,\n            backgroundColor: arrowFill,\n            width: arrowSize,\n            height: arrowSize,\n            borderRadius: arrowRadius,\n            rotate: !isHorizontal ? 90 : 0,\n            display: showMouseControls ? \"block\" : \"none\",\n            pointerEvents: \"auto\"\n          },\n          onClick: () => setDelta(-1),\n          \"aria-label\": \"Previous\",\n          whileTap: {\n            scale: .9\n          },\n          transition: {\n            duration: .15\n          },\n          children: /*#__PURE__*/_jsx(\"img\", {\n            width: arrowSize,\n            height: arrowSize,\n            src: leftArrow || \"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",\n            alt: \"Back Arrow\"\n          })\n        }), /*#__PURE__*/_jsx(motion.button, {\n          type: \"button\",\n          style: {\n            ...baseButtonStyles,\n            backgroundColor: arrowFill,\n            width: arrowSize,\n            height: arrowSize,\n            borderRadius: arrowRadius,\n            rotate: !isHorizontal ? 90 : 0,\n            display: showMouseControls ? \"block\" : \"none\",\n            pointerEvents: \"auto\"\n          },\n          onClick: () => setDelta(1),\n          \"aria-label\": \"Next\",\n          whileTap: {\n            scale: .9\n          },\n          transition: {\n            duration: .15\n          },\n          children: /*#__PURE__*/_jsx(\"img\", {\n            width: arrowSize,\n            height: arrowSize,\n            src: rightArrow || \"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",\n            alt: \"Next Arrow\"\n          })\n        })]\n      }), dots.length > 1 ? /*#__PURE__*/_jsx(\"div\", {\n        style: {\n          ...dotsContainerStyle,\n          left: isHorizontal ? \"50%\" : dotsInset,\n          top: !isHorizontal ? \"50%\" : \"unset\",\n          transform: isHorizontal ? \"translateX(-50%)\" : \"translateY(-50%)\",\n          flexDirection: isHorizontal ? \"row\" : \"column\",\n          bottom: isHorizontal ? dotsInset : \"unset\",\n          borderRadius: dotsRadius,\n          backgroundColor: dotsBackground,\n          userSelect: \"none\",\n          ...dotsBlurStyle\n        },\n        children: dots\n      }) : null]\n    })]\n  });\n} /* Default Properties */\nSlideshow.defaultProps = {\n  direction: \"left\",\n  dragControl: false,\n  startFrom: 0,\n  itemAmount: 1,\n  infinity: true,\n  gap: 10,\n  padding: 10,\n  autoPlayControl: true,\n  effectsOptions: {\n    effectsOpacity: 1,\n    effectsScale: 1,\n    effectsRotate: 0,\n    effectsPerspective: 1200,\n    effectsHover: true\n  },\n  transitionControl: {\n    type: \"spring\",\n    stiffness: 200,\n    damping: 40\n  },\n  fadeOptions: {\n    fadeContent: false,\n    overflow: false,\n    fadeWidth: 25,\n    fadeAlpha: 0,\n    fadeInset: 0\n  },\n  arrowOptions: {\n    showMouseControls: true,\n    arrowShouldFadeIn: false,\n    arrowShouldSpace: true,\n    arrowFill: \"rgba(0,0,0,0.2)\",\n    arrowSize: 40\n  },\n  progressOptions: {\n    showProgressDots: true\n  }\n}; /* Property Controls */\naddPropertyControls(Slideshow, {\n  slots: {\n    type: ControlType.Array,\n    title: \"Content\",\n    control: {\n      type: ControlType.ComponentInstance\n    }\n  },\n  direction: {\n    type: ControlType.Enum,\n    title: \"Direction\",\n    options: [\"left\", \"right\", \"top\", \"bottom\"],\n    optionIcons: [\"direction-left\", \"direction-right\", \"direction-up\", \"direction-down\"],\n    optionTitles: [\"Left\", \"Right\", \"Top\", \"Bottom\"],\n    displaySegmentedControl: true,\n    defaultValue: Slideshow.defaultProps.direction\n  },\n  autoPlayControl: {\n    type: ControlType.Boolean,\n    title: \"Auto Play\",\n    defaultValue: true\n  },\n  intervalControl: {\n    type: ControlType.Number,\n    title: \"Interval\",\n    defaultValue: 1.5,\n    min: .5,\n    max: 10,\n    step: .1,\n    displayStepper: true,\n    unit: \"s\",\n    hidden: props => !props.autoPlayControl\n  },\n  dragControl: {\n    type: ControlType.Boolean,\n    title: \"Draggable\",\n    defaultValue: false\n  },\n  startFrom: {\n    type: ControlType.Number,\n    title: \"Current\",\n    min: 0,\n    max: 10,\n    displayStepper: true,\n    defaultValue: Slideshow.defaultProps.startFrom\n  },\n  effectsOptions: {\n    type: ControlType.Object,\n    title: \"Effects\",\n    controls: {\n      effectsOpacity: {\n        type: ControlType.Number,\n        title: \"Opacity\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsOpacity,\n        min: 0,\n        max: 1,\n        step: .01,\n        displayStepper: true\n      },\n      effectsScale: {\n        type: ControlType.Number,\n        title: \"Scale\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsScale,\n        min: 0,\n        max: 1,\n        step: .01,\n        displayStepper: true\n      },\n      effectsPerspective: {\n        type: ControlType.Number,\n        title: \"Perspective\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsPerspective,\n        min: 200,\n        max: 2e3,\n        step: 1\n      },\n      effectsRotate: {\n        type: ControlType.Number,\n        title: \"Rotate\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsRotate,\n        min: -180,\n        max: 180,\n        step: 1\n      },\n      effectsHover: {\n        type: ControlType.Boolean,\n        title: \"On Hover\",\n        enabledTitle: \"Play\",\n        disabledTitle: \"Pause\",\n        defaultValue: Slideshow.defaultProps.effectsOptions.effectsHover\n      }\n    }\n  },\n  alignment: {\n    type: ControlType.Enum,\n    title: \"Align\",\n    options: [\"flex-start\", \"center\", \"flex-end\"],\n    optionIcons: {\n      direction: {\n        right: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        left: [\"align-top\", \"align-middle\", \"align-bottom\"],\n        top: [\"align-left\", \"align-center\", \"align-right\"],\n        bottom: [\"align-left\", \"align-center\", \"align-right\"]\n      }\n    },\n    defaultValue: \"center\",\n    displaySegmentedControl: true\n  },\n  itemAmount: {\n    type: ControlType.Number,\n    title: \"Items\",\n    min: 1,\n    max: 10,\n    displayStepper: true,\n    defaultValue: Slideshow.defaultProps.itemAmount\n  },\n  gap: {\n    type: ControlType.Number,\n    title: \"Gap\",\n    min: 0\n  },\n  padding: {\n    title: \"Padding\",\n    type: ControlType.FusedNumber,\n    toggleKey: \"paddingPerSide\",\n    toggleTitles: [\"Padding\", \"Padding per side\"],\n    defaultValue: 0,\n    valueKeys: [\"paddingTop\", \"paddingRight\", \"paddingBottom\", \"paddingLeft\"],\n    valueLabels: [\"T\", \"R\", \"B\", \"L\"],\n    min: 0\n  },\n  borderRadius: {\n    type: ControlType.Number,\n    title: \"Radius\",\n    min: 0,\n    max: 500,\n    displayStepper: true,\n    defaultValue: 0\n  },\n  transitionControl: {\n    type: ControlType.Transition,\n    defaultValue: Slideshow.defaultProps.transitionControl,\n    title: \"Transition\"\n  },\n  fadeOptions: {\n    type: ControlType.Object,\n    title: \"Clipping\",\n    controls: {\n      fadeContent: {\n        type: ControlType.Boolean,\n        title: \"Fade\",\n        defaultValue: false\n      },\n      overflow: {\n        type: ControlType.Boolean,\n        title: \"Overflow\",\n        enabledTitle: \"Show\",\n        disabledTitle: \"Hide\",\n        defaultValue: false,\n        hidden(props) {\n          return props.fadeContent === true;\n        }\n      },\n      fadeWidth: {\n        type: ControlType.Number,\n        title: \"Width\",\n        defaultValue: 25,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeInset: {\n        type: ControlType.Number,\n        title: \"Inset\",\n        defaultValue: 0,\n        min: 0,\n        max: 100,\n        unit: \"%\",\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      },\n      fadeAlpha: {\n        type: ControlType.Number,\n        title: \"Opacity\",\n        defaultValue: 0,\n        min: 0,\n        max: 1,\n        step: .05,\n        hidden(props) {\n          return props.fadeContent === false;\n        }\n      }\n    }\n  },\n  arrowOptions: {\n    type: ControlType.Object,\n    title: \"Arrows\",\n    controls: {\n      showMouseControls: {\n        type: ControlType.Boolean,\n        title: \"Show\",\n        defaultValue: Slideshow.defaultProps.arrowOptions.showMouseControls\n      },\n      arrowFill: {\n        type: ControlType.Color,\n        title: \"Fill\",\n        hidden: props => !props.showMouseControls,\n        defaultValue: Slideshow.defaultProps.arrowOptions.arrowFill\n      },\n      leftArrow: {\n        type: ControlType.Image,\n        title: \"Previous\",\n        hidden: props => !props.showMouseControls\n      },\n      rightArrow: {\n        type: ControlType.Image,\n        title: \"Next\",\n        hidden: props => !props.showMouseControls\n      },\n      arrowSize: {\n        type: ControlType.Number,\n        title: \"Size\",\n        min: 0,\n        max: 200,\n        displayStepper: true,\n        defaultValue: Slideshow.defaultProps.arrowOptions.arrowSize,\n        hidden: props => !props.showMouseControls\n      },\n      arrowRadius: {\n        type: ControlType.Number,\n        title: \"Radius\",\n        min: 0,\n        max: 500,\n        defaultValue: 40,\n        hidden: props => !props.showMouseControls\n      },\n      arrowShouldFadeIn: {\n        type: ControlType.Boolean,\n        title: \"Fade In\",\n        defaultValue: false,\n        hidden: props => !props.showMouseControls\n      },\n      arrowShouldSpace: {\n        type: ControlType.Boolean,\n        title: \"Distance\",\n        enabledTitle: \"Space\",\n        disabledTitle: \"Group\",\n        defaultValue: Slideshow.defaultProps.arrowOptions.arrowShouldSpace,\n        hidden: props => !props.showMouseControls\n      },\n      arrowPosition: {\n        type: ControlType.Enum,\n        title: \"Position\",\n        options: [\"auto\", \"top-left\", \"top-mid\", \"top-right\", \"bottom-left\", \"bottom-mid\", \"bottom-right\"],\n        optionTitles: [\"Center\", \"Top Left\", \"Top Middle\", \"Top Right\", \"Bottom Left\", \"Bottom Middle\", \"Bottom Right\"],\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace\n      },\n      arrowPadding: {\n        type: ControlType.Number,\n        title: \"Inset\",\n        min: -100,\n        max: 100,\n        defaultValue: 20,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || !props.arrowShouldSpace\n      },\n      arrowPaddingTop: {\n        type: ControlType.Number,\n        title: \"Top\",\n        min: -500,\n        max: 500,\n        defaultValue: 0,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace || props.arrowPosition === \"auto\" || props.arrowPosition === \"bottom-mid\" || props.arrowPosition === \"bottom-left\" || props.arrowPosition === \"bottom-right\"\n      },\n      arrowPaddingBottom: {\n        type: ControlType.Number,\n        title: \"Bottom\",\n        min: -500,\n        max: 500,\n        defaultValue: 0,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace || props.arrowPosition === \"auto\" || props.arrowPosition === \"top-mid\" || props.arrowPosition === \"top-left\" || props.arrowPosition === \"top-right\"\n      },\n      arrowPaddingRight: {\n        type: ControlType.Number,\n        title: \"Right\",\n        min: -500,\n        max: 500,\n        defaultValue: 0,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace || props.arrowPosition === \"auto\" || props.arrowPosition === \"top-left\" || props.arrowPosition === \"top-mid\" || props.arrowPosition === \"bottom-left\" || props.arrowPosition === \"bottom-mid\"\n      },\n      arrowPaddingLeft: {\n        type: ControlType.Number,\n        title: \"Left\",\n        min: -500,\n        max: 500,\n        defaultValue: 0,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace || props.arrowPosition === \"auto\" || props.arrowPosition === \"top-right\" || props.arrowPosition === \"top-mid\" || props.arrowPosition === \"bottom-right\" || props.arrowPosition === \"bottom-mid\"\n      },\n      arrowGap: {\n        type: ControlType.Number,\n        title: \"Gap\",\n        min: 0,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showMouseControls || props.arrowShouldSpace\n      }\n    }\n  },\n  progressOptions: {\n    type: ControlType.Object,\n    title: \"Dots\",\n    controls: {\n      showProgressDots: {\n        type: ControlType.Boolean,\n        title: \"Show\",\n        defaultValue: false\n      },\n      dotSize: {\n        type: ControlType.Number,\n        title: \"Size\",\n        min: 1,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsInset: {\n        type: ControlType.Number,\n        title: \"Inset\",\n        min: -100,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsGap: {\n        type: ControlType.Number,\n        title: \"Gap\",\n        min: 0,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsPadding: {\n        type: ControlType.Number,\n        title: \"Padding\",\n        min: 0,\n        max: 100,\n        defaultValue: 10,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsFill: {\n        type: ControlType.Color,\n        title: \"Fill\",\n        defaultValue: \"#fff\",\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsBackground: {\n        type: ControlType.Color,\n        title: \"Backdrop\",\n        defaultValue: \"rgba(0,0,0,0.2)\",\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsRadius: {\n        type: ControlType.Number,\n        title: \"Radius\",\n        min: 0,\n        max: 200,\n        defaultValue: 50,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsOpacity: {\n        type: ControlType.Number,\n        title: \"Opacity\",\n        min: 0,\n        max: 1,\n        defaultValue: .5,\n        step: .1,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsActiveOpacity: {\n        type: ControlType.Number,\n        title: \"Current\",\n        min: 0,\n        max: 1,\n        defaultValue: 1,\n        step: .1,\n        displayStepper: true,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      },\n      dotsBlur: {\n        type: ControlType.Number,\n        title: \"Blur\",\n        min: 0,\n        max: 50,\n        defaultValue: 0,\n        step: 1,\n        hidden: props => !props.showProgressDots || props.showScrollbar\n      }\n    }\n  }\n}); /* Placeholder Styles */\nconst containerStyle = {\n  display: \"flex\",\n  flexDirection: \"row\",\n  width: \"100%\",\n  height: \"100%\",\n  maxWidth: \"100%\",\n  maxHeight: \"100%\",\n  placeItems: \"center\",\n  margin: 0,\n  padding: 0,\n  listStyleType: \"none\",\n  textIndent: \"none\"\n}; /* Component Styles */\nconst placeholderStyles = {\n  display: \"flex\",\n  width: \"100%\",\n  height: \"100%\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  flexDirection: \"column\",\n  color: \"#96F\",\n  background: \"rgba(136, 85, 255, 0.1)\",\n  fontSize: 11,\n  overflow: \"hidden\",\n  padding: \"20px 20px 30px 20px\"\n};\nconst emojiStyles = {\n  fontSize: 32,\n  marginBottom: 10\n};\nconst titleStyles = {\n  margin: 0,\n  marginBottom: 10,\n  fontWeight: 600,\n  textAlign: \"center\"\n};\nconst subtitleStyles = {\n  margin: 0,\n  opacity: .7,\n  maxWidth: 180,\n  lineHeight: 1.5,\n  textAlign: \"center\"\n}; /* Control Styles */\nconst baseButtonStyles = {\n  border: \"none\",\n  display: \"flex\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  overflow: \"hidden\",\n  background: \"transparent\",\n  cursor: \"pointer\",\n  margin: 0,\n  padding: 0\n};\nconst controlsStyles = {\n  display: \"flex\",\n  justifyContent: \"space-between\",\n  alignItems: \"center\",\n  position: \"absolute\",\n  pointerEvents: \"none\",\n  userSelect: \"none\",\n  top: 0,\n  left: 0,\n  right: 0,\n  bottom: 0,\n  border: 0,\n  padding: 0,\n  margin: 0\n}; /* Clamp function, used for fadeInset */\nconst clamp = (num, min, max) => Math.min(Math.max(num, min), max); /* Slide Component */\nconst Slide = /*#__PURE__*/forwardRef(function Component(props, ref) {\n  var _child_props, _child_props1;\n  const {\n    slideKey,\n    width,\n    height,\n    child,\n    size,\n    gap,\n    wrappedValue,\n    numChildren,\n    childCounter,\n    isCanvas,\n    effects,\n    effectsOpacity,\n    effectsScale,\n    effectsRotate,\n    isHorizontal,\n    isLast,\n    index\n  } = props; /**\n             * Unique offsets + scroll range [0, 1, 1, 0]\n             */\n  const childOffset = ((size === null || size === void 0 ? void 0 : size.item) + gap) * childCounter;\n  const scrollRange = [-(size === null || size === void 0 ? void 0 : size.item), 0, (size === null || size === void 0 ? void 0 : size.parent) - (size === null || size === void 0 ? void 0 : size.item) + gap, size === null || size === void 0 ? void 0 : size.parent].map(val => val - childOffset); /**\n                                                                                                                                                                                                                                                                                                       * Effects\n                                                                                                                                                                                                                                                                                                       */\n  const rotateY = !isCanvas && useTransform(wrappedValue, scrollRange, [-effectsRotate, 0, 0, effectsRotate]);\n  const rotateX = !isCanvas && useTransform(wrappedValue, scrollRange, [effectsRotate, 0, 0, -effectsRotate]);\n  const opacity = !isCanvas && useTransform(wrappedValue, scrollRange, [effectsOpacity, 1, 1, effectsOpacity]);\n  const scale = !isCanvas && useTransform(wrappedValue, scrollRange, [effectsScale, 1, 1, effectsScale]);\n  const originXorY = !isCanvas && useTransform(wrappedValue, scrollRange, [1, 1, 0, 0]);\n  const isVisible = !isCanvas && useTransform(wrappedValue, latest => latest >= scrollRange[1] && latest <= scrollRange[2]);\n  useEffect(() => {\n    if (!isVisible) return;\n    return isVisible.onChange(newValue => {\n      var _ref_current;\n      (_ref_current = ref.current) === null || _ref_current === void 0 ? void 0 : _ref_current.setAttribute(\"aria-hidden\", !newValue);\n    });\n  }, []);\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    inherit: \"id\",\n    children: /*#__PURE__*/_jsx(\"li\", {\n      style: {\n        display: \"contents\"\n      },\n      \"aria-hidden\": index === 0 ? false : true,\n      children: /*#__PURE__*/cloneElement(child, {\n        ref: ref,\n        key: slideKey + \"child\",\n        style: {\n          ...((_child_props = child.props) === null || _child_props === void 0 ? void 0 : _child_props.style),\n          flexShrink: 0,\n          userSelect: \"none\",\n          width,\n          height,\n          opacity: opacity,\n          scale: scale,\n          originX: isHorizontal ? originXorY : .5,\n          originY: !isHorizontal ? originXorY : .5,\n          rotateY: isHorizontal ? rotateY : 0,\n          rotateX: !isHorizontal ? rotateX : 0\n        },\n        layoutId: child.props.layoutId ? child.props.layoutId + \"-original-\" + index : undefined\n      }, (_child_props1 = child.props) === null || _child_props1 === void 0 ? void 0 : _child_props1.children)\n    })\n  });\n});\nfunction Dot({\n  selectedOpacity,\n  opacity,\n  total,\n  index,\n  wrappedIndex,\n  wrappedIndexInverted,\n  dotStyle,\n  buttonStyle,\n  gap,\n  padding,\n  isHorizontal,\n  isInverted,\n  ...props\n}) {\n  /* Check active item */ /* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected = wrappedIndex === index; /* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */\n  if (isInverted) {\n    isSelected = Math.abs(wrappedIndexInverted) === index;\n  }\n  const inlinePadding = gap / 2;\n  let top = !isHorizontal && index > 0 ? inlinePadding : padding;\n  let bottom = !isHorizontal && index !== total - 1 ? inlinePadding : padding;\n  let right = isHorizontal && index !== total - 1 ? inlinePadding : padding;\n  let left = isHorizontal && index > 0 ? inlinePadding : padding;\n  return /*#__PURE__*/_jsx(\"button\", {\n    \"aria-label\": `Scroll to page ${index + 1}`,\n    type: \"button\",\n    ...props,\n    style: {\n      ...buttonStyle,\n      padding: `${top}px ${right}px ${bottom}px ${left}px`\n    },\n    children: /*#__PURE__*/_jsx(motion.div, {\n      style: {\n        ...dotStyle\n      },\n      initial: false,\n      animate: {\n        opacity: isSelected ? selectedOpacity : opacity\n      },\n      transition: {\n        duration: .3\n      }\n    })\n  });\n} /* Dot Styles */\nconst dotsContainerStyle = {\n  display: \"flex\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  overflow: \"hidden\",\n  position: \"absolute\",\n  pointerEvents: \"auto\"\n};\nconst dotStyle = {\n  borderRadius: \"50%\",\n  background: \"white\",\n  cursor: \"pointer\",\n  border: \"none\",\n  placeContent: \"center\",\n  placeItems: \"center\",\n  padding: 0\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Slideshow\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"400\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerDisableUnlink\": \"*\",\n        \"framerIntrinsicHeight\": \"200\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (91d32d4)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, getPropertyControls, RichText, SVG, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Icon as Phosphor } from \"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/2gMruy7amXPDqTIkaugv/aKzebC6nSm2fRh8AIIJ9/lRsXV26W5.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/sBUdHKZi3zQNObW0xzFz/Ng5yrfWcSSEGs7Q2ORVN/RgdfCQ6UD.js\";\nconst PhosphorFonts = getFonts(Phosphor);\nconst PhosphorControls = getPropertyControls(Phosphor);\nconst cycleOrder = [\"w0m8t2Yuw\", \"A5yNaHbb7\"];\nconst serializationHash = \"framer-O0Cel\";\nconst variantClassNames = {\n  A5yNaHbb7: \"framer-v-7y4ll4\",\n  w0m8t2Yuw: \"framer-v-1mssecd\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  \"Variant 1\": \"w0m8t2Yuw\",\n  \"Variant 2\": \"A5yNaHbb7\"\n};\nconst getProps = ({\n  description,\n  height,\n  icon,\n  id,\n  title,\n  width,\n  ...props\n}) => {\n  var _ref, _ref1, _humanReadableVariantMap_props_variant, _ref2, _ref3;\n  return {\n    ...props,\n    DhgTtGpRc: (_ref = icon !== null && icon !== void 0 ? icon : props.DhgTtGpRc) !== null && _ref !== void 0 ? _ref : \"ArrowsLeftRight\",\n    MprbWBg7g: (_ref1 = title !== null && title !== void 0 ? title : props.MprbWBg7g) !== null && _ref1 !== void 0 ? _ref1 : \"Send & Receive\",\n    variant: (_ref2 = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref2 !== void 0 ? _ref2 : \"w0m8t2Yuw\",\n    vHJIz7jem: (_ref3 = description !== null && description !== void 0 ? description : props.vHJIz7jem) !== null && _ref3 !== void 0 ? _ref3 : \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Feugiat nulla suspendisse tortor aene.\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale,\n    setLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    MprbWBg7g,\n    vHJIz7jem,\n    DhgTtGpRc,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"w0m8t2Yuw\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const isDisplayed = () => {\n    if (baseVariant === \"A5yNaHbb7\") return false;\n    return true;\n  };\n  const isDisplayed1 = () => {\n    if (baseVariant === \"A5yNaHbb7\") return true;\n    return false;\n  };\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(Transition, {\n      value: transition,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        animate: variants,\n        className: cx(serializationHash, ...sharedStyleClassNames, \"framer-1mssecd\", className, classNames),\n        \"data-framer-name\": \"Variant 1\",\n        initial: variant,\n        layoutDependency: layoutDependency,\n        layoutId: \"w0m8t2Yuw\",\n        onHoverEnd: () => setGestureState({\n          isHovered: false\n        }),\n        onHoverStart: () => setGestureState({\n          isHovered: true\n        }),\n        onTap: () => setGestureState({\n          isPressed: false\n        }),\n        onTapCancel: () => setGestureState({\n          isPressed: false\n        }),\n        onTapStart: () => setGestureState({\n          isPressed: true\n        }),\n        ref: ref !== null && ref !== void 0 ? ref : ref1,\n        style: {\n          backgroundColor: \"var(--token-522293bd-7fc5-4561-96b8-a61ab2563894, rgb(18, 0, 65))\",\n          borderBottomLeftRadius: 40,\n          borderBottomRightRadius: 40,\n          borderTopLeftRadius: 40,\n          borderTopRightRadius: 40,\n          ...style\n        },\n        ...addPropertyOverrides({\n          A5yNaHbb7: {\n            \"data-framer-name\": \"Variant 2\"\n          }\n        }, baseVariant, gestureVariant),\n        children: [isDisplayed() && /*#__PURE__*/_jsx(SVG, {\n          className: \"framer-zijhqh\",\n          \"data-framer-name\": \"div\",\n          fill: \"rgba(0,0,0,1)\",\n          intrinsicHeight: 68,\n          intrinsicWidth: 68,\n          layoutDependency: layoutDependency,\n          layoutId: \"jreS68ZJB\",\n          svg: '<svg width=\"68\" height=\"68\" viewBox=\"0 0 68 68\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"68\" height=\"68\" rx=\"20\" fill=\"url(#paint0_linear_2_515)\"/>\\n<g opacity=\"0.84992\" clip-path=\"url(#clip0_2_515)\">\\n<path opacity=\"0.4\" d=\"M15.7513 22.5122H39.5485C40.6494 22.5122 41.5429 23.4052 41.5429 24.5055C41.5429 25.6057 40.6494 26.4988 39.5485 26.4988H15.7513C14.6504 26.4988 13.7569 25.6057 13.7569 24.5055C13.7569 23.4052 14.6504 22.5122 15.7513 22.5122Z\" fill=\"white\"/>\\n<mask id=\"mask0_2_515\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"37\" y=\"14\" width=\"18\" height=\"22\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M37.4186 35.4653V14H54.5797V35.4653H37.4186Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2_515)\">\\n<path d=\"M38.7655 14.1832C39.017 14.1832 39.2648 14.2532 39.4838 14.3896L53.7361 23.3658C54.1276 23.6135 54.3665 24.0425 54.3665 24.5055C54.3665 24.9686 54.1276 25.3977 53.7361 25.6453L39.4838 34.6215C39.069 34.8818 38.5446 34.898 38.1154 34.6592C37.6844 34.4223 37.4186 33.9718 37.4186 33.4818V15.5294C37.4186 15.0394 37.6844 14.5889 38.1154 14.3519C38.3183 14.2389 38.5428 14.1832 38.7655 14.1832Z\" fill=\"white\"/>\\n</g>\\n<path opacity=\"0.4\" d=\"M52.3188 46.059H28.5216C27.4206 46.059 26.5272 45.1659 26.5272 44.0657C26.5272 42.9653 27.4206 42.0724 28.5216 42.0724H52.3188C53.4197 42.0724 54.3132 42.9653 54.3132 44.0657C54.3132 45.1659 53.4197 46.059 52.3188 46.059Z\" fill=\"white\"/>\\n<mask id=\"mask1_2_515\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"13\" y=\"33\" width=\"18\" height=\"22\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.5156 33.1058V54.5711H13.3544V33.1058H30.5156Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_2_515)\">\\n<path d=\"M29.1686 54.3878C28.9172 54.3878 28.6694 54.3178 28.4503 54.1815L14.1981 45.2053C13.8065 44.9575 13.5677 44.5286 13.5677 44.0655C13.5677 43.6025 13.8065 43.1734 14.1981 42.9258L28.4503 33.9496C28.8652 33.6893 29.3896 33.6732 29.8187 33.9118C30.2498 34.1488 30.5156 34.5993 30.5156 35.0893V53.0418C30.5156 53.5317 30.2498 53.9822 29.8187 54.2191C29.6158 54.3322 29.3913 54.3878 29.1686 54.3878Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_2_515\" x1=\"34\" y1=\"0\" x2=\"34\" y2=\"68\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B35F35\"/>\\n<stop offset=\"0.401042\" stop-color=\"#8F30B5\"/>\\n<stop offset=\"1\" stop-color=\"#5826EB\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_2_515\">\\n<rect width=\"42\" height=\"41\" fill=\"white\" transform=\"translate(13 14)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',\n          withExternalLayout: true\n        }), /*#__PURE__*/_jsxs(motion.div, {\n          className: \"framer-fhlyww\",\n          layoutDependency: layoutDependency,\n          layoutId: \"SW9kyntKn\",\n          children: [/*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(motion.h6, {\n                className: \"framer-styles-preset-1g1z1rb\",\n                \"data-styles-preset\": \"lRsXV26W5\",\n                children: \"Send & Receive\"\n              })\n            }),\n            className: \"framer-p4zsyv\",\n            layoutDependency: layoutDependency,\n            layoutId: \"ZTdvHwPjD\",\n            style: {\n              \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n              \"--framer-link-text-decoration\": \"underline\",\n              \"--framer-paragraph-spacing\": \"0px\"\n            },\n            text: MprbWBg7g,\n            verticalAlignment: \"top\",\n            withExternalLayout: true\n          }), /*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(motion.p, {\n                className: \"framer-styles-preset-1kzzvrn\",\n                \"data-styles-preset\": \"RgdfCQ6UD\",\n                children: \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Feugiat nulla suspendisse tortor aene.\"\n              })\n            }),\n            className: \"framer-snwzz2\",\n            layoutDependency: layoutDependency,\n            layoutId: \"G_gHSZxko\",\n            style: {\n              \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n              \"--framer-link-text-decoration\": \"underline\",\n              \"--framer-paragraph-spacing\": \"0px\"\n            },\n            text: vHJIz7jem,\n            verticalAlignment: \"top\",\n            withExternalLayout: true\n          })]\n        }), isDisplayed1() && /*#__PURE__*/_jsx(motion.div, {\n          className: \"framer-xq6zv\",\n          layoutDependency: layoutDependency,\n          layoutId: \"rmOMrQXH4\",\n          style: {\n            background: \"linear-gradient(180deg, #B35F35 0%, #8F30B5 39.24021677927928%, #5826EB 100%)\",\n            borderBottomLeftRadius: 15,\n            borderBottomRightRadius: 15,\n            borderTopLeftRadius: 15,\n            borderTopRightRadius: 15\n          },\n          children: isDisplayed1() && /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1r9zj7m-container\",\n            layoutDependency: layoutDependency,\n            layoutId: \"jOVeJcDmP-container\",\n            children: /*#__PURE__*/_jsx(Phosphor, {\n              color: 'var(--token-32074f64-7f4e-4d7a-b85b-ed773919a9cb, rgb(255, 255, 255)) /* {\"name\":\"white\"} */',\n              height: \"100%\",\n              iconSearch: \"House\",\n              iconSelection: DhgTtGpRc,\n              id: \"jOVeJcDmP\",\n              layoutId: \"jOVeJcDmP\",\n              mirrored: true,\n              selectByList: true,\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              weight: \"regular\",\n              width: \"100%\"\n            })\n          })\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-O0Cel[data-border=\"true\"]::after, .framer-O0Cel [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-O0Cel.framer-1gr9ulg, .framer-O0Cel .framer-1gr9ulg { display: block; }\", \".framer-O0Cel.framer-1mssecd { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-start; overflow: hidden; padding: 40px 20px 40px 20px; position: relative; width: 308px; will-change: var(--framer-will-change-override, transform); }\", \".framer-O0Cel .framer-zijhqh { flex: none; height: 68px; position: relative; width: 68px; }\", \".framer-O0Cel .framer-fhlyww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 268px; }\", \".framer-O0Cel .framer-p4zsyv, .framer-O0Cel .framer-snwzz2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-O0Cel .framer-xq6zv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 68px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 68px; }\", \".framer-O0Cel .framer-1r9zj7m-container { flex: none; height: 50px; position: relative; width: 50px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O0Cel.framer-1mssecd, .framer-O0Cel .framer-fhlyww, .framer-O0Cel .framer-xq6zv { gap: 0px; } .framer-O0Cel.framer-1mssecd > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-O0Cel.framer-1mssecd > :first-child, .framer-O0Cel .framer-fhlyww > :first-child { margin-top: 0px; } .framer-O0Cel.framer-1mssecd > :last-child, .framer-O0Cel .framer-fhlyww > :last-child { margin-bottom: 0px; } .framer-O0Cel .framer-fhlyww > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-O0Cel .framer-xq6zv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-O0Cel .framer-xq6zv > :first-child { margin-left: 0px; } .framer-O0Cel .framer-xq6zv > :last-child { margin-right: 0px; } }\", \".framer-O0Cel.framer-v-7y4ll4.framer-1mssecd { gap: 24px; }\", \".framer-O0Cel.framer-v-7y4ll4 .framer-fhlyww { gap: 16px; height: 106px; order: 2; width: 100%; }\", \".framer-O0Cel.framer-v-7y4ll4 .framer-xq6zv { order: 0; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O0Cel.framer-v-7y4ll4.framer-1mssecd, .framer-O0Cel.framer-v-7y4ll4 .framer-fhlyww { gap: 0px; } .framer-O0Cel.framer-v-7y4ll4.framer-1mssecd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-O0Cel.framer-v-7y4ll4.framer-1mssecd > :first-child, .framer-O0Cel.framer-v-7y4ll4 .framer-fhlyww > :first-child { margin-top: 0px; } .framer-O0Cel.framer-v-7y4ll4.framer-1mssecd > :last-child, .framer-O0Cel.framer-v-7y4ll4 .framer-fhlyww > :last-child { margin-bottom: 0px; } .framer-O0Cel.framer-v-7y4ll4 .framer-fhlyww > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicHeight 278\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicWidth 308\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"A5yNaHbb7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerVariables {\"MprbWBg7g\":\"title\",\"vHJIz7jem\":\"description\",\"DhgTtGpRc\":\"icon\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerDisplayContentsDiv false\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             */\nconst Framerf4FKvrZNr = withCSS(Component, css, \"framer-O0Cel\");\nexport default Framerf4FKvrZNr;\nFramerf4FKvrZNr.displayName = \"Feature cards\";\nFramerf4FKvrZNr.defaultProps = {\n  height: 278,\n  width: 308\n};\naddPropertyControls(Framerf4FKvrZNr, {\n  variant: {\n    options: [\"w0m8t2Yuw\", \"A5yNaHbb7\"],\n    optionTitles: [\"Variant 1\", \"Variant 2\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  MprbWBg7g: {\n    defaultValue: \"Send & Receive\",\n    displayTextArea: false,\n    title: \"Title\",\n    type: ControlType.String\n  },\n  vHJIz7jem: {\n    defaultValue: \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Feugiat nulla suspendisse tortor aene.\",\n    displayTextArea: false,\n    title: \"Description\",\n    type: ControlType.String\n  },\n  DhgTtGpRc: (PhosphorControls === null || PhosphorControls === void 0 ? void 0 : PhosphorControls[\"iconSelection\"]) && {\n    ...PhosphorControls[\"iconSelection\"],\n    defaultValue: \"ArrowsLeftRight\",\n    hidden: undefined,\n    title: \"Icon\"\n  }\n});\naddFonts(Framerf4FKvrZNr, [...PhosphorFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Framerf4FKvrZNr\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicWidth\": \"308\",\n        \"framerVariables\": \"{\\\"MprbWBg7g\\\":\\\"title\\\",\\\"vHJIz7jem\\\":\\\"description\\\",\\\"DhgTtGpRc\\\":\\\"icon\\\"}\",\n        \"framerIntrinsicHeight\": \"278\",\n        \"framerContractVersion\": \"1\",\n        \"framerDisplayContentsDiv\": \"false\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A5yNaHbb7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./f4FKvrZNr.map", "// Generated by Framer (91d32d4)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, Image, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nconst cycleOrder = [\"ykhqZ8LlZ\", \"ThCEysQZe\", \"BeeycApEI\", \"NmVQ5PWYP\"];\nconst serializationHash = \"framer-t4U3e\";\nconst variantClassNames = {\n  BeeycApEI: \"framer-v-17w801c\",\n  NmVQ5PWYP: \"framer-v-idbfyj\",\n  ThCEysQZe: \"framer-v-1ft20gf\",\n  ykhqZ8LlZ: \"framer-v-1di33hs\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  \"Standings Dark\": \"BeeycApEI\",\n  \"Standings Light\": \"ykhqZ8LlZ\",\n  \"Variant 2\": \"ThCEysQZe\",\n  \"Variant 4\": \"NmVQ5PWYP\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"ykhqZ8LlZ\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale,\n    setLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"ykhqZ8LlZ\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(Transition, {\n      value: transition,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        animate: variants,\n        className: cx(serializationHash, ...sharedStyleClassNames, \"framer-1di33hs\", className, classNames),\n        \"data-framer-name\": \"Standings Light\",\n        initial: variant,\n        layoutDependency: layoutDependency,\n        layoutId: \"ykhqZ8LlZ\",\n        onHoverEnd: () => setGestureState({\n          isHovered: false\n        }),\n        onHoverStart: () => setGestureState({\n          isHovered: true\n        }),\n        onTap: () => setGestureState({\n          isPressed: false\n        }),\n        onTapCancel: () => setGestureState({\n          isPressed: false\n        }),\n        onTapStart: () => setGestureState({\n          isPressed: true\n        }),\n        ref: ref !== null && ref !== void 0 ? ref : ref1,\n        style: {\n          ...style\n        },\n        ...addPropertyOverrides({\n          BeeycApEI: {\n            \"data-framer-name\": \"Standings Dark\"\n          },\n          NmVQ5PWYP: {\n            \"data-framer-name\": \"Variant 4\"\n          },\n          ThCEysQZe: {\n            \"data-framer-name\": \"Variant 2\"\n          }\n        }, baseVariant, gestureVariant),\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          className: \"framer-ulrj06\",\n          \"data-framer-name\": \"Body\",\n          layoutDependency: layoutDependency,\n          layoutId: \"XNsdxuZjZ\",\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-xblfww\",\n            \"data-framer-name\": \"Body 2\",\n            layoutDependency: layoutDependency,\n            layoutId: \"I1SRsdwvB\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: 36.31,\n              borderBottomRightRadius: 36.31,\n              borderTopLeftRadius: 36.31,\n              borderTopRightRadius: 36.31\n            }\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1ma7ygu\",\n            \"data-framer-name\": \"Body 1\",\n            layoutDependency: layoutDependency,\n            layoutId: \"WWMTYOanu\",\n            style: {\n              backgroundColor: \"rgb(35, 33, 59)\",\n              borderBottomLeftRadius: 33.19,\n              borderBottomRightRadius: 33.19,\n              borderTopLeftRadius: 33.19,\n              borderTopRightRadius: 33.19\n            }\n          })]\n        }), /*#__PURE__*/_jsxs(motion.div, {\n          className: \"framer-15g5naw\",\n          \"data-framer-name\": \"Buttons\",\n          layoutDependency: layoutDependency,\n          layoutId: \"P3gWh80Jz\",\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-vor9o0\",\n            \"data-framer-name\": \"+ Button\",\n            layoutDependency: layoutDependency,\n            layoutId: \"i6Wxb37rm\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: .78,\n              borderBottomRightRadius: .78,\n              borderTopLeftRadius: .78,\n              borderTopRightRadius: .78\n            }\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1tfiqn7\",\n            \"data-framer-name\": \"+ Button\",\n            layoutDependency: layoutDependency,\n            layoutId: \"Zz0vgJYBW\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: .78,\n              borderBottomRightRadius: .78,\n              borderTopLeftRadius: .78,\n              borderTopRightRadius: .78\n            }\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-ndotu6\",\n            \"data-framer-name\": \"Silence Button\",\n            layoutDependency: layoutDependency,\n            layoutId: \"kEjND6f88\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: .78,\n              borderBottomRightRadius: .78,\n              borderTopLeftRadius: .78,\n              borderTopRightRadius: .78\n            }\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-efq965\",\n            \"data-framer-name\": \"Power Button\",\n            layoutDependency: layoutDependency,\n            layoutId: \"q4HbVjQOM\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: .78,\n              borderBottomRightRadius: .78,\n              borderTopLeftRadius: .78,\n              borderTopRightRadius: .78\n            }\n          })]\n        }), /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 2556,\n            intrinsicWidth: 1179,\n            pixelHeight: 2556,\n            pixelWidth: 1179,\n            sizes: \"214px\",\n            src: \"https://framerusercontent.com/images/caSLR2OEcxBCF88P838qAvbDmyQ.png\",\n            srcSet: \"https://framerusercontent.com/images/caSLR2OEcxBCF88P838qAvbDmyQ.png?scale-down-to=2048 944w, https://framerusercontent.com/images/caSLR2OEcxBCF88P838qAvbDmyQ.png 1179w\"\n          },\n          className: \"framer-1e5nng0\",\n          \"data-framer-name\": \"Screen (replace here)\",\n          layoutDependency: layoutDependency,\n          layoutId: \"JX_92DDP4\",\n          style: {\n            borderBottomLeftRadius: 27.37,\n            borderBottomRightRadius: 27.37,\n            borderTopLeftRadius: 27.37,\n            borderTopRightRadius: 27.37\n          },\n          ...addPropertyOverrides({\n            BeeycApEI: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 2556,\n                intrinsicWidth: 1179,\n                pixelHeight: 2556,\n                pixelWidth: 1179,\n                sizes: \"214px\",\n                src: \"https://framerusercontent.com/images/ay7xT6rmRBpBsTjwEp40ANo6ZA.png\",\n                srcSet: \"https://framerusercontent.com/images/ay7xT6rmRBpBsTjwEp40ANo6ZA.png?scale-down-to=2048 944w, https://framerusercontent.com/images/ay7xT6rmRBpBsTjwEp40ANo6ZA.png 1179w\"\n              }\n            },\n            NmVQ5PWYP: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 2556,\n                intrinsicWidth: 1179,\n                pixelHeight: 2556,\n                pixelWidth: 1179,\n                sizes: \"214px\",\n                src: \"https://framerusercontent.com/images/LI52epwmoVNp8YnHjLUydsGCI.png\",\n                srcSet: \"https://framerusercontent.com/images/LI52epwmoVNp8YnHjLUydsGCI.png?scale-down-to=2048 944w, https://framerusercontent.com/images/LI52epwmoVNp8YnHjLUydsGCI.png 1179w\"\n              }\n            },\n            ThCEysQZe: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 2556,\n                intrinsicWidth: 1179,\n                pixelHeight: 2556,\n                pixelWidth: 1179,\n                sizes: \"214px\",\n                src: \"https://framerusercontent.com/images/oiOz9GJfWBbMmyN8MOjVxZlFT8.png\",\n                srcSet: \"https://framerusercontent.com/images/oiOz9GJfWBbMmyN8MOjVxZlFT8.png?scale-down-to=2048 944w, https://framerusercontent.com/images/oiOz9GJfWBbMmyN8MOjVxZlFT8.png 1179w\"\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), /*#__PURE__*/_jsx(motion.div, {\n          className: \"framer-1eo4jg0\",\n          \"data-framer-name\": \"Dinamy Island\",\n          layoutDependency: layoutDependency,\n          layoutId: \"iuokSxf_m\",\n          style: {\n            backgroundColor: \"rgb(28, 27, 45)\",\n            borderBottomLeftRadius: 26.88,\n            borderBottomRightRadius: 26.88,\n            borderTopLeftRadius: 26.88,\n            borderTopRightRadius: 26.88\n          }\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-t4U3e[data-border=\"true\"]::after, .framer-t4U3e [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-t4U3e.framer-xa53k2, .framer-t4U3e .framer-xa53k2 { display: block; }\", \".framer-t4U3e.framer-1di33hs { height: 481px; overflow: visible; position: relative; width: 236px; }\", \".framer-t4U3e .framer-ulrj06 { flex: none; height: 481px; left: 2px; overflow: visible; position: absolute; top: 0px; width: 232px; }\", \".framer-t4U3e .framer-xblfww { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\", \".framer-t4U3e .framer-1ma7ygu { bottom: 4px; flex: none; left: 4px; position: absolute; right: 3px; top: 3px; }\", \".framer-t4U3e .framer-15g5naw { flex: none; height: 108px; left: 0px; overflow: visible; position: absolute; top: 85px; width: 235px; }\", \".framer-t4U3e .framer-vor9o0 { bottom: 42px; flex: none; left: 0px; position: absolute; right: 234px; top: 32px; }\", \".framer-t4U3e .framer-1tfiqn7 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 234px; top: 74px; }\", \".framer-t4U3e .framer-ndotu6 { bottom: 91px; flex: none; left: 0px; position: absolute; right: 234px; top: 0px; }\", \".framer-t4U3e .framer-efq965 { bottom: 0px; flex: none; left: 234px; position: absolute; right: 0px; top: 55px; }\", \".framer-t4U3e .framer-1e5nng0 { flex: none; height: 462px; left: calc(50.00000000000002% - 214px / 2); position: absolute; top: calc(50.103950103950126% - 462px / 2); width: 214px; }\", \".framer-t4U3e .framer-1eo4jg0 { bottom: 447px; flex: none; left: 86px; position: absolute; right: 87px; top: 15px; }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerIntrinsicHeight 481\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerIntrinsicWidth 236\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ThCEysQZe\":{\"layout\":[\"fixed\",\"fixed\"]},\"BeeycApEI\":{\"layout\":[\"fixed\",\"fixed\"]},\"NmVQ5PWYP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            * @framerDisplayContentsDiv false\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            */\nconst FramerfrzDF2raE = withCSS(Component, css, \"framer-t4U3e\");\nexport default FramerfrzDF2raE;\nFramerfrzDF2raE.displayName = \"Smaller-phone\";\nFramerfrzDF2raE.defaultProps = {\n  height: 481,\n  width: 236\n};\naddPropertyControls(FramerfrzDF2raE, {\n  variant: {\n    options: [\"ykhqZ8LlZ\", \"ThCEysQZe\", \"BeeycApEI\", \"NmVQ5PWYP\"],\n    optionTitles: [\"Standings Light\", \"Variant 2\", \"Standings Dark\", \"Variant 4\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  }\n});\naddFonts(FramerfrzDF2raE, []);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerfrzDF2raE\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"236\",\n        \"framerDisplayContentsDiv\": \"false\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ThCEysQZe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BeeycApEI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NmVQ5PWYP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicHeight\": \"481\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./frzDF2raE.map", "// Generated by Framer (91d32d4)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, Image, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nconst cycleOrder = [\"HL3ewo1bP\", \"bGSw0cZn8\", \"ZNxtjS5Kj\", \"YgGQwMLtQ\", \"sn8rUqoH1\", \"miiIf4r9P\"];\nconst serializationHash = \"framer-VVTcr\";\nconst variantClassNames = {\n  bGSw0cZn8: \"framer-v-1m7y0et\",\n  HL3ewo1bP: \"framer-v-1qurg1w\",\n  miiIf4r9P: \"framer-v-14i9qmw\",\n  sn8rUqoH1: \"framer-v-1hu0qo7\",\n  YgGQwMLtQ: \"framer-v-kn4166\",\n  ZNxtjS5Kj: \"framer-v-1ww33df\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  \"Compare Players\": \"miiIf4r9P\",\n  \"Import Leagues\": \"sn8rUqoH1\",\n  \"Sign-up\": \"YgGQwMLtQ\",\n  \"Trade Analyzer\": \"ZNxtjS5Kj\",\n  Matchup: \"bGSw0cZn8\",\n  Standings: \"HL3ewo1bP\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"HL3ewo1bP\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale,\n    setLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"HL3ewo1bP\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(Transition, {\n      value: transition,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        animate: variants,\n        className: cx(serializationHash, ...sharedStyleClassNames, \"framer-1qurg1w\", className, classNames),\n        \"data-framer-name\": \"Standings\",\n        initial: variant,\n        layoutDependency: layoutDependency,\n        layoutId: \"HL3ewo1bP\",\n        onHoverEnd: () => setGestureState({\n          isHovered: false\n        }),\n        onHoverStart: () => setGestureState({\n          isHovered: true\n        }),\n        onTap: () => setGestureState({\n          isPressed: false\n        }),\n        onTapCancel: () => setGestureState({\n          isPressed: false\n        }),\n        onTapStart: () => setGestureState({\n          isPressed: true\n        }),\n        ref: ref !== null && ref !== void 0 ? ref : ref1,\n        style: {\n          ...style\n        },\n        ...addPropertyOverrides({\n          bGSw0cZn8: {\n            \"data-framer-name\": \"Matchup\"\n          },\n          miiIf4r9P: {\n            \"data-framer-name\": \"Compare Players\"\n          },\n          sn8rUqoH1: {\n            \"data-framer-name\": \"Import Leagues\"\n          },\n          YgGQwMLtQ: {\n            \"data-framer-name\": \"Sign-up\"\n          },\n          ZNxtjS5Kj: {\n            \"data-framer-name\": \"Trade Analyzer\"\n          }\n        }, baseVariant, gestureVariant),\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          className: \"framer-j72mwv\",\n          \"data-framer-name\": \"Body\",\n          layoutDependency: layoutDependency,\n          layoutId: \"t9JpDqeBB\",\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-t4ohff\",\n            \"data-framer-name\": \"Body 2\",\n            layoutDependency: layoutDependency,\n            layoutId: \"DECQ5pMXv\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: 41.16,\n              borderBottomRightRadius: 41.16,\n              borderTopLeftRadius: 41.16,\n              borderTopRightRadius: 41.16\n            }\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1c70c6g\",\n            \"data-framer-name\": \"Body 1\",\n            layoutDependency: layoutDependency,\n            layoutId: \"mLrwBbW1Z\",\n            style: {\n              backgroundColor: \"rgb(35, 33, 59)\",\n              borderBottomLeftRadius: 37.62,\n              borderBottomRightRadius: 37.62,\n              borderTopLeftRadius: 37.62,\n              borderTopRightRadius: 37.62\n            }\n          })]\n        }), /*#__PURE__*/_jsxs(motion.div, {\n          className: \"framer-1t0xmi9\",\n          \"data-framer-name\": \"Buttons\",\n          layoutDependency: layoutDependency,\n          layoutId: \"GiH1CcVGD\",\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1vto9yu\",\n            \"data-framer-name\": \"+ Button\",\n            layoutDependency: layoutDependency,\n            layoutId: \"WfVw4zdJB\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: .88,\n              borderBottomRightRadius: .88,\n              borderTopLeftRadius: .88,\n              borderTopRightRadius: .88\n            }\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-tkg8k\",\n            \"data-framer-name\": \"+ Button\",\n            layoutDependency: layoutDependency,\n            layoutId: \"B1XGEMuRB\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: .88,\n              borderBottomRightRadius: .88,\n              borderTopLeftRadius: .88,\n              borderTopRightRadius: .88\n            }\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1s5wfg3\",\n            \"data-framer-name\": \"Silence Button\",\n            layoutDependency: layoutDependency,\n            layoutId: \"YuknUoymi\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: .88,\n              borderBottomRightRadius: .88,\n              borderTopLeftRadius: .88,\n              borderTopRightRadius: .88\n            }\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1gi2rls\",\n            \"data-framer-name\": \"Power Button\",\n            layoutDependency: layoutDependency,\n            layoutId: \"zU6dwxJ4c\",\n            style: {\n              backgroundColor: \"rgb(28, 27, 45)\",\n              borderBottomLeftRadius: .88,\n              borderBottomRightRadius: .88,\n              borderTopLeftRadius: .88,\n              borderTopRightRadius: .88\n            }\n          })]\n        }), /*#__PURE__*/_jsx(Image, {\n          background: {\n            alt: \"\",\n            fit: \"fill\",\n            intrinsicHeight: 2556,\n            intrinsicWidth: 1179,\n            pixelHeight: 2556,\n            pixelWidth: 1179,\n            sizes: \"calc(min(267px, 100vw) - 25.146px)\",\n            src: \"https://framerusercontent.com/images/LBbUtruBDxPQiJiSezwbyYASQA.png\",\n            srcSet: \"https://framerusercontent.com/images/LBbUtruBDxPQiJiSezwbyYASQA.png?scale-down-to=2048 944w, https://framerusercontent.com/images/LBbUtruBDxPQiJiSezwbyYASQA.png 1179w\"\n          },\n          className: \"framer-xeafjd\",\n          \"data-framer-name\": \"Screen (replace here)\",\n          layoutDependency: layoutDependency,\n          layoutId: \"Z28daHN29\",\n          style: {\n            borderBottomLeftRadius: 31.03,\n            borderBottomRightRadius: 31.03,\n            borderTopLeftRadius: 31.03,\n            borderTopRightRadius: 31.03\n          },\n          ...addPropertyOverrides({\n            bGSw0cZn8: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 2556,\n                intrinsicWidth: 1179,\n                pixelHeight: 2556,\n                pixelWidth: 1179,\n                sizes: \"calc(min(267px, 100vw) - 25.146px)\",\n                src: \"https://framerusercontent.com/images/oiOz9GJfWBbMmyN8MOjVxZlFT8.png\",\n                srcSet: \"https://framerusercontent.com/images/oiOz9GJfWBbMmyN8MOjVxZlFT8.png?scale-down-to=2048 944w, https://framerusercontent.com/images/oiOz9GJfWBbMmyN8MOjVxZlFT8.png 1179w\"\n              }\n            },\n            miiIf4r9P: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 2556,\n                intrinsicWidth: 1179,\n                pixelHeight: 2556,\n                pixelWidth: 1179,\n                sizes: \"calc(min(267px, 100vw) - 25.146px)\",\n                src: \"https://framerusercontent.com/images/babb89QTKK4Itr6LjRyOtbIsFeg.png\",\n                srcSet: \"https://framerusercontent.com/images/babb89QTKK4Itr6LjRyOtbIsFeg.png?scale-down-to=2048 944w, https://framerusercontent.com/images/babb89QTKK4Itr6LjRyOtbIsFeg.png 1179w\"\n              }\n            },\n            sn8rUqoH1: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 2556,\n                intrinsicWidth: 1179,\n                pixelHeight: 2556,\n                pixelWidth: 1179,\n                sizes: \"calc(min(267px, 100vw) - 25.146px)\",\n                src: \"https://framerusercontent.com/images/k6j482dtZ4T5QjbU3gqBC4UnQk.png\",\n                srcSet: \"https://framerusercontent.com/images/k6j482dtZ4T5QjbU3gqBC4UnQk.png?scale-down-to=2048 944w, https://framerusercontent.com/images/k6j482dtZ4T5QjbU3gqBC4UnQk.png 1179w\"\n              }\n            },\n            YgGQwMLtQ: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 2556,\n                intrinsicWidth: 1179,\n                pixelHeight: 2556,\n                pixelWidth: 1179,\n                sizes: \"calc(min(267px, 100vw) - 25.146px)\",\n                src: \"https://framerusercontent.com/images/k6j482dtZ4T5QjbU3gqBC4UnQk.png\",\n                srcSet: \"https://framerusercontent.com/images/k6j482dtZ4T5QjbU3gqBC4UnQk.png?scale-down-to=2048 944w, https://framerusercontent.com/images/k6j482dtZ4T5QjbU3gqBC4UnQk.png 1179w\"\n              }\n            },\n            ZNxtjS5Kj: {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 2556,\n                intrinsicWidth: 1179,\n                pixelHeight: 2556,\n                pixelWidth: 1179,\n                sizes: \"calc(min(267px, 100vw) - 25.146px)\",\n                src: \"https://framerusercontent.com/images/LI52epwmoVNp8YnHjLUydsGCI.png\",\n                srcSet: \"https://framerusercontent.com/images/LI52epwmoVNp8YnHjLUydsGCI.png?scale-down-to=2048 944w, https://framerusercontent.com/images/LI52epwmoVNp8YnHjLUydsGCI.png 1179w\"\n              }\n            }\n          }, baseVariant, gestureVariant)\n        }), /*#__PURE__*/_jsx(motion.div, {\n          className: \"framer-1ca2mo7\",\n          \"data-framer-name\": \"Dinamy Island\",\n          layoutDependency: layoutDependency,\n          layoutId: \"pNAqcUcQc\",\n          style: {\n            backgroundColor: \"rgb(28, 27, 45)\",\n            borderBottomLeftRadius: 30.47,\n            borderBottomRightRadius: 30.47,\n            borderTopLeftRadius: 30.47,\n            borderTopRightRadius: 30.47\n          }\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-VVTcr[data-border=\"true\"]::after, .framer-VVTcr [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-VVTcr.framer-drx811, .framer-VVTcr .framer-drx811 { display: block; }\", \".framer-VVTcr.framer-1qurg1w { height: 545px; overflow: visible; position: relative; width: 267px; }\", \".framer-VVTcr .framer-j72mwv { flex: none; height: 545px; left: 2px; overflow: visible; position: absolute; top: 0px; width: 263px; }\", \".framer-VVTcr .framer-t4ohff { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\", \".framer-VVTcr .framer-1c70c6g { bottom: 4px; flex: none; left: 4px; position: absolute; right: 3px; top: 3px; }\", \".framer-VVTcr .framer-1t0xmi9 { flex: none; height: 122px; left: 0px; overflow: visible; position: absolute; top: 96px; width: 267px; }\", \".framer-VVTcr .framer-1vto9yu { bottom: 48px; flex: none; left: 0px; position: absolute; right: 265px; top: 36px; }\", \".framer-VVTcr .framer-tkg8k { bottom: 0px; flex: none; left: 0px; position: absolute; right: 265px; top: 84px; }\", \".framer-VVTcr .framer-1s5wfg3 { bottom: 103px; flex: none; left: 0px; position: absolute; right: 265px; top: 0px; }\", \".framer-VVTcr .framer-1gi2rls { bottom: 0px; flex: none; left: 265px; position: absolute; right: 0px; top: 62px; }\", \".framer-VVTcr .framer-xeafjd { bottom: 11px; flex: none; left: 13px; position: absolute; right: 12px; top: 11px; }\", \".framer-VVTcr .framer-1ca2mo7 { bottom: 507px; flex: none; left: 98px; position: absolute; right: 98px; top: 17px; }\"]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicHeight 545\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerIntrinsicWidth 267\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bGSw0cZn8\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZNxtjS5Kj\":{\"layout\":[\"fixed\",\"fixed\"]},\"YgGQwMLtQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"sn8rUqoH1\":{\"layout\":[\"fixed\",\"fixed\"]},\"miiIf4r9P\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          * @framerDisplayContentsDiv false\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          */\nconst FramerG0v_5eiCd = withCSS(Component, css, \"framer-VVTcr\");\nexport default FramerG0v_5eiCd;\nFramerG0v_5eiCd.displayName = \"iPhones\";\nFramerG0v_5eiCd.defaultProps = {\n  height: 545,\n  width: 267\n};\naddPropertyControls(FramerG0v_5eiCd, {\n  variant: {\n    options: [\"HL3ewo1bP\", \"bGSw0cZn8\", \"ZNxtjS5Kj\", \"YgGQwMLtQ\", \"sn8rUqoH1\", \"miiIf4r9P\"],\n    optionTitles: [\"Standings\", \"Matchup\", \"Trade Analyzer\", \"Sign-up\", \"Import Leagues\", \"Compare Players\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  }\n});\naddFonts(FramerG0v_5eiCd, []);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerG0v_5eiCd\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicHeight\": \"545\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bGSw0cZn8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZNxtjS5Kj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YgGQwMLtQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sn8rUqoH1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"miiIf4r9P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\n        \"framerImmutableVariables\": \"true\",\n        \"framerContractVersion\": \"1\",\n        \"framerDisplayContentsDiv\": \"false\",\n        \"framerIntrinsicWidth\": \"267\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./G0v_5eiCd.map", "// Generated by Framer (91d32d4)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, Image, RichText, useLocaleInfo, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/sBUdHKZi3zQNObW0xzFz/Ng5yrfWcSSEGs7Q2ORVN/RgdfCQ6UD.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/aB83I9aYFEOaTDL3D8cR/e1o1DD5BOvFXVBkIOU1n/RTsEJVgZ_.js\";\nconst cycleOrder = [\"sNdujVpqN\"];\nconst serializationHash = \"framer-OFgJ7\";\nconst variantClassNames = {\n  sNdujVpqN: \"framer-v-j7pmoi\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst toResponsiveImage = value => {\n  if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {\n    return value;\n  }\n  return typeof value === \"string\" ? {\n    src: value\n  } : undefined;\n};\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst getProps = ({\n  height,\n  id,\n  image,\n  name1,\n  testimonial,\n  width,\n  ...props\n}) => {\n  var _ref, _ref1, _ref2;\n  return {\n    ...props,\n    kEeYge0it: (_ref = name1 !== null && name1 !== void 0 ? name1 : props.kEeYge0it) !== null && _ref !== void 0 ? _ref : \"Melissa Johnson\",\n    qI4VameKu: (_ref1 = testimonial !== null && testimonial !== void 0 ? testimonial : props.qI4VameKu) !== null && _ref1 !== void 0 ? _ref1 : \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Feugiat nulla suspendisse tortor aene. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Feugiat nulla suspendisse tortor aene.\",\n    zCOcvBeQs: (_ref2 = image !== null && image !== void 0 ? image : props.zCOcvBeQs) !== null && _ref2 !== void 0 ? _ref2 : {\n      src: \"https://framerusercontent.com/images/aF3ghdvLwUSagO0SSYUMa0pwwU.png?scale-down-to=1024\",\n      srcSet: \"https://framerusercontent.com/images/aF3ghdvLwUSagO0SSYUMa0pwwU.png?scale-down-to=512 512w, https://framerusercontent.com/images/aF3ghdvLwUSagO0SSYUMa0pwwU.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/aF3ghdvLwUSagO0SSYUMa0pwwU.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/aF3ghdvLwUSagO0SSYUMa0pwwU.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/aF3ghdvLwUSagO0SSYUMa0pwwU.png 4267w\"\n    }\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale,\n    setLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    zCOcvBeQs,\n    qI4VameKu,\n    kEeYge0it,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"sNdujVpqN\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const ref1 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className];\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(Transition, {\n      value: transition,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        animate: variants,\n        className: cx(serializationHash, ...sharedStyleClassNames, \"framer-j7pmoi\", className, classNames),\n        \"data-framer-name\": \"Variant 1\",\n        initial: variant,\n        layoutDependency: layoutDependency,\n        layoutId: \"sNdujVpqN\",\n        onHoverEnd: () => setGestureState({\n          isHovered: false\n        }),\n        onHoverStart: () => setGestureState({\n          isHovered: true\n        }),\n        onTap: () => setGestureState({\n          isPressed: false\n        }),\n        onTapCancel: () => setGestureState({\n          isPressed: false\n        }),\n        onTapStart: () => setGestureState({\n          isPressed: true\n        }),\n        ref: ref !== null && ref !== void 0 ? ref : ref1,\n        style: {\n          backgroundColor: \"var(--token-522293bd-7fc5-4561-96b8-a61ab2563894, rgb(18, 0, 65))\",\n          borderBottomLeftRadius: 40,\n          borderBottomRightRadius: 40,\n          borderTopLeftRadius: 40,\n          borderTopRightRadius: 40,\n          ...style\n        },\n        children: [/*#__PURE__*/_jsx(RichText, {\n          __fromCanvasComponent: true,\n          children: /*#__PURE__*/_jsx(React.Fragment, {\n            children: /*#__PURE__*/_jsx(motion.p, {\n              className: \"framer-styles-preset-1kzzvrn\",\n              \"data-styles-preset\": \"RgdfCQ6UD\",\n              children: \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Feugiat nulla suspendisse tortor aene. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Feugiat nulla suspendisse tortor aene.\"\n            })\n          }),\n          className: \"framer-1ggst2d\",\n          layoutDependency: layoutDependency,\n          layoutId: \"O7wWe9HX8\",\n          style: {\n            \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n            \"--framer-link-text-decoration\": \"underline\",\n            \"--framer-paragraph-spacing\": \"0px\"\n          },\n          text: qI4VameKu,\n          verticalAlignment: \"top\",\n          withExternalLayout: true\n        }), /*#__PURE__*/_jsxs(motion.div, {\n          className: \"framer-1rcc7co\",\n          layoutDependency: layoutDependency,\n          layoutId: \"G4Usuk0Sg\",\n          children: [/*#__PURE__*/_jsx(Image, {\n            background: {\n              alt: \"\",\n              fit: \"fill\",\n              intrinsicHeight: 4267,\n              intrinsicWidth: 4267,\n              pixelHeight: 4267,\n              pixelWidth: 4267,\n              sizes: \"68px\",\n              ...toResponsiveImage(zCOcvBeQs)\n            },\n            className: \"framer-xtkxjb\",\n            layoutDependency: layoutDependency,\n            layoutId: \"gI93UF286\",\n            style: {\n              borderBottomLeftRadius: 34,\n              borderBottomRightRadius: 34,\n              borderTopLeftRadius: 34,\n              borderTopRightRadius: 34\n            }\n          }), /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-10eon7c\",\n            layoutDependency: layoutDependency,\n            layoutId: \"njkBnYm42\",\n            children: /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.p, {\n                  className: \"framer-styles-preset-1018qgc\",\n                  \"data-styles-preset\": \"RTsEJVgZ_\",\n                  children: \"Melissa Johnson\"\n                })\n              }),\n              className: \"framer-13xdr41\",\n              layoutDependency: layoutDependency,\n              layoutId: \"t6jDNaGn1\",\n              style: {\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\"\n              },\n              text: kEeYge0it,\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            })\n          })]\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-OFgJ7[data-border=\"true\"]::after, .framer-OFgJ7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-OFgJ7.framer-10syacs, .framer-OFgJ7 .framer-10syacs { display: block; }\", \".framer-OFgJ7.framer-j7pmoi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 513px; will-change: var(--framer-will-change-override, transform); }\", \".framer-OFgJ7 .framer-1ggst2d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-OFgJ7 .framer-1rcc7co { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-OFgJ7 .framer-xtkxjb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); overflow: hidden; position: relative; width: 68px; will-change: var(--framer-will-change-override, transform); }\", \".framer-OFgJ7 .framer-10eon7c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 76px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-OFgJ7 .framer-13xdr41 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OFgJ7.framer-j7pmoi, .framer-OFgJ7 .framer-1rcc7co, .framer-OFgJ7 .framer-10eon7c { gap: 0px; } .framer-OFgJ7.framer-j7pmoi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-OFgJ7.framer-j7pmoi > :first-child, .framer-OFgJ7 .framer-10eon7c > :first-child { margin-top: 0px; } .framer-OFgJ7.framer-j7pmoi > :last-child, .framer-OFgJ7 .framer-10eon7c > :last-child { margin-bottom: 0px; } .framer-OFgJ7 .framer-1rcc7co > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-OFgJ7 .framer-1rcc7co > :first-child { margin-left: 0px; } .framer-OFgJ7 .framer-1rcc7co > :last-child { margin-right: 0px; } .framer-OFgJ7 .framer-10eon7c > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerIntrinsicHeight 264\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerIntrinsicWidth 513\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerVariables {\"zCOcvBeQs\":\"image\",\"qI4VameKu\":\"testimonial\",\"kEeYge0it\":\"name1\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     * @framerDisplayContentsDiv false\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     */\nconst FramerWdNZ4ASY1 = withCSS(Component, css, \"framer-OFgJ7\");\nexport default FramerWdNZ4ASY1;\nFramerWdNZ4ASY1.displayName = \"Testimonial\";\nFramerWdNZ4ASY1.defaultProps = {\n  height: 264,\n  width: 513\n};\naddPropertyControls(FramerWdNZ4ASY1, {\n  zCOcvBeQs: {\n    __defaultAssetReference: \"data:framer/asset-reference,aF3ghdvLwUSagO0SSYUMa0pwwU.png?originalFilename=female-7.png&preferredSize=auto\",\n    title: \"Image\",\n    type: ControlType.ResponsiveImage\n  },\n  qI4VameKu: {\n    defaultValue: \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Feugiat nulla suspendisse tortor aene. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Feugiat nulla suspendisse tortor aene.\",\n    displayTextArea: false,\n    title: \"Testimonial\",\n    type: ControlType.String\n  },\n  kEeYge0it: {\n    defaultValue: \"Melissa Johnson\",\n    displayTextArea: false,\n    title: \"Name\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerWdNZ4ASY1, [...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerWdNZ4ASY1\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerImmutableVariables\": \"true\",\n        \"framerIntrinsicHeight\": \"264\",\n        \"framerVariables\": \"{\\\"zCOcvBeQs\\\":\\\"image\\\",\\\"qI4VameKu\\\":\\\"testimonial\\\",\\\"kEeYge0it\\\":\\\"name1\\\"}\",\n        \"framerIntrinsicWidth\": \"513\",\n        \"framerDisplayContentsDiv\": \"false\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./WdNZ4ASY1.map", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([\"GF;DM Sans-700\"]);\nexport const fonts = [{\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/O7Gb9eo_e:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\",\n  weight: \"700\"\n}];\nexport const css = ['.framer-XkLGZ .framer-styles-preset-mhvngk:not(.rich-text-wrapper), .framer-XkLGZ .framer-styles-preset-mhvngk.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 70px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-32074f64-7f4e-4d7a-b85b-ed773919a9cb, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }', '@media (max-width: 1199px) and (min-width: 810px) { .framer-XkLGZ .framer-styles-preset-mhvngk:not(.rich-text-wrapper), .framer-XkLGZ .framer-styles-preset-mhvngk.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 60px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-32074f64-7f4e-4d7a-b85b-ed773919a9cb, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }', '@media (max-width: 809px) and (min-width: 0px) { .framer-XkLGZ .framer-styles-preset-mhvngk:not(.rich-text-wrapper), .framer-XkLGZ .framer-styles-preset-mhvngk.rich-text-wrapper h1 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 50px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-32074f64-7f4e-4d7a-b85b-ed773919a9cb, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }'];\nexport const className = \"framer-XkLGZ\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([\"GF;DM Sans-700\"]);\nexport const fonts = [{\n  family: \"DM Sans\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/W89lCHWP4:default\",\n    url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTmf3ZGMZpg.ttf\",\n  weight: \"700\"\n}];\nexport const css = ['.framer-O1mmJ .framer-styles-preset-iqk5rx:not(.rich-text-wrapper), .framer-O1mmJ .framer-styles-preset-iqk5rx.rich-text-wrapper h2 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 48px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-32074f64-7f4e-4d7a-b85b-ed773919a9cb, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }', '@media (max-width: 1199px) and (min-width: 810px) { .framer-O1mmJ .framer-styles-preset-iqk5rx:not(.rich-text-wrapper), .framer-O1mmJ .framer-styles-preset-iqk5rx.rich-text-wrapper h2 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 44px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-32074f64-7f4e-4d7a-b85b-ed773919a9cb, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }', '@media (max-width: 809px) and (min-width: 0px) { .framer-O1mmJ .framer-styles-preset-iqk5rx:not(.rich-text-wrapper), .framer-O1mmJ .framer-styles-preset-iqk5rx.rich-text-wrapper h2 { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 36px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-32074f64-7f4e-4d7a-b85b-ed773919a9cb, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }'];\nexport const className = \"framer-O1mmJ\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (91d32d4)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useHydratedBreakpointVariants, useLocaleInfo, useRouteElementId, withCSS, withFX, withVariantAppearEffect } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Slideshow from \"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";\nimport Button from \"https://framerusercontent.com/modules/aMhJItm9SxlnmHuKXD8h/F2ilIT40lM7LMIIidykL/ALp2tZ626.js\";\nimport NavBar from \"https://framerusercontent.com/modules/7HSLbIO8hdDIkzSo2z4I/TAJR6SIbouwPtzp7IHoo/f2m0xzsnl.js\";\nimport FeatureCards from \"https://framerusercontent.com/modules/n1qmsE6opnuGq0m3WEqZ/NfbIAUMaiV46oFwpcZjv/f4FKvrZNr.js\";\nimport SmallerPhone from \"https://framerusercontent.com/modules/ApcJSzezEVWoSlnyl7K4/tOfsO6Ks7IJwaq9hfAuL/frzDF2raE.js\";\nimport IPhones from \"https://framerusercontent.com/modules/6Rvwr6L00mCDs2ddlcBr/vhA5QqgvzJ72ypGfoFoY/G0v_5eiCd.js\";\nimport Footer from \"https://framerusercontent.com/modules/kBA4f5BIhs1CTUZqmz19/pOfJX3jbOFrjGaXucj6q/Q9RpYyAPB.js\";\nimport Testimonial from \"https://framerusercontent.com/modules/561QTvRdzwciYwLhMI5K/fSyjaVTdvQbBFkRCwIIq/WdNZ4ASY1.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/2gMruy7amXPDqTIkaugv/aKzebC6nSm2fRh8AIIJ9/lRsXV26W5.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/2s63aVDJSaxMuO5ALlbL/OjwlmLmm8l6TU7XJ4Umn/O7Gb9eo_e.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/aB83I9aYFEOaTDL3D8cR/e1o1DD5BOvFXVBkIOU1n/RTsEJVgZ_.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/6S3zBmTTeXda1zuypyUE/wdkoqzDiSpsFnqtbjfQg/W89lCHWP4.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/mRr8kD3ROeAFixAG79mV/Myr88VgeEq2g7gd16mgo/augiA20Il.js\";\nconst NavBarFonts = getFonts(NavBar);\nconst ButtonFonts = getFonts(Button);\nconst SmallerPhoneFonts = getFonts(SmallerPhone);\nconst ContainerWithFX = withFX(Container);\nconst FeatureCardsFonts = getFonts(FeatureCards);\nconst IPhonesFonts = getFonts(IPhones);\nconst MotionDivWithFX = withFX(motion.div);\nconst IPhonesWithVariantAppearEffect = withVariantAppearEffect(IPhones);\nconst TestimonialFonts = getFonts(Testimonial);\nconst SlideshowFonts = getFonts(Slideshow);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"WQLkyLRf1\", \"ciXRAMi4t\", \"FG0nmrVU6\"];\nconst breakpoints = {\n  ciXRAMi4t: \"(min-width: 810px) and (max-width: 1209px)\",\n  FG0nmrVU6: \"(max-width: 809px)\",\n  WQLkyLRf1: \"(min-width: 1210px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst serializationHash = \"framer-UAlht\";\nconst variantClassNames = {\n  ciXRAMi4t: \"framer-v-1w3dlqm\",\n  FG0nmrVU6: \"framer-v-122dsg\",\n  WQLkyLRf1: \"framer-v-72rtr7\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"WQLkyLRf1\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transition1 = {\n  delay: .2,\n  duration: .8,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: -150,\n  y: 0\n};\nconst transformTemplate1 = (_, t) => `perspective(1200px) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: -150,\n  y: 0\n};\nconst transition2 = {\n  delay: .4,\n  duration: .8,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation3 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition2,\n  x: -150,\n  y: 0\n};\nconst animation4 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst transition3 = {\n  delay: .5,\n  duration: .8,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation5 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition3,\n  x: -150,\n  y: 0\n};\nconst animation6 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 0\n};\nconst animation7 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 150,\n  y: 0\n};\nconst transformTemplate2 = (_, t) => `perspective(1200px) ${t} rotate(-6deg)`;\nconst animation8 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 150,\n  y: 0\n};\nconst animation9 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition2,\n  x: 150,\n  y: 0\n};\nconst transformTemplate3 = (_, t) => `perspective(1200px) ${t} rotate(4deg)`;\nconst animation10 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: -150,\n  y: 0\n};\nconst transition4 = {\n  delay: .3,\n  duration: .8,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation11 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition4,\n  x: -150,\n  y: 0\n};\nconst transition5 = {\n  delay: .6,\n  duration: .8,\n  ease: [.44, 0, .56, 1],\n  type: \"tween\"\n};\nconst animation12 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition5,\n  x: -150,\n  y: 0\n};\nconst animation13 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 150\n};\nconst animation14 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 150,\n  y: 0\n};\nconst transformTemplate4 = (_, t) => `perspective(1200px) ${t} rotate(-4deg)`;\nconst addImageAlt = (image, alt) => {\n  if (!image || typeof image !== \"object\") {\n    return;\n  }\n  return {\n    ...image,\n    alt\n  };\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"WQLkyLRf1\",\n  Phone: \"FG0nmrVU6\",\n  Tablet: \"ciXRAMi4t\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _humanReadableVariantMap_props_variant, _ref;\n  return {\n    ...props,\n    variant: (_ref = (_humanReadableVariantMap_props_variant = humanReadableVariantMap[props.variant]) !== null && _humanReadableVariantMap_props_variant !== void 0 ? _humanReadableVariantMap_props_variant : props.variant) !== null && _ref !== void 0 ? _ref : \"WQLkyLRf1\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale,\n    setLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(undefined, activeLocale);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var _document_querySelector;\n      (_document_querySelector = document.querySelector('meta[name=\"viewport\"]')) === null || _document_querySelector === void 0 ? void 0 : _document_querySelector.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(`${metadata1.bodyClassName}-framer-UAlht`);\n      return () => {\n        document.body.classList.remove(`${metadata1.bodyClassName}-framer-UAlht`);\n      };\n    }\n  }, [undefined, activeLocale]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const ref1 = React.useRef(null);\n  const id = useRouteElementId(\"NXs1asMj8\");\n  const ref2 = React.useRef(null);\n  const id1 = useRouteElementId(\"fhwPxXb4l\");\n  const ref3 = React.useRef(null);\n  const isDisplayed = () => {\n    if (baseVariant === \"FG0nmrVU6\") return !isBrowser();\n    return true;\n  };\n  const ref4 = React.useRef(null);\n  const ref5 = React.useRef(null);\n  const ref6 = React.useRef(null);\n  const ref7 = React.useRef(null);\n  const id2 = useRouteElementId(\"PlxI76XvP\");\n  const isDisplayed1 = () => {\n    if (baseVariant === \"FG0nmrVU6\") return true;\n    return !isBrowser();\n  };\n  const id3 = useRouteElementId(\"fwc1sSQBa\");\n  const id4 = useRouteElementId(\"LAMSTXlbt\");\n  const id5 = useRouteElementId(\"p3ZlHdhYL\");\n  const id6 = useRouteElementId(\"ytnm3CvYa\");\n  const ref8 = React.useRef(null);\n  const id7 = useRouteElementId(\"s3XgF33pE\");\n  const ref9 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  const sharedStyleClassNames = [sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className];\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"WQLkyLRf1\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsxs(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: [/*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        className: cx(serializationHash, ...sharedStyleClassNames, \"framer-72rtr7\", className),\n        ref: ref !== null && ref !== void 0 ? ref : ref1,\n        style: {\n          ...style\n        },\n        children: [/*#__PURE__*/_jsx(Container, {\n          className: \"framer-wn7mx8-container\",\n          children: /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              ciXRAMi4t: {\n                variant: \"Z_L4jgTne\"\n              },\n              FG0nmrVU6: {\n                variant: \"GL3EOuraI\"\n              }\n            },\n            children: /*#__PURE__*/_jsx(NavBar, {\n              height: \"100%\",\n              id: \"rgknY0cC3\",\n              layoutId: \"rgknY0cC3\",\n              style: {\n                height: \"100%\",\n                width: \"100%\"\n              },\n              variant: \"FJk7cMcau\",\n              width: \"100%\"\n            })\n          })\n        }), /*#__PURE__*/_jsxs(\"div\", {\n          className: \"framer-syfkno\",\n          \"data-framer-name\": \"Hero Section\",\n          id: id,\n          name: \"Hero Section\",\n          ref: ref2,\n          children: [/*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-1jnmxmj\",\n            \"data-framer-name\": \"Header\",\n            name: \"Header\",\n            children: [/*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1nim0f9\",\n              \"data-framer-name\": \"Text\",\n              name: \"Text\",\n              children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ciXRAMi4t: {\n                    \"data-framer-appear-id\": \"z9p3bt\",\n                    animate: optimizeAppear(\"animate\", \"z9p3bt\", animation1, \"1w3dlqm\"),\n                    initial: optimizeAppear(\"initial\", \"z9p3bt\", animation2, \"1w3dlqm\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"z9p3bt\", transformTemplate1)\n                  },\n                  FG0nmrVU6: {\n                    \"data-framer-appear-id\": \"10a33bv\",\n                    animate: optimizeAppear(\"animate\", \"10a33bv\", animation1, \"122dsg\"),\n                    initial: optimizeAppear(\"initial\", \"10a33bv\", animation2, \"122dsg\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"10a33bv\", transformTemplate1)\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  animate: optimizeAppear(\"animate\", \"1vrsq07\", animation1, \"72rtr7\"),\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h1\", {\n                      className: \"framer-styles-preset-mhvngk\",\n                      \"data-styles-preset\": \"O7Gb9eo_e\",\n                      children: \"Fantasy Basketball Companion App\"\n                    })\n                  }),\n                  className: \"framer-1vrsq07\",\n                  \"data-framer-appear-id\": \"1vrsq07\",\n                  \"data-framer-name\": \"Buy and sell crypto with peace of mind\",\n                  exit: animation,\n                  initial: optimizeAppear(\"initial\", \"1vrsq07\", animation2, \"72rtr7\"),\n                  name: \"Buy and sell crypto with peace of mind\",\n                  transformTemplate: optimizeAppearTransformTemplate(\"1vrsq07\", transformTemplate1),\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ciXRAMi4t: {\n                    \"data-framer-appear-id\": \"51fs6d\",\n                    animate: optimizeAppear(\"animate\", \"51fs6d\", animation4, \"1w3dlqm\"),\n                    initial: optimizeAppear(\"initial\", \"51fs6d\", animation2, \"1w3dlqm\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"51fs6d\", transformTemplate1)\n                  },\n                  FG0nmrVU6: {\n                    \"data-framer-appear-id\": \"gsxn33\",\n                    animate: optimizeAppear(\"animate\", \"gsxn33\", animation4, \"122dsg\"),\n                    initial: optimizeAppear(\"initial\", \"gsxn33\", animation2, \"122dsg\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"gsxn33\", transformTemplate1)\n                  }\n                },\n                children: /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  animate: optimizeAppear(\"animate\", \"2ufd5n\", animation4, \"72rtr7\"),\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1018qgc\",\n                      \"data-styles-preset\": \"RTsEJVgZ_\",\n                      children: \"View projected standings, evaluate H2H matchups, analyze trades, receive free-agent recommendations, compare players and much more!\"\n                    })\n                  }),\n                  className: \"framer-2ufd5n\",\n                  \"data-framer-appear-id\": \"2ufd5n\",\n                  exit: animation3,\n                  initial: optimizeAppear(\"initial\", \"2ufd5n\", animation2, \"72rtr7\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"2ufd5n\", transformTemplate1),\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              })]\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ciXRAMi4t: {\n                  \"data-framer-appear-id\": \"rwqii9\",\n                  animate: optimizeAppear(\"animate\", \"rwqii9\", animation6, \"1w3dlqm\"),\n                  initial: optimizeAppear(\"initial\", \"rwqii9\", animation2, \"1w3dlqm\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"rwqii9\", transformTemplate1)\n                },\n                FG0nmrVU6: {\n                  \"data-framer-appear-id\": \"1nsd99r\",\n                  animate: optimizeAppear(\"animate\", \"1nsd99r\", animation6, \"122dsg\"),\n                  initial: optimizeAppear(\"initial\", \"1nsd99r\", animation2, \"122dsg\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1nsd99r\", transformTemplate1)\n                }\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                animate: optimizeAppear(\"animate\", \"pvv6l0\", animation6, \"72rtr7\"),\n                className: \"framer-pvv6l0\",\n                \"data-framer-appear-id\": \"pvv6l0\",\n                \"data-framer-name\": \"Buttons\",\n                exit: animation5,\n                initial: optimizeAppear(\"initial\", \"pvv6l0\", animation2, \"72rtr7\"),\n                name: \"Buttons\",\n                transformTemplate: optimizeAppearTransformTemplate(\"pvv6l0\", transformTemplate1),\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-1kuxvw1-container\",\n                  children: /*#__PURE__*/_jsx(Button, {\n                    height: \"100%\",\n                    id: \"RqpT9Ertu\",\n                    layoutId: \"RqpT9Ertu\",\n                    Mv2MGU8rm: \"AppStoreLogo\",\n                    rGNW2MN51: \"App store \",\n                    variant: \"sj1reL1it\",\n                    width: \"100%\",\n                    znYbLeV16: \"https://apps.apple.com/ca/app/fantasyhoops-ai/id6446579895\"\n                  })\n                })\n              })\n            })]\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-1801ger\",\n            \"data-framer-name\": \"Image\",\n            name: \"Image\",\n            children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ciXRAMi4t: {\n                  \"data-framer-appear-id\": \"aatxpm\",\n                  animate: optimizeAppear(\"animate\", \"aatxpm\", animation1, \"1w3dlqm\"),\n                  initial: optimizeAppear(\"initial\", \"aatxpm\", animation8, \"1w3dlqm\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"aatxpm\", transformTemplate2)\n                },\n                FG0nmrVU6: {\n                  \"data-framer-appear-id\": \"1dhde4d\",\n                  animate: optimizeAppear(\"animate\", \"1dhde4d\", animation1, \"122dsg\"),\n                  initial: optimizeAppear(\"initial\", \"1dhde4d\", animation8, \"122dsg\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1dhde4d\", transformTemplate2)\n                }\n              },\n              children: /*#__PURE__*/_jsx(ContainerWithFX, {\n                __framer__styleTransformEffectEnabled: true,\n                __framer__transformTargets: [{\n                  target: {\n                    opacity: 1,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    scale: 1,\n                    x: 0,\n                    y: 0\n                  }\n                }, {\n                  target: {\n                    opacity: 1,\n                    rotate: -30,\n                    rotateX: 0,\n                    rotateY: 0,\n                    scale: 1,\n                    x: 0,\n                    y: 0\n                  }\n                }],\n                __framer__transformTrigger: \"onScroll\",\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                animate: optimizeAppear(\"animate\", \"rdkmph\", animation1, \"72rtr7\"),\n                className: \"framer-rdkmph-container\",\n                \"data-framer-appear-id\": \"rdkmph\",\n                exit: animation7,\n                initial: optimizeAppear(\"initial\", \"rdkmph\", animation8, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"rdkmph\", transformTemplate2),\n                children: /*#__PURE__*/_jsx(SmallerPhone, {\n                  height: \"100%\",\n                  id: \"J_RD9pZA5\",\n                  layoutId: \"J_RD9pZA5\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"BeeycApEI\",\n                  width: \"100%\"\n                })\n              })\n            }), /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                ciXRAMi4t: {\n                  \"data-framer-appear-id\": \"19ytdrl\",\n                  animate: optimizeAppear(\"animate\", \"19ytdrl\", animation4, \"1w3dlqm\"),\n                  initial: optimizeAppear(\"initial\", \"19ytdrl\", animation8, \"1w3dlqm\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"19ytdrl\", transformTemplate3)\n                },\n                FG0nmrVU6: {\n                  \"data-framer-appear-id\": \"1ysv83p\",\n                  animate: optimizeAppear(\"animate\", \"1ysv83p\", animation4, \"122dsg\"),\n                  initial: optimizeAppear(\"initial\", \"1ysv83p\", animation8, \"122dsg\"),\n                  transformTemplate: optimizeAppearTransformTemplate(\"1ysv83p\", transformTemplate3)\n                }\n              },\n              children: /*#__PURE__*/_jsx(ContainerWithFX, {\n                __framer__styleTransformEffectEnabled: true,\n                __framer__transformTargets: [{\n                  target: {\n                    opacity: 1,\n                    rotate: 0,\n                    rotateX: 0,\n                    rotateY: 0,\n                    scale: 1,\n                    x: 0,\n                    y: 0\n                  }\n                }, {\n                  target: {\n                    opacity: 1,\n                    rotate: 21,\n                    rotateX: 0,\n                    rotateY: 0,\n                    scale: 1,\n                    x: 0,\n                    y: 0\n                  }\n                }],\n                __framer__transformTrigger: \"onScroll\",\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                animate: optimizeAppear(\"animate\", \"183fqhp\", animation4, \"72rtr7\"),\n                className: \"framer-183fqhp-container\",\n                \"data-framer-appear-id\": \"183fqhp\",\n                exit: animation9,\n                initial: optimizeAppear(\"initial\", \"183fqhp\", animation8, \"72rtr7\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"183fqhp\", transformTemplate3),\n                children: /*#__PURE__*/_jsx(SmallerPhone, {\n                  height: \"100%\",\n                  id: \"TKd1wuq_z\",\n                  layoutId: \"TKd1wuq_z\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"ykhqZ8LlZ\",\n                  width: \"100%\"\n                })\n              })\n            }), /*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-5qzdac\"\n            })]\n          })]\n        }), /*#__PURE__*/_jsxs(\"div\", {\n          className: \"framer-tzb7a3\",\n          \"data-framer-name\": \"Features\",\n          id: id1,\n          name: \"Features\",\n          ref: ref3,\n          children: [/*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-160d6px\",\n            \"data-framer-name\": \"Title\",\n            name: \"Title\",\n            children: [/*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(\"h2\", {\n                  className: \"framer-styles-preset-iqk5rx\",\n                  \"data-styles-preset\": \"W89lCHWP4\",\n                  style: {\n                    \"--framer-text-alignment\": \"center\"\n                  },\n                  children: \"Dominate your fantasy basketball leagues\"\n                })\n              }),\n              className: \"framer-9igbei\",\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(\"p\", {\n                  className: \"framer-styles-preset-1018qgc\",\n                  \"data-styles-preset\": \"RTsEJVgZ_\",\n                  style: {\n                    \"--framer-text-alignment\": \"center\"\n                  },\n                  children: \"Download the app and get instant access to amazing features\"\n                })\n              }),\n              className: \"framer-18priu1\",\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            })]\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-yw01yc\",\n            \"data-framer-name\": \"Features\",\n            name: \"Features\",\n            children: [/*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1c06q48\",\n              \"data-framer-name\": \"Cards-1\",\n              name: \"Cards-1\",\n              children: [/*#__PURE__*/_jsx(ContainerWithFX, {\n                __framer__animate: {\n                  transition: transition4\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation10,\n                __framer__exit: animation11,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: 0,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1s7w13v-container\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(FeatureCards, {\n                  DhgTtGpRc: \"ChartLineUp\",\n                  height: \"100%\",\n                  id: \"oDH5OEe1C\",\n                  layoutId: \"oDH5OEe1C\",\n                  MprbWBg7g: \"Projections\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"A5yNaHbb7\",\n                  vHJIz7jem: \"View detailed projected standings and stats for your fantasy leagues.\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                __framer__animate: {\n                  transition: transition5\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation10,\n                __framer__exit: animation12,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: 0,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-vs15ow-container\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(FeatureCards, {\n                  DhgTtGpRc: \"Users\",\n                  height: \"100%\",\n                  id: \"p3x0Xthfs\",\n                  layoutId: \"p3x0Xthfs\",\n                  MprbWBg7g: \"H2H Matchups\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"A5yNaHbb7\",\n                  vHJIz7jem: \"Evaluate current and future matchups and see how they are projected to unfold.\",\n                  width: \"100%\"\n                })\n              })]\n            }), /*#__PURE__*/_jsxs(MotionDivWithFX, {\n              __framer__animate: {\n                transition: transition4\n              },\n              __framer__animateOnce: true,\n              __framer__enter: animation13,\n              __framer__styleAppearEffectEnabled: true,\n              __framer__threshold: 0,\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-1fv9l3b\",\n              \"data-framer-name\": \"Center card\",\n              name: \"Center card\",\n              transformTemplate: transformTemplate1,\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"h6\", {\n                    className: \"framer-styles-preset-1g1z1rb\",\n                    \"data-styles-preset\": \"lRsXV26W5\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: \"Exclusively on the iOS Platform\"\n                  })\n                }),\n                className: \"framer-bflh42\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(\"p\", {\n                    className: \"framer-styles-preset-1018qgc\",\n                    \"data-styles-preset\": \"RTsEJVgZ_\",\n                    style: {\n                      \"--framer-text-alignment\": \"center\"\n                    },\n                    children: \"Import your rotisserie, head-to-head and points leagues from ESPN or YAHOO\"\n                  })\n                }),\n                className: \"framer-13x69n3\",\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1hq3ty-container\",\n                children: /*#__PURE__*/_jsx(IPhones, {\n                  height: \"100%\",\n                  id: \"TmQcM4Pvh\",\n                  layoutId: \"TmQcM4Pvh\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"YgGQwMLtQ\",\n                  width: \"100%\"\n                })\n              })]\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1h7pybc\",\n              \"data-framer-name\": \"Cards-2\",\n              name: \"Cards-2\",\n              children: [/*#__PURE__*/_jsx(ContainerWithFX, {\n                __framer__animate: {\n                  transition: transition4\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation14,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: 0,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-1ygxlc7-container\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(FeatureCards, {\n                  DhgTtGpRc: \"ArrowsLeftRight\",\n                  height: \"100%\",\n                  id: \"aRUcCGMtq\",\n                  layoutId: \"aRUcCGMtq\",\n                  MprbWBg7g: \"Trade Analyzer\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"A5yNaHbb7\",\n                  vHJIz7jem: \"Analyze trades and their impact to your projected standings.\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsx(ContainerWithFX, {\n                __framer__animate: {\n                  transition: transition5\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation14,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: 0,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-b1mpgc-container\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    ciXRAMi4t: {\n                      vHJIz7jem: \"Receive optimal free-agent recommendations that have the greatest impact to your ranking.\"\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(FeatureCards, {\n                    DhgTtGpRc: \"UserPlus\",\n                    height: \"100%\",\n                    id: \"cUO9JXddC\",\n                    layoutId: \"cUO9JXddC\",\n                    MprbWBg7g: \"Free-Agent Suggestions\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    variant: \"A5yNaHbb7\",\n                    vHJIz7jem: \"Receive optimal free-agent suggestions that have the greatest impact to your ranking\",\n                    width: \"100%\"\n                  })\n                })\n              })]\n            })]\n          })]\n        }), /*#__PURE__*/_jsxs(\"div\", {\n          className: \"framer-cxa7tv\",\n          \"data-framer-name\": \"Big features\",\n          name: \"Big features\",\n          children: [isDisplayed() && /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-129kqqx hidden-122dsg\",\n            \"data-framer-name\": \"Phone\",\n            name: \"Phone\",\n            children: [/*#__PURE__*/_jsx(\"div\", {\n              className: \"framer-ri5m7g\"\n            }), /*#__PURE__*/_jsx(ContainerWithFX, {\n              __framer__styleTransformEffectEnabled: true,\n              __framer__transformTargets: [{\n                target: {\n                  opacity: 1,\n                  rotate: -13,\n                  rotateX: 0,\n                  rotateY: 0,\n                  scale: 1,\n                  x: 0,\n                  y: 0\n                }\n              }, {\n                target: {\n                  opacity: 1,\n                  rotate: 15,\n                  rotateX: 0,\n                  rotateY: 0,\n                  scale: 1.2,\n                  x: 0,\n                  y: 0\n                }\n              }],\n              __framer__transformTrigger: \"onScroll\",\n              __perspectiveFX: false,\n              __targetOpacity: 1,\n              className: \"framer-vxd8jw-container\",\n              transformTemplate: transformTemplate4,\n              children: /*#__PURE__*/_jsx(IPhonesWithVariantAppearEffect, {\n                __framer__animateOnce: false,\n                __framer__targets: [{\n                  ref: ref4,\n                  target: \"HL3ewo1bP\"\n                }, {\n                  ref: ref5,\n                  target: \"bGSw0cZn8\"\n                }, {\n                  ref: ref6,\n                  target: \"ZNxtjS5Kj\"\n                }, {\n                  ref: ref7,\n                  target: \"miiIf4r9P\"\n                }],\n                __framer__threshold: .5,\n                __framer__variantAppearEffectEnabled: true,\n                height: \"100%\",\n                id: \"BxlgCrd4f\",\n                layoutId: \"BxlgCrd4f\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                variant: \"HL3ewo1bP\",\n                width: \"100%\"\n              })\n            })]\n          }), /*#__PURE__*/_jsxs(\"div\", {\n            className: \"framer-2dbnag\",\n            \"data-framer-name\": \"Features\",\n            name: \"Features\",\n            children: [/*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-16xiypy\",\n              \"data-framer-name\": \"Feature 1\",\n              id: id2,\n              name: \"Feature 1\",\n              ref: ref4,\n              children: [isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n                className: \"framer-m0axh2-container hidden-72rtr7 hidden-1w3dlqm\",\n                children: /*#__PURE__*/_jsx(SmallerPhone, {\n                  height: \"100%\",\n                  id: \"ZmQZaS_dY\",\n                  layoutId: \"ZmQZaS_dY\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"ykhqZ8LlZ\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1otljn\",\n                \"data-framer-name\": \"Text\",\n                name: \"Text\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-iqk5rx\",\n                      \"data-styles-preset\": \"W89lCHWP4\",\n                      children: \"Receive accurate projections of league standings and stats\"\n                    })\n                  }),\n                  className: \"framer-dg0g6i\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1018qgc\",\n                      \"data-styles-preset\": \"RTsEJVgZ_\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"Use the Standings view to see where you currently rank, but more importantly, where you are projected to finish by the end of the NBA season.\"\n                    })\n                  }),\n                  className: \"framer-15f9amy\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1hd0jts\",\n              \"data-framer-name\": \"Feature 2\",\n              id: id3,\n              name: \"Feature 2\",\n              ref: ref5,\n              children: [isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n                className: \"framer-1s9jw44-container hidden-72rtr7 hidden-1w3dlqm\",\n                children: /*#__PURE__*/_jsx(SmallerPhone, {\n                  height: \"100%\",\n                  id: \"wrmrQyB1k\",\n                  layoutId: \"wrmrQyB1k\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"ThCEysQZe\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1srmn2n\",\n                \"data-framer-name\": \"Text\",\n                name: \"Text\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-iqk5rx\",\n                      \"data-styles-preset\": \"W89lCHWP4\",\n                      children: \"Evaluate H2H matchups\"\n                    })\n                  }),\n                  className: \"framer-s3enp2\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1018qgc\",\n                      \"data-styles-preset\": \"RTsEJVgZ_\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"Matchups view allows you to foresee how upcoming matchups in your league will unfold so that you can make informed decisions about changes to your fantasy roster.\"\n                    })\n                  }),\n                  className: \"framer-1ly0edl\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-tgv1kh\",\n              \"data-framer-name\": \"Feature 3\",\n              id: id4,\n              name: \"Feature 3\",\n              ref: ref6,\n              children: [isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n                className: \"framer-194bhgt-container hidden-72rtr7 hidden-1w3dlqm\",\n                children: /*#__PURE__*/_jsx(SmallerPhone, {\n                  height: \"100%\",\n                  id: \"RMoRP7CtA\",\n                  layoutId: \"RMoRP7CtA\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"NmVQ5PWYP\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1uru8cw\",\n                \"data-framer-name\": \"Text\",\n                name: \"Text\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-iqk5rx\",\n                      \"data-styles-preset\": \"W89lCHWP4\",\n                      children: \"Analyze impact of trades and free-agent pickups\"\n                    })\n                  }),\n                  className: \"framer-cmsyxn\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1018qgc\",\n                      \"data-styles-preset\": \"RTsEJVgZ_\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"The Transaction Mode in Research view enables you to evaluate the impact of trades or free-agent pickups, to the league\u2019s standings.\"\n                    })\n                  }),\n                  className: \"framer-1gc9r60\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            }), /*#__PURE__*/_jsxs(\"div\", {\n              className: \"framer-1jh5p1n\",\n              \"data-framer-name\": \"Feature 4\",\n              id: id5,\n              name: \"Feature 4\",\n              ref: ref7,\n              children: [isDisplayed1() && /*#__PURE__*/_jsx(Container, {\n                className: \"framer-r6ir3t-container hidden-72rtr7 hidden-1w3dlqm\",\n                children: /*#__PURE__*/_jsx(SmallerPhone, {\n                  height: \"100%\",\n                  id: \"DFQIqpqX6\",\n                  layoutId: \"DFQIqpqX6\",\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  variant: \"NmVQ5PWYP\",\n                  width: \"100%\"\n                })\n              }), /*#__PURE__*/_jsxs(\"div\", {\n                className: \"framer-1ckzux5\",\n                \"data-framer-name\": \"Text\",\n                name: \"Text\",\n                children: [/*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"h2\", {\n                      className: \"framer-styles-preset-iqk5rx\",\n                      \"data-styles-preset\": \"W89lCHWP4\",\n                      children: \"Gain valuable insight on all players\"\n                    })\n                  }),\n                  className: \"framer-tojkjw\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                }), /*#__PURE__*/_jsx(RichText, {\n                  __fromCanvasComponent: true,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-1018qgc\",\n                      \"data-styles-preset\": \"RTsEJVgZ_\",\n                      style: {\n                        \"--framer-text-alignment\": \"left\"\n                      },\n                      children: \"Research view's Compare Mode lets you compare player stats easily and efficiently.\"\n                    })\n                  }),\n                  className: \"framer-xvp5ru\",\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })]\n              })]\n            })]\n          })]\n        }), /*#__PURE__*/_jsxs(\"div\", {\n          className: \"framer-7ymddb\",\n          \"data-framer-name\": \"Testimonials\",\n          id: id6,\n          name: \"Testimonials\",\n          ref: ref8,\n          children: [/*#__PURE__*/_jsx(RichText, {\n            __fromCanvasComponent: true,\n            children: /*#__PURE__*/_jsx(React.Fragment, {\n              children: /*#__PURE__*/_jsx(\"h2\", {\n                className: \"framer-styles-preset-iqk5rx\",\n                \"data-styles-preset\": \"W89lCHWP4\",\n                children: \"What our users say\"\n              })\n            }),\n            className: \"framer-nln6gq\",\n            verticalAlignment: \"top\",\n            withExternalLayout: true\n          }), /*#__PURE__*/_jsx(\"div\", {\n            className: \"framer-1t0z5dz\",\n            \"data-framer-name\": \"Testimonails view\",\n            name: \"Testimonails view\",\n            children: /*#__PURE__*/_jsx(Container, {\n              className: \"framer-uy3apn-container\",\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  ciXRAMi4t: {\n                    arrowOptions: {\n                      arrowFill: 'var(--token-522293bd-7fc5-4561-96b8-a61ab2563894, rgb(18, 0, 65)) /* {\"name\":\"dark purple\"} */',\n                      arrowGap: 10,\n                      arrowPadding: 20,\n                      arrowPaddingBottom: 0,\n                      arrowPaddingLeft: 0,\n                      arrowPaddingRight: -160,\n                      arrowPaddingTop: -60,\n                      arrowPosition: \"top-right\",\n                      arrowRadius: 40,\n                      arrowShouldFadeIn: false,\n                      arrowShouldSpace: false,\n                      arrowSize: 40,\n                      showMouseControls: true\n                    }\n                  },\n                  FG0nmrVU6: {\n                    arrowOptions: {\n                      arrowFill: 'var(--token-522293bd-7fc5-4561-96b8-a61ab2563894, rgb(18, 0, 65)) /* {\"name\":\"dark purple\"} */',\n                      arrowGap: 10,\n                      arrowPadding: 20,\n                      arrowPaddingBottom: 0,\n                      arrowPaddingLeft: 0,\n                      arrowPaddingRight: -20,\n                      arrowPaddingTop: -50,\n                      arrowPosition: \"top-right\",\n                      arrowRadius: 40,\n                      arrowShouldFadeIn: false,\n                      arrowShouldSpace: false,\n                      arrowSize: 30,\n                      showMouseControls: true\n                    }\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Slideshow, {\n                  alignment: \"center\",\n                  arrowOptions: {\n                    arrowFill: 'var(--token-522293bd-7fc5-4561-96b8-a61ab2563894, rgb(18, 0, 65)) /* {\"name\":\"dark purple\"} */',\n                    arrowGap: 10,\n                    arrowPadding: 20,\n                    arrowPaddingBottom: 0,\n                    arrowPaddingLeft: 0,\n                    arrowPaddingRight: -260,\n                    arrowPaddingTop: -60,\n                    arrowPosition: \"top-right\",\n                    arrowRadius: 40,\n                    arrowShouldFadeIn: false,\n                    arrowShouldSpace: false,\n                    arrowSize: 40,\n                    showMouseControls: true\n                  },\n                  autoPlayControl: true,\n                  borderRadius: 0,\n                  direction: \"left\",\n                  dragControl: true,\n                  effectsOptions: {\n                    effectsHover: false,\n                    effectsOpacity: .8,\n                    effectsPerspective: 1200,\n                    effectsRotate: 0,\n                    effectsScale: .8\n                  },\n                  fadeOptions: {\n                    fadeAlpha: 0,\n                    fadeContent: false,\n                    fadeInset: 0,\n                    fadeWidth: 25,\n                    overflow: true\n                  },\n                  gap: 20,\n                  height: \"100%\",\n                  id: \"t6igxoxhD\",\n                  intervalControl: 4,\n                  itemAmount: 1,\n                  layoutId: \"t6igxoxhD\",\n                  padding: 0,\n                  paddingBottom: 0,\n                  paddingLeft: 0,\n                  paddingPerSide: false,\n                  paddingRight: 0,\n                  paddingTop: 0,\n                  progressOptions: {\n                    dotsActiveOpacity: 1,\n                    dotsBackground: 'var(--token-522293bd-7fc5-4561-96b8-a61ab2563894, rgb(18, 0, 65)) /* {\"name\":\"dark purple\"} */',\n                    dotsBlur: 0,\n                    dotsFill: \"rgb(255, 255, 255)\",\n                    dotsGap: 10,\n                    dotsInset: 10,\n                    dotSize: 10,\n                    dotsOpacity: .5,\n                    dotsPadding: 10,\n                    dotsRadius: 50,\n                    showProgressDots: true\n                  },\n                  slots: [/*#__PURE__*/_jsx(Container, {\n                    className: \"framer-moyou5-container\",\n                    children: /*#__PURE__*/_jsx(Testimonial, {\n                      height: \"100%\",\n                      id: \"CT45nnnfe\",\n                      kEeYge0it: \"J. Max\",\n                      layoutId: \"CT45nnnfe\",\n                      qI4VameKu: \"I can\u2019t believe I\u2019ve been playing fantasy all these years without this app. I\u2019ve used the free-agent recommendations for the past few months and I\u2019m clearly seeing the effects of the pickups on my standings. Definitely would recommend!\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      width: \"100%\",\n                      zCOcvBeQs: addImageAlt({\n                        src: \"https://framerusercontent.com/images/TQg37yBeJkIKh2GmBsX4x83MatM.png\"\n                      }, \"\")\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-lf0w4-container\",\n                    \"data-framer-name\": \"Testimonial 2\",\n                    name: \"Testimonial 2\",\n                    children: /*#__PURE__*/_jsx(Testimonial, {\n                      height: \"100%\",\n                      id: \"mDKtMz6y8\",\n                      kEeYge0it: \"Garfield G.\",\n                      layoutId: \"mDKtMz6y8\",\n                      name: \"Testimonial 2\",\n                      qI4VameKu: \"The best feature for me was being able to look at my projected Category W-L-T record to figure out exactly which categories I needed to improve in and which categories I was okay giving up to gain in the others. That really helped me start winning my matchups\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      width: \"100%\",\n                      zCOcvBeQs: addImageAlt({\n                        src: \"https://framerusercontent.com/images/TQg37yBeJkIKh2GmBsX4x83MatM.png\"\n                      }, \"\")\n                    })\n                  }), /*#__PURE__*/_jsx(Container, {\n                    className: \"framer-w2tx2i-container\",\n                    \"data-framer-name\": \"Testimonial 3\",\n                    name: \"Testimonial 3\",\n                    children: /*#__PURE__*/_jsx(Testimonial, {\n                      height: \"100%\",\n                      id: \"VSdxIoJKy\",\n                      kEeYge0it: \"Alan Bower\",\n                      layoutId: \"VSdxIoJKy\",\n                      name: \"Testimonial 3\",\n                      qI4VameKu: \"FantasyHoops AI has the answers to everything you need to play fantasy basketball. Whether I want to project the impact of a trade before following through with it or just compare players in my leagues, the app let\u2019s me do it all with ease! As a bonus, the UI is extremely clean and intuitive. You can tell whoever made this app, really out time and effort into it.\",\n                      style: {\n                        width: \"100%\"\n                      },\n                      width: \"100%\",\n                      zCOcvBeQs: addImageAlt({\n                        src: \"https://framerusercontent.com/images/TQg37yBeJkIKh2GmBsX4x83MatM.png\"\n                      }, \"\")\n                    })\n                  })],\n                  startFrom: 1,\n                  style: {\n                    height: \"100%\",\n                    maxWidth: \"100%\",\n                    width: \"100%\"\n                  },\n                  transitionControl: {\n                    damping: 40,\n                    delay: .2,\n                    duration: .6,\n                    ease: [.44, 0, .56, 1],\n                    mass: 1,\n                    stiffness: 200,\n                    type: \"tween\"\n                  },\n                  width: \"100%\"\n                })\n              })\n            })\n          })]\n        }), /*#__PURE__*/_jsx(Container, {\n          className: \"framer-19i2ou8-container\",\n          id: id7,\n          ref: ref9,\n          children: /*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              ciXRAMi4t: {\n                variant: \"j6FJUNEm8\"\n              },\n              FG0nmrVU6: {\n                variant: \"S2EJcG_4d\"\n              }\n            },\n            children: /*#__PURE__*/_jsx(Footer, {\n              height: \"100%\",\n              id: \"s3XgF33pE\",\n              layoutId: \"s3XgF33pE\",\n              style: {\n                width: \"100%\"\n              },\n              variant: \"UvctnwwDo\",\n              width: \"100%\"\n            })\n          })\n        })]\n      }), /*#__PURE__*/_jsx(\"div\", {\n        className: cx(serializationHash, ...sharedStyleClassNames),\n        id: \"overlay\"\n      })]\n    })\n  });\n});\nconst css = ['.framer-UAlht[data-border=\"true\"]::after, .framer-UAlht [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName}-framer-UAlht { background: var(--token-3284aba0-75c7-4a62-a773-78d6c1c9fd62, rgb(1, 7, 37)) /* {\"name\":\"background\"} */; }`, \".framer-UAlht.framer-lux5qc, .framer-UAlht .framer-lux5qc { display: block; }\", \".framer-UAlht.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-3284aba0-75c7-4a62-a773-78d6c1c9fd62, #010725); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1210px; }\", \".framer-UAlht .framer-wn7mx8-container { flex: none; height: 100px; position: relative; width: 100%; }\", \".framer-UAlht .framer-syfkno { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\", \".framer-UAlht .framer-1jnmxmj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-UAlht .framer-1nim0f9, .framer-UAlht .framer-1otljn, .framer-UAlht .framer-1srmn2n, .framer-UAlht .framer-1uru8cw, .framer-UAlht .framer-1ckzux5 { 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 0px 0px 0px; position: relative; width: 100%; }\", \".framer-UAlht .framer-1vrsq07, .framer-UAlht .framer-2ufd5n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-UAlht .framer-pvv6l0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-UAlht .framer-1kuxvw1-container { flex: none; height: auto; position: relative; width: auto; }\", \".framer-UAlht .framer-1801ger { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 600px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-UAlht .framer-rdkmph-container { flex: none; height: 481px; position: absolute; right: 197px; top: calc(50.00000000000002% - 481px / 2); transform: perspective(1200px) rotate(-6deg); width: 236px; z-index: 1; }\", \".framer-UAlht .framer-183fqhp-container { flex: none; height: 481px; position: absolute; right: 16px; top: calc(60.333333333333364% - 481px / 2); transform: perspective(1200px) rotate(4deg); width: 236px; z-index: 1; }\", \".framer-UAlht .framer-5qzdac { -webkit-backdrop-filter: blur(40px); -webkit-filter: blur(56px); aspect-ratio: 1 / 1; backdrop-filter: blur(40px); background-color: rgba(151, 71, 255, 0.2); border-bottom-left-radius: 239px; border-bottom-right-radius: 239px; border-top-left-radius: 239px; border-top-right-radius: 239px; bottom: -110px; filter: blur(56px); flex: none; height: var(--framer-aspect-ratio-supported, 478px); overflow: visible; position: absolute; right: -11px; width: 478px; z-index: 0; }\", \".framer-UAlht .framer-tzb7a3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\", \".framer-UAlht .framer-160d6px { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-UAlht .framer-9igbei, .framer-UAlht .framer-bflh42, .framer-UAlht .framer-13x69n3, .framer-UAlht .framer-dg0g6i, .framer-UAlht .framer-15f9amy, .framer-UAlht .framer-s3enp2, .framer-UAlht .framer-1ly0edl, .framer-UAlht .framer-cmsyxn, .framer-UAlht .framer-1gc9r60, .framer-UAlht .framer-tojkjw, .framer-UAlht .framer-xvp5ru { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --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-UAlht .framer-18priu1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\", \".framer-UAlht .framer-yw01yc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-UAlht .framer-1c06q48, .framer-UAlht .framer-1h7pybc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 566px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-UAlht .framer-1s7w13v-container, .framer-UAlht .framer-vs15ow-container, .framer-UAlht .framer-1ygxlc7-container, .framer-UAlht .framer-b1mpgc-container { flex: none; height: auto; position: relative; transform: perspective(1200px); width: 100%; }\", \".framer-UAlht .framer-1fv9l3b { align-content: center; align-items: center; align-self: stretch; background: linear-gradient(180deg, #B35F35 0%, #8F30B5 39.24021677927928%, #5826EB 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; transform: perspective(1200px); width: 1px; will-change: var(--framer-will-change-override, transform); }\", \".framer-UAlht .framer-1hq3ty-container { bottom: -202px; flex: none; height: 545px; left: calc(50.00000000000002% - 267px / 2); position: absolute; width: 267px; z-index: 1; }\", \".framer-UAlht .framer-cxa7tv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-UAlht .framer-129kqqx { flex: 1 0 0px; height: 100vh; overflow: visible; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\", \".framer-UAlht .framer-ri5m7g { -webkit-backdrop-filter: blur(40px); -webkit-filter: blur(56px); backdrop-filter: blur(40px); background-color: rgba(151, 71, 255, 0.2); border-bottom-left-radius: 239px; border-bottom-right-radius: 239px; border-top-left-radius: 239px; border-top-right-radius: 239px; filter: blur(56px); flex: none; height: 478px; left: calc(56.33333333333336% - 478px / 2); overflow: visible; position: absolute; top: calc(67.50000000000003% - 478px / 2); width: 478px; z-index: 0; }\", \".framer-UAlht .framer-vxd8jw-container { flex: none; height: 545px; left: calc(54.166666666666686% - 267px / 2); position: absolute; top: 137px; transform: perspective(1200px) rotate(-4deg); width: 267px; }\", \".framer-UAlht .framer-2dbnag { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \".framer-UAlht .framer-16xiypy, .framer-UAlht .framer-1hd0jts, .framer-UAlht .framer-tgv1kh, .framer-UAlht .framer-1jh5p1n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100vh; justify-content: center; overflow: hidden; padding: 30px 30px 30px 30px; position: relative; width: 100%; }\", \".framer-UAlht .framer-m0axh2-container, .framer-UAlht .framer-1s9jw44-container, .framer-UAlht .framer-194bhgt-container, .framer-UAlht .framer-r6ir3t-container { flex: none; height: 481px; position: relative; width: 236px; }\", \".framer-UAlht .framer-7ymddb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\", \".framer-UAlht .framer-nln6gq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1440px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\", \".framer-UAlht .framer-1t0z5dz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\", \".framer-UAlht .framer-uy3apn-container { flex: none; height: 282px; max-width: 1440px; position: relative; width: 50%; }\", \".framer-UAlht .framer-moyou5-container, .framer-UAlht .framer-lf0w4-container, .framer-UAlht .framer-w2tx2i-container { height: auto; position: relative; width: 513px; }\", \".framer-UAlht .framer-19i2ou8-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UAlht.framer-72rtr7, .framer-UAlht .framer-syfkno, .framer-UAlht .framer-1jnmxmj, .framer-UAlht .framer-1nim0f9, .framer-UAlht .framer-pvv6l0, .framer-UAlht .framer-1801ger, .framer-UAlht .framer-tzb7a3, .framer-UAlht .framer-160d6px, .framer-UAlht .framer-yw01yc, .framer-UAlht .framer-1c06q48, .framer-UAlht .framer-1fv9l3b, .framer-UAlht .framer-1h7pybc, .framer-UAlht .framer-cxa7tv, .framer-UAlht .framer-2dbnag, .framer-UAlht .framer-16xiypy, .framer-UAlht .framer-1otljn, .framer-UAlht .framer-1hd0jts, .framer-UAlht .framer-1srmn2n, .framer-UAlht .framer-tgv1kh, .framer-UAlht .framer-1uru8cw, .framer-UAlht .framer-1jh5p1n, .framer-UAlht .framer-1ckzux5, .framer-UAlht .framer-7ymddb, .framer-UAlht .framer-1t0z5dz { gap: 0px; } .framer-UAlht.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UAlht.framer-72rtr7 > :first-child, .framer-UAlht .framer-1jnmxmj > :first-child, .framer-UAlht .framer-1nim0f9 > :first-child, .framer-UAlht .framer-tzb7a3 > :first-child, .framer-UAlht .framer-160d6px > :first-child, .framer-UAlht .framer-1c06q48 > :first-child, .framer-UAlht .framer-1fv9l3b > :first-child, .framer-UAlht .framer-1h7pybc > :first-child, .framer-UAlht .framer-2dbnag > :first-child, .framer-UAlht .framer-16xiypy > :first-child, .framer-UAlht .framer-1otljn > :first-child, .framer-UAlht .framer-1hd0jts > :first-child, .framer-UAlht .framer-1srmn2n > :first-child, .framer-UAlht .framer-tgv1kh > :first-child, .framer-UAlht .framer-1uru8cw > :first-child, .framer-UAlht .framer-1jh5p1n > :first-child, .framer-UAlht .framer-1ckzux5 > :first-child, .framer-UAlht .framer-7ymddb > :first-child { margin-top: 0px; } .framer-UAlht.framer-72rtr7 > :last-child, .framer-UAlht .framer-1jnmxmj > :last-child, .framer-UAlht .framer-1nim0f9 > :last-child, .framer-UAlht .framer-tzb7a3 > :last-child, .framer-UAlht .framer-160d6px > :last-child, .framer-UAlht .framer-1c06q48 > :last-child, .framer-UAlht .framer-1fv9l3b > :last-child, .framer-UAlht .framer-1h7pybc > :last-child, .framer-UAlht .framer-2dbnag > :last-child, .framer-UAlht .framer-16xiypy > :last-child, .framer-UAlht .framer-1otljn > :last-child, .framer-UAlht .framer-1hd0jts > :last-child, .framer-UAlht .framer-1srmn2n > :last-child, .framer-UAlht .framer-tgv1kh > :last-child, .framer-UAlht .framer-1uru8cw > :last-child, .framer-UAlht .framer-1jh5p1n > :last-child, .framer-UAlht .framer-1ckzux5 > :last-child, .framer-UAlht .framer-7ymddb > :last-child { margin-bottom: 0px; } .framer-UAlht .framer-syfkno > *, .framer-UAlht .framer-cxa7tv > *, .framer-UAlht .framer-1t0z5dz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UAlht .framer-syfkno > :first-child, .framer-UAlht .framer-pvv6l0 > :first-child, .framer-UAlht .framer-1801ger > :first-child, .framer-UAlht .framer-yw01yc > :first-child, .framer-UAlht .framer-cxa7tv > :first-child, .framer-UAlht .framer-1t0z5dz > :first-child { margin-left: 0px; } .framer-UAlht .framer-syfkno > :last-child, .framer-UAlht .framer-pvv6l0 > :last-child, .framer-UAlht .framer-1801ger > :last-child, .framer-UAlht .framer-yw01yc > :last-child, .framer-UAlht .framer-cxa7tv > :last-child, .framer-UAlht .framer-1t0z5dz > :last-child { margin-right: 0px; } .framer-UAlht .framer-1jnmxmj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-UAlht .framer-1nim0f9 > *, .framer-UAlht .framer-1c06q48 > *, .framer-UAlht .framer-1h7pybc > *, .framer-UAlht .framer-2dbnag > *, .framer-UAlht .framer-1otljn > *, .framer-UAlht .framer-1srmn2n > *, .framer-UAlht .framer-1uru8cw > *, .framer-UAlht .framer-1ckzux5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UAlht .framer-pvv6l0 > *, .framer-UAlht .framer-yw01yc > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-UAlht .framer-1801ger > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UAlht .framer-tzb7a3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-UAlht .framer-160d6px > *, .framer-UAlht .framer-1fv9l3b > *, .framer-UAlht .framer-16xiypy > *, .framer-UAlht .framer-1hd0jts > *, .framer-UAlht .framer-tgv1kh > *, .framer-UAlht .framer-1jh5p1n > *, .framer-UAlht .framer-7ymddb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\", \"@media (min-width: 1210px) { .framer-UAlht .hidden-72rtr7 { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1209px) { .framer-UAlht .hidden-1w3dlqm { display: none !important; } .${metadata.bodyClassName}-framer-UAlht { background: var(--token-3284aba0-75c7-4a62-a773-78d6c1c9fd62, rgb(1, 7, 37)) /* {\"name\":\"background\"} */; } .framer-UAlht.framer-72rtr7 { width: 810px; } .framer-UAlht .framer-pvv6l0, .framer-UAlht .framer-yw01yc { gap: 10px; } .framer-UAlht .framer-rdkmph-container { right: 102px; } .framer-UAlht .framer-183fqhp-container { right: -14px; top: calc(61.16666666666669% - 481px / 2); } .framer-UAlht .framer-5qzdac { -webkit-backdrop-filter: blur(0px); -webkit-filter: blur(50px); backdrop-filter: blur(0px); filter: blur(50px); height: var(--framer-aspect-ratio-supported, 402px); right: -36px; width: 402px; } .framer-UAlht .framer-ri5m7g { -webkit-backdrop-filter: blur(0px); -webkit-filter: blur(50px); backdrop-filter: blur(0px); filter: blur(50px); height: 402px; left: calc(58.75000000000002% - 402px / 2); top: calc(56.759259259259274% - 402px / 2); width: 402px; } .framer-UAlht .framer-1srmn2n { gap: 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UAlht .framer-pvv6l0, .framer-UAlht .framer-yw01yc, .framer-UAlht .framer-1srmn2n { gap: 0px; } .framer-UAlht .framer-pvv6l0 > *, .framer-UAlht .framer-yw01yc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UAlht .framer-pvv6l0 > :first-child, .framer-UAlht .framer-yw01yc > :first-child { margin-left: 0px; } .framer-UAlht .framer-pvv6l0 > :last-child, .framer-UAlht .framer-yw01yc > :last-child { margin-right: 0px; } .framer-UAlht .framer-1srmn2n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UAlht .framer-1srmn2n > :first-child { margin-top: 0px; } .framer-UAlht .framer-1srmn2n > :last-child { margin-bottom: 0px; } }}`, `@media (max-width: 809px) { .framer-UAlht .hidden-122dsg { display: none !important; } .${metadata.bodyClassName}-framer-UAlht { background: var(--token-3284aba0-75c7-4a62-a773-78d6c1c9fd62, rgb(1, 7, 37)) /* {\"name\":\"background\"} */; } .framer-UAlht.framer-72rtr7 { width: 390px; } .framer-UAlht .framer-syfkno { flex-direction: column; padding: 60px 20px 60px 20px; } .framer-UAlht .framer-1jnmxmj, .framer-UAlht .framer-1801ger, .framer-UAlht .framer-1c06q48, .framer-UAlht .framer-1h7pybc { flex: none; width: 100%; } .framer-UAlht .framer-1nim0f9 { align-content: flex-start; align-items: flex-start; } .framer-UAlht .framer-1vrsq07 { max-width: 450px; } .framer-UAlht .framer-pvv6l0 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-UAlht .framer-rdkmph-container { left: calc(43.03030303030305% - 236px / 2); right: unset; top: 47px; } .framer-UAlht .framer-183fqhp-container { left: calc(64.84848484848487% - 236px / 2); right: unset; top: 112px; } .framer-UAlht .framer-5qzdac { height: var(--framer-aspect-ratio-supported, 309px); right: 41px; width: 309px; } .framer-UAlht .framer-tzb7a3, .framer-UAlht .framer-7ymddb { padding: 60px 20px 60px 20px; } .framer-UAlht .framer-18priu1 { width: 100%; } .framer-UAlht .framer-yw01yc, .framer-UAlht .framer-cxa7tv { flex-direction: column; } .framer-UAlht .framer-1fv9l3b { align-self: unset; flex: none; height: 550px; width: 100%; } .framer-UAlht .framer-2dbnag { flex: none; gap: 0px; width: 100%; } .framer-UAlht .framer-16xiypy, .framer-UAlht .framer-1hd0jts, .framer-UAlht .framer-tgv1kh, .framer-UAlht .framer-1jh5p1n { gap: 40px; height: auto; padding: 60px 20px 60px 20px; } .framer-UAlht .framer-1otljn, .framer-UAlht .framer-1srmn2n, .framer-UAlht .framer-1uru8cw, .framer-UAlht .framer-1ckzux5 { gap: 20px; } .framer-UAlht .framer-uy3apn-container { flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UAlht .framer-syfkno, .framer-UAlht .framer-pvv6l0, .framer-UAlht .framer-yw01yc, .framer-UAlht .framer-cxa7tv, .framer-UAlht .framer-2dbnag, .framer-UAlht .framer-16xiypy, .framer-UAlht .framer-1otljn, .framer-UAlht .framer-1hd0jts, .framer-UAlht .framer-1srmn2n, .framer-UAlht .framer-tgv1kh, .framer-UAlht .framer-1uru8cw, .framer-UAlht .framer-1jh5p1n, .framer-UAlht .framer-1ckzux5 { gap: 0px; } .framer-UAlht .framer-syfkno > *, .framer-UAlht .framer-cxa7tv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UAlht .framer-syfkno > :first-child, .framer-UAlht .framer-pvv6l0 > :first-child, .framer-UAlht .framer-yw01yc > :first-child, .framer-UAlht .framer-cxa7tv > :first-child, .framer-UAlht .framer-2dbnag > :first-child, .framer-UAlht .framer-16xiypy > :first-child, .framer-UAlht .framer-1otljn > :first-child, .framer-UAlht .framer-1hd0jts > :first-child, .framer-UAlht .framer-1srmn2n > :first-child, .framer-UAlht .framer-tgv1kh > :first-child, .framer-UAlht .framer-1uru8cw > :first-child, .framer-UAlht .framer-1jh5p1n > :first-child, .framer-UAlht .framer-1ckzux5 > :first-child { margin-top: 0px; } .framer-UAlht .framer-syfkno > :last-child, .framer-UAlht .framer-pvv6l0 > :last-child, .framer-UAlht .framer-yw01yc > :last-child, .framer-UAlht .framer-cxa7tv > :last-child, .framer-UAlht .framer-2dbnag > :last-child, .framer-UAlht .framer-16xiypy > :last-child, .framer-UAlht .framer-1otljn > :last-child, .framer-UAlht .framer-1hd0jts > :last-child, .framer-UAlht .framer-1srmn2n > :last-child, .framer-UAlht .framer-tgv1kh > :last-child, .framer-UAlht .framer-1uru8cw > :last-child, .framer-UAlht .framer-1jh5p1n > :last-child, .framer-UAlht .framer-1ckzux5 > :last-child { margin-bottom: 0px; } .framer-UAlht .framer-pvv6l0 > *, .framer-UAlht .framer-yw01yc > *, .framer-UAlht .framer-1otljn > *, .framer-UAlht .framer-1srmn2n > *, .framer-UAlht .framer-1uru8cw > *, .framer-UAlht .framer-1ckzux5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UAlht .framer-2dbnag > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UAlht .framer-16xiypy > *, .framer-UAlht .framer-1hd0jts > *, .framer-UAlht .framer-tgv1kh > *, .framer-UAlht .framer-1jh5p1n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerIntrinsicHeight 5987\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerIntrinsicWidth 1210\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ciXRAMi4t\":{\"layout\":[\"fixed\",\"auto\"]},\"FG0nmrVU6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerImmutableVariables true\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerDisplayContentsDiv false\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       */\nconst FrameraugiA20Il = withCSS(Component, css, \"framer-UAlht\");\nexport default FrameraugiA20Il;\nFrameraugiA20Il.displayName = \"Home\";\nFrameraugiA20Il.defaultProps = {\n  height: 5987,\n  width: 1210\n};\naddFonts(FrameraugiA20Il, [...NavBarFonts, ...ButtonFonts, ...SmallerPhoneFonts, ...FeatureCardsFonts, ...IPhonesFonts, ...TestimonialFonts, ...SlideshowFonts, ...FooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FrameraugiA20Il\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerImmutableVariables\": \"true\",\n        \"framerDisplayContentsDiv\": \"false\",\n        \"framerIntrinsicWidth\": \"1210\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ciXRAMi4t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FG0nmrVU6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicHeight\": \"5987\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "t", "createGeneratorEasing", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "t", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "description", "height", "icon", "id", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "MprbWBg7g", "vHJIz7jem", "DhgTtGpRc", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "SVG", "RichText", "x", "css", "Framerf4FKvrZNr", "withCSS", "f4FKvrZNr_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "Image2", "css", "FramerfrzDF2raE", "withCSS", "frzDF2raE_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "Image2", "css", "FramerG0v_5eiCd", "withCSS", "G0v_5eiCd_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "image", "name1", "testimonial", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "zCOcvBeQs", "qI4VameKu", "kEeYge0it", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "serializationHash", "RichText", "x", "Image2", "css", "FramerWdNZ4ASY1", "withCSS", "WdNZ4ASY1_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavBarFonts", "getFonts", "f2m0xzsnl_default", "ButtonFonts", "ALp2tZ626_default", "SmallerPhoneFonts", "frzDF2raE_default", "ContainerWithFX", "withFX", "Container", "FeatureCardsFonts", "f4FKvrZNr_default", "IPhonesFonts", "G0v_5eiCd_default", "MotionDivWithFX", "motion", "IPhonesWithVariantAppearEffect", "withVariantAppearEffect", "TestimonialFonts", "WdNZ4ASY1_default", "SlideshowFonts", "Slideshow", "FooterFonts", "Q9RpYyAPB_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "transition1", "animation", "transformTemplate1", "_", "t", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "animation6", "animation7", "transformTemplate2", "animation8", "animation9", "transformTemplate3", "animation10", "transition4", "animation11", "transition5", "animation12", "animation13", "animation14", "transformTemplate4", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "ref1", "pe", "useRouteElementId", "ref2", "id1", "ref3", "isDisplayed", "ref4", "ref5", "ref6", "ref7", "id2", "isDisplayed1", "id3", "id4", "id5", "id6", "ref8", "id7", "ref9", "defaultLayoutId", "sharedStyleClassNames", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Container", "PropertyOverrides", "f2m0xzsnl_default", "optimizeAppear", "optimizeAppearTransformTemplate", "RichText", "x", "ALp2tZ626_default", "ContainerWithFX", "frzDF2raE_default", "f4FKvrZNr_default", "MotionDivWithFX", "G0v_5eiCd_default", "IPhonesWithVariantAppearEffect", "Slideshow", "WdNZ4ASY1_default", "Q9RpYyAPB_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavBarFonts", "ButtonFonts", "SmallerPhoneFonts", "FeatureCardsFonts", "IPhonesFonts", "TestimonialFonts", "SlideshowFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
