{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.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/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/feather-icons/home.js@0.0.29", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js", "ssg:https://framerusercontent.com/modules/OVqONgoMtpYL5gyEbn8Q/miWtiMYzTMwpUQx5wvqA/Xx_XTVL4Y.js", "ssg:https://framerusercontent.com/modules/Q8LlOvOYSFlrm9O0bjBk/z8iM1lpWh5q2jD3210q1/AF0Dr3ec2.js", "ssg:https://framerusercontent.com/modules/KYvNwSKO5OgFLzY1Hurs/QGJYuU698qqT5xspqXIx/K_GAEXpHB.js", "ssg:https://framerusercontent.com/modules/l48ZqnOxyFtUfwsYbcLB/UTyBiA4FMy69UB9NgDgz/vowZHZq5d.js", "ssg:https://framerusercontent.com/modules/UYx6qZapISFVDNKBxY2d/qk8Xfn10IxfUGIWiITrm/Di0V8nIAu.js", "ssg:https://framerusercontent.com/modules/tgyqGiNGK6zXIazzP23j/hgz03ZoWi2BfILHX5xMe/sPgRY9IRi.js", "ssg:https://framerusercontent.com/modules/iPBcm8DvO8nwQBk91fTX/Z07ZaWPsDXTlJ8msxyD0/FbOz3rHQA.js", "ssg:https://framerusercontent.com/modules/PGAqtL8xx6ZjUZRuzFI3/XMSp6ocLAELQVPfQFMKb/Ba7_l_isV.js", "ssg:https://framerusercontent.com/modules/yHmPnOjEYBEoSV4VuxB5/v3jcFh7HqmzdnZWRoaek/jRFK91fu7.js", "ssg:https://framerusercontent.com/modules/PbqMAt54YUFl64jIVwru/43vdpFmQPmNehasyckqS/AfrTN0OP9.js", "ssg:https://framerusercontent.com/modules/k8oN8au1pSjkZlORRahR/HOaEaxdqxvMvuMGQONZq/fGoPjANPm.js", "ssg:https://framerusercontent.com/modules/KVcKnQrGHs0H2lqprErL/sQFjUAb02G06y4j2jcZW/NiOz0WvR0.js", "ssg:https://framerusercontent.com/modules/JoHkuZuFQtkY3xEE50Na/VeHU04CnKZpcqAPyNP4H/nuCCgleXl.js", "ssg:https://framerusercontent.com/modules/Qf9rbGJckkiDEqJV0R5i/Gv7RTggZtxGRewsSRKOI/WQoijzVTS.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let r;var s=o=>{if(!r){const n=o.forwardRef(({color:t=\"currentColor\",size:e=24,...i},l)=>o.createElement(\"svg\",{ref:l,xmlns:\"http://www.w3.org/2000/svg\",width:e,height:e,viewBox:\"0 0 24 24\",fill:\"none\",stroke:t,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",...i},o.createElement(\"path\",{d:\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"}),o.createElement(\"polyline\",{points:\"9 22 9 12 15 12 15 22\"})));n.displayName=\"Home\",r=n}return r};export{s as default};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/feather-icons/home.js@0.0.29\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"activity\",\"airplay\",\"alert-circle\",\"alert-octagon\",\"alert-triangle\",\"align-center\",\"align-justify\",\"align-left\",\"align-right\",\"anchor\",\"aperture\",\"archive\",\"arrow-down\",\"arrow-down-circle\",\"arrow-down-left\",\"arrow-down-right\",\"arrow-left\",\"arrow-left-circle\",\"arrow-right\",\"arrow-right-circle\",\"arrow-up\",\"arrow-up-circle\",\"arrow-up-left\",\"arrow-up-right\",\"at-sign\",\"award\",\"bar-chart\",\"bar-chart-2\",\"battery\",\"battery-charging\",\"bell\",\"bell-off\",\"bluetooth\",\"bold\",\"book\",\"book-open\",\"bookmark\",\"box\",\"briefcase\",\"calendar\",\"camera\",\"camera-off\",\"cast\",\"check\",\"check-circle\",\"check-square\",\"chevron-down\",\"chevron-left\",\"chevron-right\",\"chevron-up\",\"chevrons-down\",\"chevrons-left\",\"chevrons-right\",\"chevrons-up\",\"chrome\",\"circle\",\"clipboard\",\"clock\",\"cloud\",\"cloud-drizzle\",\"cloud-lightning\",\"cloud-off\",\"cloud-rain\",\"cloud-snow\",\"code\",\"codepen\",\"codesandbox\",\"coffee\",\"columns\",\"command\",\"compass\",\"copy\",\"corner-down-left\",\"corner-down-right\",\"corner-left-down\",\"corner-left-up\",\"corner-right-down\",\"corner-right-up\",\"corner-up-left\",\"corner-up-right\",\"cpu\",\"credit-card\",\"crop\",\"crosshair\",\"database\",\"delete\",\"disc\",\"divide\",\"divide-circle\",\"divide-square\",\"dollar-sign\",\"download\",\"download-cloud\",\"dribbble\",\"droplet\",\"edit\",\"edit-2\",\"edit-3\",\"external-link\",\"eye\",\"eye-off\",\"facebook\",\"fast-forward\",\"feather\",\"figma\",\"file\",\"file-minus\",\"file-plus\",\"file-text\",\"film\",\"filter\",\"flag\",\"folder\",\"folder-minus\",\"folder-plus\",\"framer\",\"frown\",\"gift\",\"git-branch\",\"git-commit\",\"git-merge\",\"git-pull-request\",\"github\",\"gitlab\",\"globe\",\"grid\",\"hard-drive\",\"hash\",\"headphones\",\"heart\",\"help-circle\",\"hexagon\",\"home\",\"image\",\"inbox\",\"info\",\"instagram\",\"italic\",\"key\",\"layers\",\"layout\",\"life-buoy\",\"link\",\"link-2\",\"linkedin\",\"list\",\"loader\",\"lock\",\"log-in\",\"log-out\",\"mail\",\"map\",\"map-pin\",\"maximize\",\"maximize-2\",\"meh\",\"menu\",\"message-circle\",\"message-square\",\"mic\",\"mic-off\",\"minimize\",\"minimize-2\",\"minus\",\"minus-circle\",\"minus-square\",\"monitor\",\"moon\",\"more-horizontal\",\"more-vertical\",\"mouse-pointer\",\"move\",\"music\",\"navigation\",\"navigation-2\",\"octagon\",\"package\",\"paperclip\",\"pause\",\"pause-circle\",\"pen-tool\",\"percent\",\"phone\",\"phone-call\",\"phone-forwarded\",\"phone-incoming\",\"phone-missed\",\"phone-off\",\"phone-outgoing\",\"pie-chart\",\"play\",\"play-circle\",\"plus\",\"plus-circle\",\"plus-square\",\"pocket\",\"power\",\"printer\",\"radio\",\"refresh-ccw\",\"refresh-cw\",\"repeat\",\"rewind\",\"rotate-ccw\",\"rotate-cw\",\"rss\",\"save\",\"scissors\",\"search\",\"send\",\"server\",\"settings\",\"share\",\"share-2\",\"shield\",\"shield-off\",\"shopping-bag\",\"shopping-cart\",\"shuffle\",\"sidebar\",\"skip-back\",\"skip-forward\",\"slack\",\"slash\",\"sliders\",\"smartphone\",\"smile\",\"speaker\",\"square\",\"star\",\"stop-circle\",\"sun\",\"sunrise\",\"sunset\",\"tablet\",\"tag\",\"target\",\"terminal\",\"thermometer\",\"thumbs-down\",\"thumbs-up\",\"toggle-left\",\"toggle-right\",\"tool\",\"trash\",\"trash-2\",\"trello\",\"trending-down\",\"trending-up\",\"triangle\",\"truck\",\"tv\",\"twitch\",\"twitter\",\"type\",\"umbrella\",\"underline\",\"unlock\",\"upload\",\"upload-cloud\",\"user\",\"user-check\",\"user-minus\",\"user-plus\",\"user-x\",\"users\",\"video\",\"video-off\",\"voicemail\",\"volume\",\"volume-1\",\"volume-2\",\"volume-x\",\"watch\",\"wifi\",\"wifi-off\",\"wind\",\"x\",\"x-circle\",\"x-octagon\",\"x-square\",\"youtube\",\"zap\",\"zap-off\",\"zoom-in\",\"zoom-out\",];const moduleBaseUrl=\"https://framer.com/m/feather-icons/\";const uppercaseIconKeys=iconKeys.map(name=>name.charAt(0).toUpperCase()+name.slice(1));const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * FEATHER\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){let active=true;// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.29`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);// console.log(module.default)\nif(active)setSelectedIcon(module.default(React));}catch(e){console.log(e);if(active)setSelectedIcon(null);}return()=>{active=false;};}// Import module when new style or icon is selected\nuseEffect(()=>{importModule();},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Feather\";Icon.defaultProps={width:24,height:24,iconSelection:\"home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,optionTitles:uppercaseIconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Feather site](https://feathericons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Feather.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={OpAv2jVsd:{hover:true}};const cycleOrder=[\"OpAv2jVsd\",\"LWdZNNPAJ\"];const serializationHash=\"framer-nF7yD\";const variantClassNames={LWdZNNPAJ:\"framer-v-8vib0n\",OpAv2jVsd:\"framer-v-1gtrhxk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={DESK:\"OpAv2jVsd\",MOB:\"LWdZNNPAJ\"};const getProps=({height,id,link,nomIcone,texte,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,Ep4DcoGZc:(_ref=texte!==null&&texte!==void 0?texte:props.Ep4DcoGZc)!==null&&_ref!==void 0?_ref:\"Accueil\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"OpAv2jVsd\",vRf4OAEWK:(_ref2=nomIcone!==null&&nomIcone!==void 0?nomIcone:props.vRf4OAEWK)!==null&&_ref2!==void 0?_ref2:\"Home\",Z8sRMm9zP:link!==null&&link!==void 0?link:props.Z8sRMm9zP};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Ep4DcoGZc,vRf4OAEWK,Z8sRMm9zP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OpAv2jVsd\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LWdZNNPAJ\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Z8sRMm9zP,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1gtrhxk\",className,classNames)} framer-1x176h5`,\"data-framer-name\":\"DESK\",layoutDependency:layoutDependency,layoutId:\"OpAv2jVsd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"OpAv2jVsd-hover\":{\"data-framer-name\":undefined},LWdZNNPAJ:{\"data-framer-name\":\"MOB\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1de4haz\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"v7kH23E8F\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nnads7-container\",layoutDependency:layoutDependency,layoutId:\"yI2NQVEnu-container\",style:{opacity:.7},variants:{\"OpAv2jVsd-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\",height:\"100%\",iconSearch:vRf4OAEWK,iconSelection:\"home\",id:\"yI2NQVEnu\",layoutId:\"yI2NQVEnu\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1drsfbq\",layoutDependency:layoutDependency,layoutId:\"bbZR7lSGy\",style:{backgroundColor:\"rgb(232, 232, 232)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},transformTemplate:transformTemplate1,variants:{\"OpAv2jVsd-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgba(36, 36, 36, 0.7)))\"},children:\"Accueil\"})}),className:\"framer-maovdk\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"cV9z6JDKp\",style:{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgba(36, 36, 36, 0.7))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Ep4DcoGZc,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nF7yD.framer-1x176h5, .framer-nF7yD .framer-1x176h5 { display: block; }\",\".framer-nF7yD.framer-1gtrhxk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 30px; }\",\".framer-nF7yD .framer-1de4haz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-nF7yD .framer-1nnads7-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-nF7yD .framer-1drsfbq { align-content: center; align-items: center; bottom: -10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 4px 12px 4px 12px; pointer-events: none; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-nF7yD .framer-maovdk { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nF7yD.framer-1gtrhxk, .framer-nF7yD .framer-1de4haz, .framer-nF7yD .framer-1drsfbq { gap: 0px; } .framer-nF7yD.framer-1gtrhxk > *, .framer-nF7yD .framer-1de4haz > *, .framer-nF7yD .framer-1drsfbq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nF7yD.framer-1gtrhxk > :first-child, .framer-nF7yD .framer-1de4haz > :first-child, .framer-nF7yD .framer-1drsfbq > :first-child { margin-left: 0px; } .framer-nF7yD.framer-1gtrhxk > :last-child, .framer-nF7yD .framer-1de4haz > :last-child, .framer-nF7yD .framer-1drsfbq > :last-child { margin-right: 0px; } }\",\".framer-nF7yD.framer-v-8vib0n.framer-1gtrhxk { cursor: unset; }\",\".framer-nF7yD.framer-v-1gtrhxk.hover .framer-1drsfbq { bottom: -40px; left: 47%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LWdZNNPAJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"hbD9stZp8\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Ep4DcoGZc\":\"texte\",\"vRf4OAEWK\":\"nomIcone\",\"Z8sRMm9zP\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXx_XTVL4Y=withCSS(Component,css,\"framer-nF7yD\");export default FramerXx_XTVL4Y;FramerXx_XTVL4Y.displayName=\"NAV BUTTON 2\";FramerXx_XTVL4Y.defaultProps={height:30,width:30};addPropertyControls(FramerXx_XTVL4Y,{variant:{options:[\"OpAv2jVsd\",\"LWdZNNPAJ\"],optionTitles:[\"DESK\",\"MOB\"],title:\"Variant\",type:ControlType.Enum},Ep4DcoGZc:{defaultValue:\"Accueil\",description:\"\",displayTextArea:false,title:\"Texte\",type:ControlType.String},vRf4OAEWK:{defaultValue:\"Home\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"Nom Icone\",type:ControlType.String},Z8sRMm9zP:{title:\"Link\",type:ControlType.Link}});addFonts(FramerXx_XTVL4Y,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXx_XTVL4Y\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Ep4DcoGZc\\\":\\\"texte\\\",\\\"vRf4OAEWK\\\":\\\"nomIcone\\\",\\\"Z8sRMm9zP\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LWdZNNPAJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hbD9stZp8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Xx_XTVL4Y.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import NAVBUTTON2 from\"https://framerusercontent.com/modules/OVqONgoMtpYL5gyEbn8Q/miWtiMYzTMwpUQx5wvqA/Xx_XTVL4Y.js\";const NAVBUTTON2Fonts=getFonts(NAVBUTTON2);const enabledGestures={e9vhJmizT:{hover:true}};const cycleOrder=[\"e9vhJmizT\",\"Mq23qaQ4j\"];const serializationHash=\"framer-2i2iA\";const variantClassNames={e9vhJmizT:\"framer-v-kt58fl\",Mq23qaQ4j:\"framer-v-9rpyek\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:68,delay:0,mass:1,stiffness:200,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={NAV:\"e9vhJmizT\",NAVMOB:\"Mq23qaQ4j\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"e9vhJmizT\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e9vhJmizT\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-kt58fl\",className,classNames),\"data-framer-name\":\"NAV\",layoutDependency:layoutDependency,layoutId:\"e9vhJmizT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(237, 237, 237, 0.8)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\",...style},...addPropertyOverrides({\"e9vhJmizT-hover\":{\"data-framer-name\":undefined},Mq23qaQ4j:{\"data-framer-name\":\"NAVMOB\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-raok1\",\"data-framer-name\":\"WRAPPER\",layoutDependency:layoutDependency,layoutId:\"DjtRwMjZ_\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2qyuge\",layoutDependency:layoutDependency,layoutId:\"yR8G5WVTC\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":xKBPHamHs\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined},{href:{hash:\":xKBPHamHs\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined},{href:{hash:\":xKBPHamHs\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"40px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2)+0+8,...addPropertyOverrides({Mq23qaQ4j:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2)+0+0+8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-142phvv-container\",layoutDependency:layoutDependency,layoutId:\"R7_wxf9Xp-container\",children:/*#__PURE__*/_jsx(NAVBUTTON2,{Ep4DcoGZc:\"Accueil\",height:\"100%\",id:\"R7_wxf9Xp\",layoutId:\"R7_wxf9Xp\",style:{height:\"100%\",width:\"100%\"},variant:\"OpAv2jVsd\",vRf4OAEWK:\"Home\",width:\"100%\",Z8sRMm9zP:resolvedLinks[0],...addPropertyOverrides({\"e9vhJmizT-hover\":{Z8sRMm9zP:resolvedLinks[2]},Mq23qaQ4j:{variant:\"LWdZNNPAJ\",Z8sRMm9zP:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":ghxXRdhc5\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined},{href:{hash:\":ghxXRdhc5\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined},{href:{hash:\":ghxXRdhc5\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"40px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2)+0+8,...addPropertyOverrides({Mq23qaQ4j:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2)+0+0+8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17paz8x-container\",layoutDependency:layoutDependency,layoutId:\"gvFiZhn2V-container\",children:/*#__PURE__*/_jsx(NAVBUTTON2,{Ep4DcoGZc:\"Projets\",height:\"100%\",id:\"gvFiZhn2V\",layoutId:\"gvFiZhn2V\",style:{height:\"100%\",width:\"100%\"},variant:\"OpAv2jVsd\",vRf4OAEWK:\"folder\",width:\"100%\",Z8sRMm9zP:resolvedLinks1[0],...addPropertyOverrides({\"e9vhJmizT-hover\":{Z8sRMm9zP:resolvedLinks1[2]},Mq23qaQ4j:{variant:\"LWdZNNPAJ\",Z8sRMm9zP:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":jrKb8th_z\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined},{href:{hash:\":jrKb8th_z\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined},{href:{hash:\":jrKb8th_z\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"40px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2)+0+8,...addPropertyOverrides({Mq23qaQ4j:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2)+0+0+8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l7bhej-container\",layoutDependency:layoutDependency,layoutId:\"ZLzHc7_IL-container\",children:/*#__PURE__*/_jsx(NAVBUTTON2,{Ep4DcoGZc:\"Solutions\",height:\"100%\",id:\"ZLzHc7_IL\",layoutId:\"ZLzHc7_IL\",style:{height:\"100%\",width:\"100%\"},variant:\"OpAv2jVsd\",vRf4OAEWK:\"globe\",width:\"100%\",Z8sRMm9zP:resolvedLinks2[0],...addPropertyOverrides({\"e9vhJmizT-hover\":{Z8sRMm9zP:resolvedLinks2[2]},Mq23qaQ4j:{variant:\"LWdZNNPAJ\",Z8sRMm9zP:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":RldOf8nnA\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined},{href:{hash:\":RldOf8nnA\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined},{href:{hash:\":RldOf8nnA\",webPageId:\"k9oizGkUN\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"40px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2)+0+8,...addPropertyOverrides({Mq23qaQ4j:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2)+0+0+8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5gsx5w-container\",layoutDependency:layoutDependency,layoutId:\"opIpQx8do-container\",children:/*#__PURE__*/_jsx(NAVBUTTON2,{Ep4DcoGZc:\"Contact\",height:\"100%\",id:\"opIpQx8do\",layoutId:\"opIpQx8do\",style:{height:\"100%\",width:\"100%\"},variant:\"OpAv2jVsd\",vRf4OAEWK:\"mail\",width:\"100%\",Z8sRMm9zP:resolvedLinks3[0],...addPropertyOverrides({\"e9vhJmizT-hover\":{Z8sRMm9zP:resolvedLinks3[2]},Mq23qaQ4j:{variant:\"LWdZNNPAJ\",Z8sRMm9zP:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2i2iA.framer-2sq9oi, .framer-2i2iA .framer-2sq9oi { display: block; }\",\".framer-2i2iA.framer-kt58fl { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2i2iA .framer-raok1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2i2iA .framer-2qyuge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 48px; justify-content: center; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 300px; }\",\".framer-2i2iA .framer-142phvv-container, .framer-2i2iA .framer-17paz8x-container, .framer-2i2iA .framer-1l7bhej-container, .framer-2i2iA .framer-5gsx5w-container { flex: none; height: 32px; position: relative; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2i2iA.framer-kt58fl, .framer-2i2iA .framer-raok1, .framer-2i2iA .framer-2qyuge { gap: 0px; } .framer-2i2iA.framer-kt58fl > *, .framer-2i2iA .framer-2qyuge > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-2i2iA.framer-kt58fl > :first-child, .framer-2i2iA .framer-raok1 > :first-child, .framer-2i2iA .framer-2qyuge > :first-child { margin-left: 0px; } .framer-2i2iA.framer-kt58fl > :last-child, .framer-2i2iA .framer-raok1 > :last-child, .framer-2i2iA .framer-2qyuge > :last-child { margin-right: 0px; } .framer-2i2iA .framer-raok1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-2i2iA.framer-v-9rpyek.framer-kt58fl { cursor: unset; }\",\".framer-2i2iA.framer-v-9rpyek .framer-raok1 { align-content: flex-end; align-items: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"Mq23qaQ4j\":{\"layout\":[\"auto\",\"fixed\"]},\"SgvCNijD8\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAF0Dr3ec2=withCSS(Component,css,\"framer-2i2iA\");export default FramerAF0Dr3ec2;FramerAF0Dr3ec2.displayName=\"NAV\";FramerAF0Dr3ec2.defaultProps={height:48,width:300};addPropertyControls(FramerAF0Dr3ec2,{variant:{options:[\"e9vhJmizT\",\"Mq23qaQ4j\"],optionTitles:[\"NAV\",\"NAVMOB\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAF0Dr3ec2,[{explicitInter:true,fonts:[]},...NAVBUTTON2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAF0Dr3ec2\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Mq23qaQ4j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SgvCNijD8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"300\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-JNJC7 .framer-styles-preset-1st69sr:not(.rich-text-wrapper), .framer-JNJC7 .framer-styles-preset-1st69sr.rich-text-wrapper h2 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #e3e3e3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 2199px) and (min-width: 0px) { .framer-JNJC7 .framer-styles-preset-1st69sr:not(.rich-text-wrapper), .framer-JNJC7 .framer-styles-preset-1st69sr.rich-text-wrapper h2 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #e3e3e3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-JNJC7\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-regular\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"}]}];export const css=['.framer-pkbVc .framer-styles-preset-1na8dda:not(.rich-text-wrapper), .framer-pkbVc .framer-styles-preset-1na8dda.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 2199px) and (min-width: 0px) { .framer-pkbVc .framer-styles-preset-1na8dda:not(.rich-text-wrapper), .framer-pkbVc .framer-styles-preset-1na8dda.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-pkbVc\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KYvNwSKO5OgFLzY1Hurs/QGJYuU698qqT5xspqXIx/K_GAEXpHB.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/l48ZqnOxyFtUfwsYbcLB/UTyBiA4FMy69UB9NgDgz/vowZHZq5d.js\";const FeatherFonts=getFonts(Feather);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const enabledGestures={bfg646eSP:{hover:true},ztR_q72P8:{hover:true}};const cycleOrder=[\"ztR_q72P8\",\"T9KVVDEiW\",\"bfg646eSP\",\"nMqP8KWDx\"];const serializationHash=\"framer-ATUvV\";const variantClassNames={bfg646eSP:\"framer-v-ippwb1\",nMqP8KWDx:\"framer-v-y2jttl\",T9KVVDEiW:\"framer-v-yt41kf\",ztR_q72P8:\"framer-v-ttvl1l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:29,delay:0,mass:1,stiffness:174,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:.5,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"CARD MOB\":\"nMqP8KWDx\",\"Variant 1\":\"ztR_q72P8\",CARD:\"bfg646eSP\",MOBILE:\"T9KVVDEiW\"};const getProps=({height,id,lINK,tYPE2,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,Ib_Z5QC7R:(_ref=tYPE2!==null&&tYPE2!==void 0?tYPE2:props.Ib_Z5QC7R)!==null&&_ref!==void 0?_ref:\"WEB 3\",PB01pnBMb:lINK!==null&&lINK!==void 0?lINK:props.PB01pnBMb,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ztR_q72P8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Ib_Z5QC7R,PB01pnBMb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ztR_q72P8\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"T9KVVDEiW\",\"nMqP8KWDx\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"T9KVVDEiW\",\"nMqP8KWDx\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:PB01pnBMb,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-ttvl1l\",className,classNames)} framer-do2ifc`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ztR_q72P8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"radial-gradient(76% 38% at 50% 100%, rgb(194, 194, 194) 0%, rgb(237, 237, 237) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"ztR_q72P8-hover\":{background:\"radial-gradient(76% 38% at 50% 100%, rgb(194, 194, 194) 0%, rgb(222, 222, 222) 100%)\"}},...addPropertyOverrides({\"bfg646eSP-hover\":{\"data-framer-name\":undefined},\"ztR_q72P8-hover\":{\"data-framer-name\":undefined},bfg646eSP:{\"data-framer-name\":\"CARD\"},nMqP8KWDx:{\"data-framer-name\":\"CARD MOB\"},T9KVVDEiW:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17dyqu0\",\"data-framer-name\":\"WRAPPER\",layoutDependency:layoutDependency,layoutId:\"BJKen_EeR\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11tc810\",\"data-framer-name\":\"INFOS\",layoutDependency:layoutDependency,layoutId:\"mMXA2814L\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k9vizk\",\"data-framer-name\":\"ARROW\",layoutDependency:layoutDependency,layoutId:\"SwARxCJye\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,WebkitBackdropFilter:\"none\"},variants:{nMqP8KWDx:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.73)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(8px)\"},T9KVVDEiW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.73)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(8px)\"}},...addPropertyOverrides({nMqP8KWDx:{\"data-border\":true},T9KVVDEiW:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bs03pc\",\"data-framer-name\":\"Tags\",layoutDependency:layoutDependency,layoutId:\"z0APY0gPu\",children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"WEB 3\"})}),className:\"framer-1o14rl6\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"LAXtETTyr\",style:{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Ib_Z5QC7R,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ayib74\",layoutDependency:layoutDependency,layoutId:\"mnDBrvlX2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"VOYAGERS LEGACY\"})}),className:\"framer-v75y6z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VCSBUh27n\",style:{\"--extracted-1of0zx5\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"bfg646eSP-hover\":{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\"},\"ztR_q72P8-hover\":{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227))\"},nMqP8KWDx:{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227))\"},T9KVVDEiW:{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"bfg646eSP-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0)))\"},children:\"VOYAGERS LEGACY\"})})},\"ztR_q72P8-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227)))\"},children:\"VOYAGERS LEGACY\"})})},nMqP8KWDx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227)))\"},children:\"VOYAGERS LEGACY\"})})},T9KVVDEiW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227)))\"},children:\"VOYAGERS LEGACY\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ss7he\",layoutDependency:layoutDependency,layoutId:\"QUO1oMc96\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{nMqP8KWDx:{backgroundColor:\"rgba(0, 0, 0, 0)\"},T9KVVDEiW:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14rdco-container\",layoutDependency:layoutDependency,layoutId:\"f1ldAvrjS-container\",style:{opacity:.7},variants:{\"bfg646eSP-hover\":{opacity:1},\"ztR_q72P8-hover\":{opacity:1},nMqP8KWDx:{opacity:1},T9KVVDEiW:{opacity:1}},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-157db5f0-8d15-4f62-9595-f27094d1d3ed, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"f1ldAvrjS\",layoutId:\"f1ldAvrjS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({nMqP8KWDx:{color:\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\"},T9KVVDEiW:{color:\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\"}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19f0nym\",layoutDependency:layoutDependency,layoutId:\"EI28jjpB1\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-79uc4y\",\"data-border\":true,\"data-framer-name\":\"TYPE\",layoutDependency:layoutDependency,layoutId:\"MUjUR0IO1\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"radial-gradient(76% 100% at 50% 100%, rgb(214, 214, 214) 0%, rgb(255, 255, 255) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1na8dda\",\"data-styles-preset\":\"vowZHZq5d\",children:\"WEB 3\"})}),className:\"framer-1v87bq1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zldk4aL5x\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)-326),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.5833)`,src:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png\",srcSet:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png 1500w\"},className:\"framer-dvry2h\",\"data-framer-name\":\"voyagers_1_NOBG\",layoutDependency:layoutDependency,layoutId:\"xy2Tmyrsq\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"bfg646eSP-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)-362),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 1.062)`,src:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png\",srcSet:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png 1500w\"}},\"ztR_q72P8-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)-336),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.5833)`,src:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png\",srcSet:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png 1500w\"}},bfg646eSP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)-330),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.8604)`,src:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png\",srcSet:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png 1500w\"}},nMqP8KWDx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)-285),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.7106)`,src:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png\",srcSet:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png 1500w\"}},T9KVVDEiW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)-400),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.5833)`,src:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png\",srcSet:\"https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h9gP5DdjGlw2yTsUnwMp7imcWEM.png 1500w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1eqtrn5\",\"data-border\":true,\"data-framer-name\":\"LITTLE LINE\",layoutDependency:layoutDependency,layoutId:\"xdtFFJU5y\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(255, 255, 255, 0.16))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,filter:\"blur(0px)\",opacity:0,rotate:-42,WebkitFilter:\"blur(0px)\"},transformTemplate:transformTemplate2,variants:{\"bfg646eSP-hover\":{opacity:1,rotate:-45},\"ztR_q72P8-hover\":{\"--border-color\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgba(255, 255, 255, 0.7))\",opacity:.3,rotate:-45},nMqP8KWDx:{opacity:1,rotate:-45},T9KVVDEiW:{opacity:1,rotate:-45}},...addPropertyOverrides({T9KVVDEiW:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2887323943661974-60)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.816)`,src:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png\",srcSet:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png 3215w\"},className:\"framer-xtgwzm\",\"data-framer-name\":\"logo_1\",layoutDependency:layoutDependency,layoutId:\"C3iGst3Sa\",style:{opacity:1},transformTemplate:transformTemplate2,variants:{\"bfg646eSP-hover\":{opacity:0},\"ztR_q72P8-hover\":{opacity:0}},...addPropertyOverrides({\"bfg646eSP-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2887323943661974-30)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.84)`,src:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png\",srcSet:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png 3215w\"}},\"ztR_q72P8-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2887323943661974-60)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.84)`,src:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png\",srcSet:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png 3215w\"}},bfg646eSP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2887323943661974-30)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.816)`,src:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png\",srcSet:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png 3215w\"}},nMqP8KWDx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.19912472647702428-35)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.8875)`,src:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png\",srcSet:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png 3215w\"}},T9KVVDEiW:{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2007042253521129-50.5)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6875)`,src:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png\",srcSet:\"https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xnd99GBSwaP7YCb8pttaCnRlQ.png 3215w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2887323943661974-60)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.816)`,src:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png\",srcSet:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png 3215w\"},className:\"framer-uesvdk\",\"data-framer-name\":\"logo_2\",layoutDependency:layoutDependency,layoutId:\"QbnqDri2O\",style:{opacity:0},transformTemplate:transformTemplate2,variants:{\"bfg646eSP-hover\":{opacity:1},\"ztR_q72P8-hover\":{opacity:1}},...addPropertyOverrides({\"bfg646eSP-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2887323943661974-30)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.84)`,src:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png\",srcSet:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png 3215w\"}},\"ztR_q72P8-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2887323943661974-60)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.84)`,src:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png\",srcSet:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png 3215w\"}},bfg646eSP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2887323943661974-30)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.816)`,src:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png\",srcSet:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png 3215w\"}},nMqP8KWDx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.19912472647702428-35)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.8875)`,src:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png\",srcSet:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png 3215w\"}},T9KVVDEiW:{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:0,background:{alt:\"\",fit:\"fill\",intrinsicHeight:818,intrinsicWidth:3215,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2007042253521129-50.5)),pixelHeight:818,pixelWidth:3215,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6875)`,src:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png\",srcSet:\"https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mtjGHb55PuNoD6uzjc8qOw6ooU.png 3215w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.7658450704225355-133)),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4618)`,src:\"https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png\",srcSet:\"https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png 1500w\"},className:\"framer-1a81n16\",\"data-framer-name\":\"voyagers_2_NOBG\",layoutDependency:layoutDependency,layoutId:\"CaizKQ1HH\",style:{opacity:0},transformTemplate:transformTemplate2,variants:{\"bfg646eSP-hover\":{opacity:1},\"ztR_q72P8-hover\":{opacity:1},nMqP8KWDx:{opacity:1},T9KVVDEiW:{opacity:1}},...addPropertyOverrides({bfg646eSP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)-274),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 1.438)`,src:\"https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png\",srcSet:\"https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png 1500w\"},transformTemplate:transformTemplate1},nMqP8KWDx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.7024070021881841-71.5)),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4606)`,src:\"https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png\",srcSet:\"https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png 1500w\"}},T9KVVDEiW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.660211267605634-133)),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4618)`,src:\"https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png\",srcSet:\"https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EOGgaUYJdi64Bo2JDJ3svTWTp4c.png 1500w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.7658450704225355-133)),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4618)`,src:\"https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png\",srcSet:\"https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png 1500w\"},className:\"framer-j687yk\",\"data-framer-name\":\"voyagers_3_NOBG\",layoutDependency:layoutDependency,layoutId:\"WSmIe5L_G\",style:{opacity:0},transformTemplate:transformTemplate2,variants:{\"bfg646eSP-hover\":{opacity:1},\"ztR_q72P8-hover\":{opacity:1},nMqP8KWDx:{opacity:1},T9KVVDEiW:{opacity:1}},...addPropertyOverrides({bfg646eSP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)-275),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.698)`,src:\"https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png\",srcSet:\"https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png 1500w\"},transformTemplate:transformTemplate1},nMqP8KWDx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.7024070021881841-72)),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4639)`,src:\"https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png\",srcSet:\"https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png 1500w\"}},T9KVVDEiW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.660211267605634-133)),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4618)`,src:\"https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png\",srcSet:\"https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xp0HxXjDPUuG2on8C67YIzJ3VlQ.png 1500w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ATUvV.framer-do2ifc, .framer-ATUvV .framer-do2ifc { display: block; }\",\".framer-ATUvV.framer-ttvl1l { cursor: pointer; height: 568px; overflow: hidden; position: relative; text-decoration: none; width: 576px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ATUvV .framer-17dyqu0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-ATUvV .framer-11tc810 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 16px; position: relative; width: 1px; z-index: 3; }\",\".framer-ATUvV .framer-1k9vizk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-ATUvV .framer-1bs03pc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ATUvV .framer-1o14rl6, .framer-ATUvV .framer-v75y6z, .framer-ATUvV .framer-1v87bq1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ATUvV .framer-1ayib74 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ATUvV .framer-10ss7he { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: 32px; }\",\".framer-ATUvV .framer-14rdco-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-ATUvV .framer-19f0nym { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ATUvV .framer-79uc4y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 16px 4px 16px; position: relative; width: min-content; }\",\".framer-ATUvV .framer-dvry2h { aspect-ratio: 1 / 1; bottom: -10px; flex: none; height: var(--framer-aspect-ratio-supported, 336px); left: 50%; overflow: visible; position: absolute; width: 58%; z-index: 2; }\",\".framer-ATUvV .framer-1eqtrn5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 309px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 54%; z-index: 1; }\",\".framer-ATUvV .framer-xtgwzm, .framer-ATUvV .framer-uesvdk { aspect-ratio: 3.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); left: 50%; overflow: visible; position: absolute; top: 29%; width: 82%; z-index: 3; }\",\".framer-ATUvV .framer-1a81n16 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 266px); left: 36%; overflow: visible; position: absolute; top: 77%; width: 46%; z-index: 1; }\",\".framer-ATUvV .framer-j687yk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 266px); left: 65%; overflow: visible; position: absolute; top: 77%; width: 46%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ATUvV .framer-17dyqu0, .framer-ATUvV .framer-1bs03pc, .framer-ATUvV .framer-10ss7he, .framer-ATUvV .framer-19f0nym, .framer-ATUvV .framer-79uc4y { gap: 0px; } .framer-ATUvV .framer-17dyqu0 > *, .framer-ATUvV .framer-10ss7he > *, .framer-ATUvV .framer-19f0nym > *, .framer-ATUvV .framer-79uc4y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ATUvV .framer-17dyqu0 > :first-child, .framer-ATUvV .framer-1bs03pc > :first-child, .framer-ATUvV .framer-10ss7he > :first-child, .framer-ATUvV .framer-19f0nym > :first-child, .framer-ATUvV .framer-79uc4y > :first-child { margin-left: 0px; } .framer-ATUvV .framer-17dyqu0 > :last-child, .framer-ATUvV .framer-1bs03pc > :last-child, .framer-ATUvV .framer-10ss7he > :last-child, .framer-ATUvV .framer-19f0nym > :last-child, .framer-ATUvV .framer-79uc4y > :last-child { margin-right: 0px; } .framer-ATUvV .framer-1bs03pc > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-ATUvV.framer-v-yt41kf.framer-ttvl1l { cursor: unset; }\",\".framer-ATUvV.framer-v-yt41kf .framer-11tc810, .framer-ATUvV.framer-v-y2jttl .framer-11tc810 { gap: 8px; justify-content: flex-end; padding: 12px; }\",\".framer-ATUvV.framer-v-yt41kf .framer-1k9vizk, .framer-ATUvV.framer-v-y2jttl .framer-1k9vizk { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; justify-content: flex-start; order: 1; padding: 8px 8px 8px 16px; }\",\".framer-ATUvV.framer-v-yt41kf .framer-1bs03pc, .framer-ATUvV.framer-v-y2jttl .framer-1bs03pc { flex: none; min-height: unset; order: 1; width: 100%; }\",\".framer-ATUvV.framer-v-yt41kf .framer-1o14rl6, .framer-ATUvV.framer-v-y2jttl .framer-1o14rl6 { order: 0; }\",\".framer-ATUvV.framer-v-yt41kf .framer-1ayib74, .framer-ATUvV.framer-v-y2jttl .framer-1ayib74 { flex: none; order: 0; width: 100%; }\",\".framer-ATUvV.framer-v-yt41kf .framer-10ss7he, .framer-ATUvV.framer-v-y2jttl .framer-10ss7he { height: 20px; width: 20px; }\",\".framer-ATUvV.framer-v-yt41kf .framer-dvry2h { bottom: 64px; }\",\".framer-ATUvV.framer-v-yt41kf .framer-xtgwzm, .framer-ATUvV.framer-v-yt41kf .framer-uesvdk { height: var(--framer-aspect-ratio-supported, 101px); top: 20%; width: 69%; }\",\".framer-ATUvV.framer-v-yt41kf .framer-1a81n16 { left: 28%; top: 66%; }\",\".framer-ATUvV.framer-v-yt41kf .framer-j687yk { left: 71%; top: 66%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ATUvV.framer-v-yt41kf .framer-11tc810, .framer-ATUvV.framer-v-yt41kf .framer-1k9vizk { gap: 0px; } .framer-ATUvV.framer-v-yt41kf .framer-11tc810 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ATUvV.framer-v-yt41kf .framer-11tc810 > :first-child, .framer-ATUvV.framer-v-yt41kf .framer-1k9vizk > :first-child { margin-top: 0px; } .framer-ATUvV.framer-v-yt41kf .framer-11tc810 > :last-child, .framer-ATUvV.framer-v-yt41kf .framer-1k9vizk > :last-child { margin-bottom: 0px; } .framer-ATUvV.framer-v-yt41kf .framer-1k9vizk > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-ATUvV.framer-v-ippwb1.framer-ttvl1l { width: 394px; }\",\".framer-ATUvV.framer-v-ippwb1 .framer-dvry2h { aspect-ratio: 0.9970588235294118 / 1; height: var(--framer-aspect-ratio-supported, 340px); left: 49%; width: 86%; }\",\".framer-ATUvV.framer-v-ippwb1 .framer-1eqtrn5 { height: var(--framer-aspect-ratio-supported, 349px); width: 89%; }\",\".framer-ATUvV.framer-v-ippwb1 .framer-xtgwzm, .framer-ATUvV.framer-v-ippwb1 .framer-uesvdk { height: var(--framer-aspect-ratio-supported, 82px); }\",\".framer-ATUvV.framer-v-ippwb1 .framer-1a81n16 { bottom: 0px; height: var(--framer-aspect-ratio-supported, 274px); left: 28%; top: unset; width: 70%; }\",\".framer-ATUvV.framer-v-ippwb1 .framer-j687yk { bottom: 0px; height: var(--framer-aspect-ratio-supported, 275px); left: 71%; top: unset; width: 70%; }\",\".framer-ATUvV.framer-v-y2jttl.framer-ttvl1l { cursor: unset; height: 457px; width: 311px; }\",\".framer-ATUvV.framer-v-y2jttl .framer-dvry2h { bottom: 64px; height: var(--framer-aspect-ratio-supported, 221px); left: 50%; width: 71%; }\",\".framer-ATUvV.framer-v-y2jttl .framer-1eqtrn5 { height: var(--framer-aspect-ratio-supported, 201px); left: 50%; top: 50%; width: 65%; }\",\".framer-ATUvV.framer-v-y2jttl .framer-xtgwzm, .framer-ATUvV.framer-v-y2jttl .framer-uesvdk { height: var(--framer-aspect-ratio-supported, 70px); left: 50%; top: 20%; width: 89%; }\",\".framer-ATUvV.framer-v-y2jttl .framer-1a81n16 { height: var(--framer-aspect-ratio-supported, 143px); left: 28%; top: 70%; width: 46%; }\",\".framer-ATUvV.framer-v-y2jttl .framer-j687yk { height: var(--framer-aspect-ratio-supported, 144px); left: 71%; top: 70%; width: 46%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ATUvV.framer-v-y2jttl .framer-11tc810, .framer-ATUvV.framer-v-y2jttl .framer-1k9vizk { gap: 0px; } .framer-ATUvV.framer-v-y2jttl .framer-11tc810 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ATUvV.framer-v-y2jttl .framer-11tc810 > :first-child, .framer-ATUvV.framer-v-y2jttl .framer-1k9vizk > :first-child { margin-top: 0px; } .framer-ATUvV.framer-v-y2jttl .framer-11tc810 > :last-child, .framer-ATUvV.framer-v-y2jttl .framer-1k9vizk > :last-child { margin-bottom: 0px; } .framer-ATUvV.framer-v-y2jttl .framer-1k9vizk > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-ATUvV.framer-v-ttvl1l.hover .framer-14rdco-container { height: var(--framer-aspect-ratio-supported, 25px); width: 22px; }\",\".framer-ATUvV.framer-v-ttvl1l.hover .framer-dvry2h { bottom: 0px; }\",\".framer-ATUvV.framer-v-ttvl1l.hover .framer-1eqtrn5 { height: var(--framer-aspect-ratio-supported, 333px); width: 58%; }\",\".framer-ATUvV.framer-v-ttvl1l.hover .framer-xtgwzm, .framer-ATUvV.framer-v-ttvl1l.hover .framer-uesvdk { height: var(--framer-aspect-ratio-supported, 124px); width: 84%; }\",\".framer-ATUvV.framer-v-ttvl1l.hover .framer-1a81n16 { left: 30%; }\",\".framer-ATUvV.framer-v-ttvl1l.hover .framer-j687yk { left: 72%; }\",\".framer-ATUvV.framer-v-ippwb1.hover .framer-dvry2h { height: var(--framer-aspect-ratio-supported, 372px); width: 94%; }\",\".framer-ATUvV.framer-v-ippwb1.hover .framer-xtgwzm, .framer-ATUvV.framer-v-ippwb1.hover .framer-uesvdk { height: var(--framer-aspect-ratio-supported, 85px); width: 84%; }\",\".framer-ATUvV.framer-v-ippwb1.hover .framer-1a81n16 { left: 21%; top: unset; }\",\".framer-ATUvV.framer-v-ippwb1.hover .framer-j687yk { left: 78%; top: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ATUvV[data-border=\"true\"]::after, .framer-ATUvV [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 568\n * @framerIntrinsicWidth 576\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"T9KVVDEiW\":{\"layout\":[\"fixed\",\"fixed\"]},\"bfg646eSP\":{\"layout\":[\"fixed\",\"fixed\"]},\"nMqP8KWDx\":{\"layout\":[\"fixed\",\"fixed\"]},\"nWcjX69pB\":{\"layout\":[\"fixed\",\"fixed\"]},\"b1Ty7nWtP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Ib_Z5QC7R\":\"tYPE2\",\"PB01pnBMb\":\"lINK\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDi0V8nIAu=withCSS(Component,css,\"framer-ATUvV\");export default FramerDi0V8nIAu;FramerDi0V8nIAu.displayName=\"1 PROJECT\";FramerDi0V8nIAu.defaultProps={height:568,width:576};addPropertyControls(FramerDi0V8nIAu,{variant:{options:[\"ztR_q72P8\",\"T9KVVDEiW\",\"bfg646eSP\",\"nMqP8KWDx\"],optionTitles:[\"Variant 1\",\"MOBILE\",\"CARD\",\"CARD MOB\"],title:\"Variant\",type:ControlType.Enum},Ib_Z5QC7R:{defaultValue:\"WEB 3\",displayTextArea:false,title:\"TYPE 2\",type:ControlType.String},PB01pnBMb:{title:\"LINK\",type:ControlType.Link}});addFonts(FramerDi0V8nIAu,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDi0V8nIAu\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"Ib_Z5QC7R\\\":\\\"tYPE2\\\",\\\"PB01pnBMb\\\":\\\"lINK\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"T9KVVDEiW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bfg646eSP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nMqP8KWDx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nWcjX69pB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"b1Ty7nWtP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"576\",\"framerIntrinsicHeight\":\"568\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-gz7eq .framer-styles-preset-11xft8g:not(.rich-text-wrapper), .framer-gz7eq .framer-styles-preset-11xft8g.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #e3e3e3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 2199px) and (min-width: 1200px) { .framer-gz7eq .framer-styles-preset-11xft8g:not(.rich-text-wrapper), .framer-gz7eq .framer-styles-preset-11xft8g.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #e3e3e3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 0px) { .framer-gz7eq .framer-styles-preset-11xft8g:not(.rich-text-wrapper), .framer-gz7eq .framer-styles-preset-11xft8g.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #e3e3e3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-gz7eq\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c163575)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tgyqGiNGK6zXIazzP23j/hgz03ZoWi2BfILHX5xMe/sPgRY9IRi.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={Hyqh7ZIrb:{hover:true},Li0nQh0V6:{hover:true},XF2X4WK8o:{hover:true},yiDBixNG5:{hover:true}};const cycleOrder=[\"XF2X4WK8o\",\"yiDBixNG5\",\"Hyqh7ZIrb\",\"eF40jW72z\",\"cgDQUcgVJ\",\"TbAM96ZlH\",\"Li0nQh0V6\"];const serializationHash=\"framer-dm20O\";const variantClassNames={cgDQUcgVJ:\"framer-v-1oi22sp\",eF40jW72z:\"framer-v-xz3p7t\",Hyqh7ZIrb:\"framer-v-8xgwjo\",Li0nQh0V6:\"framer-v-5tvmu8\",TbAM96ZlH:\"framer-v-1eyzasb\",XF2X4WK8o:\"framer-v-1cqn2x3\",yiDBixNG5:\"framer-v-jvntcp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Instagram MOB\":\"cgDQUcgVJ\",\"Linkedin MOB\":\"eF40jW72z\",\"Twitter MOB\":\"TbAM96ZlH\",Instagram:\"yiDBixNG5\",LinkedIn:\"XF2X4WK8o\",Mail:\"Li0nQh0V6\",Twitter:\"Hyqh7ZIrb\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,RjQY9P5nT:link!==null&&link!==void 0?link:props.RjQY9P5nT,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"XF2X4WK8o\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RjQY9P5nT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XF2X4WK8o\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"Li0nQh0V6-hover\")return true;if(baseVariant===\"Li0nQh0V6\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:RjQY9P5nT,nodeId:\"XF2X4WK8o\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1cqn2x3\",className,classNames)} framer-m7255l`,\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"XF2X4WK8o\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"Hyqh7ZIrb-hover\":{\"data-framer-name\":undefined},\"Li0nQh0V6-hover\":{\"data-framer-name\":undefined},\"XF2X4WK8o-hover\":{\"data-framer-name\":undefined},\"yiDBixNG5-hover\":{\"data-framer-name\":undefined},cgDQUcgVJ:{\"data-framer-name\":\"Instagram MOB\"},eF40jW72z:{\"data-framer-name\":\"Linkedin MOB\"},Hyqh7ZIrb:{\"data-framer-name\":\"Twitter\"},Li0nQh0V6:{\"data-framer-name\":\"Mail\"},TbAM96ZlH:{\"data-framer-name\":\"Twitter MOB\"},yiDBixNG5:{\"data-framer-name\":\"Instagram\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ipc4aq\",\"data-framer-name\":\"wrapper\",layoutDependency:layoutDependency,layoutId:\"KFhhld0pZ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"radial-gradient(50% 50% at 50% 50%, rgb(237, 237, 237) 0%, rgb(237, 237, 237) 100%)\",backgroundColor:\"rgb(237, 237, 237)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{\"Li0nQh0V6-hover\":{background:\"radial-gradient(76% 100% at 50% 100%, rgb(227, 227, 227) 0%, rgb(250, 250, 250) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"},Li0nQh0V6:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"radial-gradient(76% 100% at 50% 100%, rgb(227, 227, 227) 0%, rgb(255, 255, 255) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({Li0nQh0V6:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wcawgu-container\",layoutDependency:layoutDependency,layoutId:\"nmUGwYTak-container\",style:{opacity:.6},variants:{\"Li0nQh0V6-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"mail\",id:\"nmUGwYTak\",layoutId:\"nmUGwYTak\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11xft8g\",\"data-styles-preset\":\"sPgRY9IRi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(255, 255, 255)))\"},children:\"Linkedin\"})}),className:\"framer-sebgoc\",\"data-framer-name\":\"Linkedin\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wpnBclANM\",style:{\"--extracted-r6o4lv\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{\"Hyqh7ZIrb-hover\":{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgba(255, 255, 255, 0.7))\"},\"Li0nQh0V6-hover\":{opacity:1},\"XF2X4WK8o-hover\":{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgba(255, 255, 255, 0.7))\"},\"yiDBixNG5-hover\":{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgba(255, 255, 255, 0.7))\"},Li0nQh0V6:{\"--extracted-r6o4lv\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\",opacity:.6}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Hyqh7ZIrb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11xft8g\",\"data-styles-preset\":\"sPgRY9IRi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgba(255, 255, 255, 0.7)))\"},children:\"Twitter\"})})},\"XF2X4WK8o-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11xft8g\",\"data-styles-preset\":\"sPgRY9IRi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgba(255, 255, 255, 0.7)))\"},children:\"Linkedin\"})})},\"yiDBixNG5-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11xft8g\",\"data-styles-preset\":\"sPgRY9IRi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgba(255, 255, 255, 0.7)))\"},children:\"Instagram\"})})},cgDQUcgVJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11xft8g\",\"data-styles-preset\":\"sPgRY9IRi\",children:\"Instagram\"})})},Hyqh7ZIrb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11xft8g\",\"data-styles-preset\":\"sPgRY9IRi\",children:\"Twitter\"})})},Li0nQh0V6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11xft8g\",\"data-styles-preset\":\"sPgRY9IRi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0)))\"},children:\"Enzo.Fontaine@FNZO.fr\"})})},TbAM96ZlH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11xft8g\",\"data-styles-preset\":\"sPgRY9IRi\",children:\"Twitter\"})})},yiDBixNG5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11xft8g\",\"data-styles-preset\":\"sPgRY9IRi\",children:\"Instagram\"})})}},baseVariant,gestureVariant)})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dm20O.framer-m7255l, .framer-dm20O .framer-m7255l { display: block; }\",\".framer-dm20O.framer-1cqn2x3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-dm20O .framer-ipc4aq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 24px 8px 24px; position: relative; width: min-content; }\",\".framer-dm20O .framer-wcawgu-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-dm20O .framer-sebgoc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dm20O.framer-1cqn2x3, .framer-dm20O .framer-ipc4aq { gap: 0px; } .framer-dm20O.framer-1cqn2x3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dm20O.framer-1cqn2x3 > :first-child { margin-top: 0px; } .framer-dm20O.framer-1cqn2x3 > :last-child { margin-bottom: 0px; } .framer-dm20O .framer-ipc4aq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dm20O .framer-ipc4aq > :first-child { margin-left: 0px; } .framer-dm20O .framer-ipc4aq > :last-child { margin-right: 0px; } }\",\".framer-dm20O.framer-v-xz3p7t.framer-1cqn2x3 { cursor: unset; width: 110px; }\",\".framer-dm20O.framer-v-xz3p7t .framer-ipc4aq, .framer-dm20O.framer-v-1oi22sp .framer-ipc4aq, .framer-dm20O.framer-v-1eyzasb .framer-ipc4aq { width: 100%; }\",\".framer-dm20O.framer-v-1oi22sp.framer-1cqn2x3 { cursor: unset; width: 121px; }\",\".framer-dm20O.framer-v-1eyzasb.framer-1cqn2x3 { cursor: unset; width: 98px; }\",\".framer-dm20O.framer-v-5tvmu8 .framer-ipc4aq { gap: 8px; order: 0; padding: 16px 24px 16px 24px; }\",\".framer-dm20O.framer-v-5tvmu8 .framer-wcawgu-container { order: 0; }\",\".framer-dm20O.framer-v-5tvmu8 .framer-sebgoc { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dm20O.framer-v-5tvmu8 .framer-ipc4aq { gap: 0px; } .framer-dm20O.framer-v-5tvmu8 .framer-ipc4aq > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-dm20O.framer-v-5tvmu8 .framer-ipc4aq > :first-child { margin-left: 0px; } .framer-dm20O.framer-v-5tvmu8 .framer-ipc4aq > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-dm20O[data-border=\"true\"]::after, .framer-dm20O [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 35\n * @framerIntrinsicWidth 108\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"yiDBixNG5\":{\"layout\":[\"auto\",\"auto\"]},\"Hyqh7ZIrb\":{\"layout\":[\"auto\",\"auto\"]},\"eF40jW72z\":{\"layout\":[\"fixed\",\"auto\"]},\"cgDQUcgVJ\":{\"layout\":[\"fixed\",\"auto\"]},\"TbAM96ZlH\":{\"layout\":[\"fixed\",\"auto\"]},\"Li0nQh0V6\":{\"layout\":[\"auto\",\"auto\"]},\"Aebx0tc9g\":{\"layout\":[\"auto\",\"auto\"]},\"trTxPzJrc\":{\"layout\":[\"auto\",\"auto\"]},\"UaQVlph7c\":{\"layout\":[\"auto\",\"auto\"]},\"gyVkWdzPg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"RjQY9P5nT\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFbOz3rHQA=withCSS(Component,css,\"framer-dm20O\");export default FramerFbOz3rHQA;FramerFbOz3rHQA.displayName=\"SOCIAL BUTTONS\";FramerFbOz3rHQA.defaultProps={height:35,width:108};addPropertyControls(FramerFbOz3rHQA,{variant:{options:[\"XF2X4WK8o\",\"yiDBixNG5\",\"Hyqh7ZIrb\",\"eF40jW72z\",\"cgDQUcgVJ\",\"TbAM96ZlH\",\"Li0nQh0V6\"],optionTitles:[\"LinkedIn\",\"Instagram\",\"Twitter\",\"Linkedin MOB\",\"Instagram MOB\",\"Twitter MOB\",\"Mail\"],title:\"Variant\",type:ControlType.Enum},RjQY9P5nT:{title:\"Link\",type:ControlType.Link}});addFonts(FramerFbOz3rHQA,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFbOz3rHQA\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"RjQY9P5nT\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yiDBixNG5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Hyqh7ZIrb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eF40jW72z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cgDQUcgVJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TbAM96ZlH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Li0nQh0V6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Aebx0tc9g\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"trTxPzJrc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UaQVlph7c\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gyVkWdzPg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"108\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"35\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FbOz3rHQA.map", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-bold\",\"FS;Satoshi-black\",\"FS;Satoshi-black italic\",\"FS;Satoshi-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5ICO57VJIN252OT5L2KLEIPW754DTLAO/ZU64SLR2IEO66N27IVY5Z6JJJRTJECJK/TCTRLNEXANFIGSFCZTGQL7PZ5362GYK6.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"}]}];export const css=['.framer-tJqwK .framer-styles-preset-lienfj:not(.rich-text-wrapper), .framer-tJqwK .framer-styles-preset-lienfj.rich-text-wrapper h1 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 2199px) and (min-width: 810px) { .framer-tJqwK .framer-styles-preset-lienfj:not(.rich-text-wrapper), .framer-tJqwK .framer-styles-preset-lienfj.rich-text-wrapper h1 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-tJqwK .framer-styles-preset-lienfj:not(.rich-text-wrapper), .framer-tJqwK .framer-styles-preset-lienfj.rich-text-wrapper h1 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-tJqwK\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-Jiguy .framer-styles-preset-1y7g7e4:not(.rich-text-wrapper), .framer-Jiguy .framer-styles-preset-1y7g7e4.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #e3e3e3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 2199px) and (min-width: 0px) { .framer-Jiguy .framer-styles-preset-1y7g7e4:not(.rich-text-wrapper), .framer-Jiguy .framer-styles-preset-1y7g7e4.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, #e3e3e3); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Jiguy\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"DKqPPYWy4\",\"cqQyzhHrI\"];const serializationHash=\"framer-hITms\";const variantClassNames={cqQyzhHrI:\"framer-v-5df3ji\",DKqPPYWy4:\"framer-v-1kqotmc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.03,.5,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"DKqPPYWy4\",Mobile:\"cqQyzhHrI\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"DKqPPYWy4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DKqPPYWy4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kqotmc\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"DKqPPYWy4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1.3px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1.3px\",\"--border-right-width\":\"1.3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.3px\",background:'radial-gradient(50% 49.99999999999999% at 50% 50%, rgb(237, 237, 237) 0%, var(--token-157db5f0-8d15-4f62-9595-f27094d1d3ed, rgb(250, 250, 250)) /* {\"name\":\"Background\"} */ 100%)',borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0px 50px 40px rgba(255, 255, 255, 0.6)\",rotate:45,...style},...addPropertyOverrides({cqQyzhHrI:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jve3f2\",\"data-framer-name\":\"IMG WRAPPER\",layoutDependency:layoutDependency,layoutId:\"WH2CRc1Wd\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile picture\",fit:\"fit\",intrinsicHeight:6048,intrinsicWidth:4536,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-0)*1)/2)+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-0)*1*.47237569060773504-166)),pixelHeight:450,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/92ifpYjPWjF0mrPdbffSeWxpGQ.png\"},className:\"framer-1kfi1om\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"T8z5gAXIy\",style:{rotate:-45},transformTemplate:transformTemplate1,...addPropertyOverrides({cqQyzhHrI:{background:{alt:\"Profile picture\",fit:\"fit\",intrinsicHeight:6048,intrinsicWidth:4536,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0)*1)/2)+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0)*1*.5000000000000002-91.5)),pixelHeight:450,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/92ifpYjPWjF0mrPdbffSeWxpGQ.png\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TXIgRGFmb2UtcmVndWxhcg==\",\"--framer-font-family\":'\"Mr Dafoe\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.03em\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-letter-spacing\":\"-0.04em\"},children:\"F\"}),\".nzo\"]})}),className:\"framer-ezfy3r\",fonts:[\"GF;Mr Dafoe-regular\"],layoutDependency:layoutDependency,layoutId:\"bzUcz6pfT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hITms.framer-w819gw, .framer-hITms .framer-w819gw { display: block; }\",\".framer-hITms.framer-1kqotmc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 362px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 362px; }\",\".framer-hITms .framer-jve3f2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hITms .framer-1kfi1om { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 332px); left: 47%; overflow: visible; position: absolute; top: 47%; width: 92%; z-index: 1; }\",\".framer-hITms .framer-ezfy3r { flex: none; height: 31px; left: calc(50.00000000000002% - 37px / 2); position: absolute; top: calc(88.85542168674701% - 31px / 2); white-space: pre-wrap; width: 37px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hITms.framer-1kqotmc, .framer-hITms .framer-jve3f2 { gap: 0px; } .framer-hITms.framer-1kqotmc > *, .framer-hITms .framer-jve3f2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hITms.framer-1kqotmc > :first-child, .framer-hITms .framer-jve3f2 > :first-child { margin-left: 0px; } .framer-hITms.framer-1kqotmc > :last-child, .framer-hITms .framer-jve3f2 > :last-child { margin-right: 0px; } }\",\".framer-hITms.framer-v-5df3ji.framer-1kqotmc { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); width: 200px; }\",\".framer-hITms.framer-v-5df3ji .framer-jve3f2 { z-index: 2; }\",\".framer-hITms.framer-v-5df3ji .framer-1kfi1om { height: var(--framer-aspect-ratio-supported, 183px); left: 50%; top: 50%; width: 92%; }\",'.framer-hITms[data-border=\"true\"]::after, .framer-hITms [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 362\n * @framerIntrinsicWidth 362\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cqQyzhHrI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAfrTN0OP9=withCSS(Component,css,\"framer-hITms\");export default FramerAfrTN0OP9;FramerAfrTN0OP9.displayName=\"PICTURE FOOTER\";FramerAfrTN0OP9.defaultProps={height:362,width:362};addPropertyControls(FramerAfrTN0OP9,{variant:{options:[\"DKqPPYWy4\",\"cqQyzhHrI\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAfrTN0OP9,[{explicitInter:true,fonts:[{family:\"Mr Dafoe\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGivg7MCxz_C.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAfrTN0OP9\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cqQyzhHrI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"362\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"362\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AfrTN0OP9.map", "// Generated by Framer (c163575)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/PGAqtL8xx6ZjUZRuzFI3/XMSp6ocLAELQVPfQFMKb/Ba7_l_isV.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/yHmPnOjEYBEoSV4VuxB5/v3jcFh7HqmzdnZWRoaek/jRFK91fu7.js\";import PICTUREFOOTER from\"https://framerusercontent.com/modules/PbqMAt54YUFl64jIVwru/43vdpFmQPmNehasyckqS/AfrTN0OP9.js\";import SOCIALBUTTONS from\"https://framerusercontent.com/modules/iPBcm8DvO8nwQBk91fTX/Z07ZaWPsDXTlJ8msxyD0/FbOz3rHQA.js\";const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const PICTUREFOOTERFonts=getFonts(PICTUREFOOTER);const RichTextWithFX=withFX(RichText);const SOCIALBUTTONSFonts=getFonts(SOCIALBUTTONS);const cycleOrder=[\"nxD_blEHd\",\"WccTElEn6\",\"rRYR0CRL1\",\"GYV159Axv\"];const serializationHash=\"framer-ycbNi\";const variantClassNames={GYV159Axv:\"framer-v-xph6kn\",nxD_blEHd:\"framer-v-r22yps\",rRYR0CRL1:\"framer-v-9mhf5j\",WccTElEn6:\"framer-v-wwqbk9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:0,delay:.4,duration:1,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:0};const transition3={bounce:0,delay:0,duration:1.5,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:20};const transition4={bounce:0,delay:0,duration:1,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:20};const transition5={bounce:0,delay:.2,duration:1.5,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:20};const transition6={bounce:0,delay:.2,duration:1,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:20};const transition7={bounce:0,delay:.4,duration:1.5,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:20};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"nxD_blEHd\",LARGE:\"WccTElEn6\",Phone:\"GYV159Axv\",Tablet:\"rRYR0CRL1\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"nxD_blEHd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nxD_blEHd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"GYV159Axv\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"GYV159Axv\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-r22yps\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"nxD_blEHd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({GYV159Axv:{\"data-framer-name\":\"Phone\"},rRYR0CRL1:{\"data-framer-name\":\"Tablet\"},WccTElEn6:{\"data-framer-name\":\"LARGE\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13eitq2\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"X5FRJXkFh\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vlpjrt\",\"data-framer-name\":\"WRAPPER\",layoutDependency:layoutDependency,layoutId:\"p6ZVRab0w\",style:{background:'radial-gradient(37% 38% at 50% 100%, rgb(232, 232, 232) 0%, var(--token-157db5f0-8d15-4f62-9595-f27094d1d3ed, rgb(250, 250, 250)) /* {\"name\":\"Background\"} */ 100%)',borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{WccTElEn6:{background:'radial-gradient(37% 38% at 50% 100%, rgb(212, 212, 212) 0%, var(--token-157db5f0-8d15-4f62-9595-f27094d1d3ed, rgb(250, 250, 250)) /* {\"name\":\"Background\"} */ 100%)'}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4d6fz9\",\"data-framer-name\":\"LINE\",layoutDependency:layoutDependency,layoutId:\"CLCHk_35h\",style:{background:\"linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 50.48771387452694%, rgba(0, 0, 0, 0) 100%)\"}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1dnyaxq-container\",layoutDependency:layoutDependency,layoutId:\"yWiovjPNy-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"yWiovjPNy\",layoutId:\"yWiovjPNy\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1az43ji\",\"data-framer-name\":\"BACKTICKER\",layoutDependency:layoutDependency,layoutId:\"fwjQarP7A\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10g140b\",layoutDependency:layoutDependency,layoutId:\"xsxZIf1gC\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08)))\"},children:\"ME CONTACTER\"})}),className:\"framer-19taa65\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"Q53qiqM61\",style:{\"--extracted-r6o4lv\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1arekc7-container\",\"data-framer-name\":\"TICKER MOB\",layoutDependency:layoutDependency,layoutId:\"FJeoPdB73-container\",name:\"TICKER MOB\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"FJeoPdB73\",layoutId:\"FJeoPdB73\",name:\"TICKER MOB\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1az43ji\",\"data-framer-name\":\"BACKTICKER\",layoutDependency:layoutDependency,layoutId:\"fwjQarP7A\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10g140b\",layoutDependency:layoutDependency,layoutId:\"xsxZIf1gC\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08)))\"},children:\"ME CONTACTER\"})}),className:\"framer-19taa65\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"Q53qiqM61\",style:{\"--extracted-r6o4lv\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zcyiv2\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ABuc0BtsR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:216,width:`max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px, 1px), 1200px) - 112px) * 0.2045, 200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530)-0-520.2)/2+0+0)+0+1+11+140.6,...addPropertyOverrides({GYV159Axv:{height:150,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px) * 0.3614, 150px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||492)-0-482.2)/2+0+0)+0+0+1+1+80+0},rRYR0CRL1:{width:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px, 1px) - 112px) * 0.2045, 200px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-0-480.2)/2+0+0)+0+1+11+120.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-q2kb0l-container\",layoutDependency:layoutDependency,layoutId:\"qxEwCAT77-container\",children:/*#__PURE__*/_jsx(PICTUREFOOTER,{height:\"100%\",id:\"qxEwCAT77\",layoutId:\"qxEwCAT77\",style:{height:\"100%\",width:\"100%\"},variant:\"DKqPPYWy4\",width:\"100%\",...addPropertyOverrides({GYV159Axv:{variant:\"cqQyzhHrI\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yp3tl0\",layoutDependency:layoutDependency,layoutId:\"ht8KmkMvf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hsk3y9\",layoutDependency:layoutDependency,layoutId:\"QYuowIby1\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{className:\"framer-styles-preset-lienfj\",\"data-styles-preset\":\"Ba7_l_isV\",children:[\"Collaborons\",/*#__PURE__*/_jsx(motion.br,{}),\"sur votre projet\"]})}),className:\"framer-1divppv\",\"data-framer-name\":\"Here are the answers to the most frequently asked questions\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Qbf5XLZJR\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GYV159Axv:{__framer__animate:{transition:transition4},__framer__exit:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{className:\"framer-styles-preset-lienfj\",\"data-styles-preset\":\"Ba7_l_isV\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Collaborons\",/*#__PURE__*/_jsx(motion.br,{}),\"sur votre projet\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y7g7e4\",\"data-styles-preset\":\"jRFK91fu7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"Vous recherchez un freelance en webdesign pour votre projet, N'h\\xe9sitez pas \\xe0 m'envoyer un email, je serai ravi d'en savoir plus.\"})}),className:\"framer-r6yvn0\",\"data-framer-name\":\"Solutions & Services\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Tw53qMS94\",style:{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GYV159Axv:{__framer__animate:{transition:transition6},__framer__exit:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y7g7e4\",\"data-styles-preset\":\"jRFK91fu7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"Vous recherchez un freelance en webdesign pour votre projet, N'h\\xe9sitez pas \\xe0 m'envoyer un email, je serai ravi d'en savoir plus.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dfbvgf\",layoutDependency:layoutDependency,layoutId:\"QHef2pE8x\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||530)-0-520.2)/2+0+0)+0+1+11+140+0+179.2+0,...addPropertyOverrides({GYV159Axv:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||492)-0-482.2)/2+0+0)+0+0+1+1+80+150+0+179.2+0},rRYR0CRL1:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-0-480.2)/2+0+0)+0+1+11+120+0+179.2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-122gl0t-container\",layoutDependency:layoutDependency,layoutId:\"ux3927we8-container\",...addPropertyOverrides({GYV159Axv:{__framer__animate:{transition:transition2},__framer__exit:animation10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SOCIALBUTTONS,{height:\"100%\",id:\"ux3927we8\",layoutId:\"ux3927we8\",RjQY9P5nT:\"mailto:enzo.fontaine@fnzo.fr\",variant:\"Li0nQh0V6\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3vkzj9\",\"data-framer-name\":\"LINE\",layoutDependency:layoutDependency,layoutId:\"UpsMZzDmb\",style:{background:\"linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 50.48771387452694%, rgba(0, 0, 0, 0) 100%)\"}})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ycbNi.framer-bpqla2, .framer-ycbNi .framer-bpqla2 { display: block; }\",\".framer-ycbNi.framer-r22yps { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ycbNi .framer-13eitq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-ycbNi .framer-1vlpjrt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 1px 40px 0px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ycbNi .framer-4d6fz9, .framer-ycbNi .framer-3vkzj9 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ycbNi .framer-1dnyaxq-container { flex: none; height: 82px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(8.084358523725857% - 82px / 2); width: 100%; z-index: 2; }\",\".framer-ycbNi .framer-1az43ji { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 0px 0px; position: relative; width: min-content; }\",\".framer-ycbNi .framer-10g140b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ycbNi .framer-19taa65 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ycbNi .framer-1arekc7-container { flex: none; height: 82px; left: calc(50.12048192771087% - 100% / 2); position: absolute; top: calc(9.584664536741236% - 82px / 2); width: 100%; z-index: 2; }\",\".framer-ycbNi .framer-zcyiv2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 140px 16px 140px 16px; position: relative; width: 100%; z-index: 2; }\",\".framer-ycbNi .framer-q2kb0l-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 216px); min-width: 200px; position: relative; width: 20%; }\",\".framer-ycbNi .framer-yp3tl0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ycbNi .framer-hsk3y9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ycbNi .framer-1divppv { flex: none; height: auto; max-width: 1033px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-ycbNi .framer-r6yvn0 { flex: none; height: auto; max-width: 330px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ycbNi .framer-1dfbvgf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ycbNi .framer-122gl0t-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ycbNi.framer-r22yps, .framer-ycbNi .framer-13eitq2, .framer-ycbNi .framer-1vlpjrt, .framer-ycbNi .framer-1az43ji, .framer-ycbNi .framer-10g140b, .framer-ycbNi .framer-zcyiv2, .framer-ycbNi .framer-yp3tl0, .framer-ycbNi .framer-hsk3y9, .framer-ycbNi .framer-1dfbvgf { gap: 0px; } .framer-ycbNi.framer-r22yps > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ycbNi.framer-r22yps > :first-child, .framer-ycbNi .framer-1vlpjrt > :first-child, .framer-ycbNi .framer-yp3tl0 > :first-child, .framer-ycbNi .framer-hsk3y9 > :first-child { margin-top: 0px; } .framer-ycbNi.framer-r22yps > :last-child, .framer-ycbNi .framer-1vlpjrt > :last-child, .framer-ycbNi .framer-yp3tl0 > :last-child, .framer-ycbNi .framer-hsk3y9 > :last-child { margin-bottom: 0px; } .framer-ycbNi .framer-13eitq2 > *, .framer-ycbNi .framer-10g140b > *, .framer-ycbNi .framer-1dfbvgf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ycbNi .framer-13eitq2 > :first-child, .framer-ycbNi .framer-1az43ji > :first-child, .framer-ycbNi .framer-10g140b > :first-child, .framer-ycbNi .framer-zcyiv2 > :first-child, .framer-ycbNi .framer-1dfbvgf > :first-child { margin-left: 0px; } .framer-ycbNi .framer-13eitq2 > :last-child, .framer-ycbNi .framer-1az43ji > :last-child, .framer-ycbNi .framer-10g140b > :last-child, .framer-ycbNi .framer-zcyiv2 > :last-child, .framer-ycbNi .framer-1dfbvgf > :last-child { margin-right: 0px; } .framer-ycbNi .framer-1vlpjrt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ycbNi .framer-1az43ji > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-ycbNi .framer-zcyiv2 > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-ycbNi .framer-yp3tl0 > *, .framer-ycbNi .framer-hsk3y9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-ycbNi.framer-v-wwqbk9.framer-r22yps { width: 2800px; }\",\".framer-ycbNi.framer-v-wwqbk9 .framer-q2kb0l-container { height: var(--framer-aspect-ratio-supported, 223px); }\",\".framer-ycbNi.framer-v-9mhf5j.framer-r22yps { width: 810px; }\",\".framer-ycbNi.framer-v-9mhf5j .framer-1vlpjrt, .framer-ycbNi.framer-v-xph6kn .framer-r6yvn0 { max-width: unset; }\",\".framer-ycbNi.framer-v-9mhf5j .framer-zcyiv2 { padding: 120px 16px 120px 16px; }\",\".framer-ycbNi.framer-v-9mhf5j .framer-q2kb0l-container { height: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-ycbNi.framer-v-xph6kn.framer-r22yps { width: 447px; }\",\".framer-ycbNi.framer-v-xph6kn .framer-13eitq2 { flex-direction: column; }\",\".framer-ycbNi.framer-v-xph6kn .framer-1vlpjrt { flex: none; gap: 0px; max-width: unset; padding: 1px 0px 0px 0px; width: 100%; }\",\".framer-ycbNi.framer-v-xph6kn .framer-1arekc7-container { top: 6px; }\",\".framer-ycbNi.framer-v-xph6kn .framer-zcyiv2 { flex-direction: column; gap: 0px; padding: 80px 16px 32px 16px; }\",\".framer-ycbNi.framer-v-xph6kn .framer-q2kb0l-container { height: var(--framer-aspect-ratio-supported, 150px); min-width: 150px; width: 36%; }\",\".framer-ycbNi.framer-v-xph6kn .framer-yp3tl0 { flex: none; width: 100%; }\",\".framer-ycbNi.framer-v-xph6kn .framer-hsk3y9 { align-content: center; align-items: center; }\",\".framer-ycbNi.framer-v-xph6kn .framer-1dfbvgf { justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ycbNi.framer-v-xph6kn .framer-13eitq2, .framer-ycbNi.framer-v-xph6kn .framer-1vlpjrt, .framer-ycbNi.framer-v-xph6kn .framer-zcyiv2 { gap: 0px; } .framer-ycbNi.framer-v-xph6kn .framer-13eitq2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ycbNi.framer-v-xph6kn .framer-13eitq2 > :first-child, .framer-ycbNi.framer-v-xph6kn .framer-1vlpjrt > :first-child, .framer-ycbNi.framer-v-xph6kn .framer-zcyiv2 > :first-child { margin-top: 0px; } .framer-ycbNi.framer-v-xph6kn .framer-13eitq2 > :last-child, .framer-ycbNi.framer-v-xph6kn .framer-1vlpjrt > :last-child, .framer-ycbNi.framer-v-xph6kn .framer-zcyiv2 > :last-child { margin-bottom: 0px; } .framer-ycbNi.framer-v-xph6kn .framer-1vlpjrt > *, .framer-ycbNi.framer-v-xph6kn .framer-zcyiv2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 530\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WccTElEn6\":{\"layout\":[\"fixed\",\"auto\"]},\"rRYR0CRL1\":{\"layout\":[\"fixed\",\"auto\"]},\"GYV159Axv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfGoPjANPm=withCSS(Component,css,\"framer-ycbNi\");export default FramerfGoPjANPm;FramerfGoPjANPm.displayName=\"Footer\";FramerfGoPjANPm.defaultProps={height:530,width:1200};addPropertyControls(FramerfGoPjANPm,{variant:{options:[\"nxD_blEHd\",\"WccTElEn6\",\"rRYR0CRL1\",\"GYV159Axv\"],optionTitles:[\"Desktop\",\"LARGE\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfGoPjANPm,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TickerFonts,...PICTUREFOOTERFonts,...SOCIALBUTTONSFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfGoPjANPm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"530\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WccTElEn6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rRYR0CRL1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GYV159Axv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (139b156)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KYvNwSKO5OgFLzY1Hurs/QGJYuU698qqT5xspqXIx/K_GAEXpHB.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/l48ZqnOxyFtUfwsYbcLB/UTyBiA4FMy69UB9NgDgz/vowZHZq5d.js\";const FeatherFonts=getFonts(Feather);const ImageWithFX=withFX(Image);const enabledGestures={gRbG4p351:{hover:true},sZwioRfr9:{hover:true}};const cycleOrder=[\"gRbG4p351\",\"Bat2XCcgr\",\"sZwioRfr9\",\"LnMSN4CYG\"];const serializationHash=\"framer-427in\";const variantClassNames={Bat2XCcgr:\"framer-v-yvopzy\",gRbG4p351:\"framer-v-oyjs46\",LnMSN4CYG:\"framer-v-1nyo6n5\",sZwioRfr9:\"framer-v-f2r9rp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:29,delay:0,mass:1,stiffness:174,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:0,duration:3,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-6,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:6,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:4,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"CARD MOB\":\"LnMSN4CYG\",CARD:\"sZwioRfr9\",DESK:\"gRbG4p351\",MOB:\"Bat2XCcgr\"};const getProps=({height,id,link,tYPE1,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,ismqX7WDc:link!==null&&link!==void 0?link:props.ismqX7WDc,rfxjvjnZt:(_ref=tYPE1!==null&&tYPE1!==void 0?tYPE1:props.rfxjvjnZt)!==null&&_ref!==void 0?_ref:\"APP\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"gRbG4p351\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,rfxjvjnZt,ismqX7WDc,rfxjvjnZtWQoijzVTS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gRbG4p351\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Bat2XCcgr\",\"LnMSN4CYG\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"Bat2XCcgr\",\"LnMSN4CYG\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:ismqX7WDc,nodeId:\"gRbG4p351\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-oyjs46\",className,classNames)} framer-19rz21j`,\"data-framer-name\":\"DESK\",layoutDependency:layoutDependency,layoutId:\"gRbG4p351\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"radial-gradient(76% 38% at 50% 100%, rgb(194, 194, 194) 0%, rgb(237, 237, 237) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"gRbG4p351-hover\":{background:\"radial-gradient(76% 38% at 50% 100%, rgb(194, 194, 194) 0%, rgb(222, 222, 222) 100%)\"}},...addPropertyOverrides({\"gRbG4p351-hover\":{\"data-framer-name\":undefined},\"sZwioRfr9-hover\":{\"data-framer-name\":undefined},Bat2XCcgr:{\"data-framer-name\":\"MOB\"},LnMSN4CYG:{\"data-framer-name\":\"CARD MOB\"},sZwioRfr9:{\"data-framer-name\":\"CARD\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14tjkdp\",\"data-framer-name\":\"WRAPPER\",layoutDependency:layoutDependency,layoutId:\"kdBRcDj8O\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15261nq\",\"data-framer-name\":\"INFOS\",layoutDependency:layoutDependency,layoutId:\"RbPlBLWQb\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-172szlb\",layoutDependency:layoutDependency,layoutId:\"ZtoHOarGP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"ANEMO\"})}),className:\"framer-180j8j4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z0jxtsJKe\",style:{\"--extracted-1of0zx5\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"gRbG4p351-hover\":{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227))\"},\"sZwioRfr9-hover\":{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"gRbG4p351-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227)))\"},children:\"ANEMO\"})})},\"sZwioRfr9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0)))\"},children:\"ANEMO\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ncdnoh\",layoutDependency:layoutDependency,layoutId:\"Z9IYsTtDQ\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fpg52j-container\",layoutDependency:layoutDependency,layoutId:\"r54Trxqfh-container\",style:{opacity:.7},variants:{\"gRbG4p351-hover\":{opacity:1},\"sZwioRfr9-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-157db5f0-8d15-4f62-9595-f27094d1d3ed, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"r54Trxqfh\",layoutId:\"r54Trxqfh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-31fxl5\",layoutDependency:layoutDependency,layoutId:\"mF8qOw6Ki\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-196u5p2\",\"data-border\":true,\"data-framer-name\":\"TYPE\",layoutDependency:layoutDependency,layoutId:\"GOfILWVzz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"radial-gradient(76% 100% at 50% 100%, rgb(214, 214, 214) 0%, rgb(255, 255, 255) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1na8dda\",\"data-styles-preset\":\"vowZHZq5d\",children:\"APP\"})}),className:\"framer-i0czqu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PNcbKKEgn\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rfxjvjnZt,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j1uefg\",\"data-border\":true,\"data-framer-name\":\"ARROW\",layoutDependency:layoutDependency,layoutId:\"xlC5PoYQl\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.16)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.73)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(8px)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1885mo\",layoutDependency:layoutDependency,layoutId:\"QzKw_1B1o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",children:\"ANEMO\"})}),className:\"framer-1ojl6ef\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e16e9WeVT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cuc2g\",layoutDependency:layoutDependency,layoutId:\"BRIRMGTFW\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vbxd98-container\",layoutDependency:layoutDependency,layoutId:\"miM4DIG76-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"miM4DIG76\",layoutId:\"miM4DIG76\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"APP\"})}),className:\"framer-544bhf\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"LswMT7tn4\",style:{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rfxjvjnZtWQoijzVTS,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.6954225352112678-291.5)),pixelHeight:3515,pixelWidth:3472,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.1458)`,src:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=1024 1011w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048 2022w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png 3472w\"},className:\"framer-1qeag1v\",\"data-framer-name\":\"IPHONE6\",layoutDependency:layoutDependency,layoutId:\"P7oPPpOL9\",style:{rotate:-1},transformTemplate:transformTemplate1,...addPropertyOverrides({\"gRbG4p351-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.6954225352112678-291.5)),pixelHeight:3515,pixelWidth:3472,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.16)`,src:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=1024 1011w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048 2022w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png 3472w\"}},\"sZwioRfr9-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.6707746478873242-348)),pixelHeight:3515,pixelWidth:3472,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=1024 1011w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048 2022w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png 3472w\"}},Bat2XCcgr:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.6426056338028171-291.5)),pixelHeight:3515,pixelWidth:3472,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.1458)`,src:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=1024 1011w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048 2022w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png 3472w\"}},LnMSN4CYG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.6280087527352299-271)),pixelHeight:3515,pixelWidth:3472,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 1.013)`,src:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=1024 1011w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048 2022w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png 3472w\"}},sZwioRfr9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.6795774647887326-341)),pixelHeight:3515,pixelWidth:3472,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.9797)`,src:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=1024 1011w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png?scale-down-to=2048 2022w,https://framerusercontent.com/images/b0lLUtprG8dDRU3lxwKgx55q9b0.png 3472w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.5915492957746481-291.5)),pixelHeight:3501,pixelWidth:3210,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.1458)`,src:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=1024 938w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048 1877w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png 3210w\"},className:\"framer-nmtn3n\",\"data-framer-name\":\"IPHONE6\",layoutDependency:layoutDependency,layoutId:\"VmtckbcbS\",style:{rotate:-1},transformTemplate:transformTemplate1,...addPropertyOverrides({\"gRbG4p351-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.5915492957746481-291.5)),pixelHeight:3501,pixelWidth:3210,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.17)`,src:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=1024 938w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048 1877w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png 3210w\"}},\"sZwioRfr9-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.580985915492958-351.5)),pixelHeight:3501,pixelWidth:3210,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.0102)`,src:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=1024 938w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048 1877w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png 3210w\"}},Bat2XCcgr:{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.5387323943661974-291.5)),pixelHeight:3501,pixelWidth:3210,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.1458)`,src:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=1024 938w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048 1877w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png 3210w\"}},LnMSN4CYG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.5382932166301971-271)),pixelHeight:3501,pixelWidth:3210,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 1.013)`,src:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=1024 938w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048 1877w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png 3210w\"}},sZwioRfr9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.5915492957746481-341)),pixelHeight:3501,pixelWidth:3210,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.9797)`,src:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=1024 938w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png?scale-down-to=2048 1877w,https://framerusercontent.com/images/dJR84NJGknzLw8KAlVGfDuF7Xg.png 3210w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.4859154929577467-291.5)),pixelHeight:3666,pixelWidth:3187,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.1458)`,src:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=1024 890w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048 1780w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png 3187w\"},className:\"framer-1q10nvk\",\"data-framer-name\":\"IPHONE6\",layoutDependency:layoutDependency,layoutId:\"cqnSMQKWp\",style:{rotate:-1},transformTemplate:transformTemplate1,...addPropertyOverrides({\"gRbG4p351-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.4859154929577467-291.5)),pixelHeight:3666,pixelWidth:3187,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.19)`,src:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=1024 890w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048 1780w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png 3187w\"}},\"sZwioRfr9-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.48239436619718334-355)),pixelHeight:3666,pixelWidth:3187,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.0203)`,src:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=1024 890w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048 1780w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png 3187w\"}},Bat2XCcgr:{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.433098591549296-291.5)),pixelHeight:3666,pixelWidth:3187,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.1458)`,src:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=1024 890w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048 1780w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png 3187w\"}},LnMSN4CYG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.44857768052516434-271)),pixelHeight:3666,pixelWidth:3187,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 1.013)`,src:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=1024 890w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048 1780w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png 3187w\"}},sZwioRfr9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.5000000000000002-341)),pixelHeight:3666,pixelWidth:3187,positionX:\"center\",positionY:\"center\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.9797)`,src:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=1024 890w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png?scale-down-to=2048 1780w,https://framerusercontent.com/images/v7wwt68FE9JD3QWy2iXAPnBmGPU.png 3187w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.9929577464788735-73)),pixelHeight:1184,pixelWidth:1452,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6215)`,src:\"https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png\",srcSet:\"https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png 1452w\"},className:\"framer-19ruxbl\",\"data-framer-name\":\"FOREGROUND2\",layoutDependency:layoutDependency,layoutId:\"YRV9HPjjl\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"sZwioRfr9-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.9929577464788735-100)),pixelHeight:1184,pixelWidth:1452,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6218)`,src:\"https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png\",srcSet:\"https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png 1452w\"}},Bat2XCcgr:{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.9401408450704227-73)),pixelHeight:1184,pixelWidth:1452,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6215)`,src:\"https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png\",srcSet:\"https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png 1452w\"}},LnMSN4CYG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.8840262582056895-67.5)),pixelHeight:1184,pixelWidth:1452,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.5338)`,src:\"https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png\",srcSet:\"https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DFngcTc7SIwzUUB5GbOtfNGs.png 1452w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1958,intrinsicWidth:3430,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.8785211267605636-129.5)),pixelHeight:1958,pixelWidth:3430,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.5729)`,src:\"https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png\",srcSet:\"https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=512 512w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png 3430w\"},className:\"framer-1mclcmm\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"Zq8Wz38kN\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"sZwioRfr9-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1958,intrinsicWidth:3430,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.8785211267605636-177)),pixelHeight:1958,pixelWidth:3430,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.5736)`,src:\"https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png\",srcSet:\"https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=512 512w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png 3430w\"}},Bat2XCcgr:{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1958,intrinsicWidth:3430,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.8433098591549298-150)),pixelHeight:1958,pixelWidth:3430,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.8229)`,src:\"https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png\",srcSet:\"https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=512 512w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png 3430w\"}},LnMSN4CYG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1958,intrinsicWidth:3430,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.8008752735229762-139.5)),pixelHeight:1958,pixelWidth:3430,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.5691)`,src:\"https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png\",srcSet:\"https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=512 512w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IaeYHkbNylCnhyBhLM1JAkRK6g.png 3430w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1208,intrinsicWidth:1496,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.8644366197183101-72.5)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 1.6)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"},className:\"framer-1rwdxmr\",\"data-framer-name\":\"FOREGROUND\",layoutDependency:layoutDependency,layoutId:\"kAAkulgmK\",style:{rotate:-362},transformTemplate:transformTemplate1,...addPropertyOverrides({\"sZwioRfr9-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1208,intrinsicWidth:1496,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.8644366197183101-99)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6244)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"}},Bat2XCcgr:{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1208,intrinsicWidth:1496,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.8116197183098594-72.5)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 1.6)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"}},LnMSN4CYG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1208,intrinsicWidth:1496,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.7724288840262584-67.5)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.537)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.3397887323943664-38.5)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3299)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"},className:\"framer-k0s73o\",\"data-framer-name\":\"FOREGROUND2\",layoutDependency:layoutDependency,layoutId:\"WOlYTQDID\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"sZwioRfr9-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.3397887323943664-52.5)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3299)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"}},Bat2XCcgr:{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.2869718309859157-38.5)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3299)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"}},LnMSN4CYG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.32166301969365446-36)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.2862)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.3943661971830988-75)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6389)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"},className:\"framer-1y8w2y7\",\"data-framer-name\":\"FOREGROUND2\",layoutDependency:layoutDependency,layoutId:\"V_zWWMkIQ\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"sZwioRfr9-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.3943661971830988-102.5)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6396)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"}},Bat2XCcgr:{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.3415492957746481-75)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.6389)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"}},LnMSN4CYG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1184,intrinsicWidth:1452,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.3676148796498908-69.5)),pixelHeight:1208,pixelWidth:1496,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.5498)`,src:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png\",srcSet:\"https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=512 512w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lj18ZGNWngIuegFMm47hcyXPutM.png 1496w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-427in.framer-19rz21j, .framer-427in .framer-19rz21j { display: block; }\",\".framer-427in.framer-oyjs46 { cursor: pointer; height: 568px; overflow: hidden; position: relative; text-decoration: none; width: 288px; will-change: var(--framer-will-change-override, transform); }\",\".framer-427in .framer-14tjkdp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-427in .framer-15261nq { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 16px; position: relative; width: 1px; z-index: 3; }\",\".framer-427in .framer-172szlb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-427in .framer-180j8j4, .framer-427in .framer-i0czqu, .framer-427in .framer-1ojl6ef, .framer-427in .framer-544bhf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-427in .framer-ncdnoh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: 32px; }\",\".framer-427in .framer-fpg52j-container, .framer-427in .framer-1vbxd98-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-427in .framer-31fxl5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-427in .framer-196u5p2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 16px 4px 16px; position: relative; width: min-content; }\",\".framer-427in .framer-1j1uefg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 8px 8px 16px; position: relative; width: 100%; z-index: 3; }\",\".framer-427in .framer-1885mo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-427in .framer-cuc2g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: 20px; }\",\".framer-427in .framer-1qeag1v { aspect-ratio: 0.5660112359550562 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 583px); left: 57%; overflow: visible; position: absolute; top: 70%; width: 115%; z-index: 1; }\",\".framer-427in .framer-nmtn3n { aspect-ratio: 0.5660112359550562 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 583px); left: 60%; overflow: visible; position: absolute; top: 59%; width: 115%; z-index: 2; }\",\".framer-427in .framer-1q10nvk { aspect-ratio: 0.5660112359550562 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 583px); left: 69%; overflow: visible; position: absolute; top: 49%; width: 115%; z-index: 2; }\",\".framer-427in .framer-19ruxbl { aspect-ratio: 1.226027397260274 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 146px); left: 50%; overflow: visible; position: absolute; top: 99%; width: 62%; z-index: 0; }\",\".framer-427in .framer-1mclcmm { aspect-ratio: 1.749034749034749 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 259px); left: 126%; overflow: visible; position: absolute; top: 88%; width: 157%; }\",\".framer-427in .framer-1rwdxmr { aspect-ratio: 1.2413793103448276 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 145px); left: 95%; overflow: visible; position: absolute; top: 86%; width: 63%; z-index: 2; }\",\".framer-427in .framer-k0s73o { aspect-ratio: 1.2337662337662338 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 77px); left: 89%; overflow: visible; position: absolute; top: 34%; width: 33%; z-index: 2; }\",\".framer-427in .framer-1y8w2y7 { aspect-ratio: 1.2266666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); left: 110%; overflow: visible; position: absolute; top: 39%; width: 64%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-427in .framer-14tjkdp, .framer-427in .framer-ncdnoh, .framer-427in .framer-31fxl5, .framer-427in .framer-196u5p2, .framer-427in .framer-1j1uefg, .framer-427in .framer-cuc2g { gap: 0px; } .framer-427in .framer-14tjkdp > *, .framer-427in .framer-ncdnoh > *, .framer-427in .framer-31fxl5 > *, .framer-427in .framer-196u5p2 > *, .framer-427in .framer-cuc2g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-427in .framer-14tjkdp > :first-child, .framer-427in .framer-ncdnoh > :first-child, .framer-427in .framer-31fxl5 > :first-child, .framer-427in .framer-196u5p2 > :first-child, .framer-427in .framer-cuc2g > :first-child { margin-left: 0px; } .framer-427in .framer-14tjkdp > :last-child, .framer-427in .framer-ncdnoh > :last-child, .framer-427in .framer-31fxl5 > :last-child, .framer-427in .framer-196u5p2 > :last-child, .framer-427in .framer-cuc2g > :last-child { margin-right: 0px; } .framer-427in .framer-1j1uefg > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-427in .framer-1j1uefg > :first-child { margin-top: 0px; } .framer-427in .framer-1j1uefg > :last-child { margin-bottom: 0px; } }\",\".framer-427in.framer-v-yvopzy.framer-oyjs46 { cursor: unset; }\",\".framer-427in.framer-v-yvopzy .framer-15261nq, .framer-427in.framer-v-1nyo6n5 .framer-15261nq { gap: 10px; justify-content: flex-end; padding: 12px; }\",\".framer-427in.framer-v-yvopzy .framer-1885mo, .framer-427in.framer-v-yvopzy .framer-1ojl6ef, .framer-427in.framer-v-1nyo6n5 .framer-1885mo, .framer-427in.framer-v-1nyo6n5 .framer-1ojl6ef { order: 0; }\",\".framer-427in.framer-v-yvopzy .framer-cuc2g, .framer-427in.framer-v-yvopzy .framer-544bhf, .framer-427in.framer-v-1nyo6n5 .framer-cuc2g, .framer-427in.framer-v-1nyo6n5 .framer-544bhf { order: 1; }\",\".framer-427in.framer-v-yvopzy .framer-1qeag1v { top: 64%; }\",\".framer-427in.framer-v-yvopzy .framer-nmtn3n { top: 54%; }\",\".framer-427in.framer-v-yvopzy .framer-1q10nvk { top: 43%; }\",\".framer-427in.framer-v-yvopzy .framer-19ruxbl { top: 94%; }\",\".framer-427in.framer-v-yvopzy .framer-1mclcmm { height: var(--framer-aspect-ratio-supported, 300px); left: 139%; top: 84%; width: 182%; }\",\".framer-427in.framer-v-yvopzy .framer-1rwdxmr { top: 81%; }\",\".framer-427in.framer-v-yvopzy .framer-k0s73o { top: 29%; }\",\".framer-427in.framer-v-yvopzy .framer-1y8w2y7 { top: 34%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-427in.framer-v-yvopzy .framer-15261nq { gap: 0px; } .framer-427in.framer-v-yvopzy .framer-15261nq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-427in.framer-v-yvopzy .framer-15261nq > :first-child { margin-top: 0px; } .framer-427in.framer-v-yvopzy .framer-15261nq > :last-child { margin-bottom: 0px; } }\",\".framer-427in.framer-v-f2r9rp.framer-oyjs46 { width: 394px; }\",\".framer-427in.framer-v-f2r9rp .framer-15261nq { z-index: 6; }\",\".framer-427in.framer-v-f2r9rp .framer-1qeag1v { height: var(--framer-aspect-ratio-supported, 682px); left: 61%; top: 68%; width: 98%; }\",\".framer-427in.framer-v-f2r9rp .framer-nmtn3n { height: var(--framer-aspect-ratio-supported, 682px); left: 63%; width: 98%; }\",\".framer-427in.framer-v-f2r9rp .framer-1q10nvk { height: var(--framer-aspect-ratio-supported, 682px); left: 70%; top: 50%; width: 98%; }\",\".framer-427in.framer-v-f2r9rp .framer-19ruxbl { height: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-427in.framer-v-f2r9rp .framer-1mclcmm { height: var(--framer-aspect-ratio-supported, 354px); }\",\".framer-427in.framer-v-f2r9rp .framer-1rwdxmr { height: var(--framer-aspect-ratio-supported, 198px); z-index: 5; }\",\".framer-427in.framer-v-f2r9rp .framer-k0s73o { height: var(--framer-aspect-ratio-supported, 105px); z-index: 4; }\",\".framer-427in.framer-v-f2r9rp .framer-1y8w2y7 { height: var(--framer-aspect-ratio-supported, 205px); z-index: 5; }\",\".framer-427in.framer-v-1nyo6n5.framer-oyjs46 { cursor: unset; height: 457px; width: 311px; }\",\".framer-427in.framer-v-1nyo6n5 .framer-1qeag1v { height: var(--framer-aspect-ratio-supported, 542px); left: 62%; top: 63%; width: 99%; }\",\".framer-427in.framer-v-1nyo6n5 .framer-nmtn3n { height: var(--framer-aspect-ratio-supported, 542px); left: 65%; top: 54%; width: 99%; }\",\".framer-427in.framer-v-1nyo6n5 .framer-1q10nvk { height: var(--framer-aspect-ratio-supported, 542px); left: 72%; top: 45%; width: 99%; }\",\".framer-427in.framer-v-1nyo6n5 .framer-19ruxbl { height: var(--framer-aspect-ratio-supported, 135px); left: 56%; top: 88%; width: 53%; }\",\".framer-427in.framer-v-1nyo6n5 .framer-1mclcmm { height: var(--framer-aspect-ratio-supported, 279px); left: 132%; top: 80%; width: 157%; }\",\".framer-427in.framer-v-1nyo6n5 .framer-1rwdxmr { height: var(--framer-aspect-ratio-supported, 135px); left: 94%; top: 77%; width: 54%; }\",\".framer-427in.framer-v-1nyo6n5 .framer-k0s73o { height: var(--framer-aspect-ratio-supported, 72px); left: 89%; top: 32%; width: 29%; }\",\".framer-427in.framer-v-1nyo6n5 .framer-1y8w2y7 { height: var(--framer-aspect-ratio-supported, 139px); left: 107%; top: 37%; width: 55%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-427in.framer-v-1nyo6n5 .framer-15261nq { gap: 0px; } .framer-427in.framer-v-1nyo6n5 .framer-15261nq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-427in.framer-v-1nyo6n5 .framer-15261nq > :first-child { margin-top: 0px; } .framer-427in.framer-v-1nyo6n5 .framer-15261nq > :last-child { margin-bottom: 0px; } }\",\".framer-427in.framer-v-oyjs46.hover .framer-1qeag1v { height: var(--framer-aspect-ratio-supported, 590px); width: 116%; }\",\".framer-427in.framer-v-oyjs46.hover .framer-nmtn3n { height: var(--framer-aspect-ratio-supported, 595px); width: 117%; }\",\".framer-427in.framer-v-oyjs46.hover .framer-1q10nvk { height: var(--framer-aspect-ratio-supported, 605px); width: 119%; }\",\".framer-427in.framer-v-oyjs46.hover .framer-19ruxbl { left: 43%; }\",\".framer-427in.framer-v-oyjs46.hover .framer-1mclcmm { left: 119%; }\",\".framer-427in.framer-v-oyjs46.hover .framer-1rwdxmr { left: 98%; }\",\".framer-427in.framer-v-oyjs46.hover .framer-k0s73o { left: 92%; }\",\".framer-427in.framer-v-oyjs46.hover .framer-1y8w2y7 { left: 106%; }\",\".framer-427in.framer-v-f2r9rp.hover .framer-1qeag1v { height: var(--framer-aspect-ratio-supported, 696px); left: 59%; top: 67%; width: 100%; }\",\".framer-427in.framer-v-f2r9rp.hover .framer-nmtn3n { height: var(--framer-aspect-ratio-supported, 703px); left: 62%; top: 58%; width: 101%; }\",\".framer-427in.framer-v-f2r9rp.hover .framer-1q10nvk { height: var(--framer-aspect-ratio-supported, 710px); left: 68%; top: 48%; width: 102%; }\",\".framer-427in.framer-v-f2r9rp.hover .framer-19ruxbl { left: 48%; width: 62%; }\",\".framer-427in.framer-v-f2r9rp.hover .framer-1mclcmm { left: 121%; width: 157%; }\",\".framer-427in.framer-v-f2r9rp.hover .framer-1rwdxmr { left: 92%; width: 62%; }\",\".framer-427in.framer-v-f2r9rp.hover .framer-k0s73o { left: 91%; width: 33%; }\",\".framer-427in.framer-v-f2r9rp.hover .framer-1y8w2y7 { left: 107%; width: 64%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-427in[data-border=\"true\"]::after, .framer-427in [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 568\n * @framerIntrinsicWidth 288\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bat2XCcgr\":{\"layout\":[\"fixed\",\"fixed\"]},\"sZwioRfr9\":{\"layout\":[\"fixed\",\"fixed\"]},\"LnMSN4CYG\":{\"layout\":[\"fixed\",\"fixed\"]},\"dgZMxUCzX\":{\"layout\":[\"fixed\",\"fixed\"]},\"kgvgOCsQ8\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"rfxjvjnZt\":\"tYPE1\",\"ismqX7WDc\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNiOz0WvR0=withCSS(Component,css,\"framer-427in\");export default FramerNiOz0WvR0;FramerNiOz0WvR0.displayName=\"2 PROJECT\";FramerNiOz0WvR0.defaultProps={height:568,width:288};addPropertyControls(FramerNiOz0WvR0,{variant:{options:[\"gRbG4p351\",\"Bat2XCcgr\",\"sZwioRfr9\",\"LnMSN4CYG\"],optionTitles:[\"DESK\",\"MOB\",\"CARD\",\"CARD MOB\"],title:\"Variant\",type:ControlType.Enum},rfxjvjnZt:{defaultValue:\"APP\",displayTextArea:false,title:\"TYPE 1\",type:ControlType.String},ismqX7WDc:{title:\"Link\",type:ControlType.Link}});addFonts(FramerNiOz0WvR0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNiOz0WvR0\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bat2XCcgr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sZwioRfr9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LnMSN4CYG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dgZMxUCzX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kgvgOCsQ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"568\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"rfxjvjnZt\\\":\\\"tYPE1\\\",\\\"ismqX7WDc\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"288\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NiOz0WvR0.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KYvNwSKO5OgFLzY1Hurs/QGJYuU698qqT5xspqXIx/K_GAEXpHB.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/l48ZqnOxyFtUfwsYbcLB/UTyBiA4FMy69UB9NgDgz/vowZHZq5d.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={BFolWPG7B:{hover:true},swpCdo3NV:{hover:true}};const cycleOrder=[\"BFolWPG7B\",\"Ddh5fDJcz\",\"swpCdo3NV\",\"xZXeznxaS\"];const serializationHash=\"framer-A7qE1\";const variantClassNames={BFolWPG7B:\"framer-v-7q4lkw\",Ddh5fDJcz:\"framer-v-lj5271\",swpCdo3NV:\"framer-v-1638pt9\",xZXeznxaS:\"framer-v-1vlkzb0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:29,delay:0,mass:1,stiffness:174,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"CARD MOB\":\"xZXeznxaS\",\"Variant 1\":\"BFolWPG7B\",CARD:\"swpCdo3NV\",MOB:\"Ddh5fDJcz\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,Amq5ACfwQ:link!==null&&link!==void 0?link:props.Amq5ACfwQ,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"BFolWPG7B\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Amq5ACfwQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BFolWPG7B\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Ddh5fDJcz\",\"xZXeznxaS\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"Ddh5fDJcz\",\"xZXeznxaS\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Amq5ACfwQ,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-7q4lkw\",className,classNames)} framer-16xatyq`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BFolWPG7B\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"radial-gradient(76% 38% at 50% 100%, rgb(194, 194, 194) 0%, rgb(237, 237, 237) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"BFolWPG7B-hover\":{background:\"radial-gradient(76% 38% at 50% 100%, rgb(194, 194, 194) 0%, rgb(217, 217, 217) 100%)\"},\"swpCdo3NV-hover\":{background:\"radial-gradient(76% 38% at 50% 100%, rgb(194, 194, 194) 0%, rgb(217, 217, 217) 100%)\"}},...addPropertyOverrides({\"BFolWPG7B-hover\":{\"data-framer-name\":undefined},\"swpCdo3NV-hover\":{\"data-framer-name\":undefined},Ddh5fDJcz:{\"data-framer-name\":\"MOB\"},swpCdo3NV:{\"data-framer-name\":\"CARD\"},xZXeznxaS:{\"data-framer-name\":\"CARD MOB\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vku5d8\",layoutDependency:layoutDependency,layoutId:\"KOZmiViw7\",style:{backgroundColor:\"rgb(212, 255, 88)\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,opacity:.1},transformTemplate:transformTemplate1,variants:{\"BFolWPG7B-hover\":{opacity:.6},\"swpCdo3NV-hover\":{opacity:.6},Ddh5fDJcz:{opacity:.6},xZXeznxaS:{opacity:.6}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16f18q0\",layoutDependency:layoutDependency,layoutId:\"M7Dv3ncIG\",style:{backgroundColor:\"rgb(212, 255, 88)\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,opacity:.1},transformTemplate:transformTemplate1,variants:{\"BFolWPG7B-hover\":{opacity:.6},\"swpCdo3NV-hover\":{opacity:.6},Ddh5fDJcz:{opacity:.6},xZXeznxaS:{opacity:.6}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ejdvaj\",layoutDependency:layoutDependency,layoutId:\"QP8dSZwKt\",style:{backgroundColor:\"rgb(212, 255, 88)\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,opacity:.1},transformTemplate:transformTemplate1,variants:{\"BFolWPG7B-hover\":{opacity:.6},\"swpCdo3NV-hover\":{opacity:.6},Ddh5fDJcz:{opacity:.6},xZXeznxaS:{opacity:.6}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iedxju\",\"data-framer-name\":\"WRAPPER\",layoutDependency:layoutDependency,layoutId:\"nHKDJnJ3F\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rwazuk\",\"data-framer-name\":\"INFOS\",layoutDependency:layoutDependency,layoutId:\"eZpaB1lGa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-q5d7rp\",\"data-framer-name\":\"ARROW\",layoutDependency:layoutDependency,layoutId:\"DMYRiAwLg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nbu85i\",layoutDependency:layoutDependency,layoutId:\"DWjzZpq0s\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,WebkitBackdropFilter:\"none\"},variants:{Ddh5fDJcz:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.73)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(8px)\"},xZXeznxaS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.73)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(8px)\"}},...addPropertyOverrides({Ddh5fDJcz:{\"data-border\":true},xZXeznxaS:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"CIRCLE\"})}),className:\"framer-16h1qbb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jQ3da02KC\",style:{\"--extracted-1of0zx5\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"BFolWPG7B-hover\":{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227))\"},\"swpCdo3NV-hover\":{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\"},Ddh5fDJcz:{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\"},xZXeznxaS:{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"BFolWPG7B-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227)))\"},children:\"CIRCLE\"})})},\"swpCdo3NV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0)))\"},children:\"CIRCLE\"})})},Ddh5fDJcz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"WEB\"})}),fonts:[\"FS;Satoshi-regular\"]},xZXeznxaS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"WEB\"})}),fonts:[\"FS;Satoshi-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7suwme\",layoutDependency:layoutDependency,layoutId:\"NVst5vbRX\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",children:\"CIRCLE\"})}),className:\"framer-11g57lt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WtJRUJgST\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1neiths\",layoutDependency:layoutDependency,layoutId:\"TmLwnevqg\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{Ddh5fDJcz:{backgroundColor:\"rgba(0, 0, 0, 0)\"},xZXeznxaS:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nffoy0-container\",layoutDependency:layoutDependency,layoutId:\"GMH7trvRV-container\",style:{opacity:.7},variants:{\"BFolWPG7B-hover\":{opacity:1},\"swpCdo3NV-hover\":{opacity:1},Ddh5fDJcz:{opacity:1},xZXeznxaS:{opacity:1}},children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"GMH7trvRV\",layoutId:\"GMH7trvRV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Ddh5fDJcz:{color:\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\"},xZXeznxaS:{color:\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\"}},baseVariant,gestureVariant)})})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-z35te1\",layoutDependency:layoutDependency,layoutId:\"fPBpcgHlP\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eb79bn\",\"data-border\":true,\"data-framer-name\":\"TYPE\",layoutDependency:layoutDependency,layoutId:\"DShiaE4m7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"radial-gradient(76% 100% at 50% 100%, rgb(214, 214, 214) 0%, rgb(255, 255, 255) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1na8dda\",\"data-styles-preset\":\"vowZHZq5d\",children:\"WEB\"})}),className:\"framer-r29jny\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bKjsK7hR8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||276)*.7898550724637683-138.5)),pixelHeight:3215,pixelWidth:4815,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RwOpEwDsrs3oWppvQQn9SnMrls.png\"},className:\"framer-iu404m\",\"data-framer-name\":\"IPHONE6 SECOND\",layoutDependency:layoutDependency,layoutId:\"umIPin0RB\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"BFolWPG7B-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||276)*.7173913043478263-138.5)),pixelHeight:3215,pixelWidth:4815,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RwOpEwDsrs3oWppvQQn9SnMrls.png\"}},\"swpCdo3NV-hover\":{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.5616197183098594-152.5)),pixelHeight:3215,pixelWidth:4815,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RwOpEwDsrs3oWppvQQn9SnMrls.png\"}},Ddh5fDJcz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||320)*.47812500000000024-132.5)),pixelHeight:3215,pixelWidth:4815,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RwOpEwDsrs3oWppvQQn9SnMrls.png\"}},swpCdo3NV:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.552816901408451-147)),pixelHeight:3215,pixelWidth:4815,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RwOpEwDsrs3oWppvQQn9SnMrls.png\"}},xZXeznxaS:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.4770240700218821-113)),pixelHeight:3215,pixelWidth:4815,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RwOpEwDsrs3oWppvQQn9SnMrls.png\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A7qE1.framer-16xatyq, .framer-A7qE1 .framer-16xatyq { display: block; }\",\".framer-A7qE1.framer-7q4lkw { cursor: pointer; height: 276px; overflow: hidden; position: relative; text-decoration: none; width: 576px; will-change: var(--framer-will-change-override, transform); }\",\".framer-A7qE1 .framer-1vku5d8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 110px); left: 41%; overflow: visible; position: absolute; top: 36%; width: 19%; z-index: 1; }\",\".framer-A7qE1 .framer-16f18q0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 166px); left: 81%; overflow: visible; position: absolute; top: 32%; width: 29%; z-index: 1; }\",\".framer-A7qE1 .framer-ejdvaj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 94px); left: 20%; overflow: visible; position: absolute; top: 72%; width: 16%; z-index: 1; }\",\".framer-A7qE1 .framer-1iedxju { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-A7qE1 .framer-rwazuk { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 16px; position: relative; width: 1px; z-index: 3; }\",\".framer-A7qE1 .framer-q5d7rp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-A7qE1 .framer-nbu85i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-A7qE1 .framer-16h1qbb, .framer-A7qE1 .framer-11g57lt, .framer-A7qE1 .framer-r29jny { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-A7qE1 .framer-7suwme { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-A7qE1 .framer-1neiths { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: 32px; }\",\".framer-A7qE1 .framer-1nffoy0-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-A7qE1 .framer-z35te1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-A7qE1 .framer-1eb79bn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 16px 4px 16px; position: relative; width: min-content; }\",\".framer-A7qE1 .framer-iu404m { aspect-ratio: 2.085714285714286 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 277px); left: 50%; overflow: visible; position: absolute; top: 79%; width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A7qE1 .framer-1iedxju, .framer-A7qE1 .framer-7suwme, .framer-A7qE1 .framer-1neiths, .framer-A7qE1 .framer-z35te1, .framer-A7qE1 .framer-1eb79bn { gap: 0px; } .framer-A7qE1 .framer-1iedxju > *, .framer-A7qE1 .framer-7suwme > *, .framer-A7qE1 .framer-1neiths > *, .framer-A7qE1 .framer-z35te1 > *, .framer-A7qE1 .framer-1eb79bn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-A7qE1 .framer-1iedxju > :first-child, .framer-A7qE1 .framer-7suwme > :first-child, .framer-A7qE1 .framer-1neiths > :first-child, .framer-A7qE1 .framer-z35te1 > :first-child, .framer-A7qE1 .framer-1eb79bn > :first-child { margin-left: 0px; } .framer-A7qE1 .framer-1iedxju > :last-child, .framer-A7qE1 .framer-7suwme > :last-child, .framer-A7qE1 .framer-1neiths > :last-child, .framer-A7qE1 .framer-z35te1 > :last-child, .framer-A7qE1 .framer-1eb79bn > :last-child { margin-right: 0px; } }\",\".framer-A7qE1.framer-v-lj5271.framer-7q4lkw { cursor: unset; height: 320px; }\",\".framer-A7qE1.framer-v-lj5271 .framer-1vku5d8 { left: 29%; top: 23%; }\",\".framer-A7qE1.framer-v-lj5271 .framer-16f18q0 { left: 85%; top: 29%; }\",\".framer-A7qE1.framer-v-lj5271 .framer-ejdvaj { left: 15%; top: 78%; }\",\".framer-A7qE1.framer-v-lj5271 .framer-rwazuk, .framer-A7qE1.framer-v-1vlkzb0 .framer-rwazuk { gap: 10px; justify-content: flex-end; padding: 12px; }\",\".framer-A7qE1.framer-v-lj5271 .framer-q5d7rp, .framer-A7qE1.framer-v-1vlkzb0 .framer-q5d7rp { padding: 0px; }\",\".framer-A7qE1.framer-v-lj5271 .framer-nbu85i, .framer-A7qE1.framer-v-1vlkzb0 .framer-nbu85i { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 4px; justify-content: flex-start; padding: 8px 8px 8px 16px; }\",\".framer-A7qE1.framer-v-lj5271 .framer-16h1qbb, .framer-A7qE1.framer-v-1vlkzb0 .framer-16h1qbb { order: 1; }\",\".framer-A7qE1.framer-v-lj5271 .framer-7suwme, .framer-A7qE1.framer-v-1vlkzb0 .framer-7suwme { gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-A7qE1.framer-v-lj5271 .framer-1neiths, .framer-A7qE1.framer-v-1vlkzb0 .framer-1neiths { height: 20px; width: 20px; }\",\".framer-A7qE1.framer-v-lj5271 .framer-iu404m { height: var(--framer-aspect-ratio-supported, 265px); left: 52%; top: 48%; width: 96%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A7qE1.framer-v-lj5271 .framer-rwazuk, .framer-A7qE1.framer-v-lj5271 .framer-nbu85i, .framer-A7qE1.framer-v-lj5271 .framer-7suwme { gap: 0px; } .framer-A7qE1.framer-v-lj5271 .framer-rwazuk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-A7qE1.framer-v-lj5271 .framer-rwazuk > :first-child, .framer-A7qE1.framer-v-lj5271 .framer-nbu85i > :first-child { margin-top: 0px; } .framer-A7qE1.framer-v-lj5271 .framer-rwazuk > :last-child, .framer-A7qE1.framer-v-lj5271 .framer-nbu85i > :last-child { margin-bottom: 0px; } .framer-A7qE1.framer-v-lj5271 .framer-nbu85i > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-A7qE1.framer-v-lj5271 .framer-7suwme > *, .framer-A7qE1.framer-v-lj5271 .framer-7suwme > :first-child, .framer-A7qE1.framer-v-lj5271 .framer-7suwme > :last-child { margin: 0px; } }\",\".framer-A7qE1.framer-v-1638pt9.framer-7q4lkw { height: 568px; width: 394px; }\",\".framer-A7qE1.framer-v-1638pt9 .framer-1vku5d8 { height: var(--framer-aspect-ratio-supported, 112px); left: 30%; top: 29%; width: 28%; }\",\".framer-A7qE1.framer-v-1638pt9 .framer-16f18q0 { height: var(--framer-aspect-ratio-supported, 168px); left: 89%; top: 21%; width: 43%; }\",\".framer-A7qE1.framer-v-1638pt9 .framer-ejdvaj { height: var(--framer-aspect-ratio-supported, 96px); left: 41%; top: 80%; width: 24%; }\",\".framer-A7qE1.framer-v-1638pt9 .framer-iu404m { height: var(--framer-aspect-ratio-supported, 294px); top: 55%; width: 156%; }\",\".framer-A7qE1.framer-v-1vlkzb0.framer-7q4lkw { cursor: unset; height: 457px; width: 311px; }\",\".framer-A7qE1.framer-v-1vlkzb0 .framer-1vku5d8 { height: var(--framer-aspect-ratio-supported, 70px); left: 18%; top: 27%; width: 23%; }\",\".framer-A7qE1.framer-v-1vlkzb0 .framer-16f18q0 { height: var(--framer-aspect-ratio-supported, 107px); left: 87%; top: 25%; width: 34%; }\",\".framer-A7qE1.framer-v-1vlkzb0 .framer-ejdvaj { height: var(--framer-aspect-ratio-supported, 61px); left: 37%; top: 70%; width: 20%; }\",\".framer-A7qE1.framer-v-1vlkzb0 .framer-iu404m { height: var(--framer-aspect-ratio-supported, 226px); left: 50%; top: 48%; width: 152%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A7qE1.framer-v-1vlkzb0 .framer-rwazuk, .framer-A7qE1.framer-v-1vlkzb0 .framer-nbu85i, .framer-A7qE1.framer-v-1vlkzb0 .framer-7suwme { gap: 0px; } .framer-A7qE1.framer-v-1vlkzb0 .framer-rwazuk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-A7qE1.framer-v-1vlkzb0 .framer-rwazuk > :first-child, .framer-A7qE1.framer-v-1vlkzb0 .framer-nbu85i > :first-child { margin-top: 0px; } .framer-A7qE1.framer-v-1vlkzb0 .framer-rwazuk > :last-child, .framer-A7qE1.framer-v-1vlkzb0 .framer-nbu85i > :last-child { margin-bottom: 0px; } .framer-A7qE1.framer-v-1vlkzb0 .framer-nbu85i > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-A7qE1.framer-v-1vlkzb0 .framer-7suwme > *, .framer-A7qE1.framer-v-1vlkzb0 .framer-7suwme > :first-child, .framer-A7qE1.framer-v-1vlkzb0 .framer-7suwme > :last-child { margin: 0px; } }\",\".framer-A7qE1.framer-v-7q4lkw.hover .framer-1vku5d8 { height: var(--framer-aspect-ratio-supported, 121px); width: 21%; }\",\".framer-A7qE1.framer-v-7q4lkw.hover .framer-16f18q0 { height: var(--framer-aspect-ratio-supported, 173px); left: 82%; width: 30%; }\",\".framer-A7qE1.framer-v-7q4lkw.hover .framer-ejdvaj { height: var(--framer-aspect-ratio-supported, 104px); top: 68%; width: 18%; }\",\".framer-A7qE1.framer-v-7q4lkw.hover .framer-1nffoy0-container { height: var(--framer-aspect-ratio-supported, 25px); width: 22px; }\",\".framer-A7qE1.framer-v-7q4lkw.hover .framer-iu404m { top: 72%; }\",\".framer-A7qE1.framer-v-1638pt9.hover .framer-1vku5d8 { height: var(--framer-aspect-ratio-supported, 126px); width: 32%; }\",\".framer-A7qE1.framer-v-1638pt9.hover .framer-16f18q0 { height: var(--framer-aspect-ratio-supported, 185px); width: 47%; }\",\".framer-A7qE1.framer-v-1638pt9.hover .framer-ejdvaj { height: var(--framer-aspect-ratio-supported, 110px); width: 28%; }\",\".framer-A7qE1.framer-v-1638pt9.hover .framer-iu404m { height: var(--framer-aspect-ratio-supported, 305px); top: 56%; width: 161%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-A7qE1[data-border=\"true\"]::after, .framer-A7qE1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 276\n * @framerIntrinsicWidth 576\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ddh5fDJcz\":{\"layout\":[\"fixed\",\"fixed\"]},\"swpCdo3NV\":{\"layout\":[\"fixed\",\"fixed\"]},\"xZXeznxaS\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ei6qz2f4G\":{\"layout\":[\"fixed\",\"fixed\"]},\"cJHz1k7kd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Amq5ACfwQ\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernuCCgleXl=withCSS(Component,css,\"framer-A7qE1\");export default FramernuCCgleXl;FramernuCCgleXl.displayName=\"4 PROJECT\";FramernuCCgleXl.defaultProps={height:276,width:576};addPropertyControls(FramernuCCgleXl,{variant:{options:[\"BFolWPG7B\",\"Ddh5fDJcz\",\"swpCdo3NV\",\"xZXeznxaS\"],optionTitles:[\"Variant 1\",\"MOB\",\"CARD\",\"CARD MOB\"],title:\"Variant\",type:ControlType.Enum},Amq5ACfwQ:{title:\"Link\",type:ControlType.Link}});addFonts(FramernuCCgleXl,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernuCCgleXl\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"276\",\"framerIntrinsicWidth\":\"576\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ddh5fDJcz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"swpCdo3NV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xZXeznxaS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ei6qz2f4G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cJHz1k7kd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Amq5ACfwQ\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KYvNwSKO5OgFLzY1Hurs/QGJYuU698qqT5xspqXIx/K_GAEXpHB.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/l48ZqnOxyFtUfwsYbcLB/UTyBiA4FMy69UB9NgDgz/vowZHZq5d.js\";const FeatherFonts=getFonts(Feather);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const enabledGestures={Su4UP2ceZ:{hover:true},ukWFxkPTh:{hover:true}};const cycleOrder=[\"Su4UP2ceZ\",\"B9G7HrIpK\",\"ukWFxkPTh\",\"uP18xk3qs\"];const serializationHash=\"framer-Scofm\";const variantClassNames={B9G7HrIpK:\"framer-v-1isvl07\",Su4UP2ceZ:\"framer-v-cvaeg7\",ukWFxkPTh:\"framer-v-g3h3a5\",uP18xk3qs:\"framer-v-1ky05zm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:29,delay:0,mass:1,stiffness:174,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:.5,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:2,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:1,rotate:1,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"CARD MOB\":\"uP18xk3qs\",\"Variant 1\":\"Su4UP2ceZ\",CARD:\"ukWFxkPTh\",MOBILE:\"B9G7HrIpK\"};const getProps=({height,id,link,tYPE1,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,rfxjvjnZt:(_ref=tYPE1!==null&&tYPE1!==void 0?tYPE1:props.rfxjvjnZt)!==null&&_ref!==void 0?_ref:\"APP\",TxOHELDqA:link!==null&&link!==void 0?link:props.TxOHELDqA,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Su4UP2ceZ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,rfxjvjnZt,TxOHELDqA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Su4UP2ceZ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"B9G7HrIpK\",\"uP18xk3qs\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"B9G7HrIpK\",\"uP18xk3qs\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"uP18xk3qs\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"uP18xk3qs\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:TxOHELDqA,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-cvaeg7\",className,classNames)} framer-1yytms8`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Su4UP2ceZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"radial-gradient(76% 38% at 50% 100%, rgb(194, 194, 194) 0%, rgb(237, 237, 237) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"Su4UP2ceZ-hover\":{background:\"radial-gradient(76% 38% at 50% 100%, rgb(194, 194, 194) 0%, rgb(217, 217, 217) 100%)\"}},...addPropertyOverrides({\"Su4UP2ceZ-hover\":{\"data-framer-name\":undefined},\"ukWFxkPTh-hover\":{\"data-framer-name\":undefined},B9G7HrIpK:{\"data-framer-name\":\"MOBILE\"},ukWFxkPTh:{\"data-framer-name\":\"CARD\"},uP18xk3qs:{\"data-framer-name\":\"CARD MOB\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o5g0sp\",\"data-framer-name\":\"WRAPPER\",layoutDependency:layoutDependency,layoutId:\"SNA5ddMzL\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gk5b5l\",\"data-framer-name\":\"INFOS\",layoutDependency:layoutDependency,layoutId:\"Mc1YRqwf1\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ecrv2c\",layoutDependency:layoutDependency,layoutId:\"t4s67n7MK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"KRAFT\"})}),className:\"framer-wywk0e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KiyqbBsrg\",style:{\"--extracted-1of0zx5\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"Su4UP2ceZ-hover\":{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227))\"},\"ukWFxkPTh-hover\":{\"--extracted-1of0zx5\":\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Su4UP2ceZ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227)))\"},children:\"KRAFT\"})})},\"ukWFxkPTh-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(0, 0, 0)))\"},children:\"KRAFT\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y2o0x0\",layoutDependency:layoutDependency,layoutId:\"qLJDdfZsi\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hpcjby-container\",layoutDependency:layoutDependency,layoutId:\"eZHcsuc2N-container\",style:{opacity:.7},variants:{\"Su4UP2ceZ-hover\":{opacity:1},\"ukWFxkPTh-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-157db5f0-8d15-4f62-9595-f27094d1d3ed, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"eZHcsuc2N\",layoutId:\"eZHcsuc2N\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-kmr5ok\",layoutDependency:layoutDependency,layoutId:\"okD1guKcF\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d56v77\",\"data-border\":true,\"data-framer-name\":\"TYPE\",layoutDependency:layoutDependency,layoutId:\"DmtqtVPlk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c258e6ab-9be4-46de-9105-249fd62f44e1, rgba(0, 0, 0, 0.08))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"radial-gradient(76% 100% at 50% 100%, rgb(214, 214, 214) 0%, rgb(255, 255, 255) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1na8dda\",\"data-styles-preset\":\"vowZHZq5d\",children:\"APP\"})}),className:\"framer-1rsyq0s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DcgQWqXw1\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rfxjvjnZt,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vzokj0\",\"data-border\":true,\"data-framer-name\":\"ARROW\",layoutDependency:layoutDependency,layoutId:\"th4jG8Ive\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.16)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.73)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(8px)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iw5qm7\",layoutDependency:layoutDependency,layoutId:\"Bjrz4HbXl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vfhqj8\",layoutDependency:layoutDependency,layoutId:\"hkIoH1R86\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qrkgll-container\",layoutDependency:layoutDependency,layoutId:\"Kenevr2G3-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-91fe96c2-baa4-452d-9846-4e5aa16c95f6, rgb(227, 227, 227))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"Kenevr2G3\",layoutId:\"Kenevr2G3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1st69sr\",\"data-styles-preset\":\"K_GAEXpHB\",children:\"KRAFT\"})}),className:\"framer-92z6cd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"drZoB6Fdz\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170)))\"},children:\"APP\"})}),className:\"framer-400mpw\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"jEQ7YZ3ib\",style:{\"--extracted-r6o4lv\":\"var(--token-3914eacf-8822-464d-a760-2c2efa881a91, rgb(170, 170, 170))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:rfxjvjnZt,verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-ip86sj\",layoutDependency:layoutDependency,layoutId:\"ESVaiHD1k\",style:{background:\"linear-gradient(180deg, rgb(249, 201, 76) 0%, rgb(152, 110, 5) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0,rotate:-42},transformTemplate:transformTemplate1,variants:{\"Su4UP2ceZ-hover\":{opacity:1,rotate:-45},\"ukWFxkPTh-hover\":{opacity:1,rotate:-45},B9G7HrIpK:{opacity:1}},...addPropertyOverrides({B9G7HrIpK:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oj7v4a\",layoutDependency:layoutDependency,layoutId:\"dx5id9qpb\",style:{background:\"linear-gradient(180deg, rgb(249, 201, 76) 0%, rgb(152, 110, 5) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.9,rotate:-45},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.4859154929577467-214.5)),pixelHeight:1787,pixelWidth:1011,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.8438)`,src:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png\",srcSet:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png?scale-down-to=1024 579w,https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png 1011w\"},className:\"framer-clgyxg\",\"data-framer-name\":\"IPHONE6\",layoutDependency:layoutDependency,layoutId:\"OjqYpKtNL\",style:{rotate:-1},transformTemplate:transformTemplate1,variants:{\"Su4UP2ceZ-hover\":{rotate:2},\"ukWFxkPTh-hover\":{rotate:2}},...addPropertyOverrides({\"Su4UP2ceZ-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.4859154929577467-225.5)),pixelHeight:1787,pixelWidth:1011,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.8854)`,src:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png\",srcSet:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png?scale-down-to=1024 579w,https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png 1011w\"}},\"ukWFxkPTh-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.4859154929577467-246)),pixelHeight:1787,pixelWidth:1011,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.73)`,src:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png\",srcSet:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png?scale-down-to=1024 579w,https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png 1011w\"}},B9G7HrIpK:{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1},ukWFxkPTh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||568)*.4859154929577467-246)),pixelHeight:1787,pixelWidth:1011,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.68)`,src:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png\",srcSet:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png?scale-down-to=1024 579w,https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png 1011w\"}},uP18xk3qs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1787,intrinsicWidth:1011,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||457)*.48577680525164135-197.58299314902365)),pixelHeight:1787,pixelWidth:1011,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.7171)`,src:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png\",srcSet:\"https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png?scale-down-to=1024 579w,https://framerusercontent.com/images/zm5MozcAkbXQK54zO7CtR4P7u7o.png 1011w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Scofm.framer-1yytms8, .framer-Scofm .framer-1yytms8 { display: block; }\",\".framer-Scofm.framer-cvaeg7 { cursor: pointer; height: 568px; overflow: hidden; position: relative; text-decoration: none; width: 288px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Scofm .framer-1o5g0sp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-Scofm .framer-1gk5b5l { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 16px; position: relative; width: 1px; z-index: 3; }\",\".framer-Scofm .framer-ecrv2c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-Scofm .framer-wywk0e, .framer-Scofm .framer-1rsyq0s, .framer-Scofm .framer-92z6cd, .framer-Scofm .framer-400mpw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Scofm .framer-y2o0x0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: 32px; }\",\".framer-Scofm .framer-1hpcjby-container, .framer-Scofm .framer-1qrkgll-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-Scofm .framer-kmr5ok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Scofm .framer-d56v77 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 16px 4px 16px; position: relative; width: min-content; }\",\".framer-Scofm .framer-1vzokj0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 8px 8px 16px; position: relative; width: 100%; }\",\".framer-Scofm .framer-iw5qm7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Scofm .framer-vfhqj8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: 20px; }\",\".framer-Scofm .framer-ip86sj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 176px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 61%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Scofm .framer-1oj7v4a { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 58%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Scofm .framer-clgyxg { aspect-ratio: 0.5657526580861779 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 430px); left: 50%; overflow: visible; position: absolute; top: 49%; width: 84%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Scofm .framer-1o5g0sp, .framer-Scofm .framer-y2o0x0, .framer-Scofm .framer-kmr5ok, .framer-Scofm .framer-d56v77, .framer-Scofm .framer-1vzokj0, .framer-Scofm .framer-vfhqj8 { gap: 0px; } .framer-Scofm .framer-1o5g0sp > *, .framer-Scofm .framer-y2o0x0 > *, .framer-Scofm .framer-kmr5ok > *, .framer-Scofm .framer-d56v77 > *, .framer-Scofm .framer-vfhqj8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Scofm .framer-1o5g0sp > :first-child, .framer-Scofm .framer-y2o0x0 > :first-child, .framer-Scofm .framer-kmr5ok > :first-child, .framer-Scofm .framer-d56v77 > :first-child, .framer-Scofm .framer-vfhqj8 > :first-child { margin-left: 0px; } .framer-Scofm .framer-1o5g0sp > :last-child, .framer-Scofm .framer-y2o0x0 > :last-child, .framer-Scofm .framer-kmr5ok > :last-child, .framer-Scofm .framer-d56v77 > :last-child, .framer-Scofm .framer-vfhqj8 > :last-child { margin-right: 0px; } .framer-Scofm .framer-1vzokj0 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Scofm .framer-1vzokj0 > :first-child { margin-top: 0px; } .framer-Scofm .framer-1vzokj0 > :last-child { margin-bottom: 0px; } }\",\".framer-Scofm.framer-v-1isvl07.framer-cvaeg7 { cursor: unset; }\",\".framer-Scofm.framer-v-1isvl07 .framer-1gk5b5l, .framer-Scofm.framer-v-1ky05zm .framer-1gk5b5l { gap: 8px; justify-content: flex-end; padding: 12px; }\",\".framer-Scofm.framer-v-1isvl07 .framer-1vzokj0, .framer-Scofm.framer-v-1isvl07 .framer-vfhqj8, .framer-Scofm.framer-v-1isvl07 .framer-400mpw, .framer-Scofm.framer-v-1ky05zm .framer-1vzokj0, .framer-Scofm.framer-v-1ky05zm .framer-vfhqj8, .framer-Scofm.framer-v-1ky05zm .framer-400mpw { order: 1; }\",\".framer-Scofm.framer-v-1isvl07 .framer-iw5qm7, .framer-Scofm.framer-v-1ky05zm .framer-iw5qm7 { flex-direction: row; order: 0; }\",\".framer-Scofm.framer-v-1isvl07 .framer-92z6cd, .framer-Scofm.framer-v-1ky05zm .framer-92z6cd { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Scofm.framer-v-1isvl07 .framer-1gk5b5l, .framer-Scofm.framer-v-1isvl07 .framer-iw5qm7 { gap: 0px; } .framer-Scofm.framer-v-1isvl07 .framer-1gk5b5l > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Scofm.framer-v-1isvl07 .framer-1gk5b5l > :first-child { margin-top: 0px; } .framer-Scofm.framer-v-1isvl07 .framer-1gk5b5l > :last-child { margin-bottom: 0px; } .framer-Scofm.framer-v-1isvl07 .framer-iw5qm7 > *, .framer-Scofm.framer-v-1isvl07 .framer-iw5qm7 > :first-child, .framer-Scofm.framer-v-1isvl07 .framer-iw5qm7 > :last-child { margin: 0px; } }\",\".framer-Scofm.framer-v-g3h3a5.framer-cvaeg7 { width: 394px; }\",\".framer-Scofm.framer-v-g3h3a5 .framer-ip86sj { height: var(--framer-aspect-ratio-supported, 225px); width: 57%; }\",\".framer-Scofm.framer-v-g3h3a5 .framer-clgyxg { height: var(--framer-aspect-ratio-supported, 474px); left: 50%; width: 68%; }\",\".framer-Scofm.framer-v-1ky05zm.framer-cvaeg7 { cursor: unset; height: 457px; width: 311px; }\",\".framer-Scofm.framer-v-1ky05zm .framer-1oj7v4a { height: var(--framer-aspect-ratio-supported, 180px); }\",\".framer-Scofm.framer-v-1ky05zm .framer-clgyxg { height: var(--framer-aspect-ratio-supported, 394px); left: 50%; top: 49%; width: 72%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Scofm.framer-v-1ky05zm .framer-1gk5b5l, .framer-Scofm.framer-v-1ky05zm .framer-iw5qm7 { gap: 0px; } .framer-Scofm.framer-v-1ky05zm .framer-1gk5b5l > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Scofm.framer-v-1ky05zm .framer-1gk5b5l > :first-child { margin-top: 0px; } .framer-Scofm.framer-v-1ky05zm .framer-1gk5b5l > :last-child { margin-bottom: 0px; } .framer-Scofm.framer-v-1ky05zm .framer-iw5qm7 > *, .framer-Scofm.framer-v-1ky05zm .framer-iw5qm7 > :first-child, .framer-Scofm.framer-v-1ky05zm .framer-iw5qm7 > :last-child { margin: 0px; } }\",\".framer-Scofm.framer-v-cvaeg7.hover .framer-1hpcjby-container { height: var(--framer-aspect-ratio-supported, 25px); width: 22px; }\",\".framer-Scofm.framer-v-cvaeg7.hover .framer-ip86sj { height: var(--framer-aspect-ratio-supported, 192px); width: 67%; }\",\".framer-Scofm.framer-v-cvaeg7.hover .framer-clgyxg { height: var(--framer-aspect-ratio-supported, 451px); width: 89%; }\",\".framer-Scofm.framer-v-g3h3a5.hover .framer-ip86sj { height: var(--framer-aspect-ratio-supported, 252px); width: 64%; }\",\".framer-Scofm.framer-v-g3h3a5.hover .framer-clgyxg { height: var(--framer-aspect-ratio-supported, 508px); width: 73%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Scofm[data-border=\"true\"]::after, .framer-Scofm [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 568\n * @framerIntrinsicWidth 288\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"B9G7HrIpK\":{\"layout\":[\"fixed\",\"fixed\"]},\"ukWFxkPTh\":{\"layout\":[\"fixed\",\"fixed\"]},\"uP18xk3qs\":{\"layout\":[\"fixed\",\"fixed\"]},\"ecneyZ97n\":{\"layout\":[\"fixed\",\"fixed\"]},\"kn3cViSj9\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"rfxjvjnZt\":\"tYPE1\",\"TxOHELDqA\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWQoijzVTS=withCSS(Component,css,\"framer-Scofm\");export default FramerWQoijzVTS;FramerWQoijzVTS.displayName=\"3 PROJECT\";FramerWQoijzVTS.defaultProps={height:568,width:288};addPropertyControls(FramerWQoijzVTS,{variant:{options:[\"Su4UP2ceZ\",\"B9G7HrIpK\",\"ukWFxkPTh\",\"uP18xk3qs\"],optionTitles:[\"Variant 1\",\"MOBILE\",\"CARD\",\"CARD MOB\"],title:\"Variant\",type:ControlType.Enum},rfxjvjnZt:{defaultValue:\"APP\",displayTextArea:false,title:\"TYPE 1\",type:ControlType.String},TxOHELDqA:{title:\"Link\",type:ControlType.Link}});addFonts(FramerWQoijzVTS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWQoijzVTS\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"568\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B9G7HrIpK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ukWFxkPTh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uP18xk3qs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ecneyZ97n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kn3cViSj9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"288\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"rfxjvjnZt\\\":\\\"tYPE1\\\",\\\"TxOHELDqA\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "n", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "r", "a", "velocityPerSecond", "n", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "i", "h", "u", "d", "f", "l", "g", "glide", "c", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "o", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "i", "s", "__rest", "inView$1", "o", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "_", "ref", "p", "r", "s", "o", "t", "e", "i", "l", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "uppercaseIconKeys", "name", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "s", "npm_react_18_2_exports", "importModule", "active", "module", "e", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "link", "nomIcone", "texte", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Ep4DcoGZc", "vRf4OAEWK", "Z8sRMm9zP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerXx_XTVL4Y", "withCSS", "Xx_XTVL4Y_default", "addPropertyControls", "ControlType", "addFonts", "NAVBUTTON2Fonts", "getFonts", "Xx_XTVL4Y_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FramerAF0Dr3ec2", "withCSS", "AF0Dr3ec2_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "FeatherFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transition2", "animation", "transition3", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableVariantMap", "getProps", "height", "id", "lINK", "tYPE2", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Ib_Z5QC7R", "PB01pnBMb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FramerDi0V8nIAu", "withCSS", "Di0V8nIAu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RjQY9P5nT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "ComponentViewportProvider", "RichText2", "css", "FramerFbOz3rHQA", "withCSS", "FbOz3rHQA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "u", "css", "FramerAfrTN0OP9", "withCSS", "AfrTN0OP9_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "PICTUREFOOTERFonts", "AfrTN0OP9_default", "RichTextWithFX", "RichText2", "SOCIALBUTTONSFonts", "FbOz3rHQA_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "animation10", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "css", "FramerfGoPjANPm", "withCSS", "fGoPjANPm_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FeatherFonts", "getFonts", "Icon", "ImageWithFX", "withFX", "Image2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "animation1", "animation2", "animation3", "animation4", "animation5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "link", "tYPE1", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "rfxjvjnZt", "ismqX7WDc", "rfxjvjnZtWQoijzVTS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FramerNiOz0WvR0", "withCSS", "NiOz0WvR0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Amq5ACfwQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramernuCCgleXl", "withCSS", "nuCCgleXl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FeatherFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "transition3", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableVariantMap", "getProps", "height", "id", "link", "tYPE1", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "rfxjvjnZt", "TxOHELDqA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FramerWQoijzVTS", "withCSS", "WQoijzVTS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
