{
  "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/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/lSoLXI0iVYvqgoZPBPo2/o4ElBJxg8ZgYgZdQ6Mse/II_H7EwNf.js", "ssg:https://framerusercontent.com/modules/63fSlrlZPmOZTftFXSUM/3jP9mDr6TsvukwQGg3mp/Lc83qAfEt.js", "ssg:https://framerusercontent.com/modules/7kGJkRfnogFuwU63jV5K/TibPU4tpYHOaLJ0SpAFF/dwiGaj1Pl.js", "ssg:https://framerusercontent.com/modules/EE8Emfnr3UQAZLdKlDzM/oxBipgI7bXNdD8oCblLS/uof3jsTWD.js", "ssg:https://framerusercontent.com/modules/sTuHCt32pT6Qugblapjk/V3yuTNRqvmItuMdbID1B/ZruSrEnWi.js", "ssg:https://framerusercontent.com/modules/YBNmKiMr2hDEPNimaeIU/x2RyHzeIAM0sSzYkEh4t/XzL0rM70g.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}from\"framer-motion\";import{resize}from\"@motionone/dom\";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;const numChildren=Children.count(slots);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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-iiLDY .framer-styles-preset-l72g6q:not(.rich-text-wrapper), .framer-iiLDY .framer-styles-preset-l72g6q.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }\"];export const className=\"framer-iiLDY\";\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 (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lSoLXI0iVYvqgoZPBPo2/o4ElBJxg8ZgYgZdQ6Mse/II_H7EwNf.js\";const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"L8vY2BsSf\",\"KzXGGqNQg\",\"IntIeV37M\",\"v6CIsH2Yk\",\"K5XPM6q5q\",\"J3YomDQEF\"];const serializationHash=\"framer-TjBLr\";const variantClassNames={IntIeV37M:\"framer-v-cgx16z\",J3YomDQEF:\"framer-v-1r0lfdr\",K5XPM6q5q:\"framer-v-z5z3ie\",KzXGGqNQg:\"framer-v-1jstttp\",L8vY2BsSf:\"framer-v-12p0his\",v6CIsH2Yk:\"framer-v-4qkdve\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition2={delay:0,duration:2,ease:[0,0,0,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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={\"Green footer mobile\":\"J3YomDQEF\",\"Green footer tablet\":\"K5XPM6q5q\",\"Green footer web\":\"KzXGGqNQg\",\"Red footer mobile\":\"v6CIsH2Yk\",\"Red footer tablet\":\"IntIeV37M\",\"Red footer web\":\"L8vY2BsSf\"};const getProps=({background,height,id,width,...props})=>{return{...props,uYVTs0nYa:background??props.uYVTs0nYa??\"rgba(255, 255, 255, 0)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"L8vY2BsSf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,uYVTs0nYa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"L8vY2BsSf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"J3YomDQEF\")return true;return false;};const isDisplayed1=()=>{if([\"KzXGGqNQg\",\"v6CIsH2Yk\",\"K5XPM6q5q\",\"J3YomDQEF\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"v6CIsH2Yk\")return true;return false;};const isDisplayed3=()=>{if([\"KzXGGqNQg\",\"K5XPM6q5q\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"v6CIsH2Yk\",\"J3YomDQEF\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"KzXGGqNQg\",\"K5XPM6q5q\",\"J3YomDQEF\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"KzXGGqNQg\",\"K5XPM6q5q\",\"J3YomDQEF\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"KzXGGqNQg\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"KzXGGqNQg\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-12p0his\",className,classNames),\"data-framer-name\":\"Red footer web\",layoutDependency:layoutDependency,layoutId:\"L8vY2BsSf\",ref:refBinding,style:{backgroundColor:uYVTs0nYa,...style},...addPropertyOverrides({IntIeV37M:{\"data-framer-name\":\"Red footer tablet\"},J3YomDQEF:{\"data-framer-name\":\"Green footer mobile\"},K5XPM6q5q:{\"data-framer-name\":\"Green footer tablet\"},KzXGGqNQg:{\"data-framer-name\":\"Green footer web\"},v6CIsH2Yk:{\"data-framer-name\":\"Red footer mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14c37i8\",\"data-framer-name\":\"Green blobs mobile\",layoutDependency:layoutDependency,layoutId:\"hohjTC1ZW\",style:{filter:\"blur(40px)\",WebkitFilter:\"blur(40px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16tye85\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"rM2qrN5jZ\",style:{background:\"linear-gradient(180deg, rgb(70, 248, 98) 0%, rgb(70, 248, 77) 50.52083134651184%, rgba(73, 248, 70, 0.15) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",rotate:-180}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1632,pixelWidth:2324,positionX:\"center\",positionY:\"center\",sizes:\"581px\",src:\"https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png\",srcSet:\"https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png 2324w\"},className:\"framer-yw1qrn\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"AN59435rU\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.6,rotate:-180},...addPropertyOverrides({J3YomDQEF:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||680)-511+15),pixelHeight:1632,pixelWidth:2324,positionX:\"center\",positionY:\"center\",sizes:\"581px\",src:\"https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png\",srcSet:\"https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8WAbnfjCgQl5zsqlGZYJa9ozg.png 2324w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10dm3l0\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"WDSErNkOS\",style:{background:\"linear-gradient(180deg, rgb(83, 255, 255) 0%, rgba(14, 234, 249, 0.76) 50.52083134651184%, rgba(14, 234, 249, 0) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",rotate:-142}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y1ev18\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"VeWLXhami\",style:{background:\"linear-gradient(180deg, rgba(59, 255, 243, 0.72) 0%, rgba(70, 232, 255, 0.86) 50.52083134651184%, rgba(14, 206, 249, 0.38) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.7,rotate:42}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uw4h3l\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"h8oYyPVPS\",style:{background:\"linear-gradient(180deg, rgba(59, 255, 255, 0.72) 0%, rgba(70, 255, 243, 0.86) 50.52083134651184%, rgba(14, 249, 249, 0.38) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.7,rotate:42}})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yfynet\",\"data-framer-name\":\"Color blobs\",layoutDependency:layoutDependency,layoutId:\"UcHWhxuow\",style:{filter:\"blur(70px)\",opacity:.9,WebkitFilter:\"blur(70px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i9ghb1\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"KaeQ4O6uw\",style:{background:\"linear-gradient(180deg, rgb(248, 70, 82) 0%, rgb(248, 70, 82) 50.52083134651184%, rgba(248, 70, 82, 0.15) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",rotate:-180}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ar7a4n\",\"data-framer-name\":\"Ellipse 116\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:783,intrinsicWidth:786,layoutDependency:layoutDependency,layoutId:\"TQNO9PoH5\",svg:'<svg width=\"786\" height=\"783\" viewBox=\"0 0 786 783\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.7\" d=\"M689.433 657.239C547.656 815.761 299.795 825.398 135.82 678.764C-28.154 532.129 -46.1483 284.75 95.6292 126.228C237.407 -32.2946 485.268 -41.9315 649.242 104.703C813.217 251.338 831.211 498.717 689.433 657.239Z\" fill=\"url(#paint0_linear_914_1747)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_914_1747\" x1=\"649.242\" y1=\"104.704\" x2=\"135.857\" y2=\"678.797\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF823C\" stop-opacity=\"0.72\"/>\\n<stop offset=\"0.505208\" stop-color=\"#FFB546\" stop-opacity=\"0.86\"/>\\n<stop offset=\"1\" stop-color=\"#F9AC0E\" stop-opacity=\"0.38\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1021fvx\",\"data-framer-name\":\"Ellipse 116\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1063,intrinsicWidth:1133,layoutDependency:layoutDependency,layoutId:\"M6cJvb5zm\",style:{opacity:.57},svg:'<svg width=\"1133\" height=\"1063\" viewBox=\"0 0 1133 1063\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M79.9964 153.766C240.054 -52.0851 587.429 -49.6343 855.88 159.24C1124.33 368.115 1212.2 704.316 1052.14 910.167C892.087 1116.02 544.712 1113.57 276.261 904.693C7.80936 695.819 -80.0611 359.617 79.9964 153.766Z\" fill=\"url(#paint0_linear_914_1751)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_914_1751\" x1=\"276.261\" y1=\"904.693\" x2=\"856.127\" y2=\"159.432\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFC754\"/>\\n<stop offset=\"0.505208\" stop-color=\"#F9A70E\" stop-opacity=\"0.76\"/>\\n<stop offset=\"1\" stop-color=\"#F9AC0E\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.6,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||1269)-1122+29),pixelHeight:2520,pixelWidth:3591,positionX:\"center\",positionY:\"center\",sizes:\"1196px\",src:\"https://framerusercontent.com/images/sFjHDEYFyYds5OjPTm79LGg.png\",srcSet:\"https://framerusercontent.com/images/sFjHDEYFyYds5OjPTm79LGg.png?scale-down-to=512 512w,https://framerusercontent.com/images/sFjHDEYFyYds5OjPTm79LGg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sFjHDEYFyYds5OjPTm79LGg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sFjHDEYFyYds5OjPTm79LGg.png 3591w\"},className:\"framer-1xt6wm9\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"npAUFbU30\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.6,rotate:-180,transformPerspective:1200}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hlz0yq\",\"data-framer-name\":\"Ellipse 116\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:783,intrinsicWidth:786,layoutDependency:layoutDependency,layoutId:\"uCsOEuubU\",svg:'<svg width=\"786\" height=\"783\" viewBox=\"0 0 786 783\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.7\" d=\"M689.433 657.239C547.656 815.761 299.795 825.398 135.82 678.764C-28.154 532.129 -46.1483 284.75 95.6292 126.228C237.407 -32.2946 485.268 -41.9315 649.242 104.703C813.217 251.338 831.211 498.717 689.433 657.239Z\" fill=\"url(#paint0_linear_914_1747)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_914_1747\" x1=\"649.242\" y1=\"104.704\" x2=\"135.857\" y2=\"678.797\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF823C\" stop-opacity=\"0.72\"/>\\n<stop offset=\"0.505208\" stop-color=\"#FFB546\" stop-opacity=\"0.86\"/>\\n<stop offset=\"1\" stop-color=\"#F9AC0E\" stop-opacity=\"0.38\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lf7h9d\",\"data-framer-name\":\"Ellipse 116\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1063,intrinsicWidth:1133,layoutDependency:layoutDependency,layoutId:\"D7gGUn_jU\",svg:'<svg width=\"1133\" height=\"1063\" viewBox=\"0 0 1133 1063\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M79.9964 153.766C240.054 -52.0851 587.429 -49.6343 855.88 159.24C1124.33 368.115 1212.2 704.316 1052.14 910.167C892.087 1116.02 544.712 1113.57 276.261 904.693C7.80936 695.819 -80.0611 359.617 79.9964 153.766Z\" fill=\"url(#paint0_linear_914_1751)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_914_1751\" x1=\"276.261\" y1=\"904.693\" x2=\"856.127\" y2=\"159.432\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFC754\"/>\\n<stop offset=\"0.505208\" stop-color=\"#F9A70E\" stop-opacity=\"0.76\"/>\\n<stop offset=\"1\" stop-color=\"#F9AC0E\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18fvi8l\",\"data-framer-name\":\"Ellipse 116\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1063,intrinsicWidth:1133,layoutDependency:layoutDependency,layoutId:\"ZJnbn0wRn\",svg:'<svg width=\"1133\" height=\"1063\" viewBox=\"0 0 1133 1063\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M79.9964 153.766C240.054 -52.0851 587.429 -49.6343 855.88 159.24C1124.33 368.115 1212.2 704.316 1052.14 910.167C892.087 1116.02 544.712 1113.57 276.261 904.693C7.80936 695.819 -80.0611 359.617 79.9964 153.766Z\" fill=\"url(#paint0_linear_914_1751)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_914_1751\" x1=\"276.261\" y1=\"904.693\" x2=\"856.127\" y2=\"159.432\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFC754\"/>\\n<stop offset=\"0.505208\" stop-color=\"#F9A70E\" stop-opacity=\"0.76\"/>\\n<stop offset=\"1\" stop-color=\"#F9AC0E\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mal2bz\",\"data-framer-name\":\"Ellipse 116\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:474,intrinsicWidth:476,layoutDependency:layoutDependency,layoutId:\"ObO6rBTza\",svg:'<svg width=\"476\" height=\"474\" viewBox=\"0 0 476 474\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.7\" d=\"M418.13 397.934C332.447 493.723 182.479 499.391 83.1673 410.594C-16.1443 321.798 -27.1925 172.163 58.4905 76.3742C144.173 -19.4142 294.141 -25.0823 393.453 63.7141C492.764 152.511 503.813 302.146 418.13 397.934Z\" fill=\"url(#paint0_linear_914_1752)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_914_1752\" x1=\"393.453\" y1=\"63.7139\" x2=\"83.2412\" y2=\"410.66\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF823C\" stop-opacity=\"0.72\"/>\\n<stop offset=\"0.505208\" stop-color=\"#FFCB46\" stop-opacity=\"0.86\"/>\\n<stop offset=\"1\" stop-color=\"#F9AC0E\" stop-opacity=\"0.38\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-150jdlz\",\"data-framer-name\":\"Red blobs mobile\",layoutDependency:layoutDependency,layoutId:\"L4wOxYCE9\",style:{filter:\"blur(40px)\",opacity:.9,WebkitFilter:\"blur(40px)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lw1lee\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"WcnrOkTfU\",style:{background:\"linear-gradient(180deg, rgb(248, 70, 82) 0%, rgb(248, 70, 82) 50.52083134651184%, rgba(248, 70, 82, 0.15) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",rotate:-180}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1736,pixelWidth:2472,positionX:\"center\",positionY:\"center\",sizes:\"617px\",src:\"https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png\",srcSet:\"https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png?scale-down-to=512 512w,https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png 2472w\"},className:\"framer-xxbtbm\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"LLljJdM3M\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.6,rotate:-180},...addPropertyOverrides({v6CIsH2Yk:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||680)-555+24),pixelHeight:1736,pixelWidth:2472,positionX:\"center\",positionY:\"center\",sizes:\"617px\",src:\"https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png\",srcSet:\"https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png?scale-down-to=512 512w,https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/81FcqtXzjeLv3VpcM5SE32z4po.png 2472w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ja2pvk\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"WhofabtHB\",style:{background:\"linear-gradient(180deg, rgb(255, 198, 83) 0%, rgba(249, 167, 14, 0.76) 50.52083134651184%, rgba(249, 172, 14, 0) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",rotate:-142}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9bbn5r\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"eVIOeQu6a\",style:{background:\"linear-gradient(180deg, rgba(255, 129, 59, 0.72) 0%, rgba(255, 181, 70, 0.86) 50.52083134651184%, rgba(249, 172, 14, 0.38) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.7,rotate:42}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qk1tut\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"UZA0dLf2I\",style:{background:\"linear-gradient(180deg, rgba(255, 129, 59, 0.72) 0%, rgba(255, 203, 70, 0.86) 50.52083134651184%, rgba(249, 172, 14, 0.38) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.7,rotate:42}})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-167c8xq\",\"data-framer-name\":\"Green color blobs\",layoutDependency:layoutDependency,layoutId:\"SD583IH_l\",style:{filter:\"blur(70px)\",WebkitFilter:\"blur(70px)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z77xfy\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"VEnxoYH7X\",style:{background:\"linear-gradient(180deg, rgb(70, 248, 98) 0%, rgb(70, 248, 77) 50.52083134651184%, rgba(73, 248, 70, 0.15) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",rotate:-180}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2520,pixelWidth:3591,positionX:\"center\",positionY:\"center\",sizes:\"1196px\",src:\"https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png\",srcSet:\"https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png?scale-down-to=512 512w,https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png 3591w\"},className:\"framer-1jk5bnj\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"l6p8GmhwY\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.6,rotate:-180},...addPropertyOverrides({K5XPM6q5q:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||1269)-1122+29),pixelHeight:2520,pixelWidth:3591,positionX:\"center\",positionY:\"center\",sizes:\"1196px\",src:\"https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png\",srcSet:\"https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png?scale-down-to=512 512w,https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png 3591w\"}},KzXGGqNQg:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||1269)-1122+29),pixelHeight:2520,pixelWidth:3591,positionX:\"center\",positionY:\"center\",sizes:\"1196px\",src:\"https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png\",srcSet:\"https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png?scale-down-to=512 512w,https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/18POtCYlzykk7F4UhzsmSAfpV0.png 3591w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10vhy7y\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"eRik0E3oK\",style:{background:\"linear-gradient(180deg, rgb(83, 255, 255) 0%, rgba(14, 234, 249, 0.76) 50.52083134651184%, rgba(14, 234, 249, 0) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",rotate:-142}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yr0ot2\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"AYO7LDrNS\",style:{background:\"linear-gradient(180deg, rgba(59, 255, 243, 0.72) 0%, rgba(70, 232, 255, 0.86) 50.52083134651184%, rgba(14, 206, 249, 0.38) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.7,rotate:42}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rfvvxn\",\"data-framer-name\":\"Ellipse 116\",layoutDependency:layoutDependency,layoutId:\"DhPDKLHFm\",style:{background:\"linear-gradient(180deg, rgba(59, 255, 255, 0.72) 0%, rgba(70, 255, 243, 0.86) 50.52083134651184%, rgba(14, 249, 249, 0.38) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.7,rotate:42}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e200ml\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"PwLVrH7tv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s1713f\",layoutDependency:layoutDependency,layoutId:\"h2Bs0_teY\",children:[isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b7cs9\",layoutDependency:layoutDependency,layoutId:\"qTMmnbzEi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.shopify.com/infinite-color-search-by-hoppn\",motionChild:true,nodeId:\"XOoe4piOY\",openInNewTab:true,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Install\"})})})}),className:\"framer-ernjk8\",\"data-framer-name\":\"Code\",fonts:[\"CUSTOM;archia-regular-webfont \\x7f\"],layoutDependency:layoutDependency,layoutId:\"XOoe4piOY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",textShadow:\"0px 1.5px 4px rgba(0, 0, 0, 0.15)\"},variants:{K5XPM6q5q:{textShadow:\"none\"},KzXGGqNQg:{textShadow:\"none\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({IntIeV37M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.shopify.com/infinite-color-search-by-hoppn\",motionChild:true,nodeId:\"XOoe4piOY\",openInNewTab:true,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Install\"})})})})},K5XPM6q5q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.shopify.com/infinite-color-search-by-hoppn\",motionChild:true,nodeId:\"XOoe4piOY\",openInNewTab:true,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Install\"})})})})},KzXGGqNQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.shopify.com/infinite-color-search-by-hoppn\",motionChild:true,nodeId:\"XOoe4piOY\",openInNewTab:true,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Install\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.gitbook.io/\",motionChild:true,nodeId:\"HV7SPfBUz\",openInNewTab:true,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Developer\"})})})}),className:\"framer-tbm1wm\",\"data-framer-name\":\"Press\",fonts:[\"CUSTOM;archia-regular-webfont \\x7f\"],layoutDependency:layoutDependency,layoutId:\"HV7SPfBUz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",textShadow:\"0px 1.5px 4px rgba(0, 0, 0, 0.15)\"},variants:{K5XPM6q5q:{textShadow:\"none\"},KzXGGqNQg:{textShadow:\"none\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({IntIeV37M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.gitbook.io/\",motionChild:true,nodeId:\"HV7SPfBUz\",openInNewTab:true,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Developer\"})})})})},K5XPM6q5q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.gitbook.io/\",motionChild:true,nodeId:\"HV7SPfBUz\",openInNewTab:true,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Developer\"})})})})},KzXGGqNQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.gitbook.io/\",motionChild:true,nodeId:\"HV7SPfBUz\",openInNewTab:true,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Developer\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mHjLrO_rq\"},motionChild:true,nodeId:\"N2cMTpVmu\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"About\"})})})}),className:\"framer-1ka84cn\",\"data-framer-name\":\"About\",fonts:[\"CUSTOM;archia-regular-webfont \\x7f\"],layoutDependency:layoutDependency,layoutId:\"N2cMTpVmu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",textShadow:\"0px 1.5px 4px rgba(0, 0, 0, 0.15)\"},variants:{K5XPM6q5q:{textShadow:\"none\"},KzXGGqNQg:{textShadow:\"none\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({IntIeV37M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mHjLrO_rq\"},motionChild:true,nodeId:\"N2cMTpVmu\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"About\"})})})})},K5XPM6q5q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mHjLrO_rq\"},motionChild:true,nodeId:\"N2cMTpVmu\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"About\"})})})})},KzXGGqNQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO2FyY2hpYS1yZWd1bGFyLXdlYmZvbnQgfw==\",\"--framer-font-family\":'\"archia-regular-webfont \\x7f\", \"archia-regular-webfont \\x7f Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mHjLrO_rq\"},motionChild:true,nodeId:\"N2cMTpVmu\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"About\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1da6afh\",layoutDependency:layoutDependency,layoutId:\"KjSJ62ody\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pnkz55\",layoutDependency:layoutDependency,layoutId:\"iKmVuaHUm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FsZm6a8y3\"},motionChild:true,nodeId:\"O188uQsbY\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Terms\"})})})}),className:\"framer-il8qss\",\"data-framer-name\":\"hello@hoppn.com\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"O188uQsbY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",textShadow:\"0px 1.5px 4px rgba(0, 0, 0, 0.15)\"},variants:{J3YomDQEF:{textShadow:\"none\"},K5XPM6q5q:{textShadow:\"none\"},KzXGGqNQg:{textShadow:\"none\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({J3YomDQEF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FsZm6a8y3\"},motionChild:true,nodeId:\"O188uQsbY\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Terms\"})})})})},K5XPM6q5q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FsZm6a8y3\"},motionChild:true,nodeId:\"O188uQsbY\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Terms\"})})})})},KzXGGqNQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FsZm6a8y3\"},motionChild:true,nodeId:\"O188uQsbY\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Terms\"})})})})},v6CIsH2Yk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FsZm6a8y3\"},motionChild:true,nodeId:\"O188uQsbY\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Terms\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BLT4mVtE0\"},motionChild:true,nodeId:\"QkcwuwE05\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Privacy\"})})})}),className:\"framer-4ffl9b\",\"data-framer-name\":\"hello@hoppn.com\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"QkcwuwE05\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",textShadow:\"0px 1.5px 4px rgba(0, 0, 0, 0.15)\"},variants:{J3YomDQEF:{textShadow:\"none\"},K5XPM6q5q:{textShadow:\"none\"},KzXGGqNQg:{textShadow:\"none\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({J3YomDQEF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BLT4mVtE0\"},motionChild:true,nodeId:\"QkcwuwE05\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Privacy\"})})})})},K5XPM6q5q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BLT4mVtE0\"},motionChild:true,nodeId:\"QkcwuwE05\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Privacy\"})})})})},KzXGGqNQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BLT4mVtE0\"},motionChild:true,nodeId:\"QkcwuwE05\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Privacy\"})})})})},v6CIsH2Yk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BLT4mVtE0\"},motionChild:true,nodeId:\"QkcwuwE05\",openInNewTab:false,scopeId:\"Lc83qAfEt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l72g6q\",\"data-styles-preset\":\"II_H7EwNf\",children:\"Privacy\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"hello@hoppn.com\"})}),className:\"framer-gaybbu\",\"data-framer-name\":\"hello@hoppn.com\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"ywig_1YGq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",textShadow:\"0px 1.5px 4px rgba(0, 0, 0, 0.15)\"},variants:{J3YomDQEF:{textShadow:\"none\"},K5XPM6q5q:{textShadow:\"none\"},KzXGGqNQg:{textShadow:\"none\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({J3YomDQEF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"hello@hoppn.com\"})})},K5XPM6q5q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"hello@hoppn.com\"})})},KzXGGqNQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"hello@hoppn.com\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x5sj09\",layoutDependency:layoutDependency,layoutId:\"ClSNFwwN1\",children:[isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wrb9se\",layoutDependency:layoutDependency,layoutId:\"znR9eJTFC\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/hoppn/\",motionChild:true,nodeId:\"QRbPGqzVF\",openInNewTab:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1aamnqz framer-6f14d2\",\"data-framer-name\":\"instagram\",fill:\"black\",intrinsicHeight:54,intrinsicWidth:53,layoutDependency:layoutDependency,layoutId:\"QRbPGqzVF\",svg:'<svg width=\"53\" height=\"54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#fff\"><path d=\"M18.913 17.601a11.225 11.225 0 1 1 15.874 15.875A11.225 11.225 0 0 1 18.913 17.6Zm2.514 13.358a7.67 7.67 0 1 0 10.846-10.845 7.67 7.67 0 0 0-10.846 10.845Zm19.77-17.294a2.442 2.442 0 1 1-4.883 0 2.442 2.442 0 0 1 4.883 0Z\"/><path d=\"M44.965 34.791a8.67 8.67 0 0 0 .005-.228v-.003c0 .077-.002.154-.005.231Zm.292 9.23a11.191 11.191 0 0 1-3.869 2.523 16.17 16.17 0 0 1-5.337 1.023h-.009c-2.358.136-3.126.136-9.177.136-6.047 0-6.799-.033-9.18-.136h-.002a16.08 16.08 0 0 1-5.336-1.1h-.001a11.19 11.19 0 0 1-6.393-6.388 16.108 16.108 0 0 1-1.023-5.34v-.009c-.139-2.362-.139-3.126-.139-9.176 0-6.05.032-6.802.138-9.18v-.005c.036-1.825.382-3.63 1.024-5.338a11.165 11.165 0 0 1 6.39-6.388c1.706-.643 3.51-.99 5.332-1.025h.009c2.358-.134 3.126-.134 9.176-.134 6.048 0 6.8.03 9.18.134h.006c1.824.038 3.63.384 5.338 1.026a11.178 11.178 0 0 1 6.39 6.387 16.077 16.077 0 0 1 1.027 5.413v.01c.139 2.363.139 3.124.139 9.177 0 6.05-.032 6.801-.139 9.18v.005a16.084 16.084 0 0 1-1.023 5.337 11.198 11.198 0 0 1-2.521 3.869Zm-.843-5.2a12.71 12.71 0 0 0 .78-4.03h.022l.01-.218c.106-2.373.106-3.028.106-9.054v-.007c0-6.035-.027-6.703-.133-9.06a12.813 12.813 0 0 0-.785-4.207l-.001-.003A7.638 7.638 0 0 0 40.04 7.87h-.002a12.514 12.514 0 0 0-4.209-.785c-2.397-.137-3.027-.137-9.05-.137h-.009c-6.035 0-6.702.03-9.06.137-1.437.02-2.86.285-4.207.784h-.002a7.626 7.626 0 0 0-4.39 4.373v.003a12.708 12.708 0 0 0-.785 4.25c-.132 2.403-.132 3.03-.132 9.053v.008c0 6.033.025 6.703.132 9.058a12.82 12.82 0 0 0 .784 4.206l.001.004a7.624 7.624 0 0 0 4.39 4.37h.002c1.347.501 2.77.767 4.206.785 2.4.136 3.027.136 9.053.136h.008c6.032 0 6.703-.027 9.058-.136a12.578 12.578 0 0 0 4.21-.785h.002a7.627 7.627 0 0 0 4.372-4.37l.001-.003Z\"/></g><defs><filter id=\"a\" x=\".791\" y=\".984\" width=\"52.149\" height=\"52.219\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"1.5\"/><feGaussianBlur stdDeviation=\"2\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_921_2196\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_921_2196\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/34737738/admin/feed/posts/\",motionChild:true,nodeId:\"Cuma2fdXo\",openInNewTab:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:81.5,intrinsicWidth:81,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||1269)-0-753.2+0+0)+0+0+0+0+112.25),pixelHeight:163,pixelWidth:162,src:\"https://framerusercontent.com/images/Dmthp12lfjwlz3DpdJAW6EHwZmA.png\"},className:\"framer-jfv7s8 framer-6f14d2\",\"data-framer-name\":\"Linkedin_social_big_copy_1_final\",layoutDependency:layoutDependency,layoutId:\"Cuma2fdXo\",...addPropertyOverrides({v6CIsH2Yk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:81.5,intrinsicWidth:81,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||680)-0-491+0+0)+0+112.8+0+0+-.25),pixelHeight:163,pixelWidth:162,src:\"https://framerusercontent.com/images/Dmthp12lfjwlz3DpdJAW6EHwZmA.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.gitbook.io/\",motionChild:true,nodeId:\"hEznnKTHq\",openInNewTab:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-60k40q framer-6f14d2\",\"data-framer-name\":\"GitBook - Icon - Light 1\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"hEznnKTHq\",style:{filter:\"drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.15))\",WebkitFilter:\"drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.15))\"},svg:'<svg width=\"65\" height=\"65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M27.396 34.22c3.13 1.805 4.694 2.708 6.412 2.71 1.718.001 3.285-.899 6.417-2.7L60.19 22.753a2.905 2.905 0 0 0 0-5.036L40.218 6.235c-3.13-1.798-4.694-2.698-6.41-2.697-1.717 0-3.28.901-6.408 2.702l-17.17 9.888c-.128.074-.192.11-.25.145A19.277 19.277 0 0 0 .44 32.772v.578a19.277 19.277 0 0 0 9.52 16.487l.25.145 10.755 6.21c6.267 3.618 9.4 5.427 12.842 5.429 3.441 0 6.576-1.806 12.846-5.42l11.354-6.546c3.14-1.81 4.71-2.715 5.571-4.206.862-1.492.862-3.304.862-6.928v-7a2.771 2.771 0 0 0-4.152-2.402L37.007 42.502c-1.562.898-2.343 1.346-3.2 1.347-.857 0-1.638-.448-3.2-1.345l-15.758-9.046c-.79-.453-1.184-.68-1.501-.72a1.606 1.606 0 0 0-1.693.986c-.12.296-.118.751-.114 1.661.004.67.006 1.005.068 1.313.14.69.504 1.315 1.034 1.779.236.207.527.374 1.107.71l16.847 9.723c1.567.904 2.35 1.356 3.21 1.357.86 0 1.644-.452 3.211-1.355l20.65-11.904c.536-.308.803-.463 1.004-.347.2.116.2.425.2 1.043v3.175c0 .906 0 1.36-.215 1.732-.215.373-.608.6-1.393 1.052L40.232 53.48c-3.135 1.807-4.703 2.711-6.424 2.71-1.721 0-3.288-.906-6.422-2.716L11.451 44.27l-.1-.058a10.944 10.944 0 0 1-5.422-9.394V31.79a5.99 5.99 0 0 1 2.986-5.183 5.276 5.276 0 0 1 5.283-.005l13.198 7.618Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16wsp5e\",\"data-framer-name\":\"Black icons\",layoutDependency:layoutDependency,layoutId:\"TVlQKZadC\",children:[isDisplayed7()&&/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.gitbook.io/\",motionChild:true,nodeId:\"xskBMizrN\",scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1pxqgk8 framer-6f14d2\",\"data-framer-name\":\"GitBook - Icon - Black\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"xskBMizrN\",svg:'<svg width=\"65\" height=\"65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M27.396 34.22c3.13 1.805 4.694 2.708 6.412 2.71 1.718.001 3.285-.899 6.417-2.7L60.19 22.753a2.905 2.905 0 0 0 0-5.036L40.218 6.235c-3.13-1.798-4.694-2.698-6.41-2.697-1.717 0-3.28.901-6.408 2.702l-17.17 9.888c-.128.074-.192.11-.25.145A19.277 19.277 0 0 0 .44 32.772v.578a19.277 19.277 0 0 0 9.52 16.487l.25.145 10.755 6.21c6.267 3.618 9.4 5.427 12.842 5.429 3.441 0 6.576-1.806 12.846-5.42l11.354-6.546c3.14-1.81 4.71-2.715 5.571-4.206.862-1.492.862-3.304.862-6.928v-7a2.771 2.771 0 0 0-4.152-2.402L37.007 42.502c-1.562.898-2.343 1.346-3.2 1.347-.857 0-1.638-.448-3.2-1.345l-15.758-9.046c-.79-.453-1.184-.68-1.501-.72a1.606 1.606 0 0 0-1.693.986c-.12.296-.118.751-.114 1.661.004.67.006 1.005.068 1.313.14.69.504 1.315 1.034 1.779.236.207.527.374 1.107.71l16.847 9.723c1.567.904 2.35 1.356 3.21 1.357.86 0 1.644-.452 3.211-1.355l20.65-11.904c.536-.308.803-.463 1.004-.347.2.116.2.425.2 1.043v3.175c0 .906 0 1.36-.215 1.732-.215.373-.608.6-1.393 1.052L40.232 53.48c-3.135 1.807-4.703 2.711-6.424 2.71-1.721 0-3.288-.906-6.422-2.716L11.451 44.27l-.1-.058a10.944 10.944 0 0 1-5.422-9.394V31.79a5.99 5.99 0 0 1 2.986-5.183 5.276 5.276 0 0 1 5.283-.005l13.198 7.618Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.com/\",motionChild:true,nodeId:\"mOARW07Fc\",openInNewTab:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1qvk4v5 framer-6f14d2\",\"data-framer-name\":\"Hoppn_icon\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"mOARW07Fc\",svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.944 30.508a6.646 6.646 0 0 1 5.187-1.032 6.73 6.73 0 0 1 4.326 3.086c4.588-3.152 10.571-8.684 12.28-16.846C35.189 8.779 30.489 1.884 23.235.319 15.98-1.247 8.925 3.11 7.473 10.047c-1.708 8.162 1.542 15.687 4.47 20.461Zm7.67-12.89c2.36.51 4.68-1.02 5.181-3.417.502-2.397-1.005-4.753-3.365-5.262-2.36-.51-4.68 1.02-5.182 3.417-.501 2.397 1.005 4.752 3.365 5.262Z\" fill=\"#0DBFBE\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.944 30.508a6.646 6.646 0 0 1 5.187-1.032 6.73 6.73 0 0 1 4.326 3.086c4.588-3.152 10.571-8.684 12.28-16.846C35.189 8.779 30.489 1.884 23.235.319 15.98-1.247 8.925 3.11 7.473 10.047c-1.708 8.162 1.542 15.687 4.47 20.461Zm7.67-12.89c2.36.51 4.68-1.02 5.181-3.417.502-2.397-1.005-4.753-3.365-5.262-2.36-.51-4.68 1.02-5.182 3.417-.501 2.397 1.005 4.752 3.365 5.262Z\" fill=\"#000\"/><path d=\"M14.946 39.916c-2.032-.438-3.33-2.473-2.9-4.533.432-2.063 2.436-3.382 4.465-2.944 2.032.438 3.33 2.473 2.9 4.533-.43 2.06-2.434 3.383-4.465 2.944Z\" fill=\"#0DBFBE\"/><path d=\"M14.946 39.916c-2.032-.438-3.33-2.473-2.9-4.533.432-2.063 2.436-3.382 4.465-2.944 2.032.438 3.33 2.473 2.9 4.533-.43 2.06-2.434 3.383-4.465 2.944Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/hoppn/\",motionChild:true,nodeId:\"vX1amD66N\",openInNewTab:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-10bfhcn framer-6f14d2\",\"data-framer-name\":\"Instagram_icon\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"vX1amD66N\",svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.045 13.008A9.819 9.819 0 1 1 26.93 26.895 9.819 9.819 0 0 1 13.045 13.01Zm2.199 11.685a6.709 6.709 0 1 0 9.488-9.488 6.709 6.709 0 0 0-9.488 9.488ZM32.538 9.565a2.136 2.136 0 1 1-4.271 0 2.136 2.136 0 0 1 4.27 0Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.833 28.045c.002-.067.004-.134.004-.2v-.002c0 .067-.002.134-.004.202Zm.255 8.074a9.795 9.795 0 0 1-3.384 2.205 14.11 14.11 0 0 1-4.669.895h-.007c-2.063.12-2.735.12-8.027.12-5.29 0-5.947-.029-8.03-.12h-.002a14.066 14.066 0 0 1-4.667-.961H7.3a9.79 9.79 0 0 1-5.593-5.588A14.09 14.09 0 0 1 .814 28v-.008c-.122-2.066-.122-2.734-.122-8.026s.029-5.95.122-8.03v-.005c.03-1.596.333-3.175.894-4.669a9.767 9.767 0 0 1 5.59-5.587 14 14 0 0 1 4.664-.897h.008C14.032.66 14.704.66 19.997.66c5.29 0 5.947.026 8.03.117h.004c1.596.033 3.175.336 4.67.897a9.778 9.778 0 0 1 5.588 5.587 14.06 14.06 0 0 1 .9 4.735v.01c.12 2.066.12 2.731.12 8.026 0 5.291-.027 5.949-.12 8.03v.004a14.065 14.065 0 0 1-.895 4.669 9.793 9.793 0 0 1-2.206 3.384Zm-.737-4.55c.417-1.13.647-2.32.682-3.524h.02l.008-.191c.093-2.076.093-2.649.093-7.92v-.006c0-5.28-.024-5.863-.117-7.926-.02-1.256-.253-2.5-.686-3.679l-.001-.003a6.68 6.68 0 0 0-3.824-3.823l-.002-.001a10.946 10.946 0 0 0-3.681-.687c-2.098-.119-2.648-.119-7.917-.119h-.007c-5.28 0-5.863.026-7.925.12a11.04 11.04 0 0 0-3.68.686h-.002a6.67 6.67 0 0 0-3.84 3.824v.003a11.116 11.116 0 0 0-.687 3.718c-.115 2.101-.115 2.65-.115 7.919v.007c0 5.276.022 5.862.115 7.923.021 1.256.253 2.5.686 3.679l.001.003a6.668 6.668 0 0 0 3.84 3.822h.002c1.177.439 2.422.671 3.679.687 2.099.12 2.648.12 7.919.12h.007c5.276 0 5.863-.025 7.923-.12a11 11 0 0 0 3.682-.686l.002-.001a6.671 6.671 0 0 0 3.824-3.822l.001-.003Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/Hoppn_App\",motionChild:true,nodeId:\"p_F4qD2mm\",openInNewTab:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1avu57j framer-6f14d2\",\"data-framer-name\":\"X_social\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"p_F4qD2mm\",svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M31.2 2.397h5.972L24.125 17.311l15.349 20.292H27.455l-9.413-12.306L7.271 37.603H1.295l13.955-15.95L.526 2.397H12.85l8.509 11.25L31.2 2.397Zm-2.096 31.631h3.31L11.052 5.785H7.5l21.604 28.243Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/34737738/admin/feed/posts/\",motionChild:true,nodeId:\"pGdpFaaJD\",openInNewTab:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:740,intrinsicWidth:740,pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png\",srcSet:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png 740w\"},className:\"framer-12fhvv4 framer-6f14d2\",\"data-framer-name\":\"linkedin_logo_linkedin_logo_transparent_linkedin_icon_transparent_free_free_png_1\",layoutDependency:layoutDependency,layoutId:\"pGdpFaaJD\",...addPropertyOverrides({J3YomDQEF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:740,intrinsicWidth:740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||680)-0-487+0+0)+0+112.8+0+0),pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png\",srcSet:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png 740w\"}},K5XPM6q5q:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:740,intrinsicWidth:740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||1269)-0-753.2+0+0)+0+0+0+0+112.5),pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png\",srcSet:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png 740w\"}},KzXGGqNQg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:740,intrinsicWidth:740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||1269)-0-753.2+0+0)+0+0+0+0+112.5),pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png\",srcSet:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png 740w\"}}},baseVariant,gestureVariant)})}),isDisplayed8()&&/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.gitbook.io/\",motionChild:true,nodeId:\"WRiQeSpaZ\",scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1b3t4ib framer-6f14d2\",\"data-framer-name\":\"GitBook - Icon - Black\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"WRiQeSpaZ\",svg:'<svg width=\"65\" height=\"65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M27.396 34.22c3.13 1.805 4.694 2.708 6.412 2.71 1.718.001 3.285-.899 6.417-2.7L60.19 22.753a2.905 2.905 0 0 0 0-5.036L40.218 6.235c-3.13-1.798-4.694-2.698-6.41-2.697-1.717 0-3.28.901-6.408 2.702l-17.17 9.888c-.128.074-.192.11-.25.145A19.277 19.277 0 0 0 .44 32.772v.578a19.277 19.277 0 0 0 9.52 16.487l.25.145 10.755 6.21c6.267 3.618 9.4 5.427 12.842 5.429 3.441 0 6.576-1.806 12.846-5.42l11.354-6.546c3.14-1.81 4.71-2.715 5.571-4.206.862-1.492.862-3.304.862-6.928v-7a2.771 2.771 0 0 0-4.152-2.402L37.007 42.502c-1.562.898-2.343 1.346-3.2 1.347-.857 0-1.638-.448-3.2-1.345l-15.758-9.046c-.79-.453-1.184-.68-1.501-.72a1.606 1.606 0 0 0-1.693.986c-.12.296-.118.751-.114 1.661.004.67.006 1.005.068 1.313.14.69.504 1.315 1.034 1.779.236.207.527.374 1.107.71l16.847 9.723c1.567.904 2.35 1.356 3.21 1.357.86 0 1.644-.452 3.211-1.355l20.65-11.904c.536-.308.803-.463 1.004-.347.2.116.2.425.2 1.043v3.175c0 .906 0 1.36-.215 1.732-.215.373-.608.6-1.393 1.052L40.232 53.48c-3.135 1.807-4.703 2.711-6.424 2.71-1.721 0-3.288-.906-6.422-2.716L11.451 44.27l-.1-.058a10.944 10.944 0 0 1-5.422-9.394V31.79a5.99 5.99 0 0 1 2.986-5.183 5.276 5.276 0 0 1 5.283-.005l13.198 7.618Z\" fill=\"#000\"/></svg>',withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pywj3d\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"S5AQjU_Os\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zyx1so-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mHjN7KHlg-container\",nodeId:\"mHjN7KHlg\",rendersWithMotion:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"mHjN7KHlg\",layoutId:\"mHjN7KHlg\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g5dcj5\",\"data-framer-name\":\"Labs 2\",layoutDependency:layoutDependency,layoutId:\"P9NOqKdDe\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-k3cmih\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"G5dPxGBjA\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8hjny\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"ihGCN2wmb\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-156zcyu\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"cJBKflA7f\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lb93h4\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"njB_kutDd\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y1s8hv\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"UlNixzsrc\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y1fm3f\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"aBSQabJ7N\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c00cek\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"wxRlyy2d5\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:90,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ni8njj-container\",\"data-framer-name\":\"Ticker white mobile\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Z6FHXcITO-container\",name:\"Ticker white mobile\",nodeId:\"Z6FHXcITO\",rendersWithMotion:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"Z6FHXcITO\",layoutId:\"Z6FHXcITO\",name:\"Ticker white mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ddfw3n\",\"data-framer-name\":\"Labs 2\",layoutDependency:layoutDependency,layoutId:\"yWRoj_MH1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10ot85e\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"jAhrt7zqS\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2kay0v\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"axEYa6UU0\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ci13ll\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"e32U1nfcx\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eqjk4l\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"EUAzxo08c\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-105tp29\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"KGIn8tl0F\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ym92no\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"ZcKr9jKYK\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10wz0du\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"PU8quykZD\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jj11xd-container\",\"data-framer-name\":\"Ticker black mobile\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SFcoJSGNw-container\",name:\"Ticker black mobile\",nodeId:\"SFcoJSGNw\",rendersWithMotion:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"SFcoJSGNw\",layoutId:\"SFcoJSGNw\",name:\"Ticker black mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-spbcfx\",\"data-framer-name\":\"Labs 2\",layoutDependency:layoutDependency,layoutId:\"mTaXFpROw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10wr8sv\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"adeL0mP11\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1iy6qs\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"LE7vA1GTA\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11503bj\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"aH5dlWEFx\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11jwy0w\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"vQzf1IgJx\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mnuaox\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"eDxAMic8E\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-134ay38\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"rogjbZDDz\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lg96mv\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"oKfMpBGIV\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-130ccpd-container\",\"data-framer-name\":\"Black logo\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"X1sXlgeTB-container\",name:\"Black logo\",nodeId:\"X1sXlgeTB\",rendersWithMotion:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"X1sXlgeTB\",layoutId:\"X1sXlgeTB\",name:\"Black logo\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n7phhl\",\"data-framer-name\":\"Labs 2\",layoutDependency:layoutDependency,layoutId:\"urqqHN7D6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8qg38w\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"INYAIx1gB\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bue5zg\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"AJ5IdeE56\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9awoud\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"KEZVsGNEG\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ap9aon\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"lY2ACm6ol\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b8tagz\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"LB4BCNuFh\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pqm6nu\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"a_Pl9ua7J\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cpzk2r\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"dwbkXFqRB\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:90,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hp7lyn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rUfW_0Thj-container\",nodeId:\"rUfW_0Thj\",rendersWithMotion:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"rUfW_0Thj\",layoutId:\"rUfW_0Thj\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g5dcj5\",\"data-framer-name\":\"Labs 2\",layoutDependency:layoutDependency,layoutId:\"P9NOqKdDe\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-k3cmih\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"G5dPxGBjA\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8hjny\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"ihGCN2wmb\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-156zcyu\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"cJBKflA7f\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lb93h4\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"njB_kutDd\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y1s8hv\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"UlNixzsrc\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y1fm3f\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"aBSQabJ7N\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c00cek\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"wxRlyy2d5\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2b1ulq-container\",\"data-framer-name\":\"Ticker white mobile\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SVkZE2lz_-container\",name:\"Ticker white mobile\",nodeId:\"SVkZE2lz_\",rendersWithMotion:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"SVkZE2lz_\",layoutId:\"SVkZE2lz_\",name:\"Ticker white mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ddfw3n\",\"data-framer-name\":\"Labs 2\",layoutDependency:layoutDependency,layoutId:\"yWRoj_MH1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10ot85e\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"jAhrt7zqS\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2kay0v\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"axEYa6UU0\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ci13ll\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"e32U1nfcx\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eqjk4l\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"EUAzxo08c\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-105tp29\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"KGIn8tl0F\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ym92no\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"ZcKr9jKYK\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10wz0du\",\"data-framer-name\":\"Labs_loop\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"PU8quykZD\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n2tp1h-container\",\"data-framer-name\":\"Ticker black mobile\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ns6__FhhJ-container\",name:\"Ticker black mobile\",nodeId:\"Ns6__FhhJ\",rendersWithMotion:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"Ns6__FhhJ\",layoutId:\"Ns6__FhhJ\",name:\"Ticker black mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-spbcfx\",\"data-framer-name\":\"Labs 2\",layoutDependency:layoutDependency,layoutId:\"mTaXFpROw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10wr8sv\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"adeL0mP11\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1iy6qs\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"LE7vA1GTA\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11503bj\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"aH5dlWEFx\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11jwy0w\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"vQzf1IgJx\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mnuaox\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"eDxAMic8E\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-134ay38\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"rogjbZDDz\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lg96mv\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"oKfMpBGIV\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ec8536-container\",\"data-framer-name\":\"Black logo\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"MYUBEdVrM-container\",name:\"Black logo\",nodeId:\"MYUBEdVrM\",rendersWithMotion:true,scopeId:\"Lc83qAfEt\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"MYUBEdVrM\",layoutId:\"MYUBEdVrM\",name:\"Black logo\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n7phhl\",\"data-framer-name\":\"Labs 2\",layoutDependency:layoutDependency,layoutId:\"urqqHN7D6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8qg38w\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"INYAIx1gB\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bue5zg\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"AJ5IdeE56\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9awoud\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"KEZVsGNEG\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ap9aon\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"lY2ACm6ol\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b8tagz\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"LB4BCNuFh\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pqm6nu\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"a_Pl9ua7J\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cpzk2r\",\"data-framer-name\":\"Labs_loop_black\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:211,layoutDependency:layoutDependency,layoutId:\"dwbkXFqRB\",svg:'<svg width=\"211\" height=\"117\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M73.754 2.96H25.37l-.773 3.317c2.891.12 4.374.134 6.406.405 2.661.354 6.998.828 8.622 3.084 1.358 1.887 1.526 4.13 1.046 7.435-.384 2.645-11.665 52.103-17.257 76.959-.89 3.2-2.32 8.438-3.222 10.283-.89 1.822-2.597 3.319-5.855 4.331-2.91.903-9.348 1.066-13.926 1.353l-.828 3.583H95.37l8.213-27.077-2.82-.628c-1.167 2.2-3.024 5.613-6.427 10.048-3.284 4.279-8.083 7.451-16.843 10.768-9.508 3.6-31.212 2.777-34.353 2.721-3.133-.056-5.87-.263-7.724-1.391-1.49-.907-1.46-2.256-1.391-3.837.062-1.412.731-3.829 1.08-5.416 5.139-22.77 15.542-67.664 16.046-70.578.63-3.644 2.905-15.102 6.083-18.593 2.334-2.564 11.437-2.97 15.605-3.282l.916-3.485Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.447 2.074h-7.445l-2.297 5.911c-3.982-1.45-10.56-2.842-19.225 1.523-9.427 4.747-19.306 12.765-28.242 26.626-9.513 14.757-11.842 30.875-5.823 35.695 5.215 4.178 13.324 1.85 19.771-3.339 6.737-5.422 13.03-12.27 14.882-14.762l.36-.484c1.563-2.098 4.219-5.663 5.889-8.39-2.074 5.513-5.558 16.114-6.26 18.725-.096.36-.196.72-.295 1.077-.801 2.88-1.559 5.606-.238 7.191 1.703 2.044 5.283 1.506 9.213-.79 3.93-2.297 8.492-6.396 12.009-10.473 2.813-3.262 5.181-6.524 6.014-7.747l-1.918-1.802c-1.315 1.762-4.544 5.467-7.718 8.56-3.144 3.063-6.129 5.394-8.005 6.817-.542-.39-1.001-.888-.324-3.251l1.267-4.204c4.305-13.21 18.385-56.883 18.385-56.883ZM75.35 65.253c5.274 3.68 17.941-5.357 28.293-20.187 10.351-14.83 14.467-29.837 9.193-33.518-5.274-3.681-17.94 5.357-28.292 20.187-10.351 14.83-14.468 29.836-9.194 33.518Zm64.784-62.668h19.29l-23.417 76.307c5.803-9.851 17.5-29.327 31.17-35.066 7.771-3.263 14.969-1.191 16.71 7.145 1.786 8.548-3.181 28.398-20.066 47.752-16.89 19.359-30.539 19.823-36.994 15.727-5.875-3.727-5.933-11.345-4.12-18.292 2.456-9.414 8.097-29.42 10.939-38.172l14.484-44.03c.434-1.287 1.134-4.311.455-6.105-.848-2.242-4.353-2.563-5.683-2.664-.998-.075-1.644-.096-2.857-.133l-.639-.02.728-2.449Zm-7.551 108.409c5.355 3.582 18.916-7.295 30.289-24.296 11.373-17.001 16.251-33.687 10.895-37.27-5.355-3.582-18.916 7.295-30.289 24.296-11.373 17.001-16.251 33.687-10.895 37.27Z\"/><path d=\"M191.436 67.812c-.429-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.274 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.094 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.046 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.321 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.666-.48 6.096-4.339 2.036-15.836.371-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.092-.245.458-.168.443.094l-.544 9.363a10.073 10.073 0 0 0 6.5 10.008l8.774 3.312c.245.093.168.458-.094.443l-9.363-.544a10.073 10.073 0 0 0-10.008 6.5l-3.312 8.774c-.093.246-.458.168-.443-.094l.544-9.363a10.075 10.075 0 0 0-6.5-10.008l-8.774-3.312c-.246-.092-.168-.458.094-.443l9.363.544a10.074 10.074 0 0 0 10.008-6.5l3.312-8.774Zm18.606-2.664c.038-.1.186-.068.18.038l-.221 3.803a4.09 4.09 0 0 0 2.64 4.064l3.563 1.345c.099.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.639-4.064l-3.564-1.345c-.099-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563ZM-20.195 67.812c-.428-9.371 3.044-18.41 10.085-22.881 1.601-.952 5.182-3.179 11.036-2.95 4.8.188 8.486 2.68 10.085 7.088 1.275 3.513-.852 6.564-4.614 7.136-3.563.541-6.463-2.486-8.04-4.614-1.508-2.037-5.544-3.434-8.99-1.047-3.551 2.46-2.093 8.515-.809 13.653 1.284 5.137 8.8 21.026 9.847 27.495 1.047 6.47-.476 13.034-7.659 19.219-7.183 6.184-17.32 6.923-22.358 3.995-5.655-3.286-8.495-11.401-2.49-13.633 6.477-2.407 9.28 6.317 11.005 8.353 1.216 1.435 4.436 3.243 9.667-.48 6.095-4.339 2.035-15.836.37-19.452-1.665-3.615-6.707-12.51-7.135-21.882Zm7.29-62.077c.093-.245.458-.168.443.094l-.544 9.363a10.074 10.074 0 0 0 6.5 10.008l8.774 3.312c.246.093.168.458-.094.443l-9.363-.544a10.074 10.074 0 0 0-10.008 6.5l-3.312 8.774c-.092.246-.458.168-.443-.094l.544-9.363a10.073 10.073 0 0 0-6.5-10.008l-8.774-3.312c-.245-.092-.168-.458.094-.443l9.363.544a10.073 10.073 0 0 0 10.008-6.5l3.312-8.774ZM5.703 3.071c.038-.1.186-.068.18.038l-.22 3.803a4.09 4.09 0 0 0 2.639 4.064l3.563 1.345c.1.037.068.186-.038.18l-3.803-.221a4.09 4.09 0 0 0-4.064 2.64l-1.345 3.563c-.037.1-.186.068-.18-.039l.221-3.802a4.09 4.09 0 0 0-2.64-4.064l-3.563-1.345c-.1-.038-.068-.186.039-.18l3.802.22a4.09 4.09 0 0 0 4.064-2.639l1.345-3.563Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h211v117H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jh8knp\",\"data-framer-name\":\"Row \\xa9 2023 Hoppn\",layoutDependency:layoutDependency,layoutId:\"v8uG_ktbn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xa9 2025 Hoppn\"})}),className:\"framer-1p0wbjk\",\"data-framer-name\":\"\\xa9 2023 Hoppn\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"yKb8sL0bM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({J3YomDQEF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-text-alignment\":\"right\"},children:\"\\xa9 2025 Hoppn\"})})},K5XPM6q5q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-text-alignment\":\"right\"},children:\"\\xa9 2025 Hoppn\"})})},KzXGGqNQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-text-alignment\":\"right\"},children:\"\\xa9 2025 Hoppn\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TjBLr.framer-6f14d2, .framer-TjBLr .framer-6f14d2 { display: block; }\",\".framer-TjBLr.framer-12p0his { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1269px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-TjBLr .framer-14c37i8 { bottom: -200px; flex: none; height: 711px; left: calc(50.00000000000002% - 1198px / 2); overflow: visible; position: absolute; width: 1198px; z-index: 0; }\",\".framer-TjBLr .framer-16tye85, .framer-TjBLr .framer-1lw1lee, .framer-TjBLr .framer-z77xfy { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-TjBLr .framer-yw1qrn { flex: none; height: 407px; left: calc(45.49248747913191% - 581px / 2); position: absolute; top: 15px; width: 581px; }\",\".framer-TjBLr .framer-10dm3l0 { bottom: 61px; flex: none; height: 459px; left: 55px; position: absolute; width: 598px; }\",\".framer-TjBLr .framer-y1ev18 { flex: none; height: 409px; position: absolute; right: 71px; top: 40px; width: 423px; }\",\".framer-TjBLr .framer-uw4h3l { flex: none; height: 226px; position: absolute; right: 173px; top: 100px; width: 234px; }\",\".framer-TjBLr .framer-1yfynet { bottom: -341px; flex: none; height: 1463px; left: calc(50.00000000000002% - 2469px / 2); overflow: visible; position: absolute; width: 2469px; z-index: 0; }\",\".framer-TjBLr .framer-1i9ghb1 { flex: none; height: 1463px; left: calc(49.979748886188766% - 2469px / 2); position: absolute; top: calc(49.965823650034196% - 1463px / 2); width: 2469px; }\",\".framer-TjBLr .framer-1ar7a4n { bottom: 256px; flex: none; height: 783px; position: absolute; right: -607px; width: 786px; }\",\".framer-TjBLr .framer-1021fvx { flex: none; height: 1063px; left: -625px; position: absolute; top: 300px; width: 1133px; }\",\".framer-TjBLr .framer-1xt6wm9 { flex: none; height: 840px; left: calc(45.56500607533416% - 1196px / 2); position: absolute; top: calc(30.690362269309663% - 840px / 2); width: 1196px; }\",\".framer-TjBLr .framer-1hlz0yq { flex: none; height: 783px; left: calc(77.845281490482% - 786px / 2); position: absolute; top: calc(35.9535201640465% - 783px / 2); width: 786px; }\",\".framer-TjBLr .framer-1lf7h9d, .framer-TjBLr .framer-18fvi8l { flex: none; height: 1063px; left: calc(29.526123936816546% - 1133px / 2); position: absolute; top: calc(59.05673274094328% - 1063px / 2); width: 1133px; }\",\".framer-TjBLr .framer-1mal2bz { flex: none; height: 474px; left: calc(75.82017010935603% - 476px / 2); position: absolute; top: calc(29.87012987012989% - 474px / 2); width: 476px; }\",\".framer-TjBLr .framer-150jdlz { aspect-ratio: 1.6874172185430463 / 1; bottom: -200px; flex: none; height: var(--framer-aspect-ratio-supported, 755px); left: 50%; overflow: visible; position: absolute; width: 1274px; z-index: 0; }\",\".framer-TjBLr .framer-xxbtbm { flex: none; height: 434px; left: calc(45.525902668759834% - 617px / 2); position: absolute; top: 24px; width: 617px; }\",\".framer-TjBLr .framer-1ja2pvk { bottom: 65px; flex: none; height: 487px; left: 59px; position: absolute; width: 635px; }\",\".framer-TjBLr .framer-9bbn5r { flex: none; height: 398px; position: absolute; right: 171px; top: calc(45.960264900662274% - 398px / 2); width: 411px; }\",\".framer-TjBLr .framer-qk1tut { flex: none; height: 241px; position: absolute; right: 184px; top: 105px; width: 248px; }\",\".framer-TjBLr .framer-167c8xq { aspect-ratio: 1.6876281613123718 / 1; bottom: -341px; flex: none; height: var(--framer-aspect-ratio-supported, 1463px); left: 50%; overflow: visible; position: absolute; width: 2469px; z-index: 0; }\",\".framer-TjBLr .framer-1jk5bnj { flex: none; height: 840px; left: calc(45.52450384771164% - 1196px / 2); position: absolute; top: 29px; width: 1196px; }\",\".framer-TjBLr .framer-10vhy7y { bottom: 125px; flex: none; height: 945px; left: 113px; position: absolute; width: 1232px; }\",\".framer-TjBLr .framer-yr0ot2 { flex: none; height: 842px; position: absolute; right: 147px; top: 81px; width: 871px; }\",\".framer-TjBLr .framer-rfvvxn { flex: none; height: 465px; position: absolute; right: 357px; top: 204px; width: 481px; }\",\".framer-TjBLr .framer-e200ml { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 275px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TjBLr .framer-s1713f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px 150px 0px 80px; position: relative; width: 1px; }\",\".framer-TjBLr .framer-b7cs9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 45px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TjBLr .framer-ernjk8, .framer-TjBLr .framer-tbm1wm, .framer-TjBLr .framer-1ka84cn, .framer-TjBLr .framer-il8qss, .framer-TjBLr .framer-4ffl9b, .framer-TjBLr .framer-gaybbu, .framer-TjBLr .framer-1p0wbjk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TjBLr .framer-1da6afh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TjBLr .framer-1pnkz55 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TjBLr .framer-x5sj09 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 130px; }\",\".framer-TjBLr .framer-wrb9se { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 54px; }\",\".framer-TjBLr .framer-1aamnqz { aspect-ratio: 0.9814814814814815 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); position: relative; text-decoration: none; width: 54px; }\",\".framer-TjBLr .framer-jfv7s8 { aspect-ratio: 0.9938650306748467 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); overflow: visible; position: relative; text-decoration: none; width: 54px; }\",\".framer-TjBLr .framer-60k40q, .framer-TjBLr .framer-1pxqgk8, .framer-TjBLr .framer-1qvk4v5, .framer-TjBLr .framer-10bfhcn, .framer-TjBLr .framer-1avu57j, .framer-TjBLr .framer-1b3t4ib { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; text-decoration: none; width: 50px; }\",\".framer-TjBLr .framer-16wsp5e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 321px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 54px; }\",\".framer-TjBLr .framer-12fhvv4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; text-decoration: none; width: 50px; }\",\".framer-TjBLr .framer-pywj3d { flex: none; height: 100px; overflow: hidden; position: relative; width: 100%; }\",\".framer-TjBLr .framer-zyx1so-container, .framer-TjBLr .framer-130ccpd-container, .framer-TjBLr .framer-1hp7lyn-container, .framer-TjBLr .framer-1ec8536-container { flex: none; height: 127px; position: relative; width: 100%; }\",\".framer-TjBLr .framer-g5dcj5, .framer-TjBLr .framer-1n7phhl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 117px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TjBLr .framer-k3cmih, .framer-TjBLr .framer-8hjny, .framer-TjBLr .framer-156zcyu, .framer-TjBLr .framer-lb93h4, .framer-TjBLr .framer-1y1s8hv, .framer-TjBLr .framer-1y1fm3f, .framer-TjBLr .framer-1c00cek, .framer-TjBLr .framer-8qg38w, .framer-TjBLr .framer-1bue5zg, .framer-TjBLr .framer-9awoud, .framer-TjBLr .framer-1ap9aon, .framer-TjBLr .framer-b8tagz, .framer-TjBLr .framer-1pqm6nu, .framer-TjBLr .framer-1cpzk2r { aspect-ratio: 1.8034188034188035 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 117px); position: relative; width: 211px; }\",\".framer-TjBLr .framer-1ni8njj-container, .framer-TjBLr .framer-jj11xd-container, .framer-TjBLr .framer-2b1ulq-container, .framer-TjBLr .framer-n2tp1h-container { flex: none; height: 70px; position: relative; width: 100%; }\",\".framer-TjBLr .framer-ddfw3n, .framer-TjBLr .framer-spbcfx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 70px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-TjBLr .framer-10ot85e, .framer-TjBLr .framer-2kay0v, .framer-TjBLr .framer-1ci13ll, .framer-TjBLr .framer-1eqjk4l, .framer-TjBLr .framer-105tp29, .framer-TjBLr .framer-ym92no, .framer-TjBLr .framer-10wz0du, .framer-TjBLr .framer-10wr8sv, .framer-TjBLr .framer-1iy6qs, .framer-TjBLr .framer-11503bj, .framer-TjBLr .framer-11jwy0w, .framer-TjBLr .framer-1mnuaox, .framer-TjBLr .framer-134ay38, .framer-TjBLr .framer-1lg96mv { aspect-ratio: 1.8034188034188035 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 126px; }\",\".framer-TjBLr .framer-jh8knp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 80px 85px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TjBLr.framer-12p0his, .framer-TjBLr .framer-1da6afh, .framer-TjBLr .framer-1pnkz55, .framer-TjBLr .framer-g5dcj5, .framer-TjBLr .framer-ddfw3n, .framer-TjBLr .framer-spbcfx, .framer-TjBLr .framer-1n7phhl, .framer-TjBLr .framer-jh8knp { gap: 0px; } .framer-TjBLr.framer-12p0his > *, .framer-TjBLr .framer-jh8knp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TjBLr.framer-12p0his > :first-child, .framer-TjBLr .framer-jh8knp > :first-child { margin-top: 0px; } .framer-TjBLr.framer-12p0his > :last-child, .framer-TjBLr .framer-jh8knp > :last-child { margin-bottom: 0px; } .framer-TjBLr .framer-1da6afh > *, .framer-TjBLr .framer-1pnkz55 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-TjBLr .framer-1da6afh > :first-child, .framer-TjBLr .framer-1pnkz55 > :first-child, .framer-TjBLr .framer-g5dcj5 > :first-child, .framer-TjBLr .framer-ddfw3n > :first-child, .framer-TjBLr .framer-spbcfx > :first-child, .framer-TjBLr .framer-1n7phhl > :first-child { margin-left: 0px; } .framer-TjBLr .framer-1da6afh > :last-child, .framer-TjBLr .framer-1pnkz55 > :last-child, .framer-TjBLr .framer-g5dcj5 > :last-child, .framer-TjBLr .framer-ddfw3n > :last-child, .framer-TjBLr .framer-spbcfx > :last-child, .framer-TjBLr .framer-1n7phhl > :last-child { margin-right: 0px; } .framer-TjBLr .framer-g5dcj5 > *, .framer-TjBLr .framer-ddfw3n > *, .framer-TjBLr .framer-spbcfx > *, .framer-TjBLr .framer-1n7phhl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-TjBLr.framer-v-1jstttp .framer-16wsp5e, .framer-TjBLr.framer-v-z5z3ie .framer-16wsp5e { flex: 1 0 0px; height: 1px; }\",\".framer-TjBLr.framer-v-1jstttp .framer-1pxqgk8 { order: 4; }\",\".framer-TjBLr.framer-v-1jstttp .framer-10bfhcn { order: 1; }\",\".framer-TjBLr.framer-v-1jstttp .framer-12fhvv4 { order: 3; }\",\".framer-TjBLr.framer-v-cgx16z.framer-12p0his, .framer-TjBLr.framer-v-z5z3ie.framer-12p0his { width: 810px; }\",\".framer-TjBLr.framer-v-cgx16z .framer-s1713f, .framer-TjBLr.framer-v-z5z3ie .framer-s1713f { padding: 0px 50px 0px 80px; }\",\".framer-TjBLr.framer-v-4qkdve.framer-12p0his, .framer-TjBLr.framer-v-1r0lfdr.framer-12p0his { height: 680px; width: 390px; }\",\".framer-TjBLr.framer-v-4qkdve .framer-e200ml, .framer-TjBLr.framer-v-1r0lfdr .framer-e200ml { flex-direction: column; gap: 0px; height: min-content; justify-content: center; }\",\".framer-TjBLr.framer-v-4qkdve .framer-s1713f { flex: none; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px 35px 40px 35px; width: 100%; }\",\".framer-TjBLr.framer-v-4qkdve .framer-1da6afh, .framer-TjBLr.framer-v-1r0lfdr .framer-1da6afh { flex-direction: column; gap: 20px; }\",\".framer-TjBLr.framer-v-4qkdve .framer-1pnkz55 { gap: 30px; order: 1; width: 100%; }\",\".framer-TjBLr.framer-v-4qkdve .framer-gaybbu, .framer-TjBLr.framer-v-1r0lfdr .framer-gaybbu { order: 0; }\",\".framer-TjBLr.framer-v-4qkdve .framer-x5sj09 { gap: 0px; height: min-content; justify-content: center; width: 100%; }\",\".framer-TjBLr.framer-v-4qkdve .framer-wrb9se { flex: none; flex-direction: row; height: 54px; padding: 0px 35px 0px 35px; width: 100%; }\",\".framer-TjBLr.framer-v-4qkdve .framer-pywj3d, .framer-TjBLr.framer-v-1r0lfdr .framer-pywj3d { height: 60px; }\",\".framer-TjBLr.framer-v-4qkdve .framer-jh8knp { padding: 20px 26px 85px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TjBLr.framer-v-4qkdve .framer-e200ml, .framer-TjBLr.framer-v-4qkdve .framer-s1713f, .framer-TjBLr.framer-v-4qkdve .framer-1da6afh, .framer-TjBLr.framer-v-4qkdve .framer-1pnkz55, .framer-TjBLr.framer-v-4qkdve .framer-x5sj09, .framer-TjBLr.framer-v-4qkdve .framer-wrb9se { gap: 0px; } .framer-TjBLr.framer-v-4qkdve .framer-e200ml > *, .framer-TjBLr.framer-v-4qkdve .framer-s1713f > *, .framer-TjBLr.framer-v-4qkdve .framer-x5sj09 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TjBLr.framer-v-4qkdve .framer-e200ml > :first-child, .framer-TjBLr.framer-v-4qkdve .framer-s1713f > :first-child, .framer-TjBLr.framer-v-4qkdve .framer-1da6afh > :first-child, .framer-TjBLr.framer-v-4qkdve .framer-x5sj09 > :first-child { margin-top: 0px; } .framer-TjBLr.framer-v-4qkdve .framer-e200ml > :last-child, .framer-TjBLr.framer-v-4qkdve .framer-s1713f > :last-child, .framer-TjBLr.framer-v-4qkdve .framer-1da6afh > :last-child, .framer-TjBLr.framer-v-4qkdve .framer-x5sj09 > :last-child { margin-bottom: 0px; } .framer-TjBLr.framer-v-4qkdve .framer-1da6afh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TjBLr.framer-v-4qkdve .framer-1pnkz55 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-TjBLr.framer-v-4qkdve .framer-1pnkz55 > :first-child { margin-left: 0px; } .framer-TjBLr.framer-v-4qkdve .framer-1pnkz55 > :last-child { margin-right: 0px; } .framer-TjBLr.framer-v-4qkdve .framer-wrb9se > *, .framer-TjBLr.framer-v-4qkdve .framer-wrb9se > :first-child, .framer-TjBLr.framer-v-4qkdve .framer-wrb9se > :last-child { margin: 0px; } }\",\".framer-TjBLr.framer-v-1r0lfdr .framer-s1713f { flex: none; gap: 0px; height: min-content; justify-content: center; padding: 0px 35px 40px 35px; width: 100%; }\",\".framer-TjBLr.framer-v-1r0lfdr .framer-1pnkz55 { gap: 30px; order: 1; }\",\".framer-TjBLr.framer-v-1r0lfdr .framer-x5sj09 { flex-direction: row; height: min-content; padding: 0px 35px 0px 35px; width: 100%; }\",\".framer-TjBLr.framer-v-1r0lfdr .framer-16wsp5e { flex: 1 0 0px; flex-direction: row; height: min-content; width: 1px; }\",\".framer-TjBLr.framer-v-1r0lfdr .framer-jh8knp { padding: 20px 35px 85px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TjBLr.framer-v-1r0lfdr .framer-e200ml, .framer-TjBLr.framer-v-1r0lfdr .framer-s1713f, .framer-TjBLr.framer-v-1r0lfdr .framer-1da6afh, .framer-TjBLr.framer-v-1r0lfdr .framer-1pnkz55, .framer-TjBLr.framer-v-1r0lfdr .framer-x5sj09, .framer-TjBLr.framer-v-1r0lfdr .framer-16wsp5e { gap: 0px; } .framer-TjBLr.framer-v-1r0lfdr .framer-e200ml > *, .framer-TjBLr.framer-v-1r0lfdr .framer-s1713f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TjBLr.framer-v-1r0lfdr .framer-e200ml > :first-child, .framer-TjBLr.framer-v-1r0lfdr .framer-s1713f > :first-child, .framer-TjBLr.framer-v-1r0lfdr .framer-1da6afh > :first-child { margin-top: 0px; } .framer-TjBLr.framer-v-1r0lfdr .framer-e200ml > :last-child, .framer-TjBLr.framer-v-1r0lfdr .framer-s1713f > :last-child, .framer-TjBLr.framer-v-1r0lfdr .framer-1da6afh > :last-child { margin-bottom: 0px; } .framer-TjBLr.framer-v-1r0lfdr .framer-1da6afh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TjBLr.framer-v-1r0lfdr .framer-1pnkz55 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-TjBLr.framer-v-1r0lfdr .framer-1pnkz55 > :first-child { margin-left: 0px; } .framer-TjBLr.framer-v-1r0lfdr .framer-1pnkz55 > :last-child { margin-right: 0px; } .framer-TjBLr.framer-v-1r0lfdr .framer-x5sj09 > *, .framer-TjBLr.framer-v-1r0lfdr .framer-x5sj09 > :first-child, .framer-TjBLr.framer-v-1r0lfdr .framer-x5sj09 > :last-child, .framer-TjBLr.framer-v-1r0lfdr .framer-16wsp5e > *, .framer-TjBLr.framer-v-1r0lfdr .framer-16wsp5e > :first-child, .framer-TjBLr.framer-v-1r0lfdr .framer-16wsp5e > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1269\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KzXGGqNQg\":{\"layout\":[\"fixed\",\"fixed\"]},\"IntIeV37M\":{\"layout\":[\"fixed\",\"fixed\"]},\"v6CIsH2Yk\":{\"layout\":[\"fixed\",\"fixed\"]},\"K5XPM6q5q\":{\"layout\":[\"fixed\",\"fixed\"]},\"J3YomDQEF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"uYVTs0nYa\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLc83qAfEt=withCSS(Component,css,\"framer-TjBLr\");export default FramerLc83qAfEt;FramerLc83qAfEt.displayName=\"Footer\";FramerLc83qAfEt.defaultProps={height:1269,width:1200};addPropertyControls(FramerLc83qAfEt,{variant:{options:[\"L8vY2BsSf\",\"KzXGGqNQg\",\"IntIeV37M\",\"v6CIsH2Yk\",\"K5XPM6q5q\",\"J3YomDQEF\"],optionTitles:[\"Red footer web\",\"Green footer web\",\"Red footer tablet\",\"Red footer mobile\",\"Green footer tablet\",\"Green footer mobile\"],title:\"Variant\",type:ControlType.Enum},uYVTs0nYa:{defaultValue:\"rgba(255, 255, 255, 0)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerLc83qAfEt,[{explicitInter:true,fonts:[{family:\"archia-regular-webfont \\x7f\",source:\"custom\",url:\"https://framerusercontent.com/assets/Go7XmGThSZ4xU6crLx1o6tMHA.ttf\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLc83qAfEt\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1269\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KzXGGqNQg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IntIeV37M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v6CIsH2Yk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K5XPM6q5q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J3YomDQEF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"uYVTs0nYa\\\":\\\"background\\\"}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Lc83qAfEt.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={kMvKBCKcx:{hover:true,pressed:true},xFIUwfiR_:{hover:true,pressed:true}};const cycleOrder=[\"xFIUwfiR_\",\"kMvKBCKcx\"];const serializationHash=\"framer-bXmVi\";const variantClassNames={kMvKBCKcx:\"framer-v-1if09gx\",xFIUwfiR_:\"framer-v-18265n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[0,0,0,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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={\"Variant 1\":\"xFIUwfiR_\",\"Variant 2\":\"kMvKBCKcx\"};const getProps=({height,id,link,newTab,pageTitle,width,...props})=>{return{...props,aEqJJNIwn:pageTitle??props.aEqJJNIwn??\"Page\",q9cmatb21:link??props.q9cmatb21,variant:humanReadableVariantMap[props.variant]??props.variant??\"xFIUwfiR_\",VgDxzRfPm:newTab??props.VgDxzRfPm};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,aEqJJNIwn,q9cmatb21,VgDxzRfPm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xFIUwfiR_\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:q9cmatb21,motionChild:true,nodeId:\"xFIUwfiR_\",openInNewTab:VgDxzRfPm,scopeId:\"dwiGaj1Pl\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-18265n\",className,classNames)} framer-h9eoz1`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xFIUwfiR_\",ref:refBinding,style:{...style},...addPropertyOverrides({\"kMvKBCKcx-hover\":{\"data-framer-name\":undefined},\"kMvKBCKcx-pressed\":{\"data-framer-name\":undefined},\"xFIUwfiR_-hover\":{\"data-framer-name\":undefined},\"xFIUwfiR_-pressed\":{\"data-framer-name\":undefined},kMvKBCKcx:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\"},children:\"Page\"})}),className:\"framer-wknow0\",\"data-framer-name\":\"Title\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"OL9bnhDaS\",text:aEqJJNIwn,variants:{\"kMvKBCKcx-hover\":{\"--extracted-r6o4lv\":\"rgb(120, 255, 183)\"},\"kMvKBCKcx-pressed\":{\"--extracted-r6o4lv\":\"rgb(77, 255, 160)\"},\"xFIUwfiR_-hover\":{\"--extracted-r6o4lv\":\"rgb(48, 164, 231)\"},\"xFIUwfiR_-pressed\":{\"--extracted-r6o4lv\":\"rgb(1, 162, 255)\"},kMvKBCKcx:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"kMvKBCKcx-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(120, 255, 183))\"},children:\"Page\"})})},\"kMvKBCKcx-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(77, 255, 160))\"},children:\"Page\"})})},\"xFIUwfiR_-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(48, 164, 231))\"},children:\"Page\"})})},\"xFIUwfiR_-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(1, 162, 255))\"},children:\"Page\"})})},kMvKBCKcx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Page\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bXmVi.framer-h9eoz1, .framer-bXmVi .framer-h9eoz1 { display: block; }\",\".framer-bXmVi.framer-18265n { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-bXmVi .framer-wknow0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bXmVi.framer-18265n { gap: 0px; } .framer-bXmVi.framer-18265n > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bXmVi.framer-18265n > :first-child { margin-left: 0px; } .framer-bXmVi.framer-18265n > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 123\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"kMvKBCKcx\":{\"layout\":[\"auto\",\"auto\"]},\"bJrqN1X2H\":{\"layout\":[\"auto\",\"auto\"]},\"mtVNeDWUq\":{\"layout\":[\"auto\",\"auto\"]},\"qNqHtTUm8\":{\"layout\":[\"auto\",\"auto\"]},\"qU2gUM3Ae\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"aEqJJNIwn\":\"pageTitle\",\"q9cmatb21\":\"link\",\"VgDxzRfPm\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdwiGaj1Pl=withCSS(Component,css,\"framer-bXmVi\");export default FramerdwiGaj1Pl;FramerdwiGaj1Pl.displayName=\"Header buttons mobile\";FramerdwiGaj1Pl.defaultProps={height:50,width:123};addPropertyControls(FramerdwiGaj1Pl,{variant:{options:[\"xFIUwfiR_\",\"kMvKBCKcx\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},aEqJJNIwn:{defaultValue:\"Page\",displayTextArea:false,title:\"Page title\",type:ControlType.String},q9cmatb21:{title:\"Link\",type:ControlType.Link},VgDxzRfPm:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerdwiGaj1Pl,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdwiGaj1Pl\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"aEqJJNIwn\\\":\\\"pageTitle\\\",\\\"q9cmatb21\\\":\\\"link\\\",\\\"VgDxzRfPm\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"123\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kMvKBCKcx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bJrqN1X2H\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mtVNeDWUq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qNqHtTUm8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qU2gUM3Ae\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dwiGaj1Pl.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={M60jPb8HT:{hover:true,pressed:true},pXJ9eF3Vb:{hover:true,pressed:true},u3Yrdl_zE:{hover:true,pressed:true},yCFbb40jD:{hover:true,pressed:true}};const cycleOrder=[\"pXJ9eF3Vb\",\"yCFbb40jD\",\"M60jPb8HT\",\"u3Yrdl_zE\"];const serializationHash=\"framer-6fo8y\";const variantClassNames={M60jPb8HT:\"framer-v-1blb7nw\",pXJ9eF3Vb:\"framer-v-ltwfze\",u3Yrdl_zE:\"framer-v-50t6m0\",yCFbb40jD:\"framer-v-l8tgkl\"};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:20,delay:0,mass:1,stiffness:600,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={\"Mobile size logo\":\"M60jPb8HT\",\"Mobile white logo - white\":\"u3Yrdl_zE\",\"Variant 1\":\"pXJ9eF3Vb\",\"Variant 2 - white\":\"yCFbb40jD\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,HIzE7tWAQ:link!==null&&link!==void 0?link:props.HIzE7tWAQ,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"pXJ9eF3Vb\"};};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,HIzE7tWAQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pXJ9eF3Vb\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"yCFbb40jD-hover\",\"yCFbb40jD-pressed\",\"u3Yrdl_zE-hover\",\"u3Yrdl_zE-pressed\"].includes(gestureVariant))return false;if([\"yCFbb40jD\",\"u3Yrdl_zE\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"yCFbb40jD-hover\",\"yCFbb40jD-pressed\",\"u3Yrdl_zE-hover\",\"u3Yrdl_zE-pressed\"].includes(gestureVariant))return true;if([\"yCFbb40jD\",\"u3Yrdl_zE\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:HIzE7tWAQ,openInNewTab:false,...addPropertyOverrides({\"pXJ9eF3Vb-pressed\":{href:{webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-ltwfze\",className,classNames)} framer-1gp1r2u`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"pXJ9eF3Vb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"M60jPb8HT-hover\":{\"data-framer-name\":undefined},\"M60jPb8HT-pressed\":{\"data-framer-name\":undefined},\"pXJ9eF3Vb-hover\":{\"data-framer-name\":undefined},\"pXJ9eF3Vb-pressed\":{\"data-framer-name\":undefined},\"u3Yrdl_zE-hover\":{\"data-framer-name\":undefined},\"u3Yrdl_zE-pressed\":{\"data-framer-name\":undefined},\"yCFbb40jD-hover\":{\"data-framer-name\":undefined},\"yCFbb40jD-pressed\":{\"data-framer-name\":undefined},M60jPb8HT:{\"data-framer-name\":\"Mobile size logo\"},u3Yrdl_zE:{\"data-framer-name\":\"Mobile white logo - white\"},yCFbb40jD:{\"data-framer-name\":\"Variant 2 - white\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tpgxns\",\"data-framer-name\":\"Hoppn_Logo_SVG_new\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:210,layoutDependency:layoutDependency,layoutId:\"CMJzRdalq\",svg:'<svg width=\"210\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M107.626 30.206a6.565 6.565 0 0 1 9.285 1.98c4.478-3.04 10.318-8.374 11.986-16.244 1.417-6.689-3.17-13.337-10.251-14.847-7.08-1.51-13.966 2.692-15.383 9.38-1.668 7.87 1.504 15.127 4.363 19.73Zm7.486-12.43a4.265 4.265 0 0 0 5.058-3.295 4.278 4.278 0 0 0-3.285-5.074 4.264 4.264 0 0 0-5.057 3.295 4.277 4.277 0 0 0 3.284 5.074Z\" fill=\"#0DBFBE\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M107.626 30.206a6.565 6.565 0 0 1 9.285 1.98c4.478-3.04 10.318-8.374 11.986-16.244 1.417-6.689-3.17-13.337-10.251-14.847-7.08-1.51-13.966 2.692-15.383 9.38-1.668 7.87 1.504 15.127 4.363 19.73Zm7.486-12.43a4.265 4.265 0 0 0 5.058-3.295 4.278 4.278 0 0 0-3.285-5.074 4.264 4.264 0 0 0-5.057 3.295 4.277 4.277 0 0 0 3.284 5.074Z\" fill=\"url(#a)\"/><path d=\"M110.556 39.277a3.69 3.69 0 0 1-2.829-4.371 3.678 3.678 0 0 1 4.357-2.839 3.69 3.69 0 0 1 2.83 4.371 3.677 3.677 0 0 1-4.358 2.84Z\" fill=\"#0DBFBE\"/><path d=\"M110.556 39.277a3.69 3.69 0 0 1-2.829-4.371 3.678 3.678 0 0 1 4.357-2.839 3.69 3.69 0 0 1 2.83 4.371 3.677 3.677 0 0 1-4.358 2.84Z\" fill=\"url(#b)\"/><path d=\"M163.492 4.987h-14.824l-.237 1.016c1.314.054 3.898.087 4.604 1.068.416.577.468 1.263.321 2.275-.118.81-3.574 15.946-5.287 23.554-.272.979-.711 2.582-.987 3.147-.906 1.852-4.264 1.558-6.06 1.74l-.254 1.096h29.346l2.516-8.287-.864-.192c-1.672 3.15-4.204 5.658-8.272 6.709-2.736.63-10.592.772-11.748.069-.771-.469-.262-2.075-.095-2.832 1.574-6.969 4.311-18.621 4.916-21.601.471-2.161.89-4.622 1.863-5.69.774-.85 3.504-.91 4.781-1.005l.281-1.067Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M180.554 4.716h-2.281l-.703 1.81c-1.22-.444-3.236-.87-5.891.465-2.887 1.453-5.914 3.908-8.652 8.15-2.914 4.516-3.628 9.45-1.784 10.924 1.598 1.279 4.082.567 6.057-1.021 2.528-2.033 4.776-4.464 6.474-7.235-.748 1.988-1.67 4.845-2.008 6.06-.245.883-.478 1.717-.073 2.202.522.626 1.619.46 2.823-.242 1.204-.703 2.601-1.957 3.679-3.205a29.695 29.695 0 0 0 1.842-2.371l-.587-.552c-.403.54-1.392 1.673-2.365 2.62a25.992 25.992 0 0 1-2.452 2.087c-.166-.12-.307-.272-.1-.996l.389-1.286c1.319-4.044 5.632-17.41 5.632-17.41Zm-16.573 19.336c1.616 1.127 5.497-1.639 8.668-6.178 3.171-4.539 4.432-9.131 2.817-10.258-1.616-1.127-5.497 1.64-8.668 6.178-3.172 4.539-4.433 9.132-2.817 10.258Zm19.848-19.179h5.91l-7.175 23.354c1.778-3.015 5.362-8.976 9.55-10.732 2.381-.999 4.586-.365 5.119 2.186.548 2.617-.974 8.692-6.147 14.615-5.175 5.925-9.356 6.067-11.334 4.814-1.8-1.14-1.813-3.471-1.262-5.599 2.496-9.641 5.041-16.813 7.789-25.158.133-.394.347-1.32.139-1.869-.26-.686-1.333-.784-1.741-.815-.356-.027-.565-.03-1.071-.047l.223-.75Zm-2.313 33.179c1.64 1.096 5.795-2.233 9.279-7.436 3.484-5.203 4.979-10.31 3.338-11.407-1.641-1.096-5.795 2.233-9.279 7.436-3.485 5.204-4.979 10.31-3.338 11.407Z\" fill=\"#000\"/><path d=\"M199.545 24.836c-.131-2.868.933-5.635 3.09-7.003.491-.291 1.588-.973 3.381-.903 1.471.058 2.6.82 3.09 2.17.39 1.074-.261 2.008-1.414 2.183-1.091.166-1.98-.76-2.463-1.412-.462-.623-1.656-.962-2.712-.231-1.088.752-.683 2.517-.29 4.09.394 1.572 2.696 6.434 3.017 8.415.321 1.98-.146 3.989-2.346 5.881-2.201 1.893-5.307 2.12-6.85 1.223-1.733-1.006-2.603-3.49-.763-4.172 1.984-.737 2.843 1.933 3.371 2.556.373.44 1.36.993 2.962-.147 1.867-1.328.624-4.846.114-5.953-.511-1.107-2.055-3.83-2.187-6.697Zm2.37-19.832c.029-.075.141-.052.136.028l-.144 2.483a3.082 3.082 0 0 0 1.991 3.063l2.329.878c.075.028.051.14-.029.135l-2.485-.144a3.085 3.085 0 0 0-3.066 1.99l-.879 2.326c-.029.075-.141.051-.136-.029l.144-2.482a3.082 3.082 0 0 0-1.991-3.063l-2.329-.878c-.075-.029-.051-.14.029-.136l2.485.144a3.085 3.085 0 0 0 3.066-1.99l.879-2.325Zm5.565-.123c.011-.03.057-.02.055.012l-.068 1.164c-.031.546.296 1.05.809 1.244l1.092.411c.03.012.02.057-.012.055l-1.165-.067a1.253 1.253 0 0 0-1.245.808l-.412 1.09c-.012.03-.057.021-.055-.012l.067-1.163a1.251 1.251 0 0 0-.808-1.244l-1.092-.412c-.03-.011-.021-.057.012-.055l1.165.068a1.254 1.254 0 0 0 1.245-.808l.412-1.09Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.482 32.78V21.85c0-2.535-.776-4.39-1.926-5.64-1.152-1.252-2.694-1.913-4.257-2.028-1.795-.132-3.277.296-4.548 1.429l-.413.368V5.704L.132 6.52l-.01 26.26h4.216V21.442c0-.977.364-1.95 1.105-2.622a3.505 3.505 0 0 1 2.71-.892c1.826.176 3.17 1.625 3.17 3.617V32.78h4.159Zm47.825-20.57v-1.965h-4.124v26.537l4.124-.801v-9.916l.415.38c1.43 1.306 3.245 2.085 5.227 2.085 4.572 0 8.322-4.177 8.322-9.394 0-5.216-3.75-9.387-8.322-9.387-1.978 0-3.794.78-5.227 2.083l-.415.377ZM42.6 30.396l.415.378c1.433 1.303 3.245 2.079 5.224 2.079 4.573 0 8.325-4.171 8.325-9.384s-3.753-9.39-8.325-9.39c-1.975 0-3.79.775-5.223 2.082l-.416.378v-1.965h-4.124v26.232l4.124-.802v-9.608Zm41.5-13.834v-2.071h-4.204l-.011 18.267 4.215-.819V21.442c0-.977.364-1.95 1.105-2.622a3.505 3.505 0 0 1 2.71-.892c1.825.176 3.169 1.598 3.169 3.616v9.037l4.16-.808V21.85c0-2.79-.757-4.632-1.872-5.803-1.116-1.173-2.621-1.707-4.178-1.822-.89-.065-1.83.126-2.664.472-.836.346-1.549.839-1.994 1.357l-.436.508ZM73.26 19.14c-.003 3.068-2.22 5.611-5.018 5.611-2.799 0-5.02-2.542-5.02-5.611 0-3.07 2.221-5.609 5.02-5.609 2.798 0 5.019 2.543 5.019 5.609Zm-25.724 9.938c-2.798 0-5.019-2.542-5.019-5.608 0-3.072 2.22-5.612 5.019-5.612 2.795 0 5.019 2.543 5.019 5.612 0 3.066-2.224 5.608-5.019 5.608ZM26.955 14.26c-4.929 0-8.95 4.2-8.95 9.407 0 5.209 4.021 9.406 8.95 9.406 4.933 0 8.95-4.2 8.95-9.406s-4.017-9.407-8.95-9.407Zm-.001 15.061c-2.764 0-4.944-2.57-4.944-5.656s2.183-5.653 4.944-5.653c2.763 0 4.946 2.564 4.946 5.653 0 3.089-2.183 5.656-4.946 5.656Z\" fill=\"#000\"/><defs><linearGradient id=\"a\" x1=\"101.782\" y1=\"5.318\" x2=\"123.093\" y2=\"29.172\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#28CBCA\"/><stop offset=\".698\" stop-color=\"#0DBFBE\"/></linearGradient><linearGradient id=\"b\" x1=\"101.782\" y1=\"5.318\" x2=\"123.093\" y2=\"29.172\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#28CBCA\"/><stop offset=\".698\" stop-color=\"#0DBFBE\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-q88icv\",\"data-framer-name\":\"Hoppn_Logo_SVG_new_white\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:210,layoutDependency:layoutDependency,layoutId:\"nbz1ZcBL2\",svg:'<svg width=\"210\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M107.626 29.418a6.565 6.565 0 0 1 9.285 1.98c4.478-3.039 10.318-8.374 11.986-16.244 1.417-6.689-3.17-13.337-10.251-14.847-7.08-1.51-13.966 2.692-15.383 9.381-1.668 7.87 1.504 15.127 4.363 19.73Zm7.486-12.43a4.265 4.265 0 0 0 5.058-3.295 4.278 4.278 0 0 0-3.285-5.074 4.264 4.264 0 0 0-5.057 3.295 4.277 4.277 0 0 0 3.284 5.074Z\" fill=\"#fff\"/><path d=\"M110.556 38.49a3.69 3.69 0 0 1-2.829-4.372 3.678 3.678 0 0 1 4.357-2.838 3.69 3.69 0 0 1 2.83 4.37 3.677 3.677 0 0 1-4.358 2.84ZM163.492 4.2h-14.824l-.237 1.015c1.314.055 3.898.088 4.604 1.068.416.577.468 1.264.321 2.275-.118.81-3.574 15.947-5.287 23.554-.272.98-.711 2.583-.987 3.147-.906 1.852-4.264 1.558-6.06 1.74l-.254 1.097h29.346l2.516-8.288-.864-.192c-1.672 3.15-4.204 5.658-8.272 6.71-2.736.63-10.592.771-11.748.068-.771-.468-.262-2.075-.095-2.832 1.574-6.969 4.311-18.621 4.916-21.6.471-2.162.89-4.623 1.863-5.691.774-.85 3.504-.91 4.781-1.005l.281-1.066Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M180.554 3.929h-2.281l-.703 1.809c-1.22-.444-3.236-.87-5.891.466-2.887 1.453-5.914 3.907-8.652 8.149-2.914 4.516-3.628 9.45-1.784 10.925 1.598 1.278 4.082.566 6.057-1.022 2.528-2.033 4.776-4.463 6.474-7.234-.748 1.988-1.67 4.844-2.008 6.06-.245.882-.478 1.716-.073 2.201.522.626 1.619.461 2.823-.242 1.204-.703 2.601-1.957 3.679-3.205a29.68 29.68 0 0 0 1.842-2.371l-.587-.551c-.403.539-1.392 1.673-2.365 2.62a25.992 25.992 0 0 1-2.452 2.086c-.166-.12-.307-.272-.1-.995l.389-1.287c1.319-4.043 5.632-17.41 5.632-17.41Zm-16.573 19.336c1.616 1.127 5.497-1.64 8.668-6.178 3.171-4.54 4.432-9.132 2.817-10.259-1.616-1.126-5.497 1.64-8.668 6.179-3.172 4.538-4.433 9.131-2.817 10.258Zm19.848-19.18h5.91l-7.175 23.354c1.778-3.015 5.362-8.976 9.55-10.732 2.381-.998 4.586-.364 5.119 2.187.548 2.616-.974 8.691-6.147 14.615-5.175 5.925-9.356 6.067-11.334 4.813-1.8-1.14-1.813-3.471-1.262-5.598 2.496-9.642 5.041-16.814 7.789-25.159.133-.394.347-1.32.139-1.868-.26-.686-1.333-.785-1.741-.816-.356-.026-.565-.03-1.071-.047l.223-.749Zm-2.313 33.18c1.64 1.096 5.795-2.233 9.279-7.437 3.484-5.203 4.979-10.31 3.338-11.406-1.641-1.097-5.795 2.232-9.279 7.436-3.485 5.203-4.979 10.31-3.338 11.406Z\" fill=\"#fff\"/><path d=\"M199.545 24.048c-.131-2.868.933-5.634 3.09-7.003.491-.291 1.588-.973 3.381-.903 1.471.058 2.6.82 3.09 2.17.39 1.075-.261 2.009-1.414 2.184-1.091.165-1.98-.761-2.463-1.413-.462-.623-1.656-.962-2.712-.23-1.088.752-.683 2.516-.29 4.089.394 1.572 2.696 6.435 3.017 8.415.321 1.98-.146 3.989-2.346 5.882-2.201 1.892-5.307 2.119-6.85 1.223-1.733-1.006-2.603-3.49-.763-4.173 1.984-.737 2.843 1.934 3.371 2.557.373.439 1.36.992 2.962-.147 1.867-1.328.624-4.847.114-5.954-.511-1.106-2.055-3.829-2.187-6.697Zm2.37-19.832c.029-.075.141-.051.136.029l-.144 2.482a3.082 3.082 0 0 0 1.991 3.063l2.329.878c.075.029.051.14-.029.136l-2.485-.144a3.085 3.085 0 0 0-3.066 1.989l-.879 2.326c-.029.075-.141.052-.136-.029l.144-2.482a3.082 3.082 0 0 0-1.991-3.063l-2.329-.878c-.075-.028-.051-.14.029-.136l2.485.145a3.085 3.085 0 0 0 3.066-1.99l.879-2.326Zm5.565-.122c.011-.03.057-.021.055.011l-.068 1.164c-.031.547.296 1.05.809 1.244l1.092.412c.03.011.02.057-.012.055l-1.165-.068a1.253 1.253 0 0 0-1.245.808l-.412 1.09c-.012.031-.057.021-.055-.011l.067-1.164a1.25 1.25 0 0 0-.808-1.244l-1.092-.411c-.03-.012-.021-.057.012-.055l1.165.067a1.254 1.254 0 0 0 1.245-.808l.412-1.09Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.482 31.992v-10.93c0-2.534-.776-4.39-1.926-5.64-1.152-1.252-2.694-1.912-4.257-2.027-1.795-.132-3.277.295-4.548 1.428l-.413.368V4.916l-4.206.818-.01 26.258h4.216V20.655c0-.978.364-1.951 1.105-2.623a3.505 3.505 0 0 1 2.71-.892c1.826.176 3.17 1.626 3.17 3.617v11.235h4.159Zm47.825-20.57V9.457h-4.124v26.538l4.124-.802v-9.916l.415.38c1.43 1.306 3.245 2.086 5.227 2.086 4.572 0 8.322-4.178 8.322-9.394S73.52 8.96 68.949 8.96c-1.978 0-3.794.78-5.227 2.083l-.415.378ZM42.6 29.609l.415.378c1.433 1.303 3.245 2.08 5.224 2.08 4.573 0 8.325-4.172 8.325-9.385s-3.753-9.39-8.325-9.39c-1.975 0-3.79.776-5.223 2.082l-.416.379v-1.965h-4.124v26.231l4.124-.801v-9.609Zm41.5-13.835v-2.07h-4.204l-.011 18.267 4.215-.82V20.654c0-.977.364-1.95 1.105-2.622a3.505 3.505 0 0 1 2.71-.892c1.825.176 3.169 1.599 3.169 3.617v9.037l4.16-.809v-7.922c0-2.791-.757-4.633-1.872-5.804-1.116-1.173-2.621-1.706-4.178-1.821-.89-.066-1.83.126-2.664.471-.836.346-1.549.84-1.994 1.358l-.436.508Zm-10.84 2.578c-.003 3.069-2.22 5.611-5.018 5.611-2.799 0-5.02-2.542-5.02-5.611 0-3.07 2.221-5.608 5.02-5.608 2.798 0 5.019 2.542 5.019 5.608Zm-25.724 9.939c-2.798 0-5.019-2.543-5.019-5.609 0-3.072 2.22-5.611 5.019-5.611 2.795 0 5.019 2.542 5.019 5.611 0 3.066-2.224 5.609-5.019 5.609ZM26.955 13.47c-4.929 0-8.95 4.201-8.95 9.407 0 5.209 4.021 9.407 8.95 9.407 4.933 0 8.95-4.201 8.95-9.407s-4.017-9.407-8.95-9.407Zm-.001 15.062c-2.764 0-4.944-2.571-4.944-5.657 0-3.085 2.183-5.653 4.944-5.653 2.763 0 4.946 2.565 4.946 5.654 0 3.088-2.183 5.656-4.946 5.656Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6fo8y.framer-1gp1r2u, .framer-6fo8y .framer-1gp1r2u { display: block; }\",\".framer-6fo8y.framer-ltwfze { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 41px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 214px; }\",\".framer-6fo8y .framer-1tpgxns { aspect-ratio: 5.121951219512195 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 215px; }\",\".framer-6fo8y .framer-q88icv { aspect-ratio: 5.121951219512195 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 214px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6fo8y.framer-ltwfze { gap: 0px; } .framer-6fo8y.framer-ltwfze > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6fo8y.framer-ltwfze > :first-child { margin-left: 0px; } .framer-6fo8y.framer-ltwfze > :last-child { margin-right: 0px; } }\",\".framer-6fo8y.framer-v-l8tgkl.framer-ltwfze { aspect-ratio: 5.219512195121951 / 1; height: var(--framer-aspect-ratio-supported, 42px); }\",\".framer-6fo8y.framer-v-1blb7nw.framer-ltwfze, .framer-6fo8y.framer-v-50t6m0.framer-ltwfze { aspect-ratio: 5.219512195121951 / 1; height: var(--framer-aspect-ratio-supported, 36px); width: 183px; }\",\".framer-6fo8y.framer-v-1blb7nw .framer-1tpgxns, .framer-6fo8y.framer-v-50t6m0 .framer-q88icv { height: var(--framer-aspect-ratio-supported, 36px); width: 183px; }\",\".framer-6fo8y.framer-v-ltwfze.hover.framer-ltwfze { aspect-ratio: 5.219512195121951 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 225px; }\",\".framer-6fo8y.framer-v-ltwfze.hover .framer-1tpgxns, .framer-6fo8y.framer-v-l8tgkl.hover.framer-ltwfze, .framer-6fo8y.framer-v-l8tgkl.hover .framer-q88icv { height: var(--framer-aspect-ratio-supported, 44px); width: 225px; }\",\".framer-6fo8y.framer-v-ltwfze.pressed.framer-ltwfze { aspect-ratio: 5.219512195121951 / 1; height: var(--framer-aspect-ratio-supported, 43px); width: 220px; }\",\".framer-6fo8y.framer-v-ltwfze.pressed .framer-1tpgxns, .framer-6fo8y.framer-v-l8tgkl.pressed.framer-ltwfze, .framer-6fo8y.framer-v-l8tgkl.pressed .framer-q88icv { height: var(--framer-aspect-ratio-supported, 43px); width: 220px; }\",\".framer-6fo8y.framer-v-1blb7nw.hover.framer-ltwfze, .framer-6fo8y.framer-v-1blb7nw.hover .framer-1tpgxns, .framer-6fo8y.framer-v-50t6m0.hover.framer-ltwfze, .framer-6fo8y.framer-v-50t6m0.hover .framer-q88icv { height: var(--framer-aspect-ratio-supported, 37px); width: 188px; }\",\".framer-6fo8y.framer-v-1blb7nw.pressed.framer-ltwfze, .framer-6fo8y.framer-v-1blb7nw.pressed .framer-1tpgxns, .framer-6fo8y.framer-v-50t6m0.pressed .framer-q88icv { height: var(--framer-aspect-ratio-supported, 35px); width: 178px; }\",\".framer-6fo8y.framer-v-50t6m0.pressed.framer-ltwfze { height: var(--framer-aspect-ratio-supported, 35px); width: 177px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 214\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yCFbb40jD\":{\"layout\":[\"fixed\",\"fixed\"]},\"M60jPb8HT\":{\"layout\":[\"fixed\",\"fixed\"]},\"u3Yrdl_zE\":{\"layout\":[\"fixed\",\"fixed\"]},\"L4Qyajf54\":{\"layout\":[\"fixed\",\"fixed\"]},\"RvZG3WIEJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"W5l5obomT\":{\"layout\":[\"fixed\",\"fixed\"]},\"EfPTeKhNa\":{\"layout\":[\"fixed\",\"fixed\"]},\"RUvgAmUGc\":{\"layout\":[\"fixed\",\"fixed\"]},\"YUiYZ2Xuu\":{\"layout\":[\"fixed\",\"fixed\"]},\"Oc6DdIeyr\":{\"layout\":[\"fixed\",\"fixed\"]},\"lPo3sQV7V\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"HIzE7tWAQ\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameruof3jsTWD=withCSS(Component,css,\"framer-6fo8y\");export default Frameruof3jsTWD;Frameruof3jsTWD.displayName=\"Hoppn Labs Logo\";Frameruof3jsTWD.defaultProps={height:42,width:214};addPropertyControls(Frameruof3jsTWD,{variant:{options:[\"pXJ9eF3Vb\",\"yCFbb40jD\",\"M60jPb8HT\",\"u3Yrdl_zE\"],optionTitles:[\"Variant 1\",\"Variant 2 - white\",\"Mobile size logo\",\"Mobile white logo - white\"],title:\"Variant\",type:ControlType.Enum},HIzE7tWAQ:{title:\"Link\",type:ControlType.Link}});addFonts(Frameruof3jsTWD,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameruof3jsTWD\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"42\",\"framerIntrinsicWidth\":\"214\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yCFbb40jD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M60jPb8HT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u3Yrdl_zE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L4Qyajf54\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RvZG3WIEJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W5l5obomT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EfPTeKhNa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RUvgAmUGc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YUiYZ2Xuu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Oc6DdIeyr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lPo3sQV7V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"HIzE7tWAQ\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uof3jsTWD.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={sCTz0O2O6:{hover:true,pressed:true},uoSnImBzL:{hover:true,pressed:true}};const cycleOrder=[\"sCTz0O2O6\",\"uoSnImBzL\"];const serializationHash=\"framer-ObiwZ\";const variantClassNames={sCTz0O2O6:\"framer-v-1ijvgc0\",uoSnImBzL:\"framer-v-1j7sa6q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:20,delay:0,mass:1,stiffness:600,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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={\"Variant 1\":\"sCTz0O2O6\",\"Variant 2\":\"uoSnImBzL\"};const getProps=({height,id,link,newTab,title,width,...props})=>{return{...props,beZQ_fk9S:title??props.beZQ_fk9S??\"Nav button\",NQxJOp_W4:newTab??props.NQxJOp_W4,OLuCgoMR7:link??props.OLuCgoMR7,variant:humanReadableVariantMap[props.variant]??props.variant??\"sCTz0O2O6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,beZQ_fk9S,OLuCgoMR7,NQxJOp_W4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sCTz0O2O6\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:OLuCgoMR7,motionChild:true,nodeId:\"sCTz0O2O6\",openInNewTab:NQxJOp_W4,scopeId:\"ZruSrEnWi\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1ijvgc0\",className,classNames)} framer-1w729h6`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"sCTz0O2O6\",ref:refBinding,style:{...style},...addPropertyOverrides({\"sCTz0O2O6-hover\":{\"data-framer-name\":undefined},\"sCTz0O2O6-pressed\":{\"data-framer-name\":undefined},\"uoSnImBzL-hover\":{\"data-framer-name\":undefined},\"uoSnImBzL-pressed\":{\"data-framer-name\":undefined},uoSnImBzL:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0))\"},children:\"Nav button\"})}),className:\"framer-1u9lxd2\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"mEJkFmRtQ\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0)\"},text:beZQ_fk9S,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\"},children:\"Nav button\"})}),className:\"framer-s9cq0m\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"XBzYi2Qrc\",style:{opacity:1},text:beZQ_fk9S,transformTemplate:transformTemplate1,variants:{\"sCTz0O2O6-hover\":{\"--extracted-r6o4lv\":\"rgb(47, 164, 230)\",opacity:1},\"sCTz0O2O6-pressed\":{\"--extracted-r6o4lv\":\"rgb(0, 162, 255)\",opacity:1},\"uoSnImBzL-hover\":{\"--extracted-r6o4lv\":\"rgb(120, 255, 183)\"},\"uoSnImBzL-pressed\":{\"--extracted-r6o4lv\":\"rgb(77, 255, 160)\"},uoSnImBzL:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.9}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"sCTz0O2O6-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(47, 164, 230))\"},children:\"Nav button\"})})},\"sCTz0O2O6-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 162, 255))\"},children:\"Nav button\"})})},\"uoSnImBzL-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(120, 255, 183))\"},children:\"Nav button\"})})},\"uoSnImBzL-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(77, 255, 160))\"},children:\"Nav button\"})})},uoSnImBzL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Nav button\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ObiwZ.framer-1w729h6, .framer-ObiwZ .framer-1w729h6 { display: block; }\",\".framer-ObiwZ.framer-1ijvgc0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 37.5px 20px 37.5px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ObiwZ .framer-1u9lxd2 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-ObiwZ .framer-s9cq0m { -webkit-user-select: none; flex: none; height: auto; left: 50%; mix-blend-mode: multiply; position: absolute; top: 50%; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ObiwZ.framer-1ijvgc0 { gap: 0px; } .framer-ObiwZ.framer-1ijvgc0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ObiwZ.framer-1ijvgc0 > :first-child { margin-left: 0px; } .framer-ObiwZ.framer-1ijvgc0 > :last-child { margin-right: 0px; } }\",\".framer-ObiwZ.framer-v-1j7sa6q .framer-s9cq0m, .framer-ObiwZ.framer-v-1j7sa6q.hover .framer-s9cq0m, .framer-ObiwZ.framer-v-1j7sa6q.pressed .framer-s9cq0m { mix-blend-mode: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 196\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"uoSnImBzL\":{\"layout\":[\"auto\",\"auto\"]},\"pgJitBLzd\":{\"layout\":[\"auto\",\"auto\"]},\"MLSe5PAGf\":{\"layout\":[\"auto\",\"auto\"]},\"XSB9wh0JP\":{\"layout\":[\"auto\",\"auto\"]},\"JPI4TlC7E\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"beZQ_fk9S\":\"title\",\"OLuCgoMR7\":\"link\",\"NQxJOp_W4\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZruSrEnWi=withCSS(Component,css,\"framer-ObiwZ\");export default FramerZruSrEnWi;FramerZruSrEnWi.displayName=\"Nav button\";FramerZruSrEnWi.defaultProps={height:84,width:196};addPropertyControls(FramerZruSrEnWi,{variant:{options:[\"sCTz0O2O6\",\"uoSnImBzL\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},beZQ_fk9S:{defaultValue:\"Nav button\",displayTextArea:false,title:\"Title\",type:ControlType.String},OLuCgoMR7:{title:\"Link\",type:ControlType.Link},NQxJOp_W4:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerZruSrEnWi,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZruSrEnWi\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"84\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uoSnImBzL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pgJitBLzd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MLSe5PAGf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XSB9wh0JP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JPI4TlC7E\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"beZQ_fk9S\\\":\\\"title\\\",\\\"OLuCgoMR7\\\":\\\"link\\\",\\\"NQxJOp_W4\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"196\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZruSrEnWi.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HeaderButtonsMobile from\"https://framerusercontent.com/modules/7kGJkRfnogFuwU63jV5K/TibPU4tpYHOaLJ0SpAFF/dwiGaj1Pl.js\";import HoppnLabsLogo from\"https://framerusercontent.com/modules/EE8Emfnr3UQAZLdKlDzM/oxBipgI7bXNdD8oCblLS/uof3jsTWD.js\";import NavButton from\"https://framerusercontent.com/modules/sTuHCt32pT6Qugblapjk/V3yuTNRqvmItuMdbID1B/ZruSrEnWi.js\";const HoppnLabsLogoFonts=getFonts(HoppnLabsLogo);const NavButtonFonts=getFonts(NavButton);const HeaderButtonsMobileFonts=getFonts(HeaderButtonsMobile);const cycleOrder=[\"CSFENSQzS\",\"HLYpW9Kyi\",\"YDDjz7wuV\",\"vP_WcB4eK\",\"lPRAeTH7l\",\"wfzAtNf1J\",\"RqDfOXH3t\",\"gkaFw94H4\",\"gX7hDk27Z\",\"vBZXk1IzR\"];const serializationHash=\"framer-sU8qI\";const variantClassNames={CSFENSQzS:\"framer-v-cwql00\",gkaFw94H4:\"framer-v-1xzjcfh\",gX7hDk27Z:\"framer-v-8eylp6\",HLYpW9Kyi:\"framer-v-1ck1bdh\",lPRAeTH7l:\"framer-v-1vx7yu4\",RqDfOXH3t:\"framer-v-1q4s3v\",vBZXk1IzR:\"framer-v-1hjso7b\",vP_WcB4eK:\"framer-v-ukncd1\",wfzAtNf1J:\"framer-v-xs8mum\",YDDjz7wuV:\"framer-v-8r22rm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 Dark mode\":\"vP_WcB4eK\",\"Phone Dark mode Open\":\"gkaFw94H4\",\"Phone Dark mode\":\"RqDfOXH3t\",\"Phone Open\":\"YDDjz7wuV\",\"Tablet Dark mode\":\"gX7hDk27Z\",\"Tablet open Dark mode\":\"vBZXk1IzR\",\"Tablet open\":\"wfzAtNf1J\",Desktop:\"CSFENSQzS\",Phone:\"HLYpW9Kyi\",Tablet:\"lPRAeTH7l\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"CSFENSQzS\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CSFENSQzS\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sde2vj=activeVariantCallback(async(...args)=>{setVariant(\"YDDjz7wuV\");});const onTap106n9hw=activeVariantCallback(async(...args)=>{setVariant(\"HLYpW9Kyi\");});const onTap13ooo4j=activeVariantCallback(async(...args)=>{setVariant(\"wfzAtNf1J\");});const onTap3kp5ui=activeVariantCallback(async(...args)=>{setVariant(\"lPRAeTH7l\");});const onTapg0dsxm=activeVariantCallback(async(...args)=>{setVariant(\"gkaFw94H4\");});const onTap1jemao6=activeVariantCallback(async(...args)=>{setVariant(\"RqDfOXH3t\");});const onTap1d86f7j=activeVariantCallback(async(...args)=>{setVariant(\"vBZXk1IzR\");});const onTap1e2esom=activeVariantCallback(async(...args)=>{setVariant(\"gX7hDk27Z\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"YDDjz7wuV\",\"gkaFw94H4\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed1=()=>{if([\"YDDjz7wuV\",\"gkaFw94H4\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"HLYpW9Kyi\",\"YDDjz7wuV\",\"lPRAeTH7l\",\"wfzAtNf1J\",\"RqDfOXH3t\",\"gkaFw94H4\",\"gX7hDk27Z\",\"vBZXk1IzR\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"YDDjz7wuV\",\"lPRAeTH7l\",\"wfzAtNf1J\",\"gkaFw94H4\",\"gX7hDk27Z\",\"vBZXk1IzR\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"YDDjz7wuV\",\"wfzAtNf1J\",\"gkaFw94H4\",\"vBZXk1IzR\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"gkaFw94H4\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"vBZXk1IzR\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"YDDjz7wuV\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"wfzAtNf1J\")return true;return false;};const isDisplayed9=()=>{if([\"YDDjz7wuV\",\"wfzAtNf1J\",\"gkaFw94H4\",\"vBZXk1IzR\"].includes(baseVariant))return false;return true;};const isDisplayed10=()=>{if([\"YDDjz7wuV\",\"wfzAtNf1J\"].includes(baseVariant))return false;return true;};const isDisplayed11=()=>{if([\"gkaFw94H4\",\"vBZXk1IzR\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-cwql00\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"CSFENSQzS\",ref:refBinding,style:{backdropFilter:\"blur(20px)\",backgroundColor:\"rgba(255, 255, 255, 0.7)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,boxShadow:\"0px 2px 0px 0px rgb(255, 255, 255), 0px 2px 10px 0px rgba(0, 12, 31, 0.1)\",filter:\"saturate(1)\",WebkitBackdropFilter:\"blur(20px)\",WebkitFilter:\"saturate(1)\",...style},variants:{gkaFw94H4:{backgroundColor:\"rgba(32, 32, 36, 0.6)\",boxShadow:\"0px 2px 0px 0px rgba(201, 244, 255, 0.2), 0px 2px 10px 0px rgba(0, 12, 31, 0.1)\"},gX7hDk27Z:{backgroundColor:\"rgba(32, 32, 36, 0.6)\",boxShadow:\"0px 2px 0px 0px rgba(201, 244, 255, 0.2), 0px 2px 10px 0px rgba(0, 12, 31, 0.1)\"},RqDfOXH3t:{backgroundColor:\"rgba(32, 32, 36, 0.6)\",boxShadow:\"0px 2px 0px 0px rgba(201, 244, 255, 0.2), 0px 2px 10px 0px rgba(0, 12, 31, 0.1)\"},vBZXk1IzR:{backgroundColor:\"rgba(32, 32, 36, 0.6)\",boxShadow:\"0px 2px 0px 0px rgba(201, 244, 255, 0.2), 0px 2px 10px 0px rgba(0, 12, 31, 0.1)\"},vP_WcB4eK:{backgroundColor:\"rgba(32, 32, 36, 0.6)\",boxShadow:\"0px 2px 0px 0px rgba(201, 244, 255, 0.2), 0px 2px 10px 0px rgba(0, 12, 31, 0.1)\"}},...addPropertyOverrides({gkaFw94H4:{\"data-framer-name\":\"Phone Dark mode Open\"},gX7hDk27Z:{\"data-framer-name\":\"Tablet Dark mode\"},HLYpW9Kyi:{\"data-framer-name\":\"Phone\"},lPRAeTH7l:{\"data-framer-name\":\"Tablet\"},RqDfOXH3t:{\"data-framer-name\":\"Phone Dark mode\"},vBZXk1IzR:{\"data-framer-name\":\"Tablet open Dark mode\"},vP_WcB4eK:{\"data-framer-name\":\"Desktop Dark mode\"},wfzAtNf1J:{\"data-framer-name\":\"Tablet open\"},YDDjz7wuV:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lr3pxn\",layoutDependency:layoutDependency,layoutId:\"G1WzSSXC3\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fg3ig5\",layoutDependency:layoutDependency,layoutId:\"tE3E9WnXx\",children:isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({gkaFw94H4:{height:40,width:\"200px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+0+0)+0+12},YDDjz7wuV:{height:40,width:\"200px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+0+0)+0+12}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yk8a6l-container\",layoutDependency:layoutDependency,layoutId:\"PSuH6T2Hm-container\",nodeId:\"PSuH6T2Hm\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HoppnLabsLogo,{height:\"100%\",id:\"PSuH6T2Hm\",layoutId:\"PSuH6T2Hm\",style:{height:\"100%\",width:\"100%\"},variant:\"M60jPb8HT\",width:\"100%\",...addPropertyOverrides({gkaFw94H4:{HIzE7tWAQ:resolvedLinks[1],variant:\"u3Yrdl_zE\"},YDDjz7wuV:{HIzE7tWAQ:resolvedLinks[0]}},baseVariant,gestureVariant)})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ypv6me\",layoutDependency:layoutDependency,layoutId:\"DAa0odugT\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gprjq5\",layoutDependency:layoutDependency,layoutId:\"m8NBzOoKP\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"230px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-((componentViewport?.height||80)-0)*1)/2)+(0+(((componentViewport?.height||80)-0)*1-0-40)/2)+0+0,...addPropertyOverrides({gX7hDk27Z:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-((componentViewport?.height||80)-0)*1)/2)+(0+(((componentViewport?.height||80)-0)*1-0-(((componentViewport?.height||80)-0)*1-0)*1)/2)+(10+((((componentViewport?.height||80)-0)*1-0)*1-20-40)/2)+0},HLYpW9Kyi:{width:\"200px\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||64)-0-144)/1*0)+0+12+0},lPRAeTH7l:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-((componentViewport?.height||80)-0)*1)/2)+(0+(((componentViewport?.height||80)-0)*1-0-(((componentViewport?.height||80)-0)*1-0)*1)/2)+(10+((((componentViewport?.height||80)-0)*1-0)*1-20-40)/2)+0},RqDfOXH3t:{width:\"200px\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||64)-0-144)/1*0)+2+10+0},vBZXk1IzR:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+0+0)+0+20+0},wfzAtNf1J:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+0+0)+0+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-61z06v-container\",layoutDependency:layoutDependency,layoutId:\"Bh6UGWbJu-container\",nodeId:\"Bh6UGWbJu\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",style:{opacity:1},variants:{gX7hDk27Z:{opacity:1},lPRAeTH7l:{opacity:1},RqDfOXH3t:{opacity:1},vBZXk1IzR:{opacity:1},vP_WcB4eK:{opacity:.9},wfzAtNf1J:{opacity:1}},children:/*#__PURE__*/_jsx(HoppnLabsLogo,{height:\"100%\",HIzE7tWAQ:resolvedLinks1[0],id:\"Bh6UGWbJu\",layoutId:\"Bh6UGWbJu\",style:{height:\"100%\",width:\"100%\"},variant:\"pXJ9eF3Vb\",width:\"100%\",...addPropertyOverrides({gX7hDk27Z:{HIzE7tWAQ:resolvedLinks1[6],variant:\"yCFbb40jD\"},HLYpW9Kyi:{HIzE7tWAQ:resolvedLinks1[1],variant:\"M60jPb8HT\"},lPRAeTH7l:{HIzE7tWAQ:resolvedLinks1[3]},RqDfOXH3t:{HIzE7tWAQ:resolvedLinks1[5],variant:\"u3Yrdl_zE\"},vBZXk1IzR:{HIzE7tWAQ:resolvedLinks1[7],variant:\"yCFbb40jD\"},vP_WcB4eK:{HIzE7tWAQ:resolvedLinks1[2],variant:\"yCFbb40jD\"},wfzAtNf1J:{HIzE7tWAQ:resolvedLinks1[4]}},baseVariant,gestureVariant)})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hp4cx9\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"zkDd9k1SG\",...addPropertyOverrides({gkaFw94H4:{\"data-highlight\":true,onTap:onTap1jemao6},gX7hDk27Z:{\"data-highlight\":true,onTap:onTap1d86f7j},HLYpW9Kyi:{\"data-highlight\":true,onTap:onTap1sde2vj},lPRAeTH7l:{\"data-highlight\":true,onTap:onTap13ooo4j},RqDfOXH3t:{\"data-highlight\":true,onTap:onTapg0dsxm},vBZXk1IzR:{\"data-highlight\":true,onTap:onTap1e2esom},wfzAtNf1J:{\"data-highlight\":true,onTap:onTap3kp5ui},YDDjz7wuV:{\"data-highlight\":true,onTap:onTap106n9hw}},baseVariant,gestureVariant),children:isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6mvlge\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"nhaWz4fLm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10t8g5d\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"Jy70V_Kpb\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{gkaFw94H4:{backgroundColor:\"rgb(255, 255, 255)\",rotate:-45},gX7hDk27Z:{backgroundColor:\"var(--token-7036598e-57ff-4847-929c-dfec1756e879, rgb(255, 255, 255))\",rotate:0},lPRAeTH7l:{rotate:0},RqDfOXH3t:{backgroundColor:\"rgb(255, 255, 255)\",rotate:0},vBZXk1IzR:{backgroundColor:\"var(--token-7036598e-57ff-4847-929c-dfec1756e879, rgb(255, 255, 255))\",rotate:-45},wfzAtNf1J:{rotate:-45},YDDjz7wuV:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-buq4u8\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"cfB5lAh_W\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{gkaFw94H4:{backgroundColor:\"rgb(255, 255, 255)\",rotate:45},gX7hDk27Z:{backgroundColor:\"var(--token-7036598e-57ff-4847-929c-dfec1756e879, rgb(255, 255, 255))\",rotate:0},lPRAeTH7l:{rotate:0},RqDfOXH3t:{backgroundColor:\"rgb(255, 255, 255)\",rotate:0},vBZXk1IzR:{backgroundColor:\"var(--token-7036598e-57ff-4847-929c-dfec1756e879, rgb(255, 255, 255))\",rotate:45},wfzAtNf1J:{rotate:45},YDDjz7wuV:{rotate:45}}})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rguscd\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"HbDGIK5uO\",style:{opacity:1},variants:{HLYpW9Kyi:{opacity:0},RqDfOXH3t:{opacity:0},vP_WcB4eK:{opacity:1}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-80)/2)+-2,...addPropertyOverrides({HLYpW9Kyi:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+0},RqDfOXH3t:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dag8fj-container\",layoutDependency:layoutDependency,layoutId:\"kRoex8NSZ-container\",nodeId:\"kRoex8NSZ\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(NavButton,{beZQ_fk9S:\"Install\",height:\"100%\",id:\"kRoex8NSZ\",layoutId:\"kRoex8NSZ\",NQxJOp_W4:true,OLuCgoMR7:\"https://apps.shopify.com/infinite-color-search-by-hoppn\",variant:\"sCTz0O2O6\",width:\"100%\",...addPropertyOverrides({vP_WcB4eK:{variant:\"uoSnImBzL\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined},{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined},{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined},{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-80)/2)+-2,...addPropertyOverrides({HLYpW9Kyi:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+84},RqDfOXH3t:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+84}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yc5f3f-container\",layoutDependency:layoutDependency,layoutId:\"VcYn6ThJw-container\",nodeId:\"VcYn6ThJw\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(NavButton,{beZQ_fk9S:\"Pricing\",height:\"100%\",id:\"VcYn6ThJw\",layoutId:\"VcYn6ThJw\",NQxJOp_W4:false,OLuCgoMR7:resolvedLinks2[0],variant:\"sCTz0O2O6\",width:\"100%\",...addPropertyOverrides({HLYpW9Kyi:{OLuCgoMR7:resolvedLinks2[1]},RqDfOXH3t:{OLuCgoMR7:resolvedLinks2[3]},vP_WcB4eK:{OLuCgoMR7:resolvedLinks2[2],variant:\"uoSnImBzL\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-80)/2)+-2,...addPropertyOverrides({HLYpW9Kyi:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+168},RqDfOXH3t:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+168}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16bkluh-container\",layoutDependency:layoutDependency,layoutId:\"RDl_6OcET-container\",nodeId:\"RDl_6OcET\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(NavButton,{beZQ_fk9S:\"Blog\",height:\"100%\",id:\"RDl_6OcET\",layoutId:\"RDl_6OcET\",NQxJOp_W4:false,OLuCgoMR7:resolvedLinks3[0],variant:\"sCTz0O2O6\",width:\"100%\",...addPropertyOverrides({HLYpW9Kyi:{OLuCgoMR7:resolvedLinks3[1]},RqDfOXH3t:{OLuCgoMR7:resolvedLinks3[3]},vP_WcB4eK:{OLuCgoMR7:resolvedLinks3[2],variant:\"uoSnImBzL\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined},{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined},{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined},{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-80)/2)+-2,...addPropertyOverrides({HLYpW9Kyi:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+252},RqDfOXH3t:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+252}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15tpb8p-container\",layoutDependency:layoutDependency,layoutId:\"EmRYJskTS-container\",nodeId:\"EmRYJskTS\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(NavButton,{beZQ_fk9S:\"Tools\",height:\"100%\",id:\"EmRYJskTS\",layoutId:\"EmRYJskTS\",NQxJOp_W4:false,OLuCgoMR7:resolvedLinks4[0],variant:\"sCTz0O2O6\",width:\"100%\",...addPropertyOverrides({HLYpW9Kyi:{OLuCgoMR7:resolvedLinks4[1]},RqDfOXH3t:{OLuCgoMR7:resolvedLinks4[3]},vP_WcB4eK:{OLuCgoMR7:resolvedLinks4[2],variant:\"uoSnImBzL\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mHjLrO_rq\"},implicitPathVariables:undefined},{href:{webPageId:\"mHjLrO_rq\"},implicitPathVariables:undefined},{href:{webPageId:\"mHjLrO_rq\"},implicitPathVariables:undefined},{href:{webPageId:\"mHjLrO_rq\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-80)/2)+-2,...addPropertyOverrides({HLYpW9Kyi:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+336},RqDfOXH3t:{y:(componentViewport?.y||0)+0+(0+64+((componentViewport?.height||64)-0-144)/1*1)+20+336}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hlzczw-container\",layoutDependency:layoutDependency,layoutId:\"tlKqWC2Ac-container\",nodeId:\"tlKqWC2Ac\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(NavButton,{beZQ_fk9S:\"About\",height:\"100%\",id:\"tlKqWC2Ac\",layoutId:\"tlKqWC2Ac\",NQxJOp_W4:false,OLuCgoMR7:resolvedLinks5[0],variant:\"sCTz0O2O6\",width:\"100%\",...addPropertyOverrides({HLYpW9Kyi:{OLuCgoMR7:resolvedLinks5[1]},RqDfOXH3t:{OLuCgoMR7:resolvedLinks5[3]},vP_WcB4eK:{OLuCgoMR7:resolvedLinks5[2],variant:\"uoSnImBzL\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-63fgt7\",\"data-framer-name\":\"Mobile links\",layoutDependency:layoutDependency,layoutId:\"iV_4QWR3f\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hudd2f\",\"data-framer-name\":\"Social icons\",layoutDependency:layoutDependency,layoutId:\"MCfixAyo1\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XqNPS83GR\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({gkaFw94H4:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+0},vBZXk1IzR:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+0},wfzAtNf1J:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+0},YDDjz7wuV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7hyj6p-container\",layoutDependency:layoutDependency,layoutId:\"BoPUMSjk4-container\",nodeId:\"BoPUMSjk4\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Code\",height:\"100%\",id:\"BoPUMSjk4\",layoutId:\"BoPUMSjk4\",q9cmatb21:resolvedLinks6[0],variant:\"xFIUwfiR_\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({gkaFw94H4:{aEqJJNIwn:\"Install\",q9cmatb21:\"https://apps.shopify.com/infinite-color-search-by-hoppn\",variant:\"kMvKBCKcx\",VgDxzRfPm:true},vBZXk1IzR:{aEqJJNIwn:\"Install\",q9cmatb21:\"https://apps.shopify.com/infinite-color-search-by-hoppn\",variant:\"kMvKBCKcx\",VgDxzRfPm:true},wfzAtNf1J:{aEqJJNIwn:\"Install\",q9cmatb21:\"https://apps.shopify.com/infinite-color-search-by-hoppn\",VgDxzRfPm:true},YDDjz7wuV:{aEqJJNIwn:\"Install\",q9cmatb21:\"https://apps.shopify.com/infinite-color-search-by-hoppn\",VgDxzRfPm:true}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined},{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({gkaFw94H4:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+70}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1au8brv-container\",layoutDependency:layoutDependency,layoutId:\"oEzporLeb-container\",nodeId:\"oEzporLeb\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Pricing\",height:\"100%\",id:\"oEzporLeb\",layoutId:\"oEzporLeb\",q9cmatb21:resolvedLinks7[0],variant:\"kMvKBCKcx\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({gkaFw94H4:{q9cmatb21:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined},{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({vBZXk1IzR:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+70}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11ccah5-container\",layoutDependency:layoutDependency,layoutId:\"BTH0Xyrqv-container\",nodeId:\"BTH0Xyrqv\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Pricing\",height:\"100%\",id:\"BTH0Xyrqv\",layoutId:\"BTH0Xyrqv\",q9cmatb21:resolvedLinks8[0],variant:\"kMvKBCKcx\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({vBZXk1IzR:{q9cmatb21:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined},{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({YDDjz7wuV:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+70}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a9zbt0-container\",layoutDependency:layoutDependency,layoutId:\"QyuTAFVCu-container\",nodeId:\"QyuTAFVCu\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Pricing\",height:\"100%\",id:\"QyuTAFVCu\",layoutId:\"QyuTAFVCu\",q9cmatb21:resolvedLinks9[0],variant:\"xFIUwfiR_\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({YDDjz7wuV:{q9cmatb21:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})}),isDisplayed8()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined},{href:{webPageId:\"jqdkewj1D\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({wfzAtNf1J:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+70}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18cbbxe-container\",layoutDependency:layoutDependency,layoutId:\"VuTNZb8yc-container\",nodeId:\"VuTNZb8yc\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Pricing\",height:\"100%\",id:\"VuTNZb8yc\",layoutId:\"VuTNZb8yc\",q9cmatb21:resolvedLinks10[0],variant:\"xFIUwfiR_\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({wfzAtNf1J:{q9cmatb21:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({gkaFw94H4:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8o6uja-container\",layoutDependency:layoutDependency,layoutId:\"rQdnxDMUC-container\",nodeId:\"rQdnxDMUC\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Blog\",height:\"100%\",id:\"rQdnxDMUC\",layoutId:\"rQdnxDMUC\",q9cmatb21:resolvedLinks11[0],variant:\"kMvKBCKcx\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({gkaFw94H4:{q9cmatb21:resolvedLinks11[1]}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined},{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({gkaFw94H4:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-smq244-container\",layoutDependency:layoutDependency,layoutId:\"EA3iiMd3p-container\",nodeId:\"EA3iiMd3p\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Tools\",height:\"100%\",id:\"EA3iiMd3p\",layoutId:\"EA3iiMd3p\",q9cmatb21:resolvedLinks12[0],variant:\"kMvKBCKcx\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({gkaFw94H4:{q9cmatb21:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({vBZXk1IzR:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qdej6k-container\",layoutDependency:layoutDependency,layoutId:\"UIFW_rZx9-container\",nodeId:\"UIFW_rZx9\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Blog\",height:\"100%\",id:\"UIFW_rZx9\",layoutId:\"UIFW_rZx9\",q9cmatb21:resolvedLinks13[0],variant:\"kMvKBCKcx\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({vBZXk1IzR:{q9cmatb21:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined},{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({vBZXk1IzR:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19ytdxf-container\",layoutDependency:layoutDependency,layoutId:\"A6IJIcdEy-container\",nodeId:\"A6IJIcdEy\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Tools\",height:\"100%\",id:\"A6IJIcdEy\",layoutId:\"A6IJIcdEy\",q9cmatb21:resolvedLinks14[0],variant:\"kMvKBCKcx\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({vBZXk1IzR:{q9cmatb21:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({YDDjz7wuV:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d0aqe7-container\",layoutDependency:layoutDependency,layoutId:\"YDwkVa3fS-container\",nodeId:\"YDwkVa3fS\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Blog\",height:\"100%\",id:\"YDwkVa3fS\",layoutId:\"YDwkVa3fS\",q9cmatb21:resolvedLinks15[0],variant:\"xFIUwfiR_\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({YDDjz7wuV:{q9cmatb21:resolvedLinks15[1]}},baseVariant,gestureVariant)})})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined},{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({YDDjz7wuV:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ga4c1t-container\",layoutDependency:layoutDependency,layoutId:\"db8GC7evv-container\",nodeId:\"db8GC7evv\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Tools\",height:\"100%\",id:\"db8GC7evv\",layoutId:\"db8GC7evv\",q9cmatb21:resolvedLinks16[0],variant:\"xFIUwfiR_\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({YDDjz7wuV:{q9cmatb21:resolvedLinks16[1]}},baseVariant,gestureVariant)})})})}),isDisplayed8()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined},{href:{webPageId:\"tYNuwfqcP\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({wfzAtNf1J:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-120qx3q-container\",layoutDependency:layoutDependency,layoutId:\"UPEoJC5Rl-container\",nodeId:\"UPEoJC5Rl\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Blog\",height:\"100%\",id:\"UPEoJC5Rl\",layoutId:\"UPEoJC5Rl\",q9cmatb21:resolvedLinks17[0],variant:\"xFIUwfiR_\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({wfzAtNf1J:{q9cmatb21:resolvedLinks17[1]}},baseVariant,gestureVariant)})})})}),isDisplayed8()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined},{href:{webPageId:\"kyLBjzqNq\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({wfzAtNf1J:{height:50,y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-68efa7-container\",layoutDependency:layoutDependency,layoutId:\"hmvPEeah0-container\",nodeId:\"hmvPEeah0\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Tools\",height:\"100%\",id:\"hmvPEeah0\",layoutId:\"hmvPEeah0\",q9cmatb21:resolvedLinks18[0],variant:\"xFIUwfiR_\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({wfzAtNf1J:{q9cmatb21:resolvedLinks18[1]}},baseVariant,gestureVariant)})})})}),isDisplayed9()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HJBj1IRAm\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9vrabl-container\",layoutDependency:layoutDependency,layoutId:\"nfDW6Kd0o-container\",nodeId:\"nfDW6Kd0o\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"Pricing\",height:\"100%\",id:\"nfDW6Kd0o\",layoutId:\"nfDW6Kd0o\",q9cmatb21:resolvedLinks19[0],variant:\"xFIUwfiR_\",VgDxzRfPm:false,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mHjLrO_rq\"},implicitPathVariables:undefined},{href:{webPageId:\"mHjLrO_rq\"},implicitPathVariables:undefined},{href:{webPageId:\"mHjLrO_rq\"},implicitPathVariables:undefined},{href:{webPageId:\"mHjLrO_rq\"},implicitPathVariables:undefined},{href:{webPageId:\"mHjLrO_rq\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({gkaFw94H4:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+280},vBZXk1IzR:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+280},wfzAtNf1J:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+0+0+280},YDDjz7wuV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+0+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t1ybk2-container\",layoutDependency:layoutDependency,layoutId:\"lWt4uypjP-container\",nodeId:\"lWt4uypjP\",rendersWithMotion:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(HeaderButtonsMobile,{aEqJJNIwn:\"About\",height:\"100%\",id:\"lWt4uypjP\",layoutId:\"lWt4uypjP\",q9cmatb21:resolvedLinks20[0],variant:\"xFIUwfiR_\",VgDxzRfPm:false,width:\"100%\",...addPropertyOverrides({gkaFw94H4:{q9cmatb21:resolvedLinks20[3],variant:\"kMvKBCKcx\"},vBZXk1IzR:{q9cmatb21:resolvedLinks20[4],variant:\"kMvKBCKcx\"},wfzAtNf1J:{q9cmatb21:resolvedLinks20[2]},YDDjz7wuV:{q9cmatb21:resolvedLinks20[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z91ehy\",layoutDependency:layoutDependency,layoutId:\"PLK845ljf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"hello@hoppn.com\"})}),className:\"framer-f7v7eb\",\"data-framer-name\":\"hello@hoppn.com\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"ZVWeS_gT8\",variants:{gkaFw94H4:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},vBZXk1IzR:{\"--extracted-r6o4lv\":\"var(--token-7036598e-57ff-4847-929c-dfec1756e879, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gkaFw94H4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"hello@hoppn.com\"})})},vBZXk1IzR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7036598e-57ff-4847-929c-dfec1756e879, rgb(255, 255, 255)))\"},children:\"hello@hoppn.com\"})})}},baseVariant,gestureVariant)})}),isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-185zv97\",\"data-framer-name\":\"Social icons White\",layoutDependency:layoutDependency,layoutId:\"RfANqZMCG\",children:[isDisplayed11()&&/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.com\",motionChild:true,nodeId:\"tVdRqCH09\",scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-9gyzs0 framer-1t8tez9\",\"data-framer-name\":\"White_Hoppn_icon\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:50,layoutDependency:layoutDependency,layoutId:\"tVdRqCH09\",svg:'<svg width=\"50\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.93 38.135a8.308 8.308 0 0 1 6.484-1.29 8.418 8.418 0 0 1 5.407 3.857c5.735-3.94 13.214-10.855 15.35-21.057 1.815-8.671-4.06-17.29-13.128-19.247-9.067-1.957-17.887 3.49-19.702 12.16-2.135 10.203 1.927 19.61 5.589 25.577Zm9.587-16.113c2.95.637 5.85-1.275 6.477-4.271.627-2.996-1.256-5.94-4.206-6.577-2.95-.637-5.85 1.275-6.478 4.27-.627 2.997 1.257 5.941 4.207 6.578Z\" fill=\"#0DBFBE\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.93 38.135a8.308 8.308 0 0 1 6.484-1.29 8.418 8.418 0 0 1 5.407 3.857c5.735-3.94 13.214-10.855 15.35-21.057 1.815-8.671-4.06-17.29-13.128-19.247-9.067-1.957-17.887 3.49-19.702 12.16-2.135 10.203 1.927 19.61 5.589 25.577Zm9.587-16.113c2.95.637 5.85-1.275 6.477-4.271.627-2.996-1.256-5.94-4.206-6.577-2.95-.637-5.85 1.275-6.478 4.27-.627 2.997 1.257 5.941 4.207 6.578Z\" fill=\"#fff\"/><path d=\"M18.682 49.895c-2.539-.548-4.163-3.092-3.624-5.667.54-2.578 3.045-4.227 5.58-3.68 2.54.548 4.164 3.092 3.625 5.667-.536 2.576-3.041 4.228-5.58 3.68Z\" fill=\"#0DBFBE\"/><path d=\"M18.682 49.895c-2.539-.548-4.163-3.092-3.624-5.667.54-2.578 3.045-4.227 5.58-3.68 2.54.548 4.164 3.092 3.625 5.667-.536 2.576-3.041 4.228-5.58 3.68Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/hoppn/\",motionChild:true,nodeId:\"RbjNKy2ZF\",scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:370,intrinsicWidth:370,pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/jTaOJ8dzryl4FRvKJdV84Qc8k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jTaOJ8dzryl4FRvKJdV84Qc8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/jTaOJ8dzryl4FRvKJdV84Qc8k.png 740w\"},className:\"framer-1l9smvx framer-1t8tez9\",\"data-framer-name\":\"Linkedin_social_big_copy\",layoutDependency:layoutDependency,layoutId:\"RbjNKy2ZF\",...addPropertyOverrides({gkaFw94H4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370,intrinsicWidth:370,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+458.8+0),pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/jTaOJ8dzryl4FRvKJdV84Qc8k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jTaOJ8dzryl4FRvKJdV84Qc8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/jTaOJ8dzryl4FRvKJdV84Qc8k.png 740w\"}},vBZXk1IzR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370,intrinsicWidth:370,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+458.8+0),pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/jTaOJ8dzryl4FRvKJdV84Qc8k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jTaOJ8dzryl4FRvKJdV84Qc8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/jTaOJ8dzryl4FRvKJdV84Qc8k.png 740w\"}}},baseVariant,gestureVariant)})}),isDisplayed11()&&/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/Hoppn_App\",motionChild:true,nodeId:\"Jyavsamp6\",scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-10dwnsm framer-1t8tez9\",\"data-framer-name\":\"White_X_social\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:50,layoutDependency:layoutDependency,layoutId:\"Jyavsamp6\",svg:'<svg width=\"50\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M39.202 2.09h7.695L30.086 21.305l19.776 26.147H34.376L22.248 31.596 8.368 47.453h-7.7L18.65 26.9-.322 2.09h15.878l10.963 14.495L39.202 2.089ZM36.5 42.846h4.265L13.24 6.454H8.664L36.5 42.847Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h50v50H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/hoppn/\",motionChild:true,nodeId:\"r5GEcjDle\",scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-44cnhc framer-1t8tez9\",\"data-framer-name\":\"White_ig\",fill:\"black\",intrinsicHeight:50,intrinsicWidth:50,layoutDependency:layoutDependency,layoutId:\"r5GEcjDle\",svg:'<svg width=\"50\" height=\"50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.993 15.963a12.723 12.723 0 0 1 17.979 0 12.683 12.683 0 0 1 0 17.95 12.723 12.723 0 0 1-17.979 0 12.683 12.683 0 0 1 0-17.95Zm2.847 15.104a8.693 8.693 0 0 0 12.284 0 8.666 8.666 0 0 0 0-12.264 8.693 8.693 0 0 0-12.284 0 8.666 8.666 0 0 0 0 12.264Zm22.391-19.555a2.763 2.763 0 0 1-2.765 2.76 2.763 2.763 0 0 1-2.765-2.76 2.763 2.763 0 0 1 2.765-2.761 2.763 2.763 0 0 1 2.765 2.76Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m45.499 35.4.005-.258v-.003l-.005.262Zm.105-2.027c.051-1.656.051-3.348.051-8.465m.173 20.93a12.685 12.685 0 0 1-4.38 2.851 18.324 18.324 0 0 1-6.046 1.157h-.01C32.723 50 31.853 50 25 50c-6.849 0-7.7-.036-10.396-.154H14.6a18.235 18.235 0 0 1-6.044-1.243 12.676 12.676 0 0 1-7.241-7.223 18.19 18.19 0 0 1-1.159-6.039v-.01C0 32.66 0 31.797 0 24.955c0-6.84.036-7.69.157-10.38v-.006a18.16 18.16 0 0 1 1.159-6.036 12.624 12.624 0 0 1 7.236-7.222 18.152 18.152 0 0 1 6.04-1.16h.01C17.271 0 18.141 0 24.993 0c6.85 0 7.7.034 10.397.151h.006c2.066.043 4.11.435 6.045 1.16a12.661 12.661 0 0 1 7.237 7.223 18.15 18.15 0 0 1 1.164 6.12v.012C50 17.337 50 18.198 50 25.042c0 6.84-.036 7.69-.157 10.38v.006a18.16 18.16 0 0 1-1.158 6.036 12.66 12.66 0 0 1-2.857 4.374Zm-.954-5.881c.54-1.462.838-3 .884-4.556h.024l.012-.247c.12-2.684.12-3.424.12-10.238v-.008c0-6.825-.03-7.58-.151-10.246a14.467 14.467 0 0 0-.888-4.756l-.002-.004a8.634 8.634 0 0 0-4.95-4.943h-.004a14.193 14.193 0 0 0-4.766-.888c-2.715-.154-3.428-.154-10.25-.154h-.01c-6.835 0-7.59.033-10.26.154a14.334 14.334 0 0 0-4.765.887h-.003a8.63 8.63 0 0 0-4.97 4.944l-.002.004a14.349 14.349 0 0 0-.889 4.806c-.148 2.717-.148 3.425-.148 10.237v.009c0 6.821.028 7.579.148 10.242.027 1.624.328 3.232.889 4.756l.001.005a8.619 8.619 0 0 0 4.972 4.94h.002c1.525.567 3.136.867 4.763.888 2.718.154 3.428.154 10.253.154h.01c6.83 0 7.59-.03 10.258-.154a14.262 14.262 0 0 0 4.767-.887l.003-.001a8.64 8.64 0 0 0 4.951-4.94l.002-.004Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.gitbook.io/\",motionChild:true,nodeId:\"rrUb_JCYx\",openInNewTab:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-13g8m4l framer-1t8tez9\",\"data-framer-name\":\"GitBook - Icon - Light 1\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"rrUb_JCYx\",style:{filter:\"drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.15))\",WebkitFilter:\"drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.15))\"},svg:'<svg width=\"65\" height=\"65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M27.396 34.22c3.13 1.805 4.694 2.708 6.412 2.71 1.718.001 3.285-.899 6.417-2.7L60.19 22.753a2.905 2.905 0 0 0 0-5.036L40.218 6.235c-3.13-1.798-4.694-2.698-6.41-2.697-1.717 0-3.28.901-6.408 2.702l-17.17 9.888c-.128.074-.192.11-.25.145A19.277 19.277 0 0 0 .44 32.772v.578a19.277 19.277 0 0 0 9.52 16.487l.25.145 10.755 6.21c6.267 3.618 9.4 5.427 12.842 5.429 3.441 0 6.576-1.806 12.846-5.42l11.354-6.546c3.14-1.81 4.71-2.715 5.571-4.206.862-1.492.862-3.304.862-6.928v-7a2.771 2.771 0 0 0-4.152-2.402L37.007 42.502c-1.562.898-2.343 1.346-3.2 1.347-.857 0-1.638-.448-3.2-1.345l-15.758-9.046c-.79-.453-1.184-.68-1.501-.72a1.606 1.606 0 0 0-1.693.986c-.12.296-.118.751-.114 1.661.004.67.006 1.005.068 1.313.14.69.504 1.315 1.034 1.779.236.207.527.374 1.107.71l16.847 9.723c1.567.904 2.35 1.356 3.21 1.357.86 0 1.644-.452 3.211-1.355l20.65-11.904c.536-.308.803-.463 1.004-.347.2.116.2.425.2 1.043v3.175c0 .906 0 1.36-.215 1.732-.215.373-.608.6-1.393 1.052L40.232 53.48c-3.135 1.807-4.703 2.711-6.424 2.71-1.721 0-3.288-.906-6.422-2.716L11.451 44.27l-.1-.058a10.944 10.944 0 0 1-5.422-9.394V31.79a5.99 5.99 0 0 1 2.986-5.183 5.276 5.276 0 0 1 5.283-.005l13.198 7.618Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]}),isDisplayed11()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eh9964\",layoutDependency:layoutDependency,layoutId:\"BE4EDKgiL\",children:[isDisplayed10()&&/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.com\",motionChild:true,nodeId:\"FaVEjUboe\",openInNewTab:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1xz98wf framer-1t8tez9\",\"data-framer-name\":\"Hoppn_icon\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"FaVEjUboe\",svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.944 30.508a6.646 6.646 0 0 1 5.187-1.032 6.73 6.73 0 0 1 4.326 3.086c4.588-3.152 10.571-8.684 12.28-16.846C35.189 8.779 30.489 1.884 23.235.319 15.98-1.247 8.925 3.11 7.473 10.047c-1.708 8.162 1.542 15.687 4.47 20.461Zm7.67-12.89c2.36.51 4.68-1.02 5.181-3.417.502-2.397-1.005-4.753-3.365-5.262-2.36-.51-4.68 1.02-5.182 3.417-.501 2.397 1.005 4.752 3.365 5.262Z\" fill=\"#0DBFBE\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.944 30.508a6.646 6.646 0 0 1 5.187-1.032 6.73 6.73 0 0 1 4.326 3.086c4.588-3.152 10.571-8.684 12.28-16.846C35.189 8.779 30.489 1.884 23.235.319 15.98-1.247 8.925 3.11 7.473 10.047c-1.708 8.162 1.542 15.687 4.47 20.461Zm7.67-12.89c2.36.51 4.68-1.02 5.181-3.417.502-2.397-1.005-4.753-3.365-5.262-2.36-.51-4.68 1.02-5.182 3.417-.501 2.397 1.005 4.752 3.365 5.262Z\" fill=\"#000\"/><path d=\"M14.946 39.916c-2.032-.438-3.33-2.473-2.9-4.533.432-2.063 2.436-3.382 4.465-2.944 2.032.438 3.33 2.473 2.9 4.533-.43 2.06-2.434 3.383-4.465 2.944Z\" fill=\"#0DBFBE\"/><path d=\"M14.946 39.916c-2.032-.438-3.33-2.473-2.9-4.533.432-2.063 2.436-3.382 4.465-2.944 2.032.438 3.33 2.473 2.9 4.533-.43 2.06-2.434 3.383-4.465 2.944Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/hoppn/\",motionChild:true,nodeId:\"LSyqj79pu\",scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:370,intrinsicWidth:370,pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png 740w\"},className:\"framer-1m450br framer-1t8tez9\",\"data-framer-name\":\"Linkedin_social_black_2\",layoutDependency:layoutDependency,layoutId:\"LSyqj79pu\",...addPropertyOverrides({wfzAtNf1J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370,intrinsicWidth:370,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||659)-0-658.8)/2+80+0)+35+458.8+0),pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png 740w\"}},YDDjz7wuV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:370,intrinsicWidth:370,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||643)-0-642.8)/2+64+0)+35+458.8+0),pixelHeight:740,pixelWidth:740,sizes:\"50px\",src:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sbKzda3D6HtdK7XjaxXuORHlw.png 740w\"}}},baseVariant,gestureVariant)})}),isDisplayed10()&&/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/Hoppn_App\",motionChild:true,nodeId:\"biUtk22X1\",openInNewTab:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1x8s9kn framer-1t8tez9\",\"data-framer-name\":\"X_social\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"biUtk22X1\",svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M31.2 2.397h5.972L24.125 17.311l15.349 20.292H27.455l-9.413-12.306L7.271 37.603H1.295l13.955-15.95L.526 2.397H12.85l8.509 11.25L31.2 2.397Zm-2.096 31.631h3.31L11.052 5.785H7.5l21.604 28.243Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/hoppn/\",motionChild:true,nodeId:\"MnFdt3m40\",openInNewTab:true,scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-8sin1i framer-1t8tez9\",\"data-framer-name\":\"Instagram_icon\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"MnFdt3m40\",svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.045 13.008A9.819 9.819 0 1 1 26.93 26.895 9.819 9.819 0 0 1 13.045 13.01Zm2.199 11.685a6.709 6.709 0 1 0 9.488-9.488 6.709 6.709 0 0 0-9.488 9.488ZM32.538 9.565a2.136 2.136 0 1 1-4.271 0 2.136 2.136 0 0 1 4.27 0Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.833 28.045c.002-.067.004-.134.004-.2v-.002c0 .067-.002.134-.004.202Zm.255 8.074a9.795 9.795 0 0 1-3.384 2.205 14.11 14.11 0 0 1-4.669.895h-.007c-2.063.12-2.735.12-8.027.12-5.29 0-5.947-.029-8.03-.12h-.002a14.066 14.066 0 0 1-4.667-.961H7.3a9.79 9.79 0 0 1-5.593-5.588A14.09 14.09 0 0 1 .814 28v-.008c-.122-2.066-.122-2.734-.122-8.026s.029-5.95.122-8.03v-.005c.03-1.596.333-3.175.894-4.669a9.767 9.767 0 0 1 5.59-5.587 14 14 0 0 1 4.664-.897h.008C14.032.66 14.704.66 19.997.66c5.29 0 5.947.026 8.03.117h.004c1.596.033 3.175.336 4.67.897a9.778 9.778 0 0 1 5.588 5.587 14.06 14.06 0 0 1 .9 4.735v.01c.12 2.066.12 2.731.12 8.026 0 5.291-.027 5.949-.12 8.03v.004a14.065 14.065 0 0 1-.895 4.669 9.793 9.793 0 0 1-2.206 3.384Zm-.737-4.55c.417-1.13.647-2.32.682-3.524h.02l.008-.191c.093-2.076.093-2.649.093-7.92v-.006c0-5.28-.024-5.863-.117-7.926-.02-1.256-.253-2.5-.686-3.679l-.001-.003a6.68 6.68 0 0 0-3.824-3.823l-.002-.001a10.946 10.946 0 0 0-3.681-.687c-2.098-.119-2.648-.119-7.917-.119h-.007c-5.28 0-5.863.026-7.925.12a11.04 11.04 0 0 0-3.68.686h-.002a6.67 6.67 0 0 0-3.84 3.824v.003a11.116 11.116 0 0 0-.687 3.718c-.115 2.101-.115 2.65-.115 7.919v.007c0 5.276.022 5.862.115 7.923.021 1.256.253 2.5.686 3.679l.001.003a6.668 6.668 0 0 0 3.84 3.822h.002c1.177.439 2.422.671 3.679.687 2.099.12 2.648.12 7.919.12h.007c5.276 0 5.863-.025 7.923-.12a11 11 0 0 0 3.682-.686l.002-.001a6.671 6.671 0 0 0 3.824-3.822l.001-.003Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://hoppn.gitbook.io/\",motionChild:true,nodeId:\"HaJYsJ0iM\",scopeId:\"XzL0rM70g\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1ygonmu framer-1t8tez9\",\"data-framer-name\":\"GitBook - Icon - Black\",fill:\"black\",intrinsicHeight:65,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"HaJYsJ0iM\",svg:'<svg width=\"65\" height=\"65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M27.396 34.22c3.13 1.805 4.694 2.708 6.412 2.71 1.718.001 3.285-.899 6.417-2.7L60.19 22.753a2.905 2.905 0 0 0 0-5.036L40.218 6.235c-3.13-1.798-4.694-2.698-6.41-2.697-1.717 0-3.28.901-6.408 2.702l-17.17 9.888c-.128.074-.192.11-.25.145A19.277 19.277 0 0 0 .44 32.772v.578a19.277 19.277 0 0 0 9.52 16.487l.25.145 10.755 6.21c6.267 3.618 9.4 5.427 12.842 5.429 3.441 0 6.576-1.806 12.846-5.42l11.354-6.546c3.14-1.81 4.71-2.715 5.571-4.206.862-1.492.862-3.304.862-6.928v-7a2.771 2.771 0 0 0-4.152-2.402L37.007 42.502c-1.562.898-2.343 1.346-3.2 1.347-.857 0-1.638-.448-3.2-1.345l-15.758-9.046c-.79-.453-1.184-.68-1.501-.72a1.606 1.606 0 0 0-1.693.986c-.12.296-.118.751-.114 1.661.004.67.006 1.005.068 1.313.14.69.504 1.315 1.034 1.779.236.207.527.374 1.107.71l16.847 9.723c1.567.904 2.35 1.356 3.21 1.357.86 0 1.644-.452 3.211-1.355l20.65-11.904c.536-.308.803-.463 1.004-.347.2.116.2.425.2 1.043v3.175c0 .906 0 1.36-.215 1.732-.215.373-.608.6-1.393 1.052L40.232 53.48c-3.135 1.807-4.703 2.711-6.424 2.71-1.721 0-3.288-.906-6.422-2.716L11.451 44.27l-.1-.058a10.944 10.944 0 0 1-5.422-9.394V31.79a5.99 5.99 0 0 1 2.986-5.183 5.276 5.276 0 0 1 5.283-.005l13.198 7.618Z\" fill=\"#000\"/></svg>',withExternalLayout:true})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sU8qI.framer-1t8tez9, .framer-sU8qI .framer-1t8tez9 { display: block; }\",\".framer-sU8qI.framer-cwql00 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 30px 0px 46px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sU8qI .framer-1lr3pxn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sU8qI .framer-fg3ig5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; min-width: 185px; overflow: visible; padding: 0px 0px 0px 16px; position: relative; width: min-content; }\",\".framer-sU8qI .framer-yk8a6l-container { flex: none; height: 40px; position: relative; width: 200px; }\",\".framer-sU8qI .framer-1ypv6me, .framer-sU8qI .framer-1gprjq5 { 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-sU8qI .framer-61z06v-container { flex: none; height: 40px; position: relative; width: 230px; }\",\".framer-sU8qI .framer-1hp4cx9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 60px; min-width: 230px; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-sU8qI .framer-6mvlge { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-sU8qI .framer-10t8g5d { flex: none; height: 3px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 3px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sU8qI .framer-buq4u8 { flex: none; height: 3px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 3px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sU8qI .framer-rguscd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sU8qI .framer-1dag8fj-container, .framer-sU8qI .framer-yc5f3f-container, .framer-sU8qI .framer-16bkluh-container, .framer-sU8qI .framer-15tpb8p-container, .framer-sU8qI .framer-1hlzczw-container, .framer-sU8qI .framer-7hyj6p-container, .framer-sU8qI .framer-1au8brv-container, .framer-sU8qI .framer-11ccah5-container, .framer-sU8qI .framer-1a9zbt0-container, .framer-sU8qI .framer-18cbbxe-container, .framer-sU8qI .framer-8o6uja-container, .framer-sU8qI .framer-smq244-container, .framer-sU8qI .framer-qdej6k-container, .framer-sU8qI .framer-19ytdxf-container, .framer-sU8qI .framer-1d0aqe7-container, .framer-sU8qI .framer-1ga4c1t-container, .framer-sU8qI .framer-120qx3q-container, .framer-sU8qI .framer-68efa7-container, .framer-sU8qI .framer-9vrabl-container, .framer-sU8qI .framer-t1ybk2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sU8qI .framer-63fgt7 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 35px; position: relative; width: 1px; }\",\".framer-sU8qI .framer-1hudd2f { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 192px; }\",\".framer-sU8qI .framer-z91ehy { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-sU8qI .framer-f7v7eb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sU8qI .framer-185zv97, .framer-sU8qI .framer-eh9964 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 50px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sU8qI .framer-9gyzs0, .framer-sU8qI .framer-10dwnsm, .framer-sU8qI .framer-44cnhc, .framer-sU8qI .framer-13g8m4l, .framer-sU8qI .framer-1xz98wf, .framer-sU8qI .framer-1x8s9kn, .framer-sU8qI .framer-8sin1i, .framer-sU8qI .framer-1ygonmu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; text-decoration: none; width: 50px; }\",\".framer-sU8qI .framer-1l9smvx, .framer-sU8qI .framer-1m450br { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; text-decoration: none; width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sU8qI .framer-1lr3pxn, .framer-sU8qI .framer-fg3ig5, .framer-sU8qI .framer-1ypv6me, .framer-sU8qI .framer-1gprjq5, .framer-sU8qI .framer-1hp4cx9, .framer-sU8qI .framer-rguscd, .framer-sU8qI .framer-63fgt7, .framer-sU8qI .framer-1hudd2f, .framer-sU8qI .framer-z91ehy { gap: 0px; } .framer-sU8qI .framer-1lr3pxn > *, .framer-sU8qI .framer-fg3ig5 > *, .framer-sU8qI .framer-1ypv6me > *, .framer-sU8qI .framer-1gprjq5 > *, .framer-sU8qI .framer-z91ehy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sU8qI .framer-1lr3pxn > :first-child, .framer-sU8qI .framer-fg3ig5 > :first-child, .framer-sU8qI .framer-1ypv6me > :first-child, .framer-sU8qI .framer-1gprjq5 > :first-child, .framer-sU8qI .framer-1hp4cx9 > :first-child, .framer-sU8qI .framer-rguscd > :first-child, .framer-sU8qI .framer-z91ehy > :first-child { margin-left: 0px; } .framer-sU8qI .framer-1lr3pxn > :last-child, .framer-sU8qI .framer-fg3ig5 > :last-child, .framer-sU8qI .framer-1ypv6me > :last-child, .framer-sU8qI .framer-1gprjq5 > :last-child, .framer-sU8qI .framer-1hp4cx9 > :last-child, .framer-sU8qI .framer-rguscd > :last-child, .framer-sU8qI .framer-z91ehy > :last-child { margin-right: 0px; } .framer-sU8qI .framer-1hp4cx9 > *, .framer-sU8qI .framer-rguscd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sU8qI .framer-63fgt7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sU8qI .framer-63fgt7 > :first-child, .framer-sU8qI .framer-1hudd2f > :first-child { margin-top: 0px; } .framer-sU8qI .framer-63fgt7 > :last-child, .framer-sU8qI .framer-1hudd2f > :last-child { margin-bottom: 0px; } .framer-sU8qI .framer-1hudd2f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-sU8qI.framer-v-1ck1bdh.framer-cwql00, .framer-sU8qI.framer-v-1q4s3v.framer-cwql00 { flex-direction: column; height: 64px; padding: 0px; width: 390px; }\",\".framer-sU8qI.framer-v-1ck1bdh .framer-1lr3pxn, .framer-sU8qI.framer-v-1q4s3v .framer-1lr3pxn { height: 64px; width: 100%; }\",\".framer-sU8qI.framer-v-1ck1bdh .framer-1ypv6me { height: 100%; padding: 0px 0px 0px 16px; }\",\".framer-sU8qI.framer-v-1ck1bdh .framer-61z06v-container, .framer-sU8qI.framer-v-1q4s3v .framer-61z06v-container { width: 200px; }\",\".framer-sU8qI.framer-v-1ck1bdh .framer-1hp4cx9 { cursor: pointer; flex: 1 0 0px; height: 100%; justify-content: flex-end; min-height: unset; min-width: unset; padding: 10px 16px 10px 20px; width: 1px; }\",\".framer-sU8qI.framer-v-1ck1bdh .framer-6mvlge, .framer-sU8qI.framer-v-8r22rm .framer-6mvlge, .framer-sU8qI.framer-v-1q4s3v .framer-6mvlge, .framer-sU8qI.framer-v-1xzjcfh .framer-6mvlge { height: 44px; order: 0; width: 44px; }\",\".framer-sU8qI.framer-v-1ck1bdh .framer-10t8g5d, .framer-sU8qI.framer-v-1q4s3v .framer-10t8g5d { left: calc(50.00000000000002% - 22px / 2); top: calc(63.636363636363654% - 3px / 2); width: 22px; }\",\".framer-sU8qI.framer-v-1ck1bdh .framer-buq4u8, .framer-sU8qI.framer-v-1q4s3v .framer-buq4u8 { left: calc(50.00000000000002% - 22px / 2); top: calc(34.09090909090911% - 3px / 2); width: 22px; }\",\".framer-sU8qI.framer-v-1ck1bdh .framer-rguscd, .framer-sU8qI.framer-v-1q4s3v .framer-rguscd { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; padding: 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sU8qI.framer-v-1ck1bdh.framer-cwql00, .framer-sU8qI.framer-v-1ck1bdh .framer-rguscd { gap: 0px; } .framer-sU8qI.framer-v-1ck1bdh.framer-cwql00 > *, .framer-sU8qI.framer-v-1ck1bdh.framer-cwql00 > :first-child, .framer-sU8qI.framer-v-1ck1bdh.framer-cwql00 > :last-child { margin: 0px; } .framer-sU8qI.framer-v-1ck1bdh .framer-rguscd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sU8qI.framer-v-1ck1bdh .framer-rguscd > :first-child { margin-top: 0px; } .framer-sU8qI.framer-v-1ck1bdh .framer-rguscd > :last-child { margin-bottom: 0px; } }\",\".framer-sU8qI.framer-v-8r22rm.framer-cwql00, .framer-sU8qI.framer-v-1xzjcfh.framer-cwql00 { flex-direction: column; gap: 0px; height: min-content; justify-content: center; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 0px; width: 390px; will-change: unset; }\",\".framer-sU8qI.framer-v-8r22rm .framer-1lr3pxn { gap: unset; height: 64px; justify-content: space-between; width: 100%; }\",\".framer-sU8qI.framer-v-8r22rm .framer-fg3ig5 { min-width: unset; order: 0; }\",\".framer-sU8qI.framer-v-8r22rm .framer-1hp4cx9 { cursor: pointer; flex: 1 0 0px; height: 100%; justify-content: flex-end; min-height: unset; min-width: unset; order: 1; padding: 10px 16px 10px 20px; width: 1px; }\",\".framer-sU8qI.framer-v-8r22rm .framer-10t8g5d, .framer-sU8qI.framer-v-8r22rm .framer-buq4u8, .framer-sU8qI.framer-v-1xzjcfh .framer-10t8g5d, .framer-sU8qI.framer-v-1xzjcfh .framer-buq4u8 { left: calc(50.00000000000002% - 22px / 2); top: calc(50.00000000000002% - 3px / 2); width: 22px; }\",\".framer-sU8qI.framer-v-8r22rm .framer-63fgt7, .framer-sU8qI.framer-v-xs8mum .framer-63fgt7, .framer-sU8qI.framer-v-1hjso7b .framer-63fgt7 { flex: none; width: 100%; }\",\".framer-sU8qI.framer-v-8r22rm .framer-1m450br, .framer-sU8qI.framer-v-xs8mum .framer-1m450br, .framer-sU8qI.framer-v-1xzjcfh .framer-1l9smvx, .framer-sU8qI.framer-v-1hjso7b .framer-1l9smvx { order: 2; }\",\".framer-sU8qI.framer-v-8r22rm .framer-8sin1i, .framer-sU8qI.framer-v-1vx7yu4 .framer-6mvlge, .framer-sU8qI.framer-v-xs8mum .framer-6mvlge, .framer-sU8qI.framer-v-xs8mum .framer-8sin1i, .framer-sU8qI.framer-v-1xzjcfh .framer-44cnhc, .framer-sU8qI.framer-v-8eylp6 .framer-6mvlge, .framer-sU8qI.framer-v-1hjso7b .framer-6mvlge, .framer-sU8qI.framer-v-1hjso7b .framer-44cnhc { order: 0; }\",\".framer-sU8qI.framer-v-8r22rm .framer-1ygonmu, .framer-sU8qI.framer-v-xs8mum .framer-1ygonmu, .framer-sU8qI.framer-v-1xzjcfh .framer-13g8m4l, .framer-sU8qI.framer-v-1hjso7b .framer-13g8m4l { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sU8qI.framer-v-8r22rm.framer-cwql00, .framer-sU8qI.framer-v-8r22rm .framer-1lr3pxn { gap: 0px; } .framer-sU8qI.framer-v-8r22rm.framer-cwql00 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sU8qI.framer-v-8r22rm.framer-cwql00 > :first-child { margin-top: 0px; } .framer-sU8qI.framer-v-8r22rm.framer-cwql00 > :last-child { margin-bottom: 0px; } .framer-sU8qI.framer-v-8r22rm .framer-1lr3pxn > *, .framer-sU8qI.framer-v-8r22rm .framer-1lr3pxn > :first-child, .framer-sU8qI.framer-v-8r22rm .framer-1lr3pxn > :last-child { margin: 0px; } }\",\".framer-sU8qI.framer-v-1vx7yu4.framer-cwql00, .framer-sU8qI.framer-v-8eylp6.framer-cwql00 { padding: 0px; width: 810px; }\",\".framer-sU8qI.framer-v-1vx7yu4 .framer-1lr3pxn { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-sU8qI.framer-v-1vx7yu4 .framer-1ypv6me, .framer-sU8qI.framer-v-xs8mum .framer-1ypv6me, .framer-sU8qI.framer-v-8eylp6 .framer-1ypv6me, .framer-sU8qI.framer-v-1hjso7b .framer-1ypv6me { height: 100%; padding: 10px 0px 10px 40px; }\",\".framer-sU8qI.framer-v-1vx7yu4 .framer-1hp4cx9, .framer-sU8qI.framer-v-xs8mum .framer-1hp4cx9, .framer-sU8qI.framer-v-8eylp6 .framer-1hp4cx9, .framer-sU8qI.framer-v-1hjso7b .framer-1hp4cx9 { cursor: pointer; flex: 1 0 0px; height: 100%; justify-content: flex-end; min-height: unset; min-width: unset; padding: 10px 25px 10px 40px; width: 1px; }\",\".framer-sU8qI.framer-v-1vx7yu4 .framer-10t8g5d, .framer-sU8qI.framer-v-8eylp6 .framer-10t8g5d { left: calc(50.00000000000002% - 25px / 2); top: calc(67.50000000000003% - 3px / 2); width: 25px; }\",\".framer-sU8qI.framer-v-1vx7yu4 .framer-buq4u8, .framer-sU8qI.framer-v-8eylp6 .framer-buq4u8 { left: calc(50.00000000000002% - 25px / 2); top: calc(32.50000000000002% - 3px / 2); width: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sU8qI.framer-v-1vx7yu4 .framer-1lr3pxn { gap: 0px; } .framer-sU8qI.framer-v-1vx7yu4 .framer-1lr3pxn > *, .framer-sU8qI.framer-v-1vx7yu4 .framer-1lr3pxn > :first-child, .framer-sU8qI.framer-v-1vx7yu4 .framer-1lr3pxn > :last-child { margin: 0px; } }\",\".framer-sU8qI.framer-v-xs8mum.framer-cwql00, .framer-sU8qI.framer-v-1hjso7b.framer-cwql00 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: 810px; }\",\".framer-sU8qI.framer-v-xs8mum .framer-1lr3pxn, .framer-sU8qI.framer-v-1hjso7b .framer-1lr3pxn { height: 80px; width: 100%; }\",\".framer-sU8qI.framer-v-xs8mum .framer-10t8g5d, .framer-sU8qI.framer-v-xs8mum .framer-buq4u8, .framer-sU8qI.framer-v-1hjso7b .framer-10t8g5d, .framer-sU8qI.framer-v-1hjso7b .framer-buq4u8 { left: calc(50.00000000000002% - 25px / 2); top: calc(50.00000000000002% - 3px / 2); width: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sU8qI.framer-v-xs8mum.framer-cwql00 { gap: 0px; } .framer-sU8qI.framer-v-xs8mum.framer-cwql00 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sU8qI.framer-v-xs8mum.framer-cwql00 > :first-child { margin-top: 0px; } .framer-sU8qI.framer-v-xs8mum.framer-cwql00 > :last-child { margin-bottom: 0px; } }\",\".framer-sU8qI.framer-v-1q4s3v .framer-1ypv6me { padding: 10px 0px 10px 16px; }\",\".framer-sU8qI.framer-v-1q4s3v .framer-1hp4cx9, .framer-sU8qI.framer-v-1xzjcfh .framer-1hp4cx9 { cursor: pointer; flex: 1 0 0px; justify-content: flex-end; min-height: unset; min-width: unset; padding: 10px 16px 10px 20px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sU8qI.framer-v-1q4s3v.framer-cwql00, .framer-sU8qI.framer-v-1q4s3v .framer-rguscd { gap: 0px; } .framer-sU8qI.framer-v-1q4s3v.framer-cwql00 > *, .framer-sU8qI.framer-v-1q4s3v.framer-cwql00 > :first-child, .framer-sU8qI.framer-v-1q4s3v.framer-cwql00 > :last-child { margin: 0px; } .framer-sU8qI.framer-v-1q4s3v .framer-rguscd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sU8qI.framer-v-1q4s3v .framer-rguscd > :first-child { margin-top: 0px; } .framer-sU8qI.framer-v-1q4s3v .framer-rguscd > :last-child { margin-bottom: 0px; } }\",\".framer-sU8qI.framer-v-1xzjcfh .framer-1lr3pxn { height: 64px; order: 0; width: 100%; }\",\".framer-sU8qI.framer-v-1xzjcfh .framer-fg3ig5 { min-width: unset; }\",\".framer-sU8qI.framer-v-1xzjcfh .framer-63fgt7 { flex: none; order: 2; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sU8qI.framer-v-1xzjcfh.framer-cwql00 { gap: 0px; } .framer-sU8qI.framer-v-1xzjcfh.framer-cwql00 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sU8qI.framer-v-1xzjcfh.framer-cwql00 > :first-child { margin-top: 0px; } .framer-sU8qI.framer-v-1xzjcfh.framer-cwql00 > :last-child { margin-bottom: 0px; } }\",\".framer-sU8qI.framer-v-8eylp6 .framer-1lr3pxn { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sU8qI.framer-v-1hjso7b.framer-cwql00 { gap: 0px; } .framer-sU8qI.framer-v-1hjso7b.framer-cwql00 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sU8qI.framer-v-1hjso7b.framer-cwql00 > :first-child { margin-top: 0px; } .framer-sU8qI.framer-v-1hjso7b.framer-cwql00 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HLYpW9Kyi\":{\"layout\":[\"fixed\",\"fixed\"]},\"YDDjz7wuV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"vP_WcB4eK\":{\"layout\":[\"fixed\",\"fixed\"]},\"lPRAeTH7l\":{\"layout\":[\"fixed\",\"fixed\"]},\"wfzAtNf1J\":{\"layout\":[\"fixed\",\"auto\"]},\"RqDfOXH3t\":{\"layout\":[\"fixed\",\"fixed\"]},\"gkaFw94H4\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"gX7hDk27Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"vBZXk1IzR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXzL0rM70g=withCSS(Component,css,\"framer-sU8qI\");export default FramerXzL0rM70g;FramerXzL0rM70g.displayName=\"Navigation\";FramerXzL0rM70g.defaultProps={height:80,width:1200};addPropertyControls(FramerXzL0rM70g,{variant:{options:[\"CSFENSQzS\",\"HLYpW9Kyi\",\"YDDjz7wuV\",\"vP_WcB4eK\",\"lPRAeTH7l\",\"wfzAtNf1J\",\"RqDfOXH3t\",\"gkaFw94H4\",\"gX7hDk27Z\",\"vBZXk1IzR\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\",\"Desktop Dark mode\",\"Tablet\",\"Tablet open\",\"Phone Dark mode\",\"Phone Dark mode Open\",\"Tablet Dark mode\",\"Tablet open Dark mode\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXzL0rM70g,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...HoppnLabsLogoFonts,...NavButtonFonts,...HeaderButtonsMobileFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXzL0rM70g\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HLYpW9Kyi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YDDjz7wuV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"vP_WcB4eK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lPRAeTH7l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wfzAtNf1J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RqDfOXH3t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gkaFw94H4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"gX7hDk27Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vBZXk1IzR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XzL0rM70g.map"],
  "mappings": "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",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "r", "c", "u", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "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", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "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", "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", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "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", "fontStore", "fonts", "css", "className", "ImageWithFX", "withFX", "Image2", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "uYVTs0nYa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "SVG", "RichText2", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerLc83qAfEt", "withCSS", "Lc83qAfEt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "newTab", "pageTitle", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "aEqJJNIwn", "q9cmatb21", "VgDxzRfPm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerdwiGaj1Pl", "withCSS", "dwiGaj1Pl_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "HIzE7tWAQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "css", "Frameruof3jsTWD", "withCSS", "uof3jsTWD_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "beZQ_fk9S", "OLuCgoMR7", "NQxJOp_W4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerZruSrEnWi", "withCSS", "ZruSrEnWi_default", "addPropertyControls", "ControlType", "addFonts", "HoppnLabsLogoFonts", "getFonts", "uof3jsTWD_default", "NavButtonFonts", "ZruSrEnWi_default", "HeaderButtonsMobileFonts", "dwiGaj1Pl_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sde2vj", "args", "onTap106n9hw", "onTap13ooo4j", "onTap3kp5ui", "onTapg0dsxm", "onTap1jemao6", "onTap1d86f7j", "onTap1e2esom", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "resolvedLinks20", "RichText2", "Link", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerXzL0rM70g", "withCSS", "XzL0rM70g_default", "addPropertyControls", "ControlType", "addFonts"]
}
