{"version":3,"file":"shared-lib.DmksQEjw.mjs","names":["t","e","t","n","o","r","u","a","s","e","i","o","e","t","r","n","o","n","e","t","t","n","r","a","s","e","o","i","u","l","p","M","e","t","n","o","i","s","r","a","l","u","j","V","q","z","ae","ue","size","i","t","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","css","r","a","u","p","h","c","l","T","_","M","L","d","m","v","observer","i","Lenis","_Fragment","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","_Fragment","css","className"],"sources":["https:/ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js","https:/ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js","https:/ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js","https:/ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js","https:/ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js","https:/ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js","https:/ga.jspm.io/npm:@motionone/dom@10.13.1/dist/index.es.js","https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/72O11ApITvgaMZRvyQex/Ticker.js","https:/framerusercontent.com/modules/o9Tx32naQx6tmhdYAuki/HPxFHYe10qR7MgC5Nxo2/sesKqVbWl.js","https:/ga.jspm.io/npm:@studio-freight/lenis@1.0.29/dist/lenis.modern.mjs","https:/framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js","https:/framerusercontent.com/modules/otG8UETvUSw92TKJ7eWT/OwwLyqYAJHp7Ht0r4lkQ/hCBayZJTk.js","https:/framerusercontent.com/modules/5Q8d4h2FjLsqxlsWDFVv/klSdpl4Fh9erBoChFI2v/qtIIpuSCn.js","https:/framerusercontent.com/modules/uAJhleFCcMQIFrR0D5zF/ZtorexNjmwY14e8rDme2/WSNHRJGJm.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,progress as o,isFunction as i,defaults as s,isCubicBezier as r,isEasingGenerator as a,isEasingList as c,isNumber as l,time as f,noop as u,removeItem as d,mix as g,getEasingForSegment as m,isString as h,defaultOffset as p,fillOffset as v,velocityPerSecond as y,interpolate as w}from\"@motionone/utils\";import{Animation as E,getEasingFunction as b}from\"@motionone/animation\";import{__rest as S}from\"tslib\";import{invariant as A}from\"hey-listen\";import{pregenerateKeyframes as O,calcGeneratorVelocity as x,spring as V,glide as z}from\"@motionone/generators\";const W=new WeakMap;function getAnimationData(e){W.has(e)||W.set(e,{transforms:[],values:new Map});return W.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const L=[\"\",\"X\",\"Y\",\"Z\"];const T=[\"translate\",\"scale\",\"rotate\",\"skew\"];const D={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const M={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const k={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:M,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:M};const B=new Map;const asTransformCssVar=e=>`--motion-${e}`;const j=[\"x\",\"y\",\"z\"];T.forEach((e=>{L.forEach((t=>{j.push(e+t);B.set(asTransformCssVar(e+t),k[e])}))}));const compareTransformOrder=(e,t)=>j.indexOf(e)-j.indexOf(t);const P=new Set(j);const isTransform=e=>P.has(e);const addTransformToElement=(e,t)=>{D[t]&&(t=D[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 $=new Set;function registerCssVariable(e){if(!$.has(e)){$.add(e);try{const{syntax:t,initialValue:n}=B.has(e)?B.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const testAnimation=(e,t)=>document.createElement(\"div\").animate(e,t);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]},{duration:.001}).finished),linearEasing:()=>{try{testAnimation({opacity:0},{easing:\"linear(0, 1)\"})}catch(e){return false}return true}};const R={};const H={};for(const e in C)H[e]=()=>{void 0===R[e]&&(R[e]=C[e]());return R[e]};const I=.015;const generateLinearEasingPoints=(e,t)=>{let n=\"\";const i=Math.round(t/I);for(let t=0;t<i;t++)n+=e(o(0,i-1,t))+\", \";return n.substring(0,n.length-2)};const convertEasing=(e,t)=>i(e)?H.linearEasing()?`linear(${generateLinearEasingPoints(e,t)})`:s.easing:r(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;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){D[e]&&(e=D[e]);return isTransform(e)?asTransformCssVar(e):e}const N={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=B.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 r=getDevToolsRecord();const d=false!==o.record&&r;let g;let{duration:m=s.duration,delay:h=s.delay,endDelay:p=s.endDelay,repeat:v=s.repeat,easing:y=s.easing,direction:w,offset:b,allowWebkitAcceleration:S=false}=o;const A=getAnimationData(e);const O=isTransform(t);let x=H.waapi();O&&addTransformToElement(e,t);const V=getStyleName(t);const z=getMotionValue(A.values,V);const W=B.get(V);stopAnimation(z.animation,!(a(y)&&z.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=N.get(e,V))&&void 0!==t?t:null===W||void 0===W?void 0:W.initialValue)&&void 0!==n?n:0};let s=hydrateKeyframes(keyframesList(n),readInitialValue);if(a(y)){const e=y.createAnimation(s,readInitialValue,O,V,z);y=e.easing;void 0!==e.keyframes&&(s=e.keyframes);void 0!==e.duration&&(m=e.duration)}isCssVar(V)&&(H.cssRegisterProperty()?registerCssVariable(V):x=false);O&&!H.linearEasing()&&(i(y)||c(y)&&y.some(i))&&(x=false);if(x){W&&(s=s.map((e=>l(e)?W.toDefaultUnit(e):e)));1!==s.length||H.partialKeyframes()&&!d||s.unshift(readInitialValue());const t={delay:f.ms(h),duration:f.ms(m),endDelay:f.ms(p),easing:c(y)?void 0:convertEasing(y,m),direction:w,iterations:v+1,fill:\"both\"};g=e.animate({[V]:s,offset:b,easing:c(y)?y.map((e=>convertEasing(e,m))):void 0},t);g.finished||(g.finished=new Promise(((e,t)=>{g.onfinish=e;g.oncancel=t})));const n=s[s.length-1];g.finished.then((()=>{N.set(e,V,n);g.cancel()})).catch(u);S||(g.playbackRate=1.000001)}else if(O){s=s.map((e=>\"string\"===typeof e?parseFloat(e):e));1===s.length&&s.unshift(parseFloat(readInitialValue()));const render=t=>{W&&(t=W.toDefaultUnit(t));N.set(e,V,t)};g=new E(render,s,Object.assign(Object.assign({},o),{duration:m,easing:y}))}else{const t=s[s.length-1];N.set(e,V,W&&l(t)?W.toDefaultUnit(t):t)}d&&r(e,t,s,{duration:m,delay:h,easing:y,repeat:v,offset:b},\"motion-one\");z.setAnimation(g);return g}}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=s.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},F);const getActiveAnimation=e=>e.animations[0];const F={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return f.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(u));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=f.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 r=l(n)?n:getFromIndex(n,s);const a=Math.abs(r-i);let c=e*a;if(o){const t=s*e;const n=b(o);c=n(c/t)*t}return t+c}}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 i(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 l(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){d(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:g(i,s,o[r]),easing:m(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,i=S(t,[\"defaultOptions\"]);const r=[];const c=new Map;const l={};const f=new Map;let u=0;let d=0;let g=0;for(let t=0;t<e.length;t++){const o=e[t];if(h(o)){f.set(o,d);continue}if(!Array.isArray(o)){f.set(o.name,calcNextTime(d,o.at,u,f));continue}const[i,r,m={}]=o;void 0!==m.at&&(d=calcNextTime(d,m.at,u,f));let y=0;const w=resolveElements(i,l);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,c);for(const t in r){const i=getValueSequence(t,o);let c=keyframesList(r[t]);const l=getOptions(m,t);let{duration:f=n.duration||s.duration,easing:u=n.easing||s.easing}=l;if(a(u)){const e=isTransform(t);A(2===c.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=u.createAnimation(c,(()=>\"0\"),e);u=n.easing;void 0!==n.keyframes&&(c=n.keyframes);void 0!==n.duration&&(f=n.duration)}const h=resolveOption(m.delay,e,E)||0;const w=d+h;const b=w+f;let{offset:S=p(c.length)}=l;1===S.length&&0===S[0]&&(S[1]=1);const O=length-c.length;O>0&&v(S,O);1===c.length&&c.unshift(null);addKeyframes(i,c,u,S,w,b);y=Math.max(h+f,y);g=Math.max(b,g)}}u=d;d+=y}c.forEach(((e,t)=>{for(const a in e){const c=e[a];c.sort(compareByTime);const l=[];const f=[];const u=[];for(let e=0;e<c.length;e++){const{at:t,value:n,easing:i}=c[e];l.push(n);f.push(o(0,g,t));u.push(i||s.easing)}if(0!==f[0]){f.unshift(0);l.unshift(l[0]);u.unshift(\"linear\")}if(1!==f[f.length-1]){f.push(1);l.push(null)}r.push([t,a,l,Object.assign(Object.assign(Object.assign({},n),{duration:g,easing:u,offset:f}),i)])}}));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,O(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=x((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 U=createGeneratorEasing(V);const q=createGeneratorEasing(z);const K={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:s=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const r=resolveElements(e);const a=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=a.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);i(n)?a.set(e.target,n):c.unobserve(e.target)}else if(n){n(e);a.delete(e.target)}}))};const c=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof s?s:K[s]});r.forEach((e=>c.observe(e)));return()=>c.disconnect()}const G=new WeakMap;let _;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=G.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&&(_=new ResizeObserver(notifyAll))}function resizeElement(e,t){_||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=G.get(e);if(!n){n=new Set;G.set(e,n)}n.add(t);null===_||void 0===_?void 0:_.observe(e)}));return()=>{n.forEach((e=>{const n=G.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===_||void 0===_?void 0:_.unobserve(e))}))}}const Z=new Set;let X;function createWindowResizeHandler(){X=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};Z.forEach((e=>e(t)))};window.addEventListener(\"resize\",X)}function resizeWindow(e){Z.add(e);X||createWindowResizeHandler();return()=>{Z.delete(e);!Z.size&&X&&(X=void 0)}}function resize(e,t){return i(e)?resizeWindow(e):resizeElement(e,t)}const Y=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 J={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,i){const s=n[t];const{length:r,position:a}=J[t];const c=s.current;const l=n.time;s.current=e[\"scroll\"+a];s.scrollLength=e[\"scroll\"+r]-e[\"client\"+r];s.offset.length=0;s.offset[0]=0;s.offset[1]=s.scrollLength;s.progress=o(0,s.scrollLength,s.current);const f=i-l;s.velocity=f>Y?0:y(s.current-c,f)}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 Q={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const ee={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==ee[e]&&(e=ee[e]);if(h(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}l(e)&&(o=t*e);return n+o}const te=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:te;let s=0;let r=0;if(l(e))i=[e,e];else if(h(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,ee[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);r=resolveEdge(i[1],t);return s-r}const ne={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Q.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ne;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=w(p(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 s=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:i(t)?()=>t(n):scrubAnimation(t,n[s])}}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 oe=new WeakMap;const ie=new WeakMap;const se=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=S(t,[\"container\"]);let i=se.get(n);if(!i){i=new Set;se.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!oe.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()};oe.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ie.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=oe.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=se.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=oe.get(n);oe.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ie.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 re;function processScheduledAnimations(){if(!re)return;const e=re.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);re=void 0}function scheduleAnimation(e){if(re)n(re,e);else{re=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){re&&d(re,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 ae={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=S(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 ce={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 le={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 fe={inView:ae,hover:ce,press:le};const ue=[\"initial\",\"animate\",...Object.keys(fe),\"exit\"];const de=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 ue)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)||{},l=S(c,[\"transition\"]);const f=Object.assign({},l);function*animateUpdates(){var t,o;const s=l;l={};const r={};for(const n of ue){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){l[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(l),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===l[e]&&(l[e]=f[e]);if(hasChanged(s[e],l[e])){null!==(t=f[e])&&void 0!==t?t:f[e]=N.get(n,e);c.push(animateStyle(n,e,l[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=l;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(u)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in fe){const o=fe[t].isActive(e);const i=s[t];if(o&&!i)s[t]=fe[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:()=>l,getOptions:()=>e,getContext:()=>r,mount:e=>{A(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;de.set(n,d);updateGestureSubscriptions();return()=>{de.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)){D[o]&&(o=D[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const r=B.get(o);r&&(s=l(i)?r.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{Q as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,q as glide,inView$1 as inView,de as mountedStates,resize,scroll,U as spring,stagger,N as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;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=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__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){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (6d96db3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}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/72O11ApITvgaMZRvyQex/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-zqX0I\";const variantClassNames={jxotylPhM:\"framer-v-tmvala\"};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 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 getProps=({height,id,text,width,...props})=>{return{...props,Kl_dYeuYg:text??props.Kl_dYeuYg??\"Ignite Your Online Presence. \"};};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,Kl_dYeuYg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"jxotylPhM\",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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tmvala\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"jxotylPhM\",ref:refBinding,style:{backgroundColor:\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b9g5fp-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"N0PG0Pm8M-container\",nodeId:\"N0PG0Pm8M\",rendersWithMotion:true,scopeId:\"sesKqVbWl\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:15,height:\"100%\",hoverFactor:.3,id:\"N0PG0Pm8M\",layoutId:\"N0PG0Pm8M\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10s59s4\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"nDwT_0URs\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a666863b-21ed-4db7-87ea-9abd0931d744, rgb(226, 233, 240)))\"},children:\"Save 20% off all new subscription. Celebrate our latest feature launch - use code FRM20\"})}),className:\"framer-1bgsrn4\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"XPDq91xFs\",style:{\"--extracted-r6o4lv\":\"var(--token-a666863b-21ed-4db7-87ea-9abd0931d744, rgb(226, 233, 240))\"},text:Kl_dYeuYg,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nlcodb\",layoutDependency:layoutDependency,layoutId:\"IFO8QnGoQ\",style:{backgroundColor:\"rgb(206, 181, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sd4k4c\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"e7EYcCGkg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a666863b-21ed-4db7-87ea-9abd0931d744, rgb(226, 233, 240)))\"},children:\"Save 20% off all new subscription. Celebrate our latest feature launch - use code FRM20\"})}),className:\"framer-nuqxq1\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"p0Df_r3E_\",style:{\"--extracted-r6o4lv\":\"var(--token-a666863b-21ed-4db7-87ea-9abd0931d744, rgb(226, 233, 240))\"},text:Kl_dYeuYg,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nlcodb\",layoutDependency:layoutDependency,layoutId:\"IFO8QnGoQ\",style:{backgroundColor:\"rgb(206, 181, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})],speed:35,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zqX0I.framer-1uf1qzb, .framer-zqX0I .framer-1uf1qzb { display: block; }\",\".framer-zqX0I.framer-tmvala { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: hidden; padding: 16px 40px 16px 40px; position: relative; width: 1440px; }\",\".framer-zqX0I .framer-b9g5fp-container { flex: 1 0 0px; height: 20px; max-width: 1170px; position: relative; width: 1px; }\",\".framer-zqX0I .framer-10s59s4, .framer-zqX0I .framer-1sd4k4c { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zqX0I .framer-1bgsrn4, .framer-zqX0I .framer-nuqxq1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zqX0I .framer-nlcodb { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 7px); overflow: hidden; position: relative; width: 7px; will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 45\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Kl_dYeuYg\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramersesKqVbWl=withCSS(Component,css,\"framer-zqX0I\");export default FramersesKqVbWl;FramersesKqVbWl.displayName=\"Header/Top Bar\";FramersesKqVbWl.defaultProps={height:45,width:1440};addPropertyControls(FramersesKqVbWl,{Kl_dYeuYg:{defaultValue:\"Ignite Your Online Presence. \",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramersesKqVbWl,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersesKqVbWl\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Kl_dYeuYg\\\":\\\"text\\\"}\",\"framerIntrinsicHeight\":\"45\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sesKqVbWl.map","function t(){return t=Object.assign?Object.assign.bind():function(r){for(var h=1;h<arguments.length;h++){var a=arguments[h];for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(r[c]=a[c])}return r},t.apply(this,arguments)}function e(r,h,a){return Math.max(r,Math.min(h,a))}class i{advance(r){var h;if(!this.isRunning)return;let a=!1;if(this.lerp)this.value=(c=this.value,u=this.to,(1-(p=1-Math.exp(-60*this.lerp*r)))*c+p*u),Math.round(this.value)===this.to&&(this.value=this.to,a=!0);else{this.currentTime+=r;const h=e(0,this.currentTime/this.duration,1);a=h>=1;const c=a?1:this.easing(h);this.value=this.from+(this.to-this.from)*c}var c,u,p;null==(h=this.onUpdate)||h.call(this,this.value,a),a&&this.stop()}stop(){this.isRunning=!1}fromTo(r,h,{lerp:a=.1,duration:c=1,easing:u=(r=>r),onStart:p,onUpdate:d}){this.from=this.value=r,this.to=h,this.lerp=a,this.duration=c,this.easing=u,this.currentTime=0,this.isRunning=!0,null==p||p(),this.onUpdate=d}}class s{constructor({wrapper:r,content:h,autoResize:a=!0}={}){if(this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth},this.wrapper=r,this.content=h,a){const r=function(r,h){let a;return function(){let h=arguments,c=this;clearTimeout(a),a=setTimeout((function(){r.apply(c,h)}),250)}}(this.resize);this.wrapper!==window&&(this.wrapperResizeObserver=new ResizeObserver(r),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(r),this.contentResizeObserver.observe(this.content)}this.resize()}destroy(){var r,h;null==(r=this.wrapperResizeObserver)||r.disconnect(),null==(h=this.contentResizeObserver)||h.disconnect()}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class o{constructor(){this.events={}}emit(r,...h){let a=this.events[r]||[];for(let r=0,c=a.length;r<c;r++)a[r](...h)}on(r,h){var a;return(null==(a=this.events[r])?void 0:a.push(h))||(this.events[r]=[h]),()=>{var a;this.events[r]=null==(a=this.events[r])?void 0:a.filter((r=>h!==r))}}off(r,h){var a;this.events[r]=null==(a=this.events[r])?void 0:a.filter((r=>h!==r))}destroy(){this.events={}}}class n{constructor(r,{wheelMultiplier:h=1,touchMultiplier:a=2,normalizeWheel:c=!1}){this.onTouchStart=r=>{const{clientX:h,clientY:a}=r.targetTouches?r.targetTouches[0]:r;this.touchStart.x=h,this.touchStart.y=a,this.lastDelta={x:0,y:0}},this.onTouchMove=r=>{const{clientX:h,clientY:a}=r.targetTouches?r.targetTouches[0]:r,c=-(h-this.touchStart.x)*this.touchMultiplier,u=-(a-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=h,this.touchStart.y=a,this.lastDelta={x:c,y:u},this.emitter.emit(\"scroll\",{deltaX:c,deltaY:u,event:r})},this.onTouchEnd=r=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:r})},this.onWheel=r=>{let{deltaX:h,deltaY:a}=r;this.normalizeWheel&&(h=e(-100,h,100),a=e(-100,a,100)),h*=this.wheelMultiplier,a*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:h,deltaY:a,event:r})},this.element=r,this.wheelMultiplier=h,this.touchMultiplier=a,this.normalizeWheel=c,this.touchStart={x:null,y:null},this.emitter=new o,this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(r,h){return this.emitter.on(r,h)}destroy(){this.emitter.destroy(),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}}class l{constructor({wrapper:r=window,content:h=document.documentElement,wheelEventsTarget:a=r,eventsTarget:c=a,smoothWheel:u=!0,smoothTouch:p=!1,syncTouch:d=!1,syncTouchLerp:m=.1,__iosNoInertiaSyncTouchLerp:v=.4,touchInertiaMultiplier:g=35,duration:S,easing:w=(r=>Math.min(1,1.001-Math.pow(2,-10*r))),lerp:f=!S&&.1,infinite:y=!1,orientation:T=\"vertical\",gestureOrientation:z=\"vertical\",touchMultiplier:_=1,wheelMultiplier:M=1,normalizeWheel:L=!1,autoResize:b=!0}={}){this.onVirtualScroll=({deltaX:r,deltaY:h,event:a})=>{if(a.ctrlKey)return;const c=a.type.includes(\"touch\"),u=a.type.includes(\"wheel\");if(\"both\"===this.options.gestureOrientation&&0===r&&0===h||\"vertical\"===this.options.gestureOrientation&&0===h||\"horizontal\"===this.options.gestureOrientation&&0===r||c&&\"vertical\"===this.options.gestureOrientation&&0===this.scroll&&!this.options.infinite&&h<=0)return;let p=a.composedPath();if(p=p.slice(0,p.indexOf(this.rootElement)),p.find((r=>{var h;return(null==r.hasAttribute?void 0:r.hasAttribute(\"data-lenis-prevent\"))||c&&(null==r.hasAttribute?void 0:r.hasAttribute(\"data-lenis-prevent-touch\"))||u&&(null==r.hasAttribute?void 0:r.hasAttribute(\"data-lenis-prevent-wheel\"))||(null==(h=r.classList)?void 0:h.contains(\"lenis\"))})))return;if(this.isStopped||this.isLocked)return void a.preventDefault();if(this.isSmooth=(this.options.smoothTouch||this.options.syncTouch)&&c||this.options.smoothWheel&&u,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();a.preventDefault();let d=h;\"both\"===this.options.gestureOrientation?d=Math.abs(h)>Math.abs(r)?h:r:\"horizontal\"===this.options.gestureOrientation&&(d=r);const m=c&&this.options.syncTouch,v=c&&\"touchend\"===a.type&&Math.abs(d)>1;v&&(d=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+d,t({programmatic:!1},m&&{lerp:v?this.syncTouchLerp:this.options.__iosNoInertiaSyncTouchLerp}))},this.onNativeScroll=()=>{if(!this.__preventNextScrollEvent&&!this.isScrolling){const r=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-r),this.emit()}},window.lenisVersion=\"1.0.29\",r!==document.documentElement&&r!==document.body||(r=window),this.options={wrapper:r,content:h,wheelEventsTarget:a,eventsTarget:c,smoothWheel:u,smoothTouch:p,syncTouch:d,syncTouchLerp:m,__iosNoInertiaSyncTouchLerp:v,touchInertiaMultiplier:g,duration:S,easing:w,lerp:f,infinite:y,gestureOrientation:z,orientation:T,touchMultiplier:_,wheelMultiplier:M,normalizeWheel:L,autoResize:b},this.animate=new i,this.emitter=new o,this.dimensions=new s({wrapper:r,content:h,autoResize:b}),this.toggleClass(\"lenis\",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=d||u||p,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,{passive:!1}),this.virtualScroll=new n(c,{touchMultiplier:_,wheelMultiplier:M,normalizeWheel:L}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,{passive:!1}),this.virtualScroll.destroy(),this.dimensions.destroy(),this.toggleClass(\"lenis\",!1),this.toggleClass(\"lenis-smooth\",!1),this.toggleClass(\"lenis-scrolling\",!1),this.toggleClass(\"lenis-stopped\",!1),this.toggleClass(\"lenis-locked\",!1)}on(r,h){return this.emitter.on(r,h)}off(r,h){return this.emitter.off(r,h)}setScroll(r){this.isHorizontal?this.rootElement.scrollLeft=r:this.rootElement.scrollTop=r}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.animate.stop()}start(){this.isStopped=!1,this.reset()}stop(){this.isStopped=!0,this.animate.stop(),this.reset()}raf(r){const h=r-(this.time||r);this.time=r,this.animate.advance(.001*h)}scrollTo(r,{offset:h=0,immediate:a=!1,lock:c=!1,duration:u=this.options.duration,easing:p=this.options.easing,lerp:d=!u&&this.options.lerp,onComplete:m=null,force:v=!1,programmatic:g=!0}={}){if(!this.isStopped&&!this.isLocked||v){if([\"top\",\"left\",\"start\"].includes(r))r=0;else if([\"bottom\",\"right\",\"end\"].includes(r))r=this.limit;else{var S;let a;if(\"string\"==typeof r?a=document.querySelector(r):null!=(S=r)&&S.nodeType&&(a=r),a){if(this.options.wrapper!==window){const r=this.options.wrapper.getBoundingClientRect();h-=this.isHorizontal?r.left:r.top}const c=a.getBoundingClientRect();r=(this.isHorizontal?c.left:c.top)+this.animatedScroll}}if(\"number\"==typeof r){if(r+=h,r=Math.round(r),this.options.infinite?g&&(this.targetScroll=this.animatedScroll=this.scroll):r=e(0,r,this.limit),a)return this.animatedScroll=this.targetScroll=r,this.setScroll(this.scroll),this.reset(),void(null==m||m(this));if(!g){if(r===this.targetScroll)return;this.targetScroll=r}this.animate.fromTo(this.animatedScroll,r,{duration:u,easing:p,lerp:d,onStart:()=>{c&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(r,h)=>{this.isScrolling=!0,this.velocity=r-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=r,this.setScroll(this.scroll),g&&(this.targetScroll=r),h||this.emit(),h&&(this.reset(),this.emit(),null==m||m(this),this.__preventNextScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextScrollEvent})))}})}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?(this.animatedScroll%(r=this.limit)+r)%r:this.animatedScroll;var r}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(r){this.__isSmooth!==r&&(this.__isSmooth=r,this.toggleClass(\"lenis-smooth\",r))}get isScrolling(){return this.__isScrolling}set isScrolling(r){this.__isScrolling!==r&&(this.__isScrolling=r,this.toggleClass(\"lenis-scrolling\",r))}get isStopped(){return this.__isStopped}set isStopped(r){this.__isStopped!==r&&(this.__isStopped=r,this.toggleClass(\"lenis-stopped\",r))}get isLocked(){return this.__isLocked}set isLocked(r){this.__isLocked!==r&&(this.__isLocked=r,this.toggleClass(\"lenis-locked\",r))}get className(){let r=\"lenis\";return this.isStopped&&(r+=\" lenis-stopped\"),this.isLocked&&(r+=\" lenis-locked\"),this.isScrolling&&(r+=\" lenis-scrolling\"),this.isSmooth&&(r+=\" lenis-smooth\"),r}toggleClass(r,h){this.rootElement.classList.toggle(r,h),this.emitter.emit(\"className change\",this)}}export{l as default};\n//# sourceMappingURL=lenis.modern.mjs.map\n","import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"@studio-freight/lenis\";import{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);useEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const handleMutation=(mutationsList,observer)=>{for(const mutation of mutationsList){if(mutation.type===\"childList\"){const hasChildren=overlayElement.children.length>0;if(hasChildren){// Check if the html tag has the style \"overflow: hidden;\"\nconst htmlElement=document.documentElement;const computedStyle=window.getComputedStyle(htmlElement);const isOverflowHidden=computedStyle.getPropertyValue(\"overflow\")===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}}}}};const observer=new MutationObserver(handleMutation);const config={childList:true};observer.observe(overlayElement,config);return()=>observer.disconnect();}},[]);useEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Smooth_Scroll.map","// Generated by Framer (7392a1c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-X0wlM .framer-styles-preset-l1ivrb:not(.rich-text-wrapper), .framer-X0wlM .framer-styles-preset-l1ivrb.rich-text-wrapper a { --framer-link-current-text-color: var(--token-df12aba3-f9d6-43be-8918-5cd5f61eb371, #4d5748); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-df12aba3-f9d6-43be-8918-5cd5f61eb371, #4d5748); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-df12aba3-f9d6-43be-8918-5cd5f61eb371, #4d5748); transition-delay: 0s; transition-duration: 0.3s; transition-property: color; transition-timing-function: cubic-bezier(0.44, 0, 0.56, 1); }\"];export const className=\"framer-X0wlM\";\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 (4b136bb)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Floating,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/otG8UETvUSw92TKJ7eWT/OwwLyqYAJHp7Ht0r4lkQ/hCBayZJTk.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"AGXRWbit1\",\"rprOF4zka\",\"vvjuydFfD\",\"YXLlhJkER\"];const serializationHash=\"framer-5fQdH\";const variantClassNames={AGXRWbit1:\"framer-v-1j3ivuh\",rprOF4zka:\"framer-v-12qphh\",vvjuydFfD:\"framer-v-1sbttp0\",YXLlhJkER:\"framer-v-fhy7vq\"};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 transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};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={\"Mobile Open\":\"YXLlhJkER\",Desktop:\"AGXRWbit1\",Mobile:\"vvjuydFfD\",Tablet:\"rprOF4zka\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"AGXRWbit1\"};};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:\"AGXRWbit1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1nfzj1w=activeVariantCallback(async(...args)=>{setVariant(\"YXLlhJkER\");});const onTapsxvotk=activeVariantCallback(async(...args)=>{setVariant(\"vvjuydFfD\");});const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"vvjuydFfD\",\"YXLlhJkER\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"vvjuydFfD\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"YXLlhJkER\")return true;return false;};const ref1=React.useRef(null);const ref2=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1j3ivuh\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"AGXRWbit1\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-193826bd-e33a-464d-9832-2b52bd72bc94, rgb(255, 255, 255))\",...style},...addPropertyOverrides({rprOF4zka:{\"data-framer-name\":\"Tablet\"},vvjuydFfD:{\"data-framer-name\":\"Mobile\"},YXLlhJkER:{\"data-framer-name\":\"Mobile Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-37ufa4\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"M9bVrl8CK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d1b5lf\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"NjsVB9loH\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"F5Dxsj2WG\",openInNewTab:false,scopeId:\"qtIIpuSCn\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1s61nwn framer-15dp6y3\",layoutDependency:layoutDependency,layoutId:\"F5Dxsj2WG\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-111gbzl\",layoutDependency:layoutDependency,layoutId:\"AEfGPeeLG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114.662 22.984\" overflow=\"visible\"><g><path d=\"M 101.736 17.879 C 101.92 17.024 102.096 16.197 102.264 15.398 C 102.431 14.591 102.623 13.693 102.839 12.702 L 104.241 6.051 C 104.456 5.077 104.66 4.118 104.852 3.176 C 105.052 2.225 105.255 1.27 105.463 0.312 L 109.106 0 L 108.495 2.912 C 108.287 3.902 108.063 4.949 107.824 6.051 L 107.512 7.525 L 107.8 7.525 C 108.38 6.78 109.15 6.205 110.029 5.86 C 110.492 5.684 110.979 5.596 111.49 5.596 C 112.785 5.596 113.683 6.016 114.187 6.854 C 114.69 7.693 114.794 8.812 114.498 10.21 L 114.247 11.36 C 114.159 11.791 114.063 12.239 113.959 12.702 L 113.396 15.398 C 113.228 16.197 113.052 17.024 112.869 17.879 L 109.286 17.879 C 109.469 17.016 109.641 16.193 109.801 15.41 C 109.969 14.627 110.144 13.789 110.328 12.894 L 110.676 11.24 C 110.835 10.521 110.831 9.946 110.664 9.515 C 110.496 9.075 110.096 8.855 109.465 8.855 C 109.122 8.855 108.802 8.923 108.507 9.059 C 108.219 9.195 107.939 9.379 107.668 9.61 C 107.391 9.856 107.13 10.12 106.889 10.401 L 106.362 12.906 C 106.178 13.793 106.002 14.631 105.834 15.422 C 105.667 16.205 105.495 17.024 105.319 17.879 Z M 96.755 18.154 C 95.309 18.154 94.095 17.867 93.112 17.292 C 92.164 16.739 91.435 15.875 91.051 14.847 C 90.652 13.801 90.6 12.574 90.896 11.168 C 91.101 10.118 91.53 9.125 92.154 8.256 C 92.761 7.418 93.536 6.766 94.479 6.303 C 95.421 5.84 96.516 5.608 97.762 5.608 C 98.257 5.608 98.741 5.644 99.212 5.716 C 99.691 5.788 100.151 5.896 100.59 6.039 C 101.029 6.175 101.449 6.347 101.848 6.555 L 100.949 9.646 C 100.604 9.396 100.23 9.187 99.835 9.023 C 99.507 8.886 99.166 8.786 98.816 8.724 C 98.516 8.669 98.211 8.641 97.906 8.64 C 97.099 8.64 96.38 8.887 95.749 9.383 C 95.126 9.87 94.706 10.577 94.491 11.504 C 94.323 12.279 94.339 12.942 94.538 13.493 C 94.746 14.044 95.102 14.468 95.605 14.763 C 96.108 15.051 96.719 15.195 97.438 15.195 C 97.75 15.195 98.053 15.167 98.349 15.111 C 98.645 15.055 98.928 14.971 99.2 14.859 C 99.479 14.739 99.751 14.595 100.015 14.428 L 99.559 17.567 C 99.314 17.691 99.057 17.791 98.792 17.867 C 98.483 17.959 98.166 18.028 97.846 18.07 C 97.485 18.128 97.12 18.156 96.755 18.154 Z M 80.578 17.879 C 80.762 17.024 80.938 16.197 81.105 15.398 C 81.273 14.599 81.465 13.701 81.681 12.702 L 81.932 11.504 C 82.108 10.649 82.296 9.754 82.495 8.82 C 82.695 7.885 82.899 6.918 83.107 5.92 L 86.126 5.74 L 85.863 7.861 L 86.162 7.861 C 86.57 7.222 86.973 6.742 87.373 6.423 C 87.78 6.095 88.179 5.876 88.571 5.764 C 89.186 5.583 89.834 5.55 90.464 5.668 C 90.728 5.708 90.956 5.764 91.147 5.836 L 90.117 9.299 C 89.834 9.261 89.551 9.237 89.266 9.227 C 88.991 9.21 88.715 9.202 88.439 9.203 C 87.944 9.203 87.459 9.34 87.037 9.598 C 86.789 9.742 86.538 9.954 86.282 10.234 C 86.034 10.513 85.795 10.873 85.563 11.312 L 85.216 12.894 C 85.032 13.789 84.856 14.627 84.688 15.41 L 84.161 17.879 Z M 71.163 18.166 C 70.405 18.166 69.769 17.983 69.258 17.615 C 68.752 17.247 68.378 16.726 68.192 16.129 C 67.992 15.514 67.972 14.843 68.132 14.116 C 68.252 13.557 68.443 13.09 68.707 12.714 C 68.979 12.339 69.302 12.031 69.678 11.791 C 70.061 11.552 70.48 11.364 70.936 11.228 C 71.399 11.084 71.878 10.976 72.374 10.905 L 76.124 10.317 C 76.21 10.005 76.175 9.672 76.029 9.383 C 75.893 9.111 75.645 8.903 75.286 8.76 C 74.846 8.594 74.377 8.516 73.908 8.532 C 73.599 8.534 73.29 8.558 72.985 8.604 C 72.665 8.644 72.33 8.708 71.978 8.796 C 71.215 8.978 70.47 9.227 69.749 9.539 L 70.313 6.399 C 70.6 6.303 70.928 6.211 71.295 6.123 C 71.663 6.027 72.05 5.94 72.458 5.86 C 72.865 5.78 73.28 5.716 73.704 5.668 C 74.135 5.62 74.555 5.596 74.962 5.596 C 76.112 5.596 77.059 5.788 77.802 6.171 C 78.545 6.555 79.06 7.102 79.348 7.813 C 79.635 8.516 79.671 9.355 79.456 10.329 C 79.289 11.166 79.114 12.001 78.928 12.834 L 78.713 13.84 L 78.305 15.734 C 78.17 16.397 78.018 17.112 77.85 17.879 L 74.758 17.879 L 74.914 16.285 L 74.639 16.285 C 74.366 16.684 74.035 17.039 73.656 17.34 C 72.939 17.883 72.063 18.173 71.163 18.166 Z M 72.829 15.398 C 73.117 15.398 73.404 15.338 73.692 15.218 C 73.987 15.091 74.267 14.911 74.531 14.679 C 74.802 14.448 75.05 14.172 75.274 13.852 L 75.681 11.935 C 75.552 12.025 75.415 12.106 75.274 12.175 C 75.114 12.247 74.894 12.323 74.615 12.402 C 74.335 12.474 73.956 12.562 73.476 12.666 C 73.187 12.731 72.903 12.815 72.625 12.918 C 72.385 13.004 72.168 13.143 71.99 13.325 C 71.815 13.516 71.699 13.753 71.655 14.008 C 71.575 14.448 71.651 14.791 71.882 15.039 C 72.114 15.278 72.43 15.398 72.829 15.398 Z M 61.857 18.19 C 60.419 18.19 59.216 17.915 58.25 17.363 C 57.291 16.804 56.612 16.013 56.213 14.991 C 55.821 13.968 55.769 12.754 56.057 11.348 C 56.296 10.19 56.704 9.179 57.279 8.316 C 57.854 7.453 58.577 6.786 59.448 6.315 C 60.319 5.836 61.313 5.596 62.432 5.596 C 63.686 5.596 64.709 5.824 65.499 6.279 C 66.29 6.734 66.826 7.374 67.105 8.196 C 67.385 9.019 67.389 9.978 67.117 11.072 C 67.057 11.322 66.989 11.57 66.913 11.815 C 66.851 12.042 66.779 12.266 66.698 12.486 L 63.846 11.42 C 63.924 11.204 63.988 10.984 64.038 10.761 C 64.205 10.058 64.153 9.443 63.882 8.915 C 63.61 8.388 63.151 8.125 62.504 8.125 C 62.083 8.128 61.671 8.239 61.305 8.448 C 60.887 8.697 60.534 9.042 60.275 9.455 C 59.971 9.91 59.74 10.497 59.58 11.216 L 59.448 11.803 C 59.296 12.578 59.332 13.221 59.556 13.733 C 59.788 14.236 60.167 14.615 60.694 14.871 C 61.222 15.119 61.869 15.242 62.636 15.242 C 63.432 15.237 64.223 15.115 64.984 14.883 C 65.375 14.762 65.753 14.602 66.111 14.404 L 65.631 17.447 C 65.351 17.602 65.053 17.723 64.745 17.807 C 64.316 17.93 63.88 18.022 63.438 18.082 C 62.914 18.157 62.386 18.193 61.857 18.19 Z M 57.195 12.486 L 57.495 10.569 L 64.972 10.413 L 67.009 11 L 66.698 12.486 Z M 47.295 18.19 C 46.416 18.19 45.562 18.118 44.731 17.975 C 43.969 17.849 43.219 17.656 42.49 17.399 C 41.945 17.214 41.425 16.961 40.944 16.644 L 41.915 13.289 C 42.402 13.633 42.925 13.936 43.485 14.2 C 44.052 14.456 44.643 14.655 45.258 14.799 C 45.873 14.943 46.504 15.015 47.151 15.015 C 47.639 15.015 48.074 14.967 48.458 14.871 C 48.849 14.775 49.177 14.607 49.44 14.368 C 49.704 14.128 49.884 13.785 49.979 13.337 C 50.082 12.961 50.016 12.559 49.8 12.235 C 49.592 11.907 49.248 11.608 48.769 11.336 C 48.202 11.013 47.613 10.729 47.008 10.485 C 46.017 10.078 45.198 9.614 44.551 9.095 C 43.944 8.621 43.484 7.986 43.221 7.262 C 42.981 6.551 42.965 5.704 43.173 4.721 C 43.365 3.787 43.712 3.004 44.216 2.373 C 44.727 1.734 45.414 1.254 46.277 0.935 C 47.147 0.607 48.218 0.443 49.488 0.443 C 50.063 0.443 50.642 0.487 51.226 0.575 C 51.817 0.663 52.384 0.783 52.927 0.935 C 53.47 1.078 53.97 1.242 54.425 1.426 C 54.88 1.61 55.26 1.801 55.564 2.001 L 54.545 5.261 C 54.092 4.896 53.587 4.601 53.047 4.386 C 52.506 4.154 51.944 3.974 51.369 3.847 C 50.826 3.727 50.371 3.667 50.003 3.667 C 49.572 3.667 49.161 3.711 48.769 3.799 C 48.378 3.887 48.046 4.038 47.775 4.254 C 47.492 4.479 47.301 4.798 47.235 5.153 C 47.152 5.509 47.186 5.883 47.331 6.219 C 47.483 6.531 47.771 6.83 48.194 7.118 C 48.617 7.406 49.2 7.705 49.943 8.017 C 51.158 8.512 52.092 9.035 52.747 9.586 C 53.411 10.13 53.838 10.733 54.03 11.396 C 54.229 12.051 54.241 12.798 54.066 13.637 C 53.842 14.691 53.466 15.554 52.939 16.225 C 52.412 16.888 51.689 17.383 50.77 17.711 C 49.852 18.031 48.693 18.19 47.295 18.19 Z M 28.959 17.879 C 29.486 16.992 29.994 16.133 30.479 15.302 L 32.193 12.414 L 35.704 6.459 L 37.479 3.463 C 37.99 2.6 38.514 1.71 39.047 0.791 L 42.68 0.791 C 41.972 2 41.261 3.206 40.545 4.41 C 40.169 5.041 39.756 5.744 39.3 6.519 L 35.825 12.414 L 34.112 15.302 C 33.624 16.133 33.117 16.992 32.59 17.879 Z\" fill=\"rgb(54,46,55)\"></path><g><defs><linearGradient id=\"idsAEfGPeeLG_3g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 14.979 22.984 C 15.163 22.129 15.342 21.282 15.518 20.443 C 15.694 19.604 15.89 18.69 16.105 17.699 L 17.328 11.899 C 17.511 11.036 17.699 10.142 17.891 9.215 L 18.514 6.315 L 21.689 6.135 L 21.474 7.789 L 21.773 7.789 C 22.077 7.422 22.412 7.102 22.78 6.83 C 23.147 6.559 23.539 6.351 23.954 6.207 C 24.37 6.063 24.801 5.992 25.248 5.992 C 26.359 5.992 27.234 6.311 27.873 6.95 C 28.512 7.581 28.923 8.416 29.107 9.455 C 29.291 10.493 29.259 11.616 29.011 12.822 C 28.801 13.877 28.425 14.892 27.897 15.83 C 27.438 16.643 26.799 17.341 26.027 17.867 C 25.281 18.357 24.404 18.612 23.511 18.598 C 23.031 18.598 22.568 18.53 22.121 18.394 C 21.681 18.266 21.282 18.074 20.922 17.819 C 20.573 17.566 20.28 17.243 20.06 16.872 L 19.844 16.872 L 19.628 17.891 C 19.284 19.554 18.933 21.216 18.574 22.876 Z M 22.48 15.506 C 23.015 15.506 23.479 15.378 23.87 15.123 C 24.262 14.859 24.581 14.504 24.829 14.056 C 25.093 13.585 25.283 13.076 25.392 12.546 C 25.52 11.939 25.536 11.368 25.44 10.833 C 25.376 10.346 25.157 9.892 24.817 9.539 C 24.489 9.203 24.042 9.035 23.475 9.035 C 23.195 9.035 22.924 9.087 22.66 9.191 C 22.387 9.292 22.136 9.442 21.917 9.634 C 21.672 9.84 21.447 10.069 21.246 10.317 L 20.407 14.296 C 20.664 14.796 21.101 15.181 21.629 15.374 C 21.885 15.462 22.169 15.506 22.48 15.506 Z\" fill=\"url(#idsAEfGPeeLG_3g-959068453)\"></path></g><g><defs><linearGradient id=\"idsAEfGPeeLG_4g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.375 18.41 C 4.61 18.41 3.224 18.07 2.217 17.391 C 1.243 16.757 0.538 15.783 0.24 14.659 C -0.072 13.509 -0.08 12.235 0.216 10.837 C 0.28 10.549 0.356 10.19 0.444 9.758 C 0.662 8.752 0.878 7.746 1.091 6.738 C 1.338 5.628 1.554 4.629 1.738 3.743 L 2.325 0.999 L 6.267 0.999 L 5.68 3.731 C 5.496 4.617 5.285 5.616 5.045 6.726 L 4.146 10.957 C 3.979 11.763 3.947 12.486 4.05 13.125 C 4.154 13.757 4.418 14.256 4.841 14.623 C 5.273 14.983 5.88 15.163 6.663 15.163 C 7.454 15.163 8.105 15.015 8.616 14.719 C 9.135 14.424 9.543 14.008 9.838 13.473 C 10.142 12.93 10.374 12.291 10.533 11.556 L 11.552 6.75 C 11.957 4.833 12.364 2.915 12.774 0.999 L 16.717 0.999 L 16.129 3.731 C 15.778 5.437 15.423 7.143 15.063 8.848 L 14.643 10.789 L 14.356 12.167 C 14.127 13.306 13.701 14.397 13.098 15.39 C 12.522 16.325 11.696 17.064 10.617 17.607 C 9.539 18.142 8.125 18.41 6.375 18.41 Z\" fill=\"url(#idsAEfGPeeLG_4g-959068453)\"></path></g></g></svg>',withExternalLayout:true,...addPropertyOverrides({rprOF4zka:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114.662 22.984\" overflow=\"visible\"><g><path d=\"M 101.736 17.879 C 101.92 17.024 102.096 16.197 102.264 15.398 C 102.431 14.591 102.623 13.693 102.839 12.702 L 104.241 6.051 C 104.456 5.077 104.66 4.118 104.852 3.176 C 105.052 2.225 105.255 1.27 105.463 0.312 L 109.106 0 L 108.495 2.912 C 108.287 3.902 108.063 4.949 107.824 6.051 L 107.512 7.525 L 107.8 7.525 C 108.38 6.78 109.15 6.205 110.029 5.86 C 110.492 5.684 110.979 5.596 111.49 5.596 C 112.785 5.596 113.683 6.016 114.187 6.854 C 114.69 7.693 114.794 8.812 114.498 10.21 L 114.247 11.36 C 114.159 11.791 114.063 12.239 113.959 12.702 L 113.396 15.398 C 113.228 16.197 113.052 17.024 112.869 17.879 L 109.286 17.879 C 109.469 17.016 109.641 16.193 109.801 15.41 C 109.969 14.627 110.144 13.789 110.328 12.894 L 110.676 11.24 C 110.835 10.521 110.831 9.946 110.664 9.515 C 110.496 9.075 110.096 8.855 109.465 8.855 C 109.122 8.855 108.802 8.923 108.507 9.059 C 108.219 9.195 107.939 9.379 107.668 9.61 C 107.391 9.856 107.13 10.12 106.889 10.401 L 106.362 12.906 C 106.178 13.793 106.002 14.631 105.834 15.422 C 105.667 16.205 105.495 17.024 105.319 17.879 Z M 96.755 18.154 C 95.309 18.154 94.095 17.867 93.112 17.292 C 92.164 16.739 91.435 15.875 91.051 14.847 C 90.652 13.801 90.6 12.574 90.896 11.168 C 91.101 10.118 91.53 9.125 92.154 8.256 C 92.761 7.418 93.536 6.766 94.479 6.303 C 95.421 5.84 96.516 5.608 97.762 5.608 C 98.257 5.608 98.741 5.644 99.212 5.716 C 99.691 5.788 100.151 5.896 100.59 6.039 C 101.029 6.175 101.449 6.347 101.848 6.555 L 100.949 9.646 C 100.604 9.396 100.23 9.187 99.835 9.023 C 99.507 8.886 99.166 8.786 98.816 8.724 C 98.516 8.669 98.211 8.641 97.906 8.64 C 97.099 8.64 96.38 8.887 95.749 9.383 C 95.126 9.87 94.706 10.577 94.491 11.504 C 94.323 12.279 94.339 12.942 94.538 13.493 C 94.746 14.044 95.102 14.468 95.605 14.763 C 96.108 15.051 96.719 15.195 97.438 15.195 C 97.75 15.195 98.053 15.167 98.349 15.111 C 98.645 15.055 98.928 14.971 99.2 14.859 C 99.479 14.739 99.751 14.595 100.015 14.428 L 99.559 17.567 C 99.314 17.691 99.057 17.791 98.792 17.867 C 98.483 17.959 98.166 18.028 97.846 18.07 C 97.485 18.128 97.12 18.156 96.755 18.154 Z M 80.578 17.879 C 80.762 17.024 80.938 16.197 81.105 15.398 C 81.273 14.599 81.465 13.701 81.681 12.702 L 81.932 11.504 C 82.108 10.649 82.296 9.754 82.495 8.82 C 82.695 7.885 82.899 6.918 83.107 5.92 L 86.126 5.74 L 85.863 7.861 L 86.162 7.861 C 86.57 7.222 86.973 6.742 87.373 6.423 C 87.78 6.095 88.179 5.876 88.571 5.764 C 89.186 5.583 89.834 5.55 90.464 5.668 C 90.728 5.708 90.956 5.764 91.147 5.836 L 90.117 9.299 C 89.834 9.261 89.551 9.237 89.266 9.227 C 88.991 9.21 88.715 9.202 88.439 9.203 C 87.944 9.203 87.459 9.34 87.037 9.598 C 86.789 9.742 86.538 9.954 86.282 10.234 C 86.034 10.513 85.795 10.873 85.563 11.312 L 85.216 12.894 C 85.032 13.789 84.856 14.627 84.688 15.41 L 84.161 17.879 Z M 71.163 18.166 C 70.405 18.166 69.769 17.983 69.258 17.615 C 68.752 17.247 68.378 16.726 68.192 16.129 C 67.992 15.514 67.972 14.843 68.132 14.116 C 68.252 13.557 68.443 13.09 68.707 12.714 C 68.979 12.339 69.302 12.031 69.678 11.791 C 70.061 11.552 70.48 11.364 70.936 11.228 C 71.399 11.084 71.878 10.976 72.374 10.905 L 76.124 10.317 C 76.21 10.005 76.175 9.672 76.029 9.383 C 75.893 9.111 75.645 8.903 75.286 8.76 C 74.846 8.594 74.377 8.516 73.908 8.532 C 73.599 8.534 73.29 8.558 72.985 8.604 C 72.665 8.644 72.33 8.708 71.978 8.796 C 71.215 8.978 70.47 9.227 69.749 9.539 L 70.313 6.399 C 70.6 6.303 70.928 6.211 71.295 6.123 C 71.663 6.027 72.05 5.94 72.458 5.86 C 72.865 5.78 73.28 5.716 73.704 5.668 C 74.135 5.62 74.555 5.596 74.962 5.596 C 76.112 5.596 77.059 5.788 77.802 6.171 C 78.545 6.555 79.06 7.102 79.348 7.813 C 79.635 8.516 79.671 9.355 79.456 10.329 C 79.289 11.166 79.114 12.001 78.928 12.834 L 78.713 13.84 L 78.305 15.734 C 78.17 16.397 78.018 17.112 77.85 17.879 L 74.758 17.879 L 74.914 16.285 L 74.639 16.285 C 74.366 16.684 74.035 17.039 73.656 17.34 C 72.939 17.883 72.063 18.173 71.163 18.166 Z M 72.829 15.398 C 73.117 15.398 73.404 15.338 73.692 15.218 C 73.987 15.091 74.267 14.911 74.531 14.679 C 74.802 14.448 75.05 14.172 75.274 13.852 L 75.681 11.935 C 75.552 12.025 75.415 12.106 75.274 12.175 C 75.114 12.247 74.894 12.323 74.615 12.402 C 74.335 12.474 73.956 12.562 73.476 12.666 C 73.187 12.731 72.903 12.815 72.625 12.918 C 72.385 13.004 72.168 13.143 71.99 13.325 C 71.815 13.516 71.699 13.753 71.655 14.008 C 71.575 14.448 71.651 14.791 71.882 15.039 C 72.114 15.278 72.43 15.398 72.829 15.398 Z M 61.857 18.19 C 60.419 18.19 59.216 17.915 58.25 17.363 C 57.291 16.804 56.612 16.013 56.213 14.991 C 55.821 13.968 55.769 12.754 56.057 11.348 C 56.296 10.19 56.704 9.179 57.279 8.316 C 57.854 7.453 58.577 6.786 59.448 6.315 C 60.319 5.836 61.313 5.596 62.432 5.596 C 63.686 5.596 64.709 5.824 65.499 6.279 C 66.29 6.734 66.826 7.374 67.105 8.196 C 67.385 9.019 67.389 9.978 67.117 11.072 C 67.057 11.322 66.989 11.57 66.913 11.815 C 66.851 12.042 66.779 12.266 66.698 12.486 L 63.846 11.42 C 63.924 11.204 63.988 10.984 64.038 10.761 C 64.205 10.058 64.153 9.443 63.882 8.915 C 63.61 8.388 63.151 8.125 62.504 8.125 C 62.083 8.128 61.671 8.239 61.305 8.448 C 60.887 8.697 60.534 9.042 60.275 9.455 C 59.971 9.91 59.74 10.497 59.58 11.216 L 59.448 11.803 C 59.296 12.578 59.332 13.221 59.556 13.733 C 59.788 14.236 60.167 14.615 60.694 14.871 C 61.222 15.119 61.869 15.242 62.636 15.242 C 63.432 15.237 64.223 15.115 64.984 14.883 C 65.375 14.762 65.753 14.602 66.111 14.404 L 65.631 17.447 C 65.351 17.602 65.053 17.723 64.745 17.807 C 64.316 17.93 63.88 18.022 63.438 18.082 C 62.914 18.157 62.386 18.193 61.857 18.19 Z M 57.195 12.486 L 57.495 10.569 L 64.972 10.413 L 67.009 11 L 66.698 12.486 Z M 47.295 18.19 C 46.416 18.19 45.562 18.118 44.731 17.975 C 43.969 17.849 43.219 17.656 42.49 17.399 C 41.945 17.214 41.425 16.961 40.944 16.644 L 41.915 13.289 C 42.402 13.633 42.925 13.936 43.485 14.2 C 44.052 14.456 44.643 14.655 45.258 14.799 C 45.873 14.943 46.504 15.015 47.151 15.015 C 47.639 15.015 48.074 14.967 48.458 14.871 C 48.849 14.775 49.177 14.607 49.44 14.368 C 49.704 14.128 49.884 13.785 49.979 13.337 C 50.082 12.961 50.016 12.559 49.8 12.235 C 49.592 11.907 49.248 11.608 48.769 11.336 C 48.202 11.013 47.613 10.729 47.008 10.485 C 46.017 10.078 45.198 9.614 44.551 9.095 C 43.944 8.621 43.484 7.986 43.221 7.262 C 42.981 6.551 42.965 5.704 43.173 4.721 C 43.365 3.787 43.712 3.004 44.216 2.373 C 44.727 1.734 45.414 1.254 46.277 0.935 C 47.147 0.607 48.218 0.443 49.488 0.443 C 50.063 0.443 50.642 0.487 51.226 0.575 C 51.817 0.663 52.384 0.783 52.927 0.935 C 53.47 1.078 53.97 1.242 54.425 1.426 C 54.88 1.61 55.26 1.801 55.564 2.001 L 54.545 5.261 C 54.092 4.896 53.587 4.601 53.047 4.386 C 52.506 4.154 51.944 3.974 51.369 3.847 C 50.826 3.727 50.371 3.667 50.003 3.667 C 49.572 3.667 49.161 3.711 48.769 3.799 C 48.378 3.887 48.046 4.038 47.775 4.254 C 47.492 4.479 47.301 4.798 47.235 5.153 C 47.152 5.509 47.186 5.883 47.331 6.219 C 47.483 6.531 47.771 6.83 48.194 7.118 C 48.617 7.406 49.2 7.705 49.943 8.017 C 51.158 8.512 52.092 9.035 52.747 9.586 C 53.411 10.13 53.838 10.733 54.03 11.396 C 54.229 12.051 54.241 12.798 54.066 13.637 C 53.842 14.691 53.466 15.554 52.939 16.225 C 52.412 16.888 51.689 17.383 50.77 17.711 C 49.852 18.031 48.693 18.19 47.295 18.19 Z M 28.959 17.879 C 29.486 16.992 29.994 16.133 30.479 15.302 L 32.193 12.414 L 35.704 6.459 L 37.479 3.463 C 37.99 2.6 38.514 1.71 39.047 0.791 L 42.68 0.791 C 41.972 2 41.261 3.206 40.545 4.41 C 40.169 5.041 39.756 5.744 39.3 6.519 L 35.825 12.414 L 34.112 15.302 C 33.624 16.133 33.117 16.992 32.59 17.879 Z\" fill=\"rgb(54,46,55)\"></path><g><defs><linearGradient id=\"idsrprOF4zkaAEfGPeeLG_3g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 14.979 22.984 C 15.163 22.129 15.342 21.282 15.518 20.443 C 15.694 19.604 15.89 18.69 16.105 17.699 L 17.328 11.899 C 17.511 11.036 17.699 10.142 17.891 9.215 L 18.514 6.315 L 21.689 6.135 L 21.474 7.789 L 21.773 7.789 C 22.077 7.422 22.412 7.102 22.78 6.83 C 23.147 6.559 23.539 6.351 23.954 6.207 C 24.37 6.063 24.801 5.992 25.248 5.992 C 26.359 5.992 27.234 6.311 27.873 6.95 C 28.512 7.581 28.923 8.416 29.107 9.455 C 29.291 10.493 29.259 11.616 29.011 12.822 C 28.801 13.877 28.425 14.892 27.897 15.83 C 27.438 16.643 26.799 17.341 26.027 17.867 C 25.281 18.357 24.404 18.612 23.511 18.598 C 23.031 18.598 22.568 18.53 22.121 18.394 C 21.681 18.266 21.282 18.074 20.922 17.819 C 20.573 17.566 20.28 17.243 20.06 16.872 L 19.844 16.872 L 19.628 17.891 C 19.284 19.554 18.933 21.216 18.574 22.876 Z M 22.48 15.506 C 23.015 15.506 23.479 15.378 23.87 15.123 C 24.262 14.859 24.581 14.504 24.829 14.056 C 25.093 13.585 25.283 13.076 25.392 12.546 C 25.52 11.939 25.536 11.368 25.44 10.833 C 25.376 10.346 25.157 9.892 24.817 9.539 C 24.489 9.203 24.042 9.035 23.475 9.035 C 23.195 9.035 22.924 9.087 22.66 9.191 C 22.387 9.292 22.136 9.442 21.917 9.634 C 21.672 9.84 21.447 10.069 21.246 10.317 L 20.407 14.296 C 20.664 14.796 21.101 15.181 21.629 15.374 C 21.885 15.462 22.169 15.506 22.48 15.506 Z\" fill=\"url(#idsrprOF4zkaAEfGPeeLG_3g-959068453)\"></path></g><g><defs><linearGradient id=\"idsrprOF4zkaAEfGPeeLG_4g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.375 18.41 C 4.61 18.41 3.224 18.07 2.217 17.391 C 1.243 16.757 0.538 15.783 0.24 14.659 C -0.072 13.509 -0.08 12.235 0.216 10.837 C 0.28 10.549 0.356 10.19 0.444 9.758 C 0.662 8.752 0.878 7.746 1.091 6.738 C 1.338 5.628 1.554 4.629 1.738 3.743 L 2.325 0.999 L 6.267 0.999 L 5.68 3.731 C 5.496 4.617 5.285 5.616 5.045 6.726 L 4.146 10.957 C 3.979 11.763 3.947 12.486 4.05 13.125 C 4.154 13.757 4.418 14.256 4.841 14.623 C 5.273 14.983 5.88 15.163 6.663 15.163 C 7.454 15.163 8.105 15.015 8.616 14.719 C 9.135 14.424 9.543 14.008 9.838 13.473 C 10.142 12.93 10.374 12.291 10.533 11.556 L 11.552 6.75 C 11.957 4.833 12.364 2.915 12.774 0.999 L 16.717 0.999 L 16.129 3.731 C 15.778 5.437 15.423 7.143 15.063 8.848 L 14.643 10.789 L 14.356 12.167 C 14.127 13.306 13.701 14.397 13.098 15.39 C 12.522 16.325 11.696 17.064 10.617 17.607 C 9.539 18.142 8.125 18.41 6.375 18.41 Z\" fill=\"url(#idsrprOF4zkaAEfGPeeLG_4g-959068453)\"></path></g></g></svg>'},vvjuydFfD:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114.662 22.984\" overflow=\"visible\"><g><path d=\"M 101.736 17.879 C 101.92 17.024 102.096 16.197 102.264 15.398 C 102.431 14.591 102.623 13.693 102.839 12.702 L 104.241 6.051 C 104.456 5.077 104.66 4.118 104.852 3.176 C 105.052 2.225 105.255 1.27 105.463 0.312 L 109.106 0 L 108.495 2.912 C 108.287 3.902 108.063 4.949 107.824 6.051 L 107.512 7.525 L 107.8 7.525 C 108.38 6.78 109.15 6.205 110.029 5.86 C 110.492 5.684 110.979 5.596 111.49 5.596 C 112.785 5.596 113.683 6.016 114.187 6.854 C 114.69 7.693 114.794 8.812 114.498 10.21 L 114.247 11.36 C 114.159 11.791 114.063 12.239 113.959 12.702 L 113.396 15.398 C 113.228 16.197 113.052 17.024 112.869 17.879 L 109.286 17.879 C 109.469 17.016 109.641 16.193 109.801 15.41 C 109.969 14.627 110.144 13.789 110.328 12.894 L 110.676 11.24 C 110.835 10.521 110.831 9.946 110.664 9.515 C 110.496 9.075 110.096 8.855 109.465 8.855 C 109.122 8.855 108.802 8.923 108.507 9.059 C 108.219 9.195 107.939 9.379 107.668 9.61 C 107.391 9.856 107.13 10.12 106.889 10.401 L 106.362 12.906 C 106.178 13.793 106.002 14.631 105.834 15.422 C 105.667 16.205 105.495 17.024 105.319 17.879 Z M 96.755 18.154 C 95.309 18.154 94.095 17.867 93.112 17.292 C 92.164 16.739 91.435 15.875 91.051 14.847 C 90.652 13.801 90.6 12.574 90.896 11.168 C 91.101 10.118 91.53 9.125 92.154 8.256 C 92.761 7.418 93.536 6.766 94.479 6.303 C 95.421 5.84 96.516 5.608 97.762 5.608 C 98.257 5.608 98.741 5.644 99.212 5.716 C 99.691 5.788 100.151 5.896 100.59 6.039 C 101.029 6.175 101.449 6.347 101.848 6.555 L 100.949 9.646 C 100.604 9.396 100.23 9.187 99.835 9.023 C 99.507 8.886 99.166 8.786 98.816 8.724 C 98.516 8.669 98.211 8.641 97.906 8.64 C 97.099 8.64 96.38 8.887 95.749 9.383 C 95.126 9.87 94.706 10.577 94.491 11.504 C 94.323 12.279 94.339 12.942 94.538 13.493 C 94.746 14.044 95.102 14.468 95.605 14.763 C 96.108 15.051 96.719 15.195 97.438 15.195 C 97.75 15.195 98.053 15.167 98.349 15.111 C 98.645 15.055 98.928 14.971 99.2 14.859 C 99.479 14.739 99.751 14.595 100.015 14.428 L 99.559 17.567 C 99.314 17.691 99.057 17.791 98.792 17.867 C 98.483 17.959 98.166 18.028 97.846 18.07 C 97.485 18.128 97.12 18.156 96.755 18.154 Z M 80.578 17.879 C 80.762 17.024 80.938 16.197 81.105 15.398 C 81.273 14.599 81.465 13.701 81.681 12.702 L 81.932 11.504 C 82.108 10.649 82.296 9.754 82.495 8.82 C 82.695 7.885 82.899 6.918 83.107 5.92 L 86.126 5.74 L 85.863 7.861 L 86.162 7.861 C 86.57 7.222 86.973 6.742 87.373 6.423 C 87.78 6.095 88.179 5.876 88.571 5.764 C 89.186 5.583 89.834 5.55 90.464 5.668 C 90.728 5.708 90.956 5.764 91.147 5.836 L 90.117 9.299 C 89.834 9.261 89.551 9.237 89.266 9.227 C 88.991 9.21 88.715 9.202 88.439 9.203 C 87.944 9.203 87.459 9.34 87.037 9.598 C 86.789 9.742 86.538 9.954 86.282 10.234 C 86.034 10.513 85.795 10.873 85.563 11.312 L 85.216 12.894 C 85.032 13.789 84.856 14.627 84.688 15.41 L 84.161 17.879 Z M 71.163 18.166 C 70.405 18.166 69.769 17.983 69.258 17.615 C 68.752 17.247 68.378 16.726 68.192 16.129 C 67.992 15.514 67.972 14.843 68.132 14.116 C 68.252 13.557 68.443 13.09 68.707 12.714 C 68.979 12.339 69.302 12.031 69.678 11.791 C 70.061 11.552 70.48 11.364 70.936 11.228 C 71.399 11.084 71.878 10.976 72.374 10.905 L 76.124 10.317 C 76.21 10.005 76.175 9.672 76.029 9.383 C 75.893 9.111 75.645 8.903 75.286 8.76 C 74.846 8.594 74.377 8.516 73.908 8.532 C 73.599 8.534 73.29 8.558 72.985 8.604 C 72.665 8.644 72.33 8.708 71.978 8.796 C 71.215 8.978 70.47 9.227 69.749 9.539 L 70.313 6.399 C 70.6 6.303 70.928 6.211 71.295 6.123 C 71.663 6.027 72.05 5.94 72.458 5.86 C 72.865 5.78 73.28 5.716 73.704 5.668 C 74.135 5.62 74.555 5.596 74.962 5.596 C 76.112 5.596 77.059 5.788 77.802 6.171 C 78.545 6.555 79.06 7.102 79.348 7.813 C 79.635 8.516 79.671 9.355 79.456 10.329 C 79.289 11.166 79.114 12.001 78.928 12.834 L 78.713 13.84 L 78.305 15.734 C 78.17 16.397 78.018 17.112 77.85 17.879 L 74.758 17.879 L 74.914 16.285 L 74.639 16.285 C 74.366 16.684 74.035 17.039 73.656 17.34 C 72.939 17.883 72.063 18.173 71.163 18.166 Z M 72.829 15.398 C 73.117 15.398 73.404 15.338 73.692 15.218 C 73.987 15.091 74.267 14.911 74.531 14.679 C 74.802 14.448 75.05 14.172 75.274 13.852 L 75.681 11.935 C 75.552 12.025 75.415 12.106 75.274 12.175 C 75.114 12.247 74.894 12.323 74.615 12.402 C 74.335 12.474 73.956 12.562 73.476 12.666 C 73.187 12.731 72.903 12.815 72.625 12.918 C 72.385 13.004 72.168 13.143 71.99 13.325 C 71.815 13.516 71.699 13.753 71.655 14.008 C 71.575 14.448 71.651 14.791 71.882 15.039 C 72.114 15.278 72.43 15.398 72.829 15.398 Z M 61.857 18.19 C 60.419 18.19 59.216 17.915 58.25 17.363 C 57.291 16.804 56.612 16.013 56.213 14.991 C 55.821 13.968 55.769 12.754 56.057 11.348 C 56.296 10.19 56.704 9.179 57.279 8.316 C 57.854 7.453 58.577 6.786 59.448 6.315 C 60.319 5.836 61.313 5.596 62.432 5.596 C 63.686 5.596 64.709 5.824 65.499 6.279 C 66.29 6.734 66.826 7.374 67.105 8.196 C 67.385 9.019 67.389 9.978 67.117 11.072 C 67.057 11.322 66.989 11.57 66.913 11.815 C 66.851 12.042 66.779 12.266 66.698 12.486 L 63.846 11.42 C 63.924 11.204 63.988 10.984 64.038 10.761 C 64.205 10.058 64.153 9.443 63.882 8.915 C 63.61 8.388 63.151 8.125 62.504 8.125 C 62.083 8.128 61.671 8.239 61.305 8.448 C 60.887 8.697 60.534 9.042 60.275 9.455 C 59.971 9.91 59.74 10.497 59.58 11.216 L 59.448 11.803 C 59.296 12.578 59.332 13.221 59.556 13.733 C 59.788 14.236 60.167 14.615 60.694 14.871 C 61.222 15.119 61.869 15.242 62.636 15.242 C 63.432 15.237 64.223 15.115 64.984 14.883 C 65.375 14.762 65.753 14.602 66.111 14.404 L 65.631 17.447 C 65.351 17.602 65.053 17.723 64.745 17.807 C 64.316 17.93 63.88 18.022 63.438 18.082 C 62.914 18.157 62.386 18.193 61.857 18.19 Z M 57.195 12.486 L 57.495 10.569 L 64.972 10.413 L 67.009 11 L 66.698 12.486 Z M 47.295 18.19 C 46.416 18.19 45.562 18.118 44.731 17.975 C 43.969 17.849 43.219 17.656 42.49 17.399 C 41.945 17.214 41.425 16.961 40.944 16.644 L 41.915 13.289 C 42.402 13.633 42.925 13.936 43.485 14.2 C 44.052 14.456 44.643 14.655 45.258 14.799 C 45.873 14.943 46.504 15.015 47.151 15.015 C 47.639 15.015 48.074 14.967 48.458 14.871 C 48.849 14.775 49.177 14.607 49.44 14.368 C 49.704 14.128 49.884 13.785 49.979 13.337 C 50.082 12.961 50.016 12.559 49.8 12.235 C 49.592 11.907 49.248 11.608 48.769 11.336 C 48.202 11.013 47.613 10.729 47.008 10.485 C 46.017 10.078 45.198 9.614 44.551 9.095 C 43.944 8.621 43.484 7.986 43.221 7.262 C 42.981 6.551 42.965 5.704 43.173 4.721 C 43.365 3.787 43.712 3.004 44.216 2.373 C 44.727 1.734 45.414 1.254 46.277 0.935 C 47.147 0.607 48.218 0.443 49.488 0.443 C 50.063 0.443 50.642 0.487 51.226 0.575 C 51.817 0.663 52.384 0.783 52.927 0.935 C 53.47 1.078 53.97 1.242 54.425 1.426 C 54.88 1.61 55.26 1.801 55.564 2.001 L 54.545 5.261 C 54.092 4.896 53.587 4.601 53.047 4.386 C 52.506 4.154 51.944 3.974 51.369 3.847 C 50.826 3.727 50.371 3.667 50.003 3.667 C 49.572 3.667 49.161 3.711 48.769 3.799 C 48.378 3.887 48.046 4.038 47.775 4.254 C 47.492 4.479 47.301 4.798 47.235 5.153 C 47.152 5.509 47.186 5.883 47.331 6.219 C 47.483 6.531 47.771 6.83 48.194 7.118 C 48.617 7.406 49.2 7.705 49.943 8.017 C 51.158 8.512 52.092 9.035 52.747 9.586 C 53.411 10.13 53.838 10.733 54.03 11.396 C 54.229 12.051 54.241 12.798 54.066 13.637 C 53.842 14.691 53.466 15.554 52.939 16.225 C 52.412 16.888 51.689 17.383 50.77 17.711 C 49.852 18.031 48.693 18.19 47.295 18.19 Z M 28.959 17.879 C 29.486 16.992 29.994 16.133 30.479 15.302 L 32.193 12.414 L 35.704 6.459 L 37.479 3.463 C 37.99 2.6 38.514 1.71 39.047 0.791 L 42.68 0.791 C 41.972 2 41.261 3.206 40.545 4.41 C 40.169 5.041 39.756 5.744 39.3 6.519 L 35.825 12.414 L 34.112 15.302 C 33.624 16.133 33.117 16.992 32.59 17.879 Z\" fill=\"rgb(54,46,55)\"></path><g><defs><linearGradient id=\"idsvvjuydFfDAEfGPeeLG_3g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 14.979 22.984 C 15.163 22.129 15.342 21.282 15.518 20.443 C 15.694 19.604 15.89 18.69 16.105 17.699 L 17.328 11.899 C 17.511 11.036 17.699 10.142 17.891 9.215 L 18.514 6.315 L 21.689 6.135 L 21.474 7.789 L 21.773 7.789 C 22.077 7.422 22.412 7.102 22.78 6.83 C 23.147 6.559 23.539 6.351 23.954 6.207 C 24.37 6.063 24.801 5.992 25.248 5.992 C 26.359 5.992 27.234 6.311 27.873 6.95 C 28.512 7.581 28.923 8.416 29.107 9.455 C 29.291 10.493 29.259 11.616 29.011 12.822 C 28.801 13.877 28.425 14.892 27.897 15.83 C 27.438 16.643 26.799 17.341 26.027 17.867 C 25.281 18.357 24.404 18.612 23.511 18.598 C 23.031 18.598 22.568 18.53 22.121 18.394 C 21.681 18.266 21.282 18.074 20.922 17.819 C 20.573 17.566 20.28 17.243 20.06 16.872 L 19.844 16.872 L 19.628 17.891 C 19.284 19.554 18.933 21.216 18.574 22.876 Z M 22.48 15.506 C 23.015 15.506 23.479 15.378 23.87 15.123 C 24.262 14.859 24.581 14.504 24.829 14.056 C 25.093 13.585 25.283 13.076 25.392 12.546 C 25.52 11.939 25.536 11.368 25.44 10.833 C 25.376 10.346 25.157 9.892 24.817 9.539 C 24.489 9.203 24.042 9.035 23.475 9.035 C 23.195 9.035 22.924 9.087 22.66 9.191 C 22.387 9.292 22.136 9.442 21.917 9.634 C 21.672 9.84 21.447 10.069 21.246 10.317 L 20.407 14.296 C 20.664 14.796 21.101 15.181 21.629 15.374 C 21.885 15.462 22.169 15.506 22.48 15.506 Z\" fill=\"url(#idsvvjuydFfDAEfGPeeLG_3g-959068453)\"></path></g><g><defs><linearGradient id=\"idsvvjuydFfDAEfGPeeLG_4g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.375 18.41 C 4.61 18.41 3.224 18.07 2.217 17.391 C 1.243 16.757 0.538 15.783 0.24 14.659 C -0.072 13.509 -0.08 12.235 0.216 10.837 C 0.28 10.549 0.356 10.19 0.444 9.758 C 0.662 8.752 0.878 7.746 1.091 6.738 C 1.338 5.628 1.554 4.629 1.738 3.743 L 2.325 0.999 L 6.267 0.999 L 5.68 3.731 C 5.496 4.617 5.285 5.616 5.045 6.726 L 4.146 10.957 C 3.979 11.763 3.947 12.486 4.05 13.125 C 4.154 13.757 4.418 14.256 4.841 14.623 C 5.273 14.983 5.88 15.163 6.663 15.163 C 7.454 15.163 8.105 15.015 8.616 14.719 C 9.135 14.424 9.543 14.008 9.838 13.473 C 10.142 12.93 10.374 12.291 10.533 11.556 L 11.552 6.75 C 11.957 4.833 12.364 2.915 12.774 0.999 L 16.717 0.999 L 16.129 3.731 C 15.778 5.437 15.423 7.143 15.063 8.848 L 14.643 10.789 L 14.356 12.167 C 14.127 13.306 13.701 14.397 13.098 15.39 C 12.522 16.325 11.696 17.064 10.617 17.607 C 9.539 18.142 8.125 18.41 6.375 18.41 Z\" fill=\"url(#idsvvjuydFfDAEfGPeeLG_4g-959068453)\"></path></g></g></svg>'},YXLlhJkER:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114.662 22.984\" overflow=\"visible\"><g><path d=\"M 101.736 17.879 C 101.92 17.024 102.096 16.197 102.264 15.398 C 102.431 14.591 102.623 13.693 102.839 12.702 L 104.241 6.051 C 104.456 5.077 104.66 4.118 104.852 3.176 C 105.052 2.225 105.255 1.27 105.463 0.312 L 109.106 0 L 108.495 2.912 C 108.287 3.902 108.063 4.949 107.824 6.051 L 107.512 7.525 L 107.8 7.525 C 108.38 6.78 109.15 6.205 110.029 5.86 C 110.492 5.684 110.979 5.596 111.49 5.596 C 112.785 5.596 113.683 6.016 114.187 6.854 C 114.69 7.693 114.794 8.812 114.498 10.21 L 114.247 11.36 C 114.159 11.791 114.063 12.239 113.959 12.702 L 113.396 15.398 C 113.228 16.197 113.052 17.024 112.869 17.879 L 109.286 17.879 C 109.469 17.016 109.641 16.193 109.801 15.41 C 109.969 14.627 110.144 13.789 110.328 12.894 L 110.676 11.24 C 110.835 10.521 110.831 9.946 110.664 9.515 C 110.496 9.075 110.096 8.855 109.465 8.855 C 109.122 8.855 108.802 8.923 108.507 9.059 C 108.219 9.195 107.939 9.379 107.668 9.61 C 107.391 9.856 107.13 10.12 106.889 10.401 L 106.362 12.906 C 106.178 13.793 106.002 14.631 105.834 15.422 C 105.667 16.205 105.495 17.024 105.319 17.879 Z M 96.755 18.154 C 95.309 18.154 94.095 17.867 93.112 17.292 C 92.164 16.739 91.435 15.875 91.051 14.847 C 90.652 13.801 90.6 12.574 90.896 11.168 C 91.101 10.118 91.53 9.125 92.154 8.256 C 92.761 7.418 93.536 6.766 94.479 6.303 C 95.421 5.84 96.516 5.608 97.762 5.608 C 98.257 5.608 98.741 5.644 99.212 5.716 C 99.691 5.788 100.151 5.896 100.59 6.039 C 101.029 6.175 101.449 6.347 101.848 6.555 L 100.949 9.646 C 100.604 9.396 100.23 9.187 99.835 9.023 C 99.507 8.886 99.166 8.786 98.816 8.724 C 98.516 8.669 98.211 8.641 97.906 8.64 C 97.099 8.64 96.38 8.887 95.749 9.383 C 95.126 9.87 94.706 10.577 94.491 11.504 C 94.323 12.279 94.339 12.942 94.538 13.493 C 94.746 14.044 95.102 14.468 95.605 14.763 C 96.108 15.051 96.719 15.195 97.438 15.195 C 97.75 15.195 98.053 15.167 98.349 15.111 C 98.645 15.055 98.928 14.971 99.2 14.859 C 99.479 14.739 99.751 14.595 100.015 14.428 L 99.559 17.567 C 99.314 17.691 99.057 17.791 98.792 17.867 C 98.483 17.959 98.166 18.028 97.846 18.07 C 97.485 18.128 97.12 18.156 96.755 18.154 Z M 80.578 17.879 C 80.762 17.024 80.938 16.197 81.105 15.398 C 81.273 14.599 81.465 13.701 81.681 12.702 L 81.932 11.504 C 82.108 10.649 82.296 9.754 82.495 8.82 C 82.695 7.885 82.899 6.918 83.107 5.92 L 86.126 5.74 L 85.863 7.861 L 86.162 7.861 C 86.57 7.222 86.973 6.742 87.373 6.423 C 87.78 6.095 88.179 5.876 88.571 5.764 C 89.186 5.583 89.834 5.55 90.464 5.668 C 90.728 5.708 90.956 5.764 91.147 5.836 L 90.117 9.299 C 89.834 9.261 89.551 9.237 89.266 9.227 C 88.991 9.21 88.715 9.202 88.439 9.203 C 87.944 9.203 87.459 9.34 87.037 9.598 C 86.789 9.742 86.538 9.954 86.282 10.234 C 86.034 10.513 85.795 10.873 85.563 11.312 L 85.216 12.894 C 85.032 13.789 84.856 14.627 84.688 15.41 L 84.161 17.879 Z M 71.163 18.166 C 70.405 18.166 69.769 17.983 69.258 17.615 C 68.752 17.247 68.378 16.726 68.192 16.129 C 67.992 15.514 67.972 14.843 68.132 14.116 C 68.252 13.557 68.443 13.09 68.707 12.714 C 68.979 12.339 69.302 12.031 69.678 11.791 C 70.061 11.552 70.48 11.364 70.936 11.228 C 71.399 11.084 71.878 10.976 72.374 10.905 L 76.124 10.317 C 76.21 10.005 76.175 9.672 76.029 9.383 C 75.893 9.111 75.645 8.903 75.286 8.76 C 74.846 8.594 74.377 8.516 73.908 8.532 C 73.599 8.534 73.29 8.558 72.985 8.604 C 72.665 8.644 72.33 8.708 71.978 8.796 C 71.215 8.978 70.47 9.227 69.749 9.539 L 70.313 6.399 C 70.6 6.303 70.928 6.211 71.295 6.123 C 71.663 6.027 72.05 5.94 72.458 5.86 C 72.865 5.78 73.28 5.716 73.704 5.668 C 74.135 5.62 74.555 5.596 74.962 5.596 C 76.112 5.596 77.059 5.788 77.802 6.171 C 78.545 6.555 79.06 7.102 79.348 7.813 C 79.635 8.516 79.671 9.355 79.456 10.329 C 79.289 11.166 79.114 12.001 78.928 12.834 L 78.713 13.84 L 78.305 15.734 C 78.17 16.397 78.018 17.112 77.85 17.879 L 74.758 17.879 L 74.914 16.285 L 74.639 16.285 C 74.366 16.684 74.035 17.039 73.656 17.34 C 72.939 17.883 72.063 18.173 71.163 18.166 Z M 72.829 15.398 C 73.117 15.398 73.404 15.338 73.692 15.218 C 73.987 15.091 74.267 14.911 74.531 14.679 C 74.802 14.448 75.05 14.172 75.274 13.852 L 75.681 11.935 C 75.552 12.025 75.415 12.106 75.274 12.175 C 75.114 12.247 74.894 12.323 74.615 12.402 C 74.335 12.474 73.956 12.562 73.476 12.666 C 73.187 12.731 72.903 12.815 72.625 12.918 C 72.385 13.004 72.168 13.143 71.99 13.325 C 71.815 13.516 71.699 13.753 71.655 14.008 C 71.575 14.448 71.651 14.791 71.882 15.039 C 72.114 15.278 72.43 15.398 72.829 15.398 Z M 61.857 18.19 C 60.419 18.19 59.216 17.915 58.25 17.363 C 57.291 16.804 56.612 16.013 56.213 14.991 C 55.821 13.968 55.769 12.754 56.057 11.348 C 56.296 10.19 56.704 9.179 57.279 8.316 C 57.854 7.453 58.577 6.786 59.448 6.315 C 60.319 5.836 61.313 5.596 62.432 5.596 C 63.686 5.596 64.709 5.824 65.499 6.279 C 66.29 6.734 66.826 7.374 67.105 8.196 C 67.385 9.019 67.389 9.978 67.117 11.072 C 67.057 11.322 66.989 11.57 66.913 11.815 C 66.851 12.042 66.779 12.266 66.698 12.486 L 63.846 11.42 C 63.924 11.204 63.988 10.984 64.038 10.761 C 64.205 10.058 64.153 9.443 63.882 8.915 C 63.61 8.388 63.151 8.125 62.504 8.125 C 62.083 8.128 61.671 8.239 61.305 8.448 C 60.887 8.697 60.534 9.042 60.275 9.455 C 59.971 9.91 59.74 10.497 59.58 11.216 L 59.448 11.803 C 59.296 12.578 59.332 13.221 59.556 13.733 C 59.788 14.236 60.167 14.615 60.694 14.871 C 61.222 15.119 61.869 15.242 62.636 15.242 C 63.432 15.237 64.223 15.115 64.984 14.883 C 65.375 14.762 65.753 14.602 66.111 14.404 L 65.631 17.447 C 65.351 17.602 65.053 17.723 64.745 17.807 C 64.316 17.93 63.88 18.022 63.438 18.082 C 62.914 18.157 62.386 18.193 61.857 18.19 Z M 57.195 12.486 L 57.495 10.569 L 64.972 10.413 L 67.009 11 L 66.698 12.486 Z M 47.295 18.19 C 46.416 18.19 45.562 18.118 44.731 17.975 C 43.969 17.849 43.219 17.656 42.49 17.399 C 41.945 17.214 41.425 16.961 40.944 16.644 L 41.915 13.289 C 42.402 13.633 42.925 13.936 43.485 14.2 C 44.052 14.456 44.643 14.655 45.258 14.799 C 45.873 14.943 46.504 15.015 47.151 15.015 C 47.639 15.015 48.074 14.967 48.458 14.871 C 48.849 14.775 49.177 14.607 49.44 14.368 C 49.704 14.128 49.884 13.785 49.979 13.337 C 50.082 12.961 50.016 12.559 49.8 12.235 C 49.592 11.907 49.248 11.608 48.769 11.336 C 48.202 11.013 47.613 10.729 47.008 10.485 C 46.017 10.078 45.198 9.614 44.551 9.095 C 43.944 8.621 43.484 7.986 43.221 7.262 C 42.981 6.551 42.965 5.704 43.173 4.721 C 43.365 3.787 43.712 3.004 44.216 2.373 C 44.727 1.734 45.414 1.254 46.277 0.935 C 47.147 0.607 48.218 0.443 49.488 0.443 C 50.063 0.443 50.642 0.487 51.226 0.575 C 51.817 0.663 52.384 0.783 52.927 0.935 C 53.47 1.078 53.97 1.242 54.425 1.426 C 54.88 1.61 55.26 1.801 55.564 2.001 L 54.545 5.261 C 54.092 4.896 53.587 4.601 53.047 4.386 C 52.506 4.154 51.944 3.974 51.369 3.847 C 50.826 3.727 50.371 3.667 50.003 3.667 C 49.572 3.667 49.161 3.711 48.769 3.799 C 48.378 3.887 48.046 4.038 47.775 4.254 C 47.492 4.479 47.301 4.798 47.235 5.153 C 47.152 5.509 47.186 5.883 47.331 6.219 C 47.483 6.531 47.771 6.83 48.194 7.118 C 48.617 7.406 49.2 7.705 49.943 8.017 C 51.158 8.512 52.092 9.035 52.747 9.586 C 53.411 10.13 53.838 10.733 54.03 11.396 C 54.229 12.051 54.241 12.798 54.066 13.637 C 53.842 14.691 53.466 15.554 52.939 16.225 C 52.412 16.888 51.689 17.383 50.77 17.711 C 49.852 18.031 48.693 18.19 47.295 18.19 Z M 28.959 17.879 C 29.486 16.992 29.994 16.133 30.479 15.302 L 32.193 12.414 L 35.704 6.459 L 37.479 3.463 C 37.99 2.6 38.514 1.71 39.047 0.791 L 42.68 0.791 C 41.972 2 41.261 3.206 40.545 4.41 C 40.169 5.041 39.756 5.744 39.3 6.519 L 35.825 12.414 L 34.112 15.302 C 33.624 16.133 33.117 16.992 32.59 17.879 Z\" fill=\"rgb(54,46,55)\"></path><g><defs><linearGradient id=\"idsYXLlhJkERAEfGPeeLG_3g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 14.979 22.984 C 15.163 22.129 15.342 21.282 15.518 20.443 C 15.694 19.604 15.89 18.69 16.105 17.699 L 17.328 11.899 C 17.511 11.036 17.699 10.142 17.891 9.215 L 18.514 6.315 L 21.689 6.135 L 21.474 7.789 L 21.773 7.789 C 22.077 7.422 22.412 7.102 22.78 6.83 C 23.147 6.559 23.539 6.351 23.954 6.207 C 24.37 6.063 24.801 5.992 25.248 5.992 C 26.359 5.992 27.234 6.311 27.873 6.95 C 28.512 7.581 28.923 8.416 29.107 9.455 C 29.291 10.493 29.259 11.616 29.011 12.822 C 28.801 13.877 28.425 14.892 27.897 15.83 C 27.438 16.643 26.799 17.341 26.027 17.867 C 25.281 18.357 24.404 18.612 23.511 18.598 C 23.031 18.598 22.568 18.53 22.121 18.394 C 21.681 18.266 21.282 18.074 20.922 17.819 C 20.573 17.566 20.28 17.243 20.06 16.872 L 19.844 16.872 L 19.628 17.891 C 19.284 19.554 18.933 21.216 18.574 22.876 Z M 22.48 15.506 C 23.015 15.506 23.479 15.378 23.87 15.123 C 24.262 14.859 24.581 14.504 24.829 14.056 C 25.093 13.585 25.283 13.076 25.392 12.546 C 25.52 11.939 25.536 11.368 25.44 10.833 C 25.376 10.346 25.157 9.892 24.817 9.539 C 24.489 9.203 24.042 9.035 23.475 9.035 C 23.195 9.035 22.924 9.087 22.66 9.191 C 22.387 9.292 22.136 9.442 21.917 9.634 C 21.672 9.84 21.447 10.069 21.246 10.317 L 20.407 14.296 C 20.664 14.796 21.101 15.181 21.629 15.374 C 21.885 15.462 22.169 15.506 22.48 15.506 Z\" fill=\"url(#idsYXLlhJkERAEfGPeeLG_3g-959068453)\"></path></g><g><defs><linearGradient id=\"idsYXLlhJkERAEfGPeeLG_4g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.375 18.41 C 4.61 18.41 3.224 18.07 2.217 17.391 C 1.243 16.757 0.538 15.783 0.24 14.659 C -0.072 13.509 -0.08 12.235 0.216 10.837 C 0.28 10.549 0.356 10.19 0.444 9.758 C 0.662 8.752 0.878 7.746 1.091 6.738 C 1.338 5.628 1.554 4.629 1.738 3.743 L 2.325 0.999 L 6.267 0.999 L 5.68 3.731 C 5.496 4.617 5.285 5.616 5.045 6.726 L 4.146 10.957 C 3.979 11.763 3.947 12.486 4.05 13.125 C 4.154 13.757 4.418 14.256 4.841 14.623 C 5.273 14.983 5.88 15.163 6.663 15.163 C 7.454 15.163 8.105 15.015 8.616 14.719 C 9.135 14.424 9.543 14.008 9.838 13.473 C 10.142 12.93 10.374 12.291 10.533 11.556 L 11.552 6.75 C 11.957 4.833 12.364 2.915 12.774 0.999 L 16.717 0.999 L 16.129 3.731 C 15.778 5.437 15.423 7.143 15.063 8.848 L 14.643 10.789 L 14.356 12.167 C 14.127 13.306 13.701 14.397 13.098 15.39 C 12.522 16.325 11.696 17.064 10.617 17.607 C 9.539 18.142 8.125 18.41 6.375 18.41 Z\" fill=\"url(#idsYXLlhJkERAEfGPeeLG_4g-959068453)\"></path></g></g></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1eflz8p\",layoutDependency:layoutDependency,layoutId:\"nrTq3MBCj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 85.703 18.19\" overflow=\"visible\"><path d=\"M 72.777 17.879 C 72.961 17.024 73.137 16.197 73.304 15.398 C 73.472 14.591 73.664 13.693 73.88 12.702 L 75.282 6.051 C 75.497 5.077 75.701 4.118 75.893 3.176 C 76.092 2.225 76.296 1.27 76.504 0.312 L 80.147 0 L 79.536 2.912 C 79.328 3.902 79.104 4.949 78.865 6.051 L 78.553 7.525 L 78.841 7.525 C 79.421 6.78 80.19 6.205 81.069 5.86 C 81.533 5.684 82.02 5.596 82.531 5.596 C 83.826 5.596 84.724 6.016 85.228 6.854 C 85.731 7.693 85.835 8.812 85.539 10.21 L 85.288 11.36 C 85.2 11.791 85.104 12.239 85 12.702 L 84.437 15.398 C 84.269 16.197 84.093 17.024 83.909 17.879 L 80.327 17.879 C 80.51 17.016 80.682 16.193 80.842 15.41 C 81.01 14.627 81.185 13.789 81.369 12.894 L 81.717 11.24 C 81.876 10.521 81.872 9.946 81.705 9.515 C 81.537 9.075 81.137 8.855 80.506 8.855 C 80.163 8.855 79.843 8.923 79.548 9.059 C 79.26 9.195 78.98 9.379 78.709 9.61 C 78.431 9.856 78.171 10.12 77.93 10.401 L 77.403 12.906 C 77.219 13.793 77.043 14.631 76.875 15.422 C 76.708 16.205 76.536 17.024 76.36 17.879 Z M 67.796 18.154 C 66.35 18.154 65.136 17.867 64.153 17.292 C 63.205 16.739 62.476 15.875 62.092 14.847 C 61.693 13.801 61.641 12.574 61.936 11.168 C 62.142 10.118 62.571 9.125 63.195 8.256 C 63.802 7.418 64.577 6.766 65.519 6.303 C 66.462 5.84 67.557 5.608 68.803 5.608 C 69.298 5.608 69.781 5.644 70.253 5.716 C 70.732 5.788 71.191 5.896 71.631 6.039 C 72.07 6.175 72.49 6.347 72.889 6.555 L 71.99 9.646 C 71.645 9.396 71.27 9.187 70.876 9.023 C 70.548 8.886 70.207 8.786 69.857 8.724 C 69.557 8.669 69.252 8.641 68.947 8.64 C 68.14 8.64 67.421 8.887 66.79 9.383 C 66.167 9.87 65.747 10.577 65.531 11.504 C 65.364 12.279 65.38 12.942 65.579 13.493 C 65.787 14.044 66.143 14.468 66.646 14.763 C 67.149 15.051 67.76 15.195 68.479 15.195 C 68.791 15.195 69.094 15.167 69.39 15.111 C 69.686 15.055 69.969 14.971 70.241 14.859 C 70.52 14.739 70.792 14.595 71.056 14.428 L 70.6 17.567 C 70.355 17.691 70.098 17.791 69.833 17.867 C 69.524 17.959 69.207 18.028 68.887 18.07 C 68.526 18.128 68.161 18.156 67.796 18.154 Z M 51.619 17.879 C 51.803 17.024 51.979 16.197 52.146 15.398 C 52.314 14.599 52.506 13.701 52.722 12.702 L 52.973 11.504 C 53.149 10.649 53.337 9.754 53.536 8.82 C 53.736 7.885 53.94 6.918 54.148 5.92 L 57.167 5.74 L 56.904 7.861 L 57.203 7.861 C 57.611 7.222 58.014 6.742 58.413 6.423 C 58.821 6.095 59.22 5.876 59.612 5.764 C 60.226 5.583 60.875 5.55 61.505 5.668 C 61.769 5.708 61.996 5.764 62.188 5.836 L 61.158 9.299 C 60.875 9.261 60.591 9.237 60.307 9.227 C 60.032 9.21 59.756 9.202 59.48 9.203 C 58.985 9.203 58.5 9.34 58.078 9.598 C 57.83 9.742 57.579 9.954 57.323 10.234 C 57.075 10.513 56.836 10.873 56.604 11.312 L 56.257 12.894 C 56.073 13.789 55.897 14.627 55.729 15.41 L 55.202 17.879 Z M 42.204 18.166 C 41.445 18.166 40.81 17.983 40.299 17.615 C 39.793 17.247 39.419 16.726 39.233 16.129 C 39.033 15.514 39.013 14.843 39.173 14.116 C 39.292 13.557 39.484 13.09 39.748 12.714 C 40.019 12.339 40.343 12.031 40.718 11.791 C 41.102 11.552 41.521 11.364 41.977 11.228 C 42.44 11.084 42.919 10.976 43.415 10.905 L 47.165 10.317 C 47.25 10.005 47.216 9.672 47.069 9.383 C 46.934 9.111 46.686 8.903 46.327 8.76 C 45.887 8.594 45.418 8.516 44.948 8.532 C 44.64 8.534 44.331 8.558 44.026 8.604 C 43.706 8.644 43.371 8.708 43.019 8.796 C 42.256 8.978 41.51 9.227 40.79 9.539 L 41.354 6.399 C 41.641 6.303 41.969 6.211 42.336 6.123 C 42.704 6.027 43.091 5.94 43.499 5.86 C 43.906 5.78 44.321 5.716 44.745 5.668 C 45.176 5.62 45.596 5.596 46.003 5.596 C 47.153 5.596 48.1 5.788 48.843 6.171 C 49.586 6.555 50.101 7.102 50.389 7.813 C 50.676 8.516 50.712 9.355 50.497 10.329 C 50.33 11.166 50.155 12.001 49.969 12.834 L 49.754 13.84 L 49.346 15.734 C 49.21 16.397 49.059 17.112 48.891 17.879 L 45.799 17.879 L 45.955 16.285 L 45.679 16.285 C 45.407 16.684 45.076 17.039 44.697 17.34 C 43.98 17.883 43.104 18.173 42.204 18.166 Z M 43.87 15.398 C 44.158 15.398 44.445 15.338 44.733 15.218 C 45.028 15.091 45.308 14.911 45.572 14.679 C 45.843 14.448 46.091 14.172 46.315 13.852 L 46.722 11.935 C 46.593 12.025 46.456 12.106 46.315 12.175 C 46.155 12.247 45.935 12.323 45.655 12.402 C 45.376 12.474 44.996 12.562 44.517 12.666 C 44.228 12.731 43.944 12.815 43.666 12.918 C 43.426 13.004 43.209 13.143 43.031 13.325 C 42.856 13.516 42.739 13.753 42.696 14.008 C 42.616 14.448 42.692 14.791 42.923 15.039 C 43.155 15.278 43.471 15.398 43.87 15.398 Z M 32.898 18.19 C 31.46 18.19 30.257 17.915 29.291 17.363 C 28.332 16.804 27.653 16.013 27.253 14.991 C 26.862 13.968 26.81 12.754 27.098 11.348 C 27.337 10.19 27.745 9.179 28.32 8.316 C 28.895 7.453 29.618 6.786 30.489 6.315 C 31.36 5.836 32.354 5.596 33.473 5.596 C 34.727 5.596 35.749 5.824 36.54 6.279 C 37.331 6.734 37.867 7.374 38.146 8.196 C 38.426 9.019 38.43 9.978 38.158 11.072 C 38.098 11.322 38.03 11.57 37.954 11.815 C 37.892 12.042 37.82 12.266 37.739 12.486 L 34.887 11.42 C 34.964 11.204 35.028 10.984 35.078 10.761 C 35.246 10.058 35.194 9.443 34.923 8.915 C 34.651 8.388 34.192 8.125 33.545 8.125 C 33.124 8.128 32.711 8.239 32.346 8.448 C 31.928 8.697 31.575 9.042 31.316 9.455 C 31.012 9.91 30.781 10.497 30.621 11.216 L 30.489 11.803 C 30.337 12.578 30.373 13.221 30.597 13.733 C 30.828 14.236 31.208 14.615 31.735 14.871 C 32.262 15.119 32.91 15.242 33.676 15.242 C 34.473 15.237 35.264 15.115 36.025 14.883 C 36.416 14.762 36.793 14.602 37.152 14.404 L 36.672 17.447 C 36.392 17.602 36.094 17.723 35.785 17.807 C 35.357 17.93 34.921 18.022 34.479 18.082 C 33.955 18.157 33.427 18.193 32.898 18.19 Z M 28.236 12.486 L 28.536 10.569 L 36.013 10.413 L 38.05 11 L 37.739 12.486 Z M 18.336 18.19 C 17.457 18.19 16.603 18.118 15.772 17.975 C 15.009 17.849 14.26 17.656 13.531 17.399 C 12.986 17.214 12.466 16.961 11.985 16.644 L 12.956 13.289 C 13.443 13.633 13.966 13.936 14.525 14.2 C 15.093 14.456 15.684 14.655 16.299 14.799 C 16.914 14.943 17.545 15.015 18.192 15.015 C 18.68 15.015 19.115 14.967 19.498 14.871 C 19.89 14.775 20.217 14.607 20.481 14.368 C 20.745 14.128 20.924 13.785 21.02 13.337 C 21.123 12.961 21.057 12.559 20.841 12.235 C 20.633 11.907 20.289 11.608 19.81 11.336 C 19.242 11.013 18.654 10.729 18.049 10.485 C 17.058 10.078 16.239 9.614 15.592 9.095 C 14.985 8.621 14.524 7.986 14.262 7.262 C 14.022 6.551 14.006 5.704 14.214 4.721 C 14.406 3.787 14.753 3.004 15.256 2.373 C 15.768 1.734 16.455 1.254 17.318 0.935 C 18.188 0.607 19.259 0.443 20.529 0.443 C 21.104 0.443 21.683 0.487 22.267 0.575 C 22.858 0.663 23.425 0.783 23.968 0.935 C 24.511 1.078 25.011 1.242 25.466 1.426 C 25.921 1.61 26.301 1.801 26.604 2.001 L 25.586 5.261 C 25.133 4.896 24.628 4.601 24.088 4.386 C 23.547 4.154 22.985 3.974 22.41 3.847 C 21.867 3.727 21.412 3.667 21.044 3.667 C 20.613 3.667 20.201 3.711 19.81 3.799 C 19.419 3.887 19.087 4.038 18.815 4.254 C 18.533 4.479 18.342 4.798 18.276 5.153 C 18.193 5.509 18.227 5.883 18.372 6.219 C 18.524 6.531 18.811 6.83 19.235 7.118 C 19.658 7.406 20.241 7.705 20.984 8.017 C 22.199 8.512 23.133 9.035 23.788 9.586 C 24.451 10.13 24.879 10.733 25.071 11.396 C 25.27 12.051 25.282 12.798 25.107 13.637 C 24.883 14.691 24.507 15.554 23.98 16.225 C 23.453 16.888 22.73 17.383 21.811 17.711 C 20.892 18.031 19.734 18.19 18.336 18.19 Z M 0 17.879 C 0.527 16.992 1.035 16.133 1.52 15.302 L 3.233 12.414 L 6.744 6.459 L 8.52 3.463 C 9.031 2.6 9.555 1.71 10.088 0.791 L 13.721 0.791 C 13.013 2 12.301 3.206 11.586 4.41 C 11.21 5.041 10.797 5.744 10.341 6.519 L 6.866 12.414 L 5.153 15.302 C 4.665 16.133 4.158 16.992 3.631 17.879 Z\" fill=\"rgb(54,46,55)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u8aylf\",layoutDependency:layoutDependency,layoutId:\"vfBK7wYTb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.926 17.879\" overflow=\"visible\"><path d=\"M 0 17.879 C 0.184 17.024 0.359 16.197 0.527 15.398 C 0.695 14.591 0.887 13.693 1.102 12.702 L 2.504 6.051 C 2.72 5.077 2.924 4.118 3.116 3.176 C 3.315 2.225 3.519 1.27 3.727 0.312 L 7.37 0 L 6.758 2.912 C 6.551 3.902 6.327 4.949 6.087 6.051 L 5.776 7.525 L 6.063 7.525 C 6.643 6.78 7.413 6.205 8.292 5.86 C 8.756 5.684 9.243 5.596 9.754 5.596 C 11.048 5.596 11.947 6.016 12.45 6.854 C 12.954 7.693 13.058 8.812 12.762 10.21 L 12.51 11.36 C 12.422 11.791 12.327 12.239 12.223 12.702 L 11.66 15.398 C 11.492 16.197 11.316 17.024 11.132 17.879 L 7.549 17.879 C 7.733 17.016 7.905 16.193 8.065 15.41 C 8.232 14.627 8.408 13.789 8.592 12.894 L 8.939 11.24 C 9.099 10.521 9.095 9.946 8.927 9.515 C 8.76 9.075 8.36 8.855 7.729 8.855 C 7.386 8.855 7.066 8.923 6.77 9.059 C 6.483 9.195 6.203 9.379 5.932 9.61 C 5.654 9.856 5.394 10.12 5.153 10.401 L 4.625 12.906 C 4.442 13.793 4.266 14.631 4.098 15.422 C 3.93 16.205 3.759 17.024 3.583 17.879 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ab738\",layoutDependency:layoutDependency,layoutId:\"t5iHd1xO2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.141 12.546\" overflow=\"visible\"><path d=\"M 6.048 12.546 C 4.602 12.546 3.388 12.259 2.405 11.683 C 1.457 11.131 0.728 10.267 0.344 9.239 C -0.055 8.192 -0.107 6.966 0.189 5.56 C 0.394 4.51 0.823 3.517 1.447 2.648 C 2.054 1.809 2.829 1.158 3.771 0.695 C 4.714 0.232 5.809 0 7.055 0 C 7.55 0 8.033 0.036 8.505 0.108 C 8.984 0.18 9.443 0.288 9.883 0.431 C 10.322 0.567 10.742 0.739 11.141 0.947 L 10.242 4.038 C 9.897 3.788 9.523 3.578 9.128 3.415 C 8.8 3.278 8.459 3.178 8.109 3.116 C 7.809 3.061 7.504 3.033 7.199 3.032 C 6.392 3.032 5.673 3.279 5.042 3.775 C 4.419 4.262 3.999 4.969 3.783 5.896 C 3.616 6.671 3.632 7.334 3.831 7.885 C 4.039 8.436 4.395 8.859 4.898 9.155 C 5.401 9.443 6.012 9.586 6.731 9.586 C 7.043 9.586 7.346 9.558 7.642 9.503 C 7.938 9.447 8.221 9.363 8.493 9.251 C 8.772 9.131 9.044 8.987 9.308 8.82 L 8.852 11.959 C 8.607 12.083 8.35 12.183 8.085 12.259 C 7.776 12.351 7.459 12.419 7.139 12.462 C 6.778 12.52 6.413 12.548 6.048 12.546 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xcki5o\",layoutDependency:layoutDependency,layoutId:\"w8oRGVioq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.569 12.28\" overflow=\"visible\"><path d=\"M 0 12.28 C 0.184 11.425 0.359 10.598 0.527 9.8 C 0.695 9.001 0.887 8.102 1.102 7.103 L 1.354 5.905 C 1.53 5.05 1.718 4.156 1.917 3.221 C 2.117 2.286 2.321 1.32 2.528 0.321 L 5.548 0.141 L 5.285 2.262 L 5.584 2.262 C 5.992 1.623 6.395 1.144 6.794 0.824 C 7.202 0.497 7.601 0.277 7.993 0.165 C 8.607 -0.016 9.256 -0.049 9.886 0.069 C 10.15 0.109 10.377 0.165 10.569 0.237 L 9.539 3.7 C 9.256 3.662 8.972 3.638 8.688 3.628 C 8.412 3.612 8.137 3.604 7.861 3.604 C 7.366 3.604 6.881 3.741 6.459 4 C 6.211 4.144 5.96 4.355 5.704 4.635 C 5.456 4.914 5.217 5.274 4.985 5.713 L 4.637 7.295 C 4.454 8.19 4.278 9.029 4.11 9.812 L 3.583 12.28 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tqd80y\",layoutDependency:layoutDependency,layoutId:\"fIFrtA3xD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.569 12.57\" overflow=\"visible\"><path d=\"M 3.138 12.57 C 2.379 12.57 1.744 12.387 1.233 12.019 C 0.727 11.651 0.353 11.13 0.166 10.533 C -0.033 9.918 -0.053 9.247 0.107 8.52 C 0.226 7.961 0.418 7.493 0.682 7.118 C 0.953 6.742 1.277 6.435 1.652 6.195 C 2.036 5.956 2.455 5.768 2.911 5.632 C 3.374 5.488 3.853 5.38 4.349 5.309 L 8.099 4.721 C 8.184 4.409 8.15 4.076 8.003 3.787 C 7.868 3.515 7.62 3.307 7.26 3.164 C 6.821 2.998 6.352 2.92 5.882 2.936 C 5.573 2.937 5.265 2.962 4.96 3.008 C 4.64 3.048 4.305 3.112 3.953 3.199 C 3.19 3.382 2.444 3.631 1.724 3.942 L 2.287 0.803 C 2.575 0.707 2.903 0.615 3.27 0.527 C 3.638 0.431 4.025 0.344 4.432 0.264 C 4.84 0.184 5.255 0.12 5.679 0.072 C 6.11 0.024 6.529 0 6.937 0 C 8.087 0 9.034 0.192 9.777 0.575 C 10.52 0.959 11.035 1.506 11.323 2.217 C 11.61 2.92 11.646 3.759 11.431 4.733 C 11.264 5.57 11.088 6.405 10.903 7.238 L 10.688 8.244 L 10.28 10.138 C 10.144 10.801 9.993 11.516 9.825 12.283 L 6.733 12.283 L 6.889 10.689 L 6.613 10.689 C 6.341 11.088 6.009 11.443 5.631 11.743 C 4.914 12.287 4.038 12.577 3.138 12.57 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10xbdus\",layoutDependency:layoutDependency,layoutId:\"FSs45GrgC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.057 3.463\" overflow=\"visible\"><path d=\"M 1.205 3.463 C 1.493 3.463 1.78 3.403 2.068 3.283 C 2.363 3.156 2.643 2.976 2.907 2.744 C 3.178 2.512 3.426 2.237 3.65 1.917 L 4.057 0 C 3.928 0.09 3.791 0.17 3.65 0.24 C 3.49 0.312 3.27 0.387 2.991 0.467 C 2.711 0.539 2.331 0.627 1.852 0.731 C 1.563 0.796 1.279 0.88 1.001 0.983 C 0.761 1.068 0.544 1.208 0.366 1.39 C 0.191 1.581 0.075 1.818 0.031 2.073 C -0.049 2.512 0.027 2.856 0.258 3.104 C 0.49 3.343 0.806 3.463 1.205 3.463 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ed6dsa\",layoutDependency:layoutDependency,layoutId:\"NGi7EzXRi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.444 12.594\" overflow=\"visible\"><path d=\"M 5.983 12.594 C 4.545 12.594 3.342 12.319 2.376 11.767 C 1.417 11.208 0.738 10.417 0.338 9.395 C -0.053 8.372 -0.105 7.158 0.183 5.752 C 0.422 4.594 0.83 3.583 1.405 2.72 C 1.98 1.857 2.703 1.19 3.574 0.719 C 4.445 0.24 5.439 0 6.558 0 C 7.812 0 8.834 0.228 9.625 0.683 C 10.416 1.138 10.951 1.777 11.231 2.6 C 11.511 3.423 11.515 4.382 11.243 5.476 C 11.183 5.726 11.115 5.974 11.039 6.219 C 10.977 6.446 10.905 6.67 10.824 6.89 L 7.972 5.824 C 8.049 5.608 8.113 5.388 8.163 5.165 C 8.331 4.462 8.279 3.847 8.008 3.319 C 7.736 2.792 7.277 2.528 6.63 2.528 C 6.209 2.532 5.796 2.643 5.431 2.852 C 5.013 3.101 4.66 3.446 4.401 3.859 C 4.097 4.314 3.866 4.901 3.706 5.62 L 3.574 6.207 C 3.422 6.982 3.458 7.625 3.682 8.137 C 3.913 8.64 4.293 9.019 4.82 9.275 C 5.347 9.523 5.994 9.646 6.761 9.646 C 7.558 9.64 8.349 9.519 9.11 9.287 C 9.501 9.166 9.878 9.005 10.236 8.808 L 9.757 11.851 C 9.477 12.006 9.179 12.126 8.87 12.211 C 8.442 12.334 8.006 12.426 7.564 12.486 C 7.04 12.561 6.512 12.597 5.983 12.594 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13sydmr\",layoutDependency:layoutDependency,layoutId:\"fTVgAD_4u\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.814 2.073\" overflow=\"visible\"><path d=\"M 0 2.073 L 0.3 0.156 L 7.777 0 L 9.814 0.587 L 9.503 2.073 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h4q8ff\",layoutDependency:layoutDependency,layoutId:\"ydtbCnnmW\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.619 17.747\" overflow=\"visible\"><path d=\"M 6.351 17.747 C 5.472 17.747 4.617 17.675 3.787 17.531 C 3.024 17.405 2.275 17.213 1.546 16.956 C 1.001 16.771 0.481 16.517 0 16.201 L 0.971 12.846 C 1.458 13.189 1.981 13.493 2.54 13.757 C 3.108 14.012 3.699 14.212 4.314 14.356 C 4.929 14.5 5.56 14.571 6.207 14.571 C 6.695 14.571 7.13 14.523 7.513 14.428 C 7.905 14.332 8.232 14.164 8.496 13.924 C 8.76 13.685 8.939 13.341 9.035 12.894 C 9.138 12.518 9.072 12.116 8.855 11.791 C 8.648 11.464 8.304 11.164 7.825 10.893 C 7.257 10.57 6.669 10.286 6.063 10.042 C 5.073 9.634 4.254 9.171 3.607 8.652 C 3 8.178 2.539 7.542 2.277 6.818 C 2.037 6.107 2.021 5.261 2.229 4.278 C 2.421 3.343 2.768 2.56 3.271 1.929 C 3.783 1.29 4.47 0.811 5.332 0.491 C 6.203 0.164 7.274 0 8.544 0 C 9.119 0 9.698 0.044 10.281 0.132 C 10.873 0.22 11.44 0.34 11.983 0.491 C 12.526 0.635 13.026 0.799 13.481 0.983 C 13.936 1.166 14.316 1.358 14.619 1.558 L 13.601 4.817 C 13.148 4.453 12.643 4.158 12.103 3.942 C 11.562 3.711 11 3.531 10.425 3.403 C 9.882 3.283 9.427 3.223 9.059 3.223 C 8.628 3.223 8.216 3.267 7.825 3.355 C 7.433 3.443 7.102 3.595 6.83 3.811 C 6.548 4.035 6.357 4.355 6.291 4.709 C 6.208 5.066 6.242 5.44 6.387 5.776 C 6.539 6.087 6.826 6.387 7.25 6.675 C 7.673 6.962 8.256 7.262 8.999 7.573 C 10.214 8.069 11.148 8.592 11.803 9.143 C 12.466 9.686 12.894 10.289 13.086 10.953 C 13.285 11.608 13.297 12.355 13.121 13.193 C 12.898 14.248 12.522 15.111 11.995 15.782 C 11.468 16.445 10.745 16.94 9.826 17.268 C 8.907 17.587 7.749 17.747 6.351 17.747 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hzsnkj\",layoutDependency:layoutDependency,layoutId:\"esTmirs7_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.721 17.088\" overflow=\"visible\"><path d=\"M 0 17.088 C 0.527 16.201 1.035 15.342 1.52 14.511 L 3.233 11.624 L 6.744 5.668 L 8.52 2.672 C 9.031 1.809 9.555 0.919 10.088 0 L 13.721 0 C 13.013 1.209 12.301 2.415 11.586 3.619 C 11.21 4.25 10.797 4.953 10.341 5.728 L 6.866 11.624 L 5.153 14.511 C 4.665 15.342 4.158 16.201 3.631 17.088 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1e7zzbn\",layoutDependency:layoutDependency,layoutId:\"sxKMtHqc7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.245 16.992\" overflow=\"visible\"><g><defs><linearGradient id=\"idssxKMtHqc7_1g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0 16.992 C 0.184 16.137 0.363 15.29 0.539 14.452 C 0.715 13.613 0.911 12.698 1.126 11.707 L 2.349 5.908 C 2.532 5.045 2.72 4.15 2.912 3.223 L 3.535 0.324 L 6.711 0.144 L 6.495 1.797 L 6.794 1.797 C 7.098 1.43 7.433 1.11 7.801 0.839 C 8.168 0.567 8.56 0.359 8.975 0.216 C 9.391 0.072 9.822 0 10.269 0 C 11.38 0 12.255 0.32 12.894 0.959 C 13.533 1.59 13.944 2.425 14.128 3.463 C 14.312 4.502 14.28 5.624 14.032 6.83 C 13.822 7.886 13.446 8.901 12.918 9.838 C 12.46 10.652 11.82 11.349 11.048 11.875 C 10.302 12.366 9.425 12.621 8.532 12.606 C 8.053 12.606 7.589 12.538 7.142 12.402 C 6.703 12.275 6.303 12.083 5.944 11.827 C 5.594 11.574 5.301 11.252 5.081 10.881 L 4.865 10.881 L 4.649 11.899 C 4.306 13.562 3.954 15.224 3.595 16.884 Z M 7.501 9.515 C 8.037 9.515 8.5 9.387 8.891 9.131 C 9.283 8.867 9.602 8.512 9.85 8.065 C 10.115 7.593 10.305 7.084 10.413 6.555 C 10.541 5.948 10.557 5.376 10.461 4.841 C 10.397 4.354 10.179 3.901 9.838 3.547 C 9.511 3.211 9.063 3.044 8.496 3.044 C 8.216 3.044 7.945 3.096 7.681 3.199 C 7.409 3.301 7.157 3.451 6.938 3.643 C 6.693 3.848 6.468 4.077 6.267 4.326 L 5.428 8.304 C 5.686 8.805 6.122 9.19 6.651 9.383 C 6.906 9.471 7.19 9.515 7.501 9.515 Z\" fill=\"url(#idssxKMtHqc7_1g-959068453)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({rprOF4zka:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.245 16.992\" overflow=\"visible\"><g><defs><linearGradient id=\"idsrprOF4zkasxKMtHqc7_1g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0 16.992 C 0.184 16.137 0.363 15.29 0.539 14.452 C 0.715 13.613 0.911 12.698 1.126 11.707 L 2.349 5.908 C 2.532 5.045 2.72 4.15 2.912 3.223 L 3.535 0.324 L 6.711 0.144 L 6.495 1.797 L 6.794 1.797 C 7.098 1.43 7.433 1.11 7.801 0.839 C 8.168 0.567 8.56 0.359 8.975 0.216 C 9.391 0.072 9.822 0 10.269 0 C 11.38 0 12.255 0.32 12.894 0.959 C 13.533 1.59 13.944 2.425 14.128 3.463 C 14.312 4.502 14.28 5.624 14.032 6.83 C 13.822 7.886 13.446 8.901 12.918 9.838 C 12.46 10.652 11.82 11.349 11.048 11.875 C 10.302 12.366 9.425 12.621 8.532 12.606 C 8.053 12.606 7.589 12.538 7.142 12.402 C 6.703 12.275 6.303 12.083 5.944 11.827 C 5.594 11.574 5.301 11.252 5.081 10.881 L 4.865 10.881 L 4.649 11.899 C 4.306 13.562 3.954 15.224 3.595 16.884 Z M 7.501 9.515 C 8.037 9.515 8.5 9.387 8.891 9.131 C 9.283 8.867 9.602 8.512 9.85 8.065 C 10.115 7.593 10.305 7.084 10.413 6.555 C 10.541 5.948 10.557 5.376 10.461 4.841 C 10.397 4.354 10.179 3.901 9.838 3.547 C 9.511 3.211 9.063 3.044 8.496 3.044 C 8.216 3.044 7.945 3.096 7.681 3.199 C 7.409 3.301 7.157 3.451 6.938 3.643 C 6.693 3.848 6.468 4.077 6.267 4.326 L 5.428 8.304 C 5.686 8.805 6.122 9.19 6.651 9.383 C 6.906 9.471 7.19 9.515 7.501 9.515 Z\" fill=\"url(#idsrprOF4zkasxKMtHqc7_1g-959068453)\"></path></g></svg>'},vvjuydFfD:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.245 16.992\" overflow=\"visible\"><g><defs><linearGradient id=\"idsvvjuydFfDsxKMtHqc7_1g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0 16.992 C 0.184 16.137 0.363 15.29 0.539 14.452 C 0.715 13.613 0.911 12.698 1.126 11.707 L 2.349 5.908 C 2.532 5.045 2.72 4.15 2.912 3.223 L 3.535 0.324 L 6.711 0.144 L 6.495 1.797 L 6.794 1.797 C 7.098 1.43 7.433 1.11 7.801 0.839 C 8.168 0.567 8.56 0.359 8.975 0.216 C 9.391 0.072 9.822 0 10.269 0 C 11.38 0 12.255 0.32 12.894 0.959 C 13.533 1.59 13.944 2.425 14.128 3.463 C 14.312 4.502 14.28 5.624 14.032 6.83 C 13.822 7.886 13.446 8.901 12.918 9.838 C 12.46 10.652 11.82 11.349 11.048 11.875 C 10.302 12.366 9.425 12.621 8.532 12.606 C 8.053 12.606 7.589 12.538 7.142 12.402 C 6.703 12.275 6.303 12.083 5.944 11.827 C 5.594 11.574 5.301 11.252 5.081 10.881 L 4.865 10.881 L 4.649 11.899 C 4.306 13.562 3.954 15.224 3.595 16.884 Z M 7.501 9.515 C 8.037 9.515 8.5 9.387 8.891 9.131 C 9.283 8.867 9.602 8.512 9.85 8.065 C 10.115 7.593 10.305 7.084 10.413 6.555 C 10.541 5.948 10.557 5.376 10.461 4.841 C 10.397 4.354 10.179 3.901 9.838 3.547 C 9.511 3.211 9.063 3.044 8.496 3.044 C 8.216 3.044 7.945 3.096 7.681 3.199 C 7.409 3.301 7.157 3.451 6.938 3.643 C 6.693 3.848 6.468 4.077 6.267 4.326 L 5.428 8.304 C 5.686 8.805 6.122 9.19 6.651 9.383 C 6.906 9.471 7.19 9.515 7.501 9.515 Z\" fill=\"url(#idsvvjuydFfDsxKMtHqc7_1g-959068453)\"></path></g></svg>'},YXLlhJkER:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.245 16.992\" overflow=\"visible\"><g><defs><linearGradient id=\"idsYXLlhJkERsxKMtHqc7_1g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0 16.992 C 0.184 16.137 0.363 15.29 0.539 14.452 C 0.715 13.613 0.911 12.698 1.126 11.707 L 2.349 5.908 C 2.532 5.045 2.72 4.15 2.912 3.223 L 3.535 0.324 L 6.711 0.144 L 6.495 1.797 L 6.794 1.797 C 7.098 1.43 7.433 1.11 7.801 0.839 C 8.168 0.567 8.56 0.359 8.975 0.216 C 9.391 0.072 9.822 0 10.269 0 C 11.38 0 12.255 0.32 12.894 0.959 C 13.533 1.59 13.944 2.425 14.128 3.463 C 14.312 4.502 14.28 5.624 14.032 6.83 C 13.822 7.886 13.446 8.901 12.918 9.838 C 12.46 10.652 11.82 11.349 11.048 11.875 C 10.302 12.366 9.425 12.621 8.532 12.606 C 8.053 12.606 7.589 12.538 7.142 12.402 C 6.703 12.275 6.303 12.083 5.944 11.827 C 5.594 11.574 5.301 11.252 5.081 10.881 L 4.865 10.881 L 4.649 11.899 C 4.306 13.562 3.954 15.224 3.595 16.884 Z M 7.501 9.515 C 8.037 9.515 8.5 9.387 8.891 9.131 C 9.283 8.867 9.602 8.512 9.85 8.065 C 10.115 7.593 10.305 7.084 10.413 6.555 C 10.541 5.948 10.557 5.376 10.461 4.841 C 10.397 4.354 10.179 3.901 9.838 3.547 C 9.511 3.211 9.063 3.044 8.496 3.044 C 8.216 3.044 7.945 3.096 7.681 3.199 C 7.409 3.301 7.157 3.451 6.938 3.643 C 6.693 3.848 6.468 4.077 6.267 4.326 L 5.428 8.304 C 5.686 8.805 6.122 9.19 6.651 9.383 C 6.906 9.471 7.19 9.515 7.501 9.515 Z\" fill=\"url(#idsYXLlhJkERsxKMtHqc7_1g-959068453)\"></path></g></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wx81mm\",layoutDependency:layoutDependency,layoutId:\"UuK66Jk0G\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.245 16.992\" overflow=\"visible\"><path d=\"M 0 16.992 C 0.184 16.137 0.363 15.29 0.539 14.452 C 0.715 13.613 0.911 12.698 1.126 11.707 L 2.349 5.908 C 2.532 5.045 2.72 4.15 2.912 3.223 L 3.535 0.324 L 6.711 0.144 L 6.495 1.797 L 6.794 1.797 C 7.098 1.43 7.433 1.11 7.801 0.839 C 8.168 0.567 8.56 0.359 8.975 0.216 C 9.391 0.072 9.822 0 10.269 0 C 11.38 0 12.255 0.32 12.894 0.959 C 13.533 1.59 13.944 2.425 14.128 3.463 C 14.312 4.502 14.28 5.624 14.032 6.83 C 13.822 7.886 13.446 8.901 12.918 9.838 C 12.46 10.652 11.82 11.349 11.048 11.875 C 10.302 12.366 9.425 12.621 8.532 12.606 C 8.053 12.606 7.589 12.538 7.142 12.402 C 6.703 12.275 6.303 12.083 5.944 11.827 C 5.594 11.574 5.301 11.252 5.081 10.881 L 4.865 10.881 L 4.649 11.899 C 4.306 13.562 3.954 15.224 3.595 16.884 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13sb9at\",layoutDependency:layoutDependency,layoutId:\"i8qw42kZG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.095 6.471\" overflow=\"visible\"><path d=\"M 2.073 6.471 C 2.608 6.471 3.072 6.343 3.463 6.087 C 3.855 5.824 4.174 5.468 4.422 5.021 C 4.686 4.55 4.876 4.04 4.985 3.511 C 5.113 2.904 5.129 2.333 5.033 1.797 C 4.969 1.311 4.75 0.857 4.41 0.503 C 4.082 0.168 3.635 0 3.068 0 C 2.788 0 2.516 0.052 2.253 0.156 C 1.98 0.257 1.728 0.407 1.51 0.599 C 1.265 0.805 1.04 1.033 0.839 1.282 L 0 5.261 C 0.257 5.761 0.694 6.146 1.222 6.339 C 1.478 6.427 1.762 6.471 2.073 6.471 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xaeyn7\",layoutDependency:layoutDependency,layoutId:\"Gp8kKz1hd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.717 17.411\" overflow=\"visible\"><g><defs><linearGradient id=\"idsGp8kKz1hd_1g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.375 17.411 C 4.61 17.411 3.224 17.072 2.217 16.393 C 1.243 15.758 0.538 14.785 0.24 13.661 C -0.072 12.51 -0.08 11.236 0.216 9.838 C 0.28 9.551 0.356 9.191 0.444 8.76 C 0.662 7.754 0.878 6.747 1.091 5.74 C 1.338 4.629 1.554 3.631 1.738 2.744 L 2.325 0 L 6.267 0 L 5.68 2.732 C 5.496 3.619 5.285 4.617 5.045 5.728 L 4.146 9.958 C 3.979 10.765 3.947 11.488 4.05 12.127 C 4.154 12.758 4.418 13.257 4.841 13.625 C 5.273 13.984 5.88 14.164 6.663 14.164 C 7.454 14.164 8.105 14.016 8.616 13.721 C 9.135 13.425 9.543 13.01 9.838 12.474 C 10.142 11.931 10.374 11.292 10.533 10.557 L 11.552 5.752 C 11.957 3.834 12.364 1.917 12.774 0 L 16.717 0 L 16.129 2.732 C 15.778 4.439 15.423 6.144 15.063 7.849 L 14.643 9.79 L 14.356 11.168 C 14.127 12.308 13.701 13.398 13.098 14.392 C 12.522 15.326 11.696 16.065 10.617 16.609 C 9.539 17.144 8.125 17.411 6.375 17.411 Z\" fill=\"url(#idsGp8kKz1hd_1g-959068453)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({rprOF4zka:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.717 17.411\" overflow=\"visible\"><g><defs><linearGradient id=\"idsrprOF4zkaGp8kKz1hd_1g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.375 17.411 C 4.61 17.411 3.224 17.072 2.217 16.393 C 1.243 15.758 0.538 14.785 0.24 13.661 C -0.072 12.51 -0.08 11.236 0.216 9.838 C 0.28 9.551 0.356 9.191 0.444 8.76 C 0.662 7.754 0.878 6.747 1.091 5.74 C 1.338 4.629 1.554 3.631 1.738 2.744 L 2.325 0 L 6.267 0 L 5.68 2.732 C 5.496 3.619 5.285 4.617 5.045 5.728 L 4.146 9.958 C 3.979 10.765 3.947 11.488 4.05 12.127 C 4.154 12.758 4.418 13.257 4.841 13.625 C 5.273 13.984 5.88 14.164 6.663 14.164 C 7.454 14.164 8.105 14.016 8.616 13.721 C 9.135 13.425 9.543 13.01 9.838 12.474 C 10.142 11.931 10.374 11.292 10.533 10.557 L 11.552 5.752 C 11.957 3.834 12.364 1.917 12.774 0 L 16.717 0 L 16.129 2.732 C 15.778 4.439 15.423 6.144 15.063 7.849 L 14.643 9.79 L 14.356 11.168 C 14.127 12.308 13.701 13.398 13.098 14.392 C 12.522 15.326 11.696 16.065 10.617 16.609 C 9.539 17.144 8.125 17.411 6.375 17.411 Z\" fill=\"url(#idsrprOF4zkaGp8kKz1hd_1g-959068453)\"></path></g></svg>'},vvjuydFfD:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.717 17.411\" overflow=\"visible\"><g><defs><linearGradient id=\"idsvvjuydFfDGp8kKz1hd_1g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.375 17.411 C 4.61 17.411 3.224 17.072 2.217 16.393 C 1.243 15.758 0.538 14.785 0.24 13.661 C -0.072 12.51 -0.08 11.236 0.216 9.838 C 0.28 9.551 0.356 9.191 0.444 8.76 C 0.662 7.754 0.878 6.747 1.091 5.74 C 1.338 4.629 1.554 3.631 1.738 2.744 L 2.325 0 L 6.267 0 L 5.68 2.732 C 5.496 3.619 5.285 4.617 5.045 5.728 L 4.146 9.958 C 3.979 10.765 3.947 11.488 4.05 12.127 C 4.154 12.758 4.418 13.257 4.841 13.625 C 5.273 13.984 5.88 14.164 6.663 14.164 C 7.454 14.164 8.105 14.016 8.616 13.721 C 9.135 13.425 9.543 13.01 9.838 12.474 C 10.142 11.931 10.374 11.292 10.533 10.557 L 11.552 5.752 C 11.957 3.834 12.364 1.917 12.774 0 L 16.717 0 L 16.129 2.732 C 15.778 4.439 15.423 6.144 15.063 7.849 L 14.643 9.79 L 14.356 11.168 C 14.127 12.308 13.701 13.398 13.098 14.392 C 12.522 15.326 11.696 16.065 10.617 16.609 C 9.539 17.144 8.125 17.411 6.375 17.411 Z\" fill=\"url(#idsvvjuydFfDGp8kKz1hd_1g-959068453)\"></path></g></svg>'},YXLlhJkER:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.717 17.411\" overflow=\"visible\"><g><defs><linearGradient id=\"idsYXLlhJkERGp8kKz1hd_1g-959068453\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(166,110,255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(197,166,247)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 6.375 17.411 C 4.61 17.411 3.224 17.072 2.217 16.393 C 1.243 15.758 0.538 14.785 0.24 13.661 C -0.072 12.51 -0.08 11.236 0.216 9.838 C 0.28 9.551 0.356 9.191 0.444 8.76 C 0.662 7.754 0.878 6.747 1.091 5.74 C 1.338 4.629 1.554 3.631 1.738 2.744 L 2.325 0 L 6.267 0 L 5.68 2.732 C 5.496 3.619 5.285 4.617 5.045 5.728 L 4.146 9.958 C 3.979 10.765 3.947 11.488 4.05 12.127 C 4.154 12.758 4.418 13.257 4.841 13.625 C 5.273 13.984 5.88 14.164 6.663 14.164 C 7.454 14.164 8.105 14.016 8.616 13.721 C 9.135 13.425 9.543 13.01 9.838 12.474 C 10.142 11.931 10.374 11.292 10.533 10.557 L 11.552 5.752 C 11.957 3.834 12.364 1.917 12.774 0 L 16.717 0 L 16.129 2.732 C 15.778 4.439 15.423 6.144 15.063 7.849 L 14.643 9.79 L 14.356 11.168 C 14.127 12.308 13.701 13.398 13.098 14.392 C 12.522 15.326 11.696 16.065 10.617 16.609 C 9.539 17.144 8.125 17.411 6.375 17.411 Z\" fill=\"url(#idsYXLlhJkERGp8kKz1hd_1g-959068453)\"></path></g></svg>'}},baseVariant,gestureVariant)})]})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3jrah8\",\"data-border\":true,\"data-framer-name\":\"Burger\",layoutDependency:layoutDependency,layoutId:\"kT97akzad\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(40, 50, 32)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-5b302bbb-d4df-4957-a858-071688e919c3, rgb(169, 248, 186))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{vvjuydFfD:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},YXLlhJkER:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({vvjuydFfD:{\"data-highlight\":true,onTap:onTap1nfzj1w},YXLlhJkER:{\"data-highlight\":true,onTap:onTapsxvotk}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vmeuf3\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"vFbOPnXI2\",style:{backgroundColor:\"rgb(40, 50, 32)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,rotate:0},variants:{YXLlhJkER:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ndpix5\",\"data-framer-name\":\"Middle\",layoutDependency:layoutDependency,layoutId:\"TjpwtXD__\",style:{backgroundColor:\"rgb(40, 50, 32)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2mp83k\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"fjRy4Veba\",style:{backgroundColor:\"rgb(40, 50, 32)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,rotate:0},variants:{YXLlhJkER:{rotate:45}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g9y34v\",\"data-framer-name\":\"Nav\",layoutDependency:layoutDependency,layoutId:\"jSaNTI6vP\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ej04c\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"SOVMCkhte\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a0ov4BgkL\"},motionChild:true,nodeId:\"HEnJ0A73z\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"About us\"})})})}),className:\"framer-dj01ks\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"HEnJ0A73z\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rprOF4zka:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a0ov4BgkL\"},motionChild:true,nodeId:\"HEnJ0A73z\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"About us\"})})})}),fonts:[\"CUSTOM;Pretendard SemiBold\"]},YXLlhJkER:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a0ov4BgkL\"},motionChild:true,nodeId:\"HEnJ0A73z\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"About us\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7lfmrm\",layoutDependency:layoutDependency,layoutId:\"OZASvHa6r\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-51oq7o\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"GGu4jDGDk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(146, 125, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B88qbdZyx\"},motionChild:true,nodeId:\"s6WPJdQiV\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"웹사이트 SEO\"})})})}),className:\"framer-265hq3\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"s6WPJdQiV\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tt3x4Yh21\"},motionChild:true,nodeId:\"g57VeLXui\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"유튜브 SEO\"})})})}),className:\"framer-11d2vsa\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"g57VeLXui\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n5p3dKNwd\"},motionChild:true,nodeId:\"jOrpkEpHr\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"AEO\"})})})}),className:\"framer-1bdhsuk\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"jOrpkEpHr\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mjWjwPpwl\"},motionChild:true,nodeId:\"yGGV2adxe\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"로컬 SEO\"})})})}),className:\"framer-1v1ngnn\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"yGGV2adxe\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IZ_Tm2Uw6\"},motionChild:true,nodeId:\"XFBilBXW4\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"온서프 SEO\"})})})}),className:\"framer-nxfykw\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"XFBilBXW4\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nQlksldWf\"},motionChild:true,nodeId:\"W2T3Xi68X\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Services\"})})})}),className:\"framer-h2vkbn\",\"data-framer-name\":\"Link\",\"data-highlight\":true,fonts:[\"GF;DM Sans-700\"],id:`${layoutId}-h2vkbn`,layoutDependency:layoutDependency,layoutId:\"W2T3Xi68X\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref1,style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},variants:{YXLlhJkER:{\"--extracted-r6o4lv\":\"rgb(147, 125, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rprOF4zka:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nQlksldWf\"},motionChild:true,nodeId:\"W2T3Xi68X\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Services\"})})})}),fonts:[\"CUSTOM;Pretendard SemiBold\"]},YXLlhJkER:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(147, 125, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Our service\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-h2vkbn`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1u1tycz\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"ybtc8M8LM\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ot31j\",layoutDependency:layoutDependency,layoutId:\"aADUUsYjQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(147, 125, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Our service\"})}),className:\"framer-1sknx4t\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"au3SrzguF\",style:{\"--extracted-r6o4lv\":\"rgb(147, 125, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kvb00q\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"teoIAM8Eq\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(146, 125, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B88qbdZyx\"},motionChild:true,nodeId:\"orfGXHt0V\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"웹사이트 SEO\"})})})}),className:\"framer-aaieiz\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"orfGXHt0V\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tt3x4Yh21\"},motionChild:true,nodeId:\"DVQuavfJr\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"유튜브 SEO\"})})})}),className:\"framer-tp9tfw\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"DVQuavfJr\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n5p3dKNwd\"},motionChild:true,nodeId:\"yMgEdRKXe\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"AEO\"})})})}),className:\"framer-ouqh22\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"yMgEdRKXe\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mjWjwPpwl\"},motionChild:true,nodeId:\"UQkYq4Tov\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"로컬 SEO\"})})})}),className:\"framer-1em9zz3\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"UQkYq4Tov\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IZ_Tm2Uw6\"},motionChild:true,nodeId:\"DfxtKZUiE\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"온서프 SEO\"})})})}),className:\"framer-1f92opy\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"DfxtKZUiE\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HuACH1EbC\"},motionChild:true,nodeId:\"o5mw_wBL9\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Blog\"})})})}),className:\"framer-ixtka3\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"o5mw_wBL9\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rprOF4zka:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HuACH1EbC\"},motionChild:true,nodeId:\"o5mw_wBL9\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Blog\"})})})}),fonts:[\"CUSTOM;Pretendard SemiBold\"]},YXLlhJkER:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HuACH1EbC\"},motionChild:true,nodeId:\"o5mw_wBL9\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Blog\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yLro6MXLB\"},motionChild:true,nodeId:\"nlrDYrDe2\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Contact\"})})})}),className:\"framer-1j7l6de\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"nlrDYrDe2\",style:{\"--extracted-r6o4lv\":\"var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rprOF4zka:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yLro6MXLB\"},motionChild:true,nodeId:\"nlrDYrDe2\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Contact\"})})})}),fonts:[\"CUSTOM;Pretendard SemiBold\"]},YXLlhJkER:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-afbc588f-6e51-4b78-98f1-e5841e74b55c, rgb(21, 21, 21)))\",\"--framer-text-transform\":\"inherit\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yLro6MXLB\"},motionChild:true,nodeId:\"nlrDYrDe2\",openInNewTab:false,relValues:[],scopeId:\"qtIIpuSCn\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Contact\"})})})})}},baseVariant,gestureVariant)})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5fQdH.framer-15dp6y3, .framer-5fQdH .framer-15dp6y3 { display: block; }\",\".framer-5fQdH.framer-1j3ivuh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 40px 20px 40px; position: relative; width: 1440px; }\",\".framer-5fQdH .framer-37ufa4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5fQdH .framer-1d1b5lf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 193px; }\",\".framer-5fQdH .framer-1s61nwn { flex: none; height: 23px; overflow: visible; position: relative; text-decoration: none; width: 115px; }\",\".framer-5fQdH .framer-111gbzl { height: 23px; left: 0px; position: absolute; top: 0px; width: 115px; }\",\".framer-5fQdH .framer-1eflz8p { height: 18px; left: 29px; position: absolute; top: 0px; width: 86px; }\",\".framer-5fQdH .framer-u8aylf { height: 18px; left: 73px; position: absolute; top: 0px; width: 13px; }\",\".framer-5fQdH .framer-1ab738 { height: 13px; left: 62px; position: absolute; top: 6px; width: 11px; }\",\".framer-5fQdH .framer-1xcki5o { height: 13px; left: 52px; position: absolute; top: 6px; width: 11px; }\",\".framer-5fQdH .framer-tqd80y { height: 13px; left: 39px; position: absolute; top: 6px; width: 12px; }\",\".framer-5fQdH .framer-10xbdus { height: 4px; left: 43px; position: absolute; top: 12px; width: 4px; }\",\".framer-5fQdH .framer-1ed6dsa { height: 13px; left: 27px; position: absolute; top: 6px; width: 12px; }\",\".framer-5fQdH .framer-13sydmr { height: 2px; left: 28px; position: absolute; top: 11px; width: 10px; }\",\".framer-5fQdH .framer-1h4q8ff { height: 18px; left: 12px; position: absolute; top: 1px; width: 15px; }\",\".framer-5fQdH .framer-hzsnkj { height: 17px; left: 0px; position: absolute; top: 1px; width: 14px; }\",\".framer-5fQdH .framer-1e7zzbn { height: 17px; left: 15px; position: absolute; top: 6px; width: 14px; }\",\".framer-5fQdH .framer-wx81mm { height: 17px; left: 0px; position: absolute; top: 0px; width: 14px; }\",\".framer-5fQdH .framer-13sb9at { height: 7px; left: 6px; position: absolute; top: 3px; width: 5px; }\",\".framer-5fQdH .framer-xaeyn7 { height: 18px; left: 0px; position: absolute; top: 1px; width: 17px; }\",\".framer-5fQdH .framer-3jrah8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: hidden; position: relative; width: 38px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5fQdH .framer-1vmeuf3 { bottom: 10px; flex: none; height: 3px; left: calc(50.00000000000002% - 22px / 2); overflow: visible; position: absolute; width: 22px; }\",\".framer-5fQdH .framer-ndpix5 { flex: none; height: 3px; left: calc(50.00000000000002% - 22px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 3px / 2); width: 22px; }\",\".framer-5fQdH .framer-2mp83k { flex: none; height: 3px; left: calc(50.00000000000002% - 22px / 2); overflow: visible; position: absolute; top: 10px; width: 22px; }\",\".framer-5fQdH .framer-1g9y34v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5fQdH .framer-10ej04c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5fQdH .framer-dj01ks, .framer-5fQdH .framer-h2vkbn, .framer-5fQdH .framer-ixtka3, .framer-5fQdH .framer-1j7l6de { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5fQdH .framer-7lfmrm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5fQdH .framer-51oq7o { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 172px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: auto; }\",\".framer-5fQdH .framer-265hq3, .framer-5fQdH .framer-11d2vsa, .framer-5fQdH .framer-1bdhsuk, .framer-5fQdH .framer-1v1ngnn, .framer-5fQdH .framer-nxfykw, .framer-5fQdH .framer-1sknx4t, .framer-5fQdH .framer-aaieiz, .framer-5fQdH .framer-tp9tfw, .framer-5fQdH .framer-ouqh22, .framer-5fQdH .framer-1em9zz3, .framer-5fQdH .framer-1f92opy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5fQdH .framer-1u1tycz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-5fQdH .framer-6ot31j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100px; }\",\".framer-5fQdH .framer-1kvb00q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-5fQdH.framer-v-12qphh.framer-1j3ivuh { width: 810px; }\",\".framer-5fQdH.framer-v-12qphh .framer-1d1b5lf { gap: 0px; justify-content: center; width: min-content; }\",\".framer-5fQdH.framer-v-12qphh .framer-1g9y34v { gap: 24px; }\",\".framer-5fQdH.framer-v-12qphh .framer-10ej04c { gap: 20px; }\",\".framer-5fQdH.framer-v-12qphh .framer-1u1tycz { justify-content: flex-start; width: 200px; }\",\".framer-5fQdH.framer-v-12qphh .framer-6ot31j { flex: 1 0 0px; width: 1px; }\",\".framer-5fQdH.framer-v-1sbttp0.framer-1j3ivuh, .framer-5fQdH.framer-v-fhy7vq.framer-1j3ivuh { flex-direction: column; gap: 20px; justify-content: flex-start; padding: 20px; width: 390px; }\",\".framer-5fQdH.framer-v-1sbttp0 .framer-37ufa4, .framer-5fQdH.framer-v-fhy7vq .framer-37ufa4 { flex: none; flex-direction: column; gap: 20px; justify-content: flex-start; width: 100%; }\",\".framer-5fQdH.framer-v-1sbttp0 .framer-1d1b5lf, .framer-5fQdH.framer-v-fhy7vq .framer-1d1b5lf, .framer-5fQdH.framer-v-fhy7vq .framer-7lfmrm { width: 100%; }\",\".framer-5fQdH.framer-v-1sbttp0 .framer-1s61nwn { height: 24px; }\",\".framer-5fQdH.framer-v-1sbttp0 .framer-111gbzl { top: 1px; }\",\".framer-5fQdH.framer-v-1sbttp0 .framer-3jrah8, .framer-5fQdH.framer-v-fhy7vq .framer-3jrah8 { cursor: pointer; }\",\".framer-5fQdH.framer-v-fhy7vq .framer-1vmeuf3 { bottom: unset; top: calc(50.00000000000002% - 3px / 2); }\",\".framer-5fQdH.framer-v-fhy7vq .framer-ndpix5 { left: calc(50.00000000000002% - 1px / 2); width: 1px; }\",\".framer-5fQdH.framer-v-fhy7vq .framer-2mp83k { top: calc(50.00000000000002% - 3px / 2); }\",\".framer-5fQdH.framer-v-fhy7vq .framer-1g9y34v { flex-direction: column; width: 100%; }\",\".framer-5fQdH.framer-v-fhy7vq .framer-10ej04c { align-content: center; align-items: center; flex-direction: column; gap: 30px; width: 100%; }\",\".framer-5fQdH.framer-v-fhy7vq .framer-dj01ks, .framer-5fQdH.framer-v-fhy7vq .framer-ixtka3, .framer-5fQdH.framer-v-fhy7vq .framer-1j7l6de { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5fQdH.framer-v-fhy7vq .framer-51oq7o { align-self: unset; min-height: unset; order: 1; width: 100%; }\",\".framer-5fQdH.framer-v-fhy7vq .framer-h2vkbn { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,'.framer-5fQdH[data-border=\"true\"]::after, .framer-5fQdH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 63\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rprOF4zka\":{\"layout\":[\"fixed\",\"auto\"]},\"vvjuydFfD\":{\"layout\":[\"fixed\",\"auto\"]},\"YXLlhJkER\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqtIIpuSCn=withCSS(Component,css,\"framer-5fQdH\");export default FramerqtIIpuSCn;FramerqtIIpuSCn.displayName=\"Header/Menu\";FramerqtIIpuSCn.defaultProps={height:63,width:1440};addPropertyControls(FramerqtIIpuSCn,{variant:{options:[\"AGXRWbit1\",\"rprOF4zka\",\"vvjuydFfD\",\"YXLlhJkER\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\",\"Mobile Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerqtIIpuSCn,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqtIIpuSCn\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"63\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rprOF4zka\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vvjuydFfD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YXLlhJkER\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qtIIpuSCn.map","// Generated by Framer (a64543f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/otG8UETvUSw92TKJ7eWT/OwwLyqYAJHp7Ht0r4lkQ/hCBayZJTk.js\";const cycleOrder=[\"NyoAqQSiC\",\"wCYZ0XTdl\",\"WMUOn3Bay\"];const serializationHash=\"framer-hsmMh\";const variantClassNames={NyoAqQSiC:\"framer-v-lrpyik\",wCYZ0XTdl:\"framer-v-156tsfo\",WMUOn3Bay:\"framer-v-1ccaq1t\"};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 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:\"NyoAqQSiC\",Phone:\"WMUOn3Bay\",Tablet:\"wCYZ0XTdl\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NyoAqQSiC\"};};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:\"NyoAqQSiC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-lrpyik\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"NyoAqQSiC\",ref:refBinding,style:{backgroundColor:\"var(--token-193826bd-e33a-464d-9832-2b52bd72bc94, rgb(255, 255, 255))\",...style},...addPropertyOverrides({wCYZ0XTdl:{\"data-framer-name\":\"Tablet\"},WMUOn3Bay:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hvt7q4\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"QGrqUWlmP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lszwbs\",\"data-framer-name\":\"widget\",layoutDependency:layoutDependency,layoutId:\"HdU7M0l3t\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1jwozsd\",layoutDependency:layoutDependency,layoutId:\"pCYcvGamd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 85.12 16.988\" overflow=\"visible\"><g><path d=\"M 75.525 13.215 C 75.661 12.583 75.792 11.972 75.916 11.381 C 76.041 10.785 76.183 10.121 76.343 9.388 L 77.384 4.473 C 77.544 3.752 77.695 3.044 77.838 2.347 C 77.986 1.644 78.137 0.939 78.291 0.23 L 80.996 0 L 80.542 2.152 C 80.388 2.884 80.222 3.658 80.044 4.473 L 79.812 5.562 L 80.026 5.562 C 80.456 5.011 81.028 4.586 81.681 4.331 C 82.025 4.201 82.386 4.136 82.766 4.136 C 83.727 4.136 84.394 4.446 84.767 5.066 C 85.141 5.686 85.218 6.513 84.999 7.546 L 84.812 8.396 C 84.747 8.715 84.675 9.046 84.598 9.388 L 84.18 11.381 C 84.056 11.972 83.925 12.583 83.789 13.215 L 81.129 13.215 C 81.265 12.577 81.393 11.969 81.512 11.39 C 81.636 10.812 81.767 10.192 81.903 9.53 L 82.161 8.308 C 82.28 7.776 82.277 7.351 82.152 7.032 C 82.028 6.708 81.731 6.545 81.262 6.545 C 81.007 6.545 80.77 6.596 80.551 6.696 C 80.337 6.796 80.13 6.932 79.928 7.103 C 79.722 7.285 79.529 7.48 79.35 7.688 L 78.958 9.539 C 78.822 10.194 78.692 10.814 78.567 11.399 C 78.443 11.978 78.315 12.583 78.185 13.215 Z M 71.827 13.418 C 70.754 13.418 69.852 13.206 69.123 12.781 C 68.418 12.372 67.878 11.734 67.593 10.974 C 67.296 10.2 67.258 9.294 67.477 8.255 C 67.629 7.479 67.948 6.745 68.411 6.103 C 68.862 5.483 69.437 5.001 70.137 4.659 C 70.837 4.316 71.649 4.145 72.574 4.145 C 72.942 4.145 73.301 4.172 73.651 4.225 C 74.007 4.278 74.348 4.358 74.674 4.464 C 75 4.564 75.311 4.691 75.608 4.845 L 74.941 7.13 C 74.684 6.945 74.406 6.79 74.113 6.669 C 73.87 6.568 73.617 6.494 73.357 6.448 C 73.134 6.408 72.908 6.387 72.681 6.386 C 72.082 6.386 71.548 6.569 71.08 6.935 C 70.617 7.295 70.306 7.818 70.146 8.503 C 70.021 9.076 70.033 9.566 70.181 9.973 C 70.336 10.38 70.599 10.693 70.973 10.912 C 71.347 11.124 71.8 11.231 72.334 11.231 C 72.565 11.231 72.791 11.21 73.01 11.169 C 73.23 11.127 73.44 11.065 73.642 10.983 C 73.849 10.894 74.051 10.788 74.247 10.664 L 73.909 12.984 C 73.726 13.076 73.536 13.15 73.339 13.206 C 73.109 13.274 72.874 13.325 72.637 13.356 C 72.369 13.399 72.098 13.419 71.827 13.418 Z M 59.818 13.215 C 59.954 12.583 60.085 11.972 60.209 11.381 C 60.334 10.791 60.476 10.127 60.636 9.388 L 60.823 8.503 C 60.954 7.871 61.093 7.21 61.241 6.519 C 61.389 5.828 61.541 5.113 61.695 4.375 L 63.937 4.243 L 63.741 5.81 L 63.963 5.81 C 64.266 5.338 64.565 4.984 64.862 4.747 C 65.164 4.505 65.461 4.343 65.751 4.26 C 66.208 4.127 66.689 4.102 67.157 4.189 C 67.353 4.219 67.522 4.26 67.664 4.313 L 66.899 6.873 C 66.689 6.845 66.479 6.827 66.267 6.82 C 66.063 6.808 65.858 6.802 65.653 6.802 C 65.286 6.802 64.926 6.903 64.613 7.094 C 64.429 7.201 64.242 7.357 64.052 7.564 C 63.868 7.771 63.69 8.036 63.518 8.361 L 63.26 9.53 C 63.124 10.192 62.994 10.812 62.869 11.39 L 62.478 13.215 Z M 52.829 13.427 C 52.265 13.427 51.794 13.291 51.414 13.02 C 51.039 12.748 50.761 12.363 50.623 11.922 C 50.474 11.467 50.46 10.971 50.578 10.434 C 50.667 10.02 50.809 9.675 51.005 9.397 C 51.207 9.12 51.447 8.892 51.726 8.715 C 52.01 8.538 52.322 8.399 52.66 8.299 C 53.004 8.193 53.36 8.113 53.727 8.06 L 56.512 7.626 C 56.575 7.395 56.549 7.149 56.44 6.935 C 56.34 6.734 56.156 6.581 55.889 6.475 C 55.562 6.352 55.215 6.295 54.866 6.306 C 54.637 6.307 54.408 6.325 54.181 6.359 C 53.944 6.389 53.695 6.436 53.434 6.501 C 52.867 6.636 52.314 6.82 51.779 7.05 L 52.197 4.73 C 52.411 4.659 52.654 4.591 52.927 4.526 C 53.199 4.455 53.487 4.39 53.79 4.331 C 54.092 4.272 54.4 4.225 54.715 4.189 C 55.035 4.154 55.346 4.136 55.649 4.136 C 56.503 4.136 57.205 4.278 57.757 4.561 C 58.309 4.845 58.691 5.249 58.905 5.775 C 59.118 6.294 59.145 6.914 58.985 7.635 C 58.861 8.253 58.731 8.87 58.593 9.486 L 58.433 10.23 L 58.131 11.629 C 58.03 12.119 57.917 12.648 57.793 13.215 L 55.497 13.215 L 55.613 12.037 L 55.409 12.037 C 55.206 12.332 54.96 12.594 54.679 12.816 C 54.147 13.218 53.496 13.432 52.829 13.427 Z M 54.065 11.381 C 54.279 11.381 54.492 11.337 54.706 11.248 C 54.925 11.154 55.133 11.021 55.328 10.85 C 55.53 10.679 55.714 10.475 55.88 10.239 L 56.182 8.822 C 56.086 8.888 55.985 8.948 55.88 8.999 C 55.761 9.052 55.598 9.108 55.391 9.167 C 55.183 9.22 54.901 9.285 54.546 9.362 C 54.331 9.41 54.12 9.472 53.914 9.548 C 53.736 9.611 53.575 9.714 53.443 9.849 C 53.313 9.99 53.226 10.165 53.193 10.354 C 53.134 10.679 53.191 10.933 53.363 11.116 C 53.534 11.293 53.769 11.381 54.065 11.381 Z M 45.92 13.445 C 44.852 13.445 43.96 13.241 43.242 12.834 C 42.53 12.421 42.026 11.836 41.73 11.08 C 41.439 10.324 41.401 9.427 41.614 8.388 C 41.792 7.531 42.095 6.785 42.522 6.147 C 42.949 5.509 43.485 5.016 44.132 4.668 C 44.778 4.313 45.516 4.136 46.347 4.136 C 47.278 4.136 48.037 4.305 48.624 4.641 C 49.211 4.978 49.609 5.45 49.816 6.058 C 50.024 6.666 50.027 7.375 49.825 8.184 C 49.78 8.368 49.73 8.552 49.674 8.733 C 49.628 8.901 49.574 9.066 49.514 9.229 L 47.396 8.441 C 47.454 8.282 47.502 8.119 47.539 7.954 C 47.663 7.434 47.625 6.979 47.423 6.59 C 47.221 6.2 46.88 6.005 46.4 6.005 C 46.088 6.008 45.782 6.09 45.511 6.244 C 45.2 6.428 44.938 6.683 44.746 6.988 C 44.52 7.325 44.348 7.759 44.23 8.29 L 44.132 8.724 C 44.019 9.297 44.046 9.772 44.212 10.15 C 44.384 10.522 44.665 10.803 45.057 10.992 C 45.448 11.175 45.929 11.266 46.498 11.266 C 47.089 11.262 47.676 11.172 48.242 11 C 48.532 10.911 48.812 10.792 49.078 10.646 L 48.722 12.896 C 48.514 13.01 48.293 13.099 48.064 13.162 C 47.746 13.253 47.422 13.321 47.094 13.365 C 46.705 13.42 46.313 13.447 45.92 13.445 Z M 42.459 9.229 L 42.682 7.812 L 48.233 7.697 L 49.745 8.131 L 49.514 9.229 Z M 35.11 13.445 C 34.458 13.445 33.823 13.392 33.206 13.286 C 32.64 13.192 32.084 13.05 31.543 12.86 C 31.138 12.724 30.752 12.536 30.395 12.302 L 31.116 9.822 C 31.478 10.076 31.866 10.301 32.281 10.496 C 32.702 10.685 33.141 10.832 33.598 10.938 C 34.054 11.045 34.523 11.098 35.003 11.098 C 35.365 11.098 35.688 11.062 35.973 10.992 C 36.263 10.921 36.507 10.797 36.702 10.62 C 36.898 10.442 37.031 10.189 37.103 9.858 C 37.179 9.58 37.13 9.283 36.969 9.043 C 36.815 8.801 36.56 8.58 36.204 8.379 C 35.783 8.14 35.346 7.93 34.896 7.75 C 34.161 7.449 33.553 7.106 33.073 6.723 C 32.623 6.372 32.28 5.902 32.085 5.367 C 31.907 4.842 31.896 4.216 32.05 3.49 C 32.192 2.799 32.45 2.22 32.824 1.754 C 33.203 1.281 33.713 0.927 34.354 0.691 C 35 0.449 35.795 0.328 36.738 0.328 C 37.165 0.328 37.595 0.36 38.028 0.425 C 38.467 0.49 38.888 0.579 39.291 0.691 C 39.694 0.797 40.065 0.918 40.403 1.054 C 40.741 1.19 41.023 1.332 41.248 1.479 L 40.492 3.888 C 40.155 3.619 39.781 3.401 39.38 3.242 C 38.978 3.071 38.561 2.937 38.135 2.843 C 37.731 2.755 37.393 2.71 37.12 2.71 C 36.8 2.71 36.495 2.743 36.204 2.808 C 35.914 2.873 35.667 2.985 35.466 3.144 C 35.256 3.31 35.114 3.546 35.065 3.809 C 35.004 4.072 35.029 4.348 35.137 4.597 C 35.249 4.827 35.463 5.049 35.777 5.261 C 36.091 5.474 36.524 5.695 37.076 5.925 C 37.977 6.291 38.671 6.678 39.158 7.086 C 39.65 7.487 39.967 7.933 40.109 8.423 C 40.258 8.907 40.267 9.459 40.136 10.079 C 39.97 10.859 39.691 11.496 39.3 11.992 C 38.908 12.483 38.372 12.849 37.69 13.091 C 37.008 13.327 36.148 13.445 35.11 13.445 Z M 21.498 13.215 C 21.889 12.559 22.266 11.925 22.626 11.31 L 23.898 9.176 L 26.505 4.774 L 27.823 2.56 C 28.202 1.922 28.591 1.264 28.987 0.585 L 31.684 0.585 C 31.158 1.478 30.63 2.37 30.099 3.259 C 29.82 3.726 29.513 4.245 29.175 4.818 L 26.595 9.176 L 25.323 11.31 C 24.961 11.925 24.585 12.559 24.193 13.215 Z\" fill=\"rgb(201, 201, 201)\"></path><path d=\"M 11.12 16.988 C 11.256 16.356 11.389 15.73 11.52 15.11 C 11.65 14.49 11.796 13.814 11.956 13.082 L 12.863 8.795 C 13 8.157 13.139 7.496 13.281 6.811 L 13.744 4.668 L 16.101 4.535 L 15.941 5.757 L 16.164 5.757 C 16.389 5.485 16.638 5.249 16.911 5.049 C 17.184 4.848 17.474 4.694 17.783 4.588 C 18.091 4.482 18.411 4.429 18.743 4.429 C 19.568 4.429 20.217 4.665 20.691 5.137 C 21.166 5.604 21.471 6.221 21.608 6.988 C 21.744 7.756 21.72 8.585 21.537 9.477 C 21.381 10.257 21.101 11.007 20.709 11.7 C 20.369 12.302 19.894 12.817 19.322 13.206 C 18.767 13.569 18.116 13.757 17.453 13.746 C 17.098 13.746 16.754 13.696 16.422 13.596 C 16.095 13.501 15.799 13.359 15.532 13.17 C 15.273 12.983 15.055 12.745 14.891 12.471 L 14.731 12.471 L 14.571 13.224 C 14.316 14.453 14.055 15.681 13.788 16.908 Z M 16.688 11.461 C 17.086 11.461 17.43 11.367 17.72 11.178 C 18.011 10.983 18.248 10.72 18.432 10.389 C 18.628 10.041 18.769 9.665 18.85 9.273 C 18.945 8.825 18.957 8.402 18.886 8.007 C 18.838 7.647 18.676 7.312 18.423 7.05 C 18.18 6.802 17.848 6.678 17.427 6.678 C 17.219 6.678 17.018 6.717 16.822 6.793 C 16.619 6.868 16.433 6.979 16.27 7.121 C 16.088 7.273 15.921 7.442 15.772 7.626 L 15.149 10.566 C 15.34 10.936 15.664 11.221 16.057 11.364 C 16.247 11.429 16.457 11.461 16.688 11.461 Z\" fill=\"rgb(201, 201, 201)\"></path><path d=\"M 4.733 13.607 C 3.422 13.607 2.393 13.356 1.646 12.855 C 0.922 12.385 0.399 11.666 0.178 10.835 C -0.053 9.985 -0.059 9.043 0.16 8.01 C 0.208 7.797 0.264 7.531 0.329 7.213 C 0.491 6.469 0.652 5.725 0.81 4.981 C 0.993 4.16 1.154 3.422 1.29 2.766 L 1.726 0.738 L 4.653 0.738 L 4.217 2.757 C 4.08 3.413 3.923 4.151 3.745 4.972 L 3.078 8.098 C 2.953 8.695 2.93 9.229 3.007 9.701 C 3.084 10.168 3.28 10.537 3.594 10.809 C 3.914 11.074 4.365 11.207 4.946 11.207 C 5.533 11.207 6.017 11.098 6.396 10.879 C 6.782 10.661 7.084 10.354 7.304 9.958 C 7.529 9.557 7.701 9.084 7.819 8.541 L 8.576 4.989 C 8.876 3.572 9.179 2.155 9.483 0.738 L 12.41 0.738 L 11.974 2.757 C 11.713 4.019 11.449 5.28 11.182 6.539 L 10.871 7.974 L 10.657 8.993 C 10.487 9.835 10.171 10.641 9.723 11.375 C 9.296 12.066 8.682 12.612 7.882 13.014 C 7.081 13.41 6.031 13.607 4.733 13.607 Z\" fill=\"rgb(201, 201, 201)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-9l8ny5\",layoutDependency:layoutDependency,layoutId:\"KpvKrZN7M\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63.622 13.445\" overflow=\"visible\"><path d=\"M 54.027 13.215 C 54.163 12.583 54.294 11.972 54.418 11.381 C 54.543 10.785 54.685 10.121 54.845 9.388 L 55.886 4.473 C 56.046 3.752 56.197 3.044 56.34 2.347 C 56.488 1.644 56.639 0.939 56.793 0.23 L 59.498 0 L 59.044 2.152 C 58.89 2.884 58.724 3.658 58.546 4.473 L 58.314 5.562 L 58.528 5.562 C 58.958 5.011 59.53 4.586 60.183 4.331 C 60.527 4.201 60.888 4.136 61.268 4.136 C 62.229 4.136 62.896 4.446 63.269 5.066 C 63.643 5.686 63.72 6.513 63.501 7.546 L 63.314 8.396 C 63.249 8.715 63.177 9.046 63.1 9.388 L 62.682 11.381 C 62.558 11.972 62.427 12.583 62.291 13.215 L 59.631 13.215 C 59.767 12.577 59.895 11.969 60.014 11.39 C 60.138 10.812 60.269 10.192 60.405 9.53 L 60.663 8.308 C 60.782 7.776 60.779 7.351 60.654 7.032 C 60.53 6.708 60.233 6.545 59.764 6.545 C 59.509 6.545 59.272 6.596 59.053 6.696 C 58.839 6.796 58.632 6.932 58.43 7.103 C 58.224 7.285 58.031 7.48 57.852 7.688 L 57.46 9.539 C 57.324 10.194 57.194 10.814 57.069 11.399 C 56.945 11.978 56.817 12.583 56.687 13.215 Z M 50.329 13.418 C 49.256 13.418 48.354 13.206 47.625 12.781 C 46.92 12.372 46.38 11.734 46.095 10.974 C 45.798 10.2 45.76 9.294 45.979 8.255 C 46.131 7.479 46.45 6.745 46.913 6.103 C 47.364 5.483 47.939 5.001 48.639 4.659 C 49.339 4.316 50.151 4.145 51.076 4.145 C 51.444 4.145 51.803 4.172 52.153 4.225 C 52.509 4.278 52.85 4.358 53.176 4.464 C 53.502 4.564 53.813 4.691 54.11 4.845 L 53.443 7.13 C 53.186 6.945 52.908 6.79 52.615 6.669 C 52.372 6.568 52.119 6.494 51.859 6.448 C 51.636 6.408 51.41 6.387 51.183 6.386 C 50.584 6.386 50.05 6.569 49.582 6.935 C 49.119 7.295 48.808 7.818 48.648 8.503 C 48.523 9.076 48.535 9.566 48.683 9.973 C 48.838 10.38 49.101 10.693 49.475 10.912 C 49.849 11.124 50.302 11.231 50.836 11.231 C 51.067 11.231 51.293 11.21 51.512 11.169 C 51.732 11.127 51.942 11.065 52.144 10.983 C 52.351 10.894 52.553 10.788 52.749 10.664 L 52.411 12.984 C 52.228 13.076 52.038 13.15 51.841 13.206 C 51.611 13.274 51.376 13.325 51.139 13.356 C 50.871 13.399 50.6 13.419 50.329 13.418 Z M 38.32 13.215 C 38.456 12.583 38.587 11.972 38.711 11.381 C 38.836 10.791 38.978 10.127 39.138 9.388 L 39.325 8.503 C 39.456 7.871 39.595 7.21 39.743 6.519 C 39.891 5.828 40.043 5.113 40.197 4.375 L 42.439 4.243 L 42.243 5.81 L 42.465 5.81 C 42.768 5.338 43.067 4.984 43.364 4.747 C 43.666 4.505 43.963 4.343 44.253 4.26 C 44.71 4.127 45.191 4.102 45.659 4.189 C 45.855 4.219 46.024 4.26 46.166 4.313 L 45.401 6.873 C 45.191 6.845 44.981 6.827 44.769 6.82 C 44.565 6.808 44.36 6.802 44.155 6.802 C 43.788 6.802 43.428 6.903 43.115 7.094 C 42.931 7.201 42.744 7.357 42.554 7.564 C 42.37 7.771 42.192 8.036 42.02 8.361 L 41.762 9.53 C 41.626 10.192 41.496 10.812 41.371 11.39 L 40.98 13.215 Z M 31.331 13.427 C 30.767 13.427 30.296 13.291 29.916 13.02 C 29.541 12.748 29.263 12.363 29.125 11.922 C 28.976 11.467 28.962 10.971 29.08 10.434 C 29.169 10.02 29.311 9.675 29.507 9.397 C 29.709 9.12 29.949 8.892 30.228 8.715 C 30.512 8.538 30.824 8.399 31.162 8.299 C 31.506 8.193 31.862 8.113 32.229 8.06 L 35.014 7.626 C 35.077 7.395 35.051 7.149 34.942 6.935 C 34.842 6.734 34.658 6.581 34.391 6.475 C 34.064 6.352 33.717 6.295 33.368 6.306 C 33.139 6.307 32.91 6.325 32.683 6.359 C 32.446 6.389 32.197 6.436 31.936 6.501 C 31.369 6.636 30.816 6.82 30.281 7.05 L 30.699 4.73 C 30.913 4.659 31.156 4.591 31.429 4.526 C 31.701 4.455 31.989 4.39 32.291 4.331 C 32.594 4.272 32.902 4.225 33.217 4.189 C 33.537 4.154 33.848 4.136 34.151 4.136 C 35.005 4.136 35.707 4.278 36.259 4.561 C 36.811 4.845 37.193 5.249 37.407 5.775 C 37.62 6.294 37.647 6.914 37.487 7.635 C 37.363 8.253 37.233 8.87 37.095 9.486 L 36.935 10.23 L 36.633 11.629 C 36.532 12.119 36.419 12.648 36.295 13.215 L 33.999 13.215 L 34.115 12.037 L 33.911 12.037 C 33.708 12.332 33.462 12.594 33.181 12.816 C 32.649 13.218 31.998 13.432 31.331 13.427 Z M 32.567 11.381 C 32.781 11.381 32.994 11.337 33.208 11.248 C 33.427 11.154 33.635 11.021 33.83 10.85 C 34.032 10.679 34.216 10.475 34.382 10.239 L 34.684 8.822 C 34.588 8.888 34.487 8.948 34.382 8.999 C 34.263 9.052 34.1 9.108 33.893 9.167 C 33.685 9.22 33.403 9.285 33.048 9.362 C 32.833 9.41 32.622 9.472 32.416 9.548 C 32.238 9.611 32.077 9.714 31.945 9.849 C 31.814 9.99 31.728 10.165 31.695 10.354 C 31.636 10.679 31.693 10.933 31.865 11.116 C 32.036 11.293 32.271 11.381 32.567 11.381 Z M 24.422 13.445 C 23.354 13.445 22.462 13.241 21.744 12.834 C 21.032 12.421 20.528 11.836 20.232 11.08 C 19.941 10.324 19.903 9.427 20.116 8.388 C 20.294 7.531 20.597 6.785 21.024 6.147 C 21.451 5.509 21.987 5.016 22.634 4.668 C 23.28 4.313 24.018 4.136 24.849 4.136 C 25.78 4.136 26.539 4.305 27.126 4.641 C 27.713 4.978 28.111 5.45 28.318 6.058 C 28.526 6.666 28.529 7.375 28.327 8.184 C 28.282 8.368 28.232 8.552 28.176 8.733 C 28.129 8.901 28.076 9.066 28.016 9.229 L 25.898 8.441 C 25.956 8.282 26.004 8.119 26.041 7.954 C 26.165 7.434 26.127 6.979 25.925 6.59 C 25.723 6.2 25.382 6.005 24.902 6.005 C 24.59 6.008 24.284 6.09 24.013 6.244 C 23.702 6.428 23.44 6.683 23.248 6.988 C 23.022 7.325 22.85 7.759 22.732 8.29 L 22.634 8.724 C 22.521 9.297 22.548 9.772 22.714 10.15 C 22.886 10.522 23.167 10.803 23.559 10.992 C 23.95 11.175 24.431 11.266 25 11.266 C 25.591 11.262 26.178 11.172 26.744 11 C 27.034 10.911 27.314 10.792 27.58 10.646 L 27.224 12.896 C 27.016 13.01 26.795 13.099 26.566 13.162 C 26.248 13.253 25.924 13.321 25.596 13.365 C 25.207 13.42 24.815 13.447 24.422 13.445 Z M 20.961 9.229 L 21.184 7.812 L 26.735 7.697 L 28.247 8.131 L 28.016 9.229 Z M 13.612 13.445 C 12.96 13.445 12.325 13.392 11.708 13.286 C 11.142 13.192 10.586 13.05 10.045 12.86 C 9.64 12.724 9.254 12.536 8.897 12.302 L 9.618 9.822 C 9.98 10.076 10.368 10.301 10.783 10.496 C 11.204 10.685 11.643 10.832 12.1 10.938 C 12.556 11.045 13.025 11.098 13.505 11.098 C 13.867 11.098 14.19 11.062 14.475 10.992 C 14.765 10.921 15.009 10.797 15.204 10.62 C 15.4 10.442 15.533 10.189 15.605 9.858 C 15.681 9.58 15.632 9.283 15.471 9.043 C 15.317 8.801 15.062 8.58 14.706 8.379 C 14.285 8.14 13.848 7.93 13.398 7.75 C 12.663 7.449 12.055 7.106 11.575 6.723 C 11.125 6.372 10.782 5.902 10.587 5.367 C 10.409 4.842 10.398 4.216 10.552 3.49 C 10.694 2.799 10.952 2.22 11.326 1.754 C 11.705 1.281 12.215 0.927 12.856 0.691 C 13.502 0.449 14.297 0.328 15.24 0.328 C 15.667 0.328 16.097 0.36 16.53 0.425 C 16.969 0.49 17.39 0.579 17.793 0.691 C 18.196 0.797 18.567 0.918 18.905 1.054 C 19.243 1.19 19.525 1.332 19.75 1.479 L 18.994 3.888 C 18.657 3.619 18.283 3.401 17.882 3.242 C 17.48 3.071 17.063 2.937 16.636 2.843 C 16.233 2.755 15.895 2.71 15.622 2.71 C 15.302 2.71 14.997 2.743 14.706 2.808 C 14.416 2.873 14.169 2.985 13.968 3.144 C 13.758 3.31 13.616 3.546 13.567 3.809 C 13.506 4.072 13.531 4.348 13.639 4.597 C 13.751 4.827 13.965 5.049 14.279 5.261 C 14.593 5.474 15.026 5.695 15.578 5.925 C 16.479 6.291 17.173 6.678 17.66 7.086 C 18.152 7.487 18.469 7.933 18.611 8.423 C 18.76 8.907 18.769 9.459 18.638 10.079 C 18.472 10.859 18.193 11.496 17.802 11.992 C 17.41 12.483 16.874 12.849 16.192 13.091 C 15.51 13.327 14.65 13.445 13.612 13.445 Z M 0 13.215 C 0.391 12.559 0.768 11.925 1.128 11.31 L 2.4 9.176 L 5.007 4.774 L 6.325 2.56 C 6.704 1.922 7.093 1.264 7.489 0.585 L 10.186 0.585 C 9.66 1.478 9.132 2.37 8.601 3.259 C 8.322 3.726 8.015 4.245 7.677 4.818 L 5.097 9.176 L 3.825 11.31 C 3.463 11.925 3.087 12.559 2.695 13.215 Z\" fill=\"rgb(201, 201, 201)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c0bs1m\",layoutDependency:layoutDependency,layoutId:\"bvnK_g0t8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.596 13.215\" overflow=\"visible\"><path d=\"M 0 13.215 C 0.136 12.583 0.267 11.972 0.391 11.381 C 0.516 10.785 0.658 10.121 0.818 9.388 L 1.859 4.473 C 2.019 3.752 2.171 3.044 2.313 2.347 C 2.461 1.644 2.612 0.939 2.767 0.23 L 5.471 0 L 5.017 2.152 C 4.863 2.884 4.697 3.658 4.519 4.473 L 4.288 5.562 L 4.501 5.562 C 4.932 5.011 5.503 4.586 6.156 4.331 C 6.5 4.201 6.862 4.136 7.241 4.136 C 8.202 4.136 8.869 4.446 9.243 5.066 C 9.616 5.686 9.693 6.513 9.474 7.546 L 9.287 8.396 C 9.222 8.715 9.151 9.046 9.074 9.388 L 8.656 11.381 C 8.531 11.972 8.401 12.583 8.264 13.215 L 5.604 13.215 C 5.741 12.577 5.868 11.969 5.987 11.39 C 6.111 10.812 6.242 10.192 6.378 9.53 L 6.636 8.308 C 6.755 7.776 6.752 7.351 6.627 7.032 C 6.503 6.708 6.206 6.545 5.738 6.545 C 5.483 6.545 5.246 6.596 5.026 6.696 C 4.813 6.796 4.605 6.932 4.403 7.103 C 4.197 7.285 4.004 7.48 3.825 7.688 L 3.434 9.539 C 3.297 10.194 3.167 10.814 3.042 11.399 C 2.918 11.978 2.79 12.583 2.66 13.215 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-110pu9i\",layoutDependency:layoutDependency,layoutId:\"GekyxF8So\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.271 9.273\" overflow=\"visible\"><path d=\"M 4.49 9.273 C 3.417 9.273 2.515 9.061 1.786 8.636 C 1.081 8.227 0.541 7.589 0.256 6.829 C -0.041 6.055 -0.079 5.149 0.14 4.11 C 0.292 3.334 0.611 2.6 1.074 1.957 C 1.525 1.337 2.1 0.856 2.8 0.514 C 3.5 0.171 4.312 0 5.237 0 C 5.605 0 5.964 0.027 6.314 0.08 C 6.669 0.133 7.01 0.213 7.337 0.319 C 7.663 0.419 7.974 0.546 8.271 0.7 L 7.603 2.985 C 7.347 2.8 7.069 2.645 6.776 2.524 C 6.533 2.423 6.279 2.349 6.02 2.303 C 5.797 2.263 5.571 2.242 5.344 2.241 C 4.745 2.241 4.211 2.424 3.743 2.79 C 3.28 3.15 2.969 3.673 2.809 4.358 C 2.684 4.93 2.696 5.421 2.844 5.828 C 2.998 6.235 3.262 6.548 3.636 6.767 C 4.01 6.979 4.463 7.086 4.997 7.086 C 5.228 7.086 5.454 7.065 5.673 7.024 C 5.893 6.982 6.103 6.92 6.305 6.838 C 6.512 6.749 6.714 6.643 6.91 6.519 L 6.572 8.839 C 6.389 8.931 6.199 9.005 6.002 9.061 C 5.772 9.129 5.537 9.18 5.3 9.211 C 5.032 9.254 4.761 9.274 4.49 9.273 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wlzx8t\",layoutDependency:layoutDependency,layoutId:\"JL4aNKwVc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.846 9.077\" overflow=\"visible\"><path d=\"M 0 9.077 C 0.136 8.445 0.267 7.834 0.391 7.243 C 0.516 6.653 0.658 5.988 0.818 5.25 L 1.005 4.365 C 1.136 3.733 1.275 3.071 1.423 2.381 C 1.572 1.69 1.723 0.975 1.877 0.237 L 4.119 0.104 L 3.923 1.672 L 4.145 1.672 C 4.448 1.2 4.747 0.845 5.044 0.609 C 5.346 0.367 5.643 0.205 5.933 0.122 C 6.39 -0.012 6.871 -0.036 7.339 0.051 C 7.535 0.081 7.704 0.122 7.846 0.175 L 7.081 2.735 C 6.871 2.707 6.661 2.689 6.449 2.682 C 6.245 2.67 6.04 2.664 5.836 2.664 C 5.468 2.664 5.108 2.765 4.795 2.956 C 4.611 3.063 4.424 3.219 4.234 3.426 C 4.051 3.632 3.873 3.898 3.701 4.223 L 3.443 5.392 C 3.306 6.053 3.176 6.673 3.051 7.252 L 2.66 9.077 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1trpiok\",layoutDependency:layoutDependency,layoutId:\"JcqqCPfMU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.588 9.291\" overflow=\"visible\"><path d=\"M 2.33 9.291 C 1.766 9.291 1.295 9.155 0.915 8.884 C 0.54 8.612 0.262 8.227 0.124 7.785 C -0.025 7.331 -0.04 6.835 0.079 6.297 C 0.168 5.884 0.31 5.539 0.506 5.261 C 0.708 4.984 0.948 4.756 1.227 4.579 C 1.511 4.402 1.823 4.263 2.161 4.163 C 2.505 4.057 2.86 3.977 3.228 3.924 L 6.013 3.49 C 6.076 3.259 6.05 3.012 5.941 2.799 C 5.841 2.598 5.657 2.445 5.39 2.338 C 5.063 2.216 4.716 2.158 4.367 2.17 C 4.138 2.171 3.909 2.189 3.682 2.223 C 3.445 2.253 3.196 2.3 2.935 2.365 C 2.368 2.5 1.815 2.684 1.28 2.914 L 1.698 0.593 C 1.912 0.523 2.155 0.455 2.428 0.39 C 2.7 0.319 2.988 0.254 3.29 0.195 C 3.593 0.136 3.901 0.089 4.216 0.053 C 4.536 0.018 4.847 0 5.15 0 C 6.004 0 6.706 0.142 7.258 0.425 C 7.809 0.709 8.192 1.113 8.405 1.639 C 8.619 2.158 8.646 2.778 8.486 3.499 C 8.362 4.117 8.232 4.734 8.094 5.35 L 7.934 6.094 L 7.632 7.493 C 7.531 7.983 7.418 8.512 7.294 9.078 L 4.998 9.078 L 5.114 7.9 L 4.909 7.9 C 4.707 8.195 4.461 8.458 4.18 8.68 C 3.648 9.081 2.997 9.296 2.33 9.291 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tfx09n\",layoutDependency:layoutDependency,layoutId:\"xj4L84Oyi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.012 2.56\" overflow=\"visible\"><path d=\"M 0.895 2.56 C 1.108 2.56 1.322 2.515 1.535 2.427 C 1.755 2.332 1.962 2.2 2.158 2.028 C 2.359 1.857 2.543 1.653 2.709 1.417 L 3.012 0 C 2.916 0.067 2.815 0.126 2.709 0.177 C 2.591 0.23 2.428 0.286 2.22 0.345 C 2.012 0.399 1.731 0.464 1.375 0.54 C 1.161 0.588 0.95 0.651 0.743 0.726 C 0.565 0.79 0.404 0.893 0.272 1.027 C 0.142 1.168 0.055 1.344 0.023 1.532 C -0.036 1.857 0.02 2.111 0.192 2.294 C 0.364 2.471 0.598 2.56 0.895 2.56 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cv6e2e\",layoutDependency:layoutDependency,layoutId:\"DdPZhNOwI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.495 9.309\" overflow=\"visible\"><path d=\"M 4.441 9.309 C 3.374 9.309 2.481 9.105 1.764 8.698 C 1.052 8.284 0.548 7.7 0.251 6.944 C -0.039 6.188 -0.078 5.291 0.136 4.251 C 0.314 3.395 0.616 2.648 1.043 2.011 C 1.47 1.373 2.007 0.88 2.653 0.531 C 3.3 0.177 4.038 0 4.868 0 C 5.799 0 6.558 0.168 7.145 0.505 C 7.733 0.841 8.13 1.314 8.337 1.922 C 8.545 2.53 8.548 3.239 8.346 4.048 C 8.302 4.232 8.251 4.415 8.195 4.597 C 8.149 4.764 8.095 4.93 8.035 5.093 L 5.918 4.305 C 5.976 4.145 6.023 3.983 6.06 3.817 C 6.185 3.298 6.146 2.843 5.945 2.453 C 5.743 2.064 5.402 1.869 4.922 1.869 C 4.609 1.871 4.303 1.954 4.032 2.108 C 3.721 2.292 3.459 2.547 3.267 2.852 C 3.042 3.189 2.87 3.623 2.751 4.154 L 2.653 4.588 C 2.54 5.161 2.567 5.636 2.733 6.014 C 2.905 6.386 3.187 6.666 3.578 6.855 C 3.97 7.038 4.45 7.13 5.019 7.13 C 5.61 7.126 6.198 7.036 6.763 6.864 C 7.053 6.775 7.333 6.656 7.599 6.51 L 7.243 8.76 C 7.035 8.874 6.814 8.963 6.585 9.025 C 6.267 9.116 5.943 9.184 5.615 9.229 C 5.226 9.284 4.834 9.311 4.441 9.309 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mz22la\",layoutDependency:layoutDependency,layoutId:\"CXZ0BYS8m\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.286 1.532\" overflow=\"visible\"><path d=\"M 0 1.532 L 0.222 0.115 L 5.773 0 L 7.286 0.434 L 7.054 1.532 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dmz15d\",layoutDependency:layoutDependency,layoutId:\"UsPMaT1AQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.853 13.117\" overflow=\"visible\"><path d=\"M 4.715 13.117 C 4.062 13.117 3.428 13.064 2.811 12.958 C 2.245 12.865 1.689 12.722 1.148 12.533 C 0.743 12.396 0.357 12.208 0 11.975 L 0.721 9.495 C 1.082 9.749 1.471 9.973 1.886 10.168 C 2.307 10.357 2.746 10.504 3.202 10.611 C 3.659 10.717 4.128 10.77 4.608 10.77 C 4.97 10.77 5.293 10.735 5.578 10.664 C 5.868 10.593 6.111 10.469 6.307 10.292 C 6.503 10.115 6.636 9.861 6.707 9.53 C 6.783 9.252 6.735 8.955 6.574 8.715 C 6.42 8.473 6.165 8.252 5.809 8.051 C 5.388 7.813 4.951 7.603 4.501 7.422 C 3.766 7.121 3.158 6.779 2.678 6.395 C 2.227 6.044 1.885 5.575 1.69 5.04 C 1.512 4.514 1.5 3.888 1.655 3.162 C 1.797 2.471 2.055 1.892 2.429 1.426 C 2.808 0.954 3.318 0.599 3.959 0.363 C 4.605 0.121 5.4 0 6.343 0 C 6.77 0 7.2 0.032 7.633 0.097 C 8.071 0.162 8.492 0.251 8.896 0.363 C 9.299 0.469 9.67 0.59 10.008 0.726 C 10.346 0.862 10.627 1.004 10.853 1.151 L 10.097 3.561 C 9.76 3.291 9.385 3.073 8.985 2.914 C 8.583 2.743 8.166 2.61 7.739 2.515 C 7.336 2.427 6.998 2.383 6.725 2.383 C 6.405 2.383 6.1 2.415 5.809 2.48 C 5.518 2.545 5.272 2.657 5.071 2.817 C 4.861 2.983 4.719 3.219 4.67 3.481 C 4.608 3.744 4.633 4.021 4.741 4.269 C 4.854 4.499 5.068 4.721 5.382 4.933 C 5.696 5.146 6.129 5.367 6.681 5.598 C 7.582 5.964 8.276 6.351 8.762 6.758 C 9.255 7.159 9.572 7.605 9.714 8.095 C 9.862 8.58 9.871 9.132 9.741 9.752 C 9.575 10.531 9.296 11.169 8.905 11.665 C 8.513 12.155 7.977 12.521 7.294 12.763 C 6.612 12.999 5.753 13.117 4.715 13.117 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r4n234\",layoutDependency:layoutDependency,layoutId:\"sPAugZ9aV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.186 12.63\" overflow=\"visible\"><path d=\"M 0 12.63 C 0.391 11.975 0.768 11.34 1.128 10.726 L 2.4 8.591 L 5.007 4.189 L 6.325 1.975 C 6.704 1.337 7.093 0.679 7.489 0 L 10.186 0 C 9.66 0.893 9.132 1.785 8.601 2.675 C 8.322 3.141 8.015 3.661 7.677 4.234 L 5.097 8.591 L 3.825 10.726 C 3.463 11.34 3.087 11.975 2.695 12.63 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1ogynl6\",layoutDependency:layoutDependency,layoutId:\"CYMo6bbIA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.575 12.559\" overflow=\"visible\"><path d=\"M 0 12.559 C 0.136 11.927 0.27 11.302 0.4 10.682 C 0.531 10.062 0.676 9.386 0.836 8.653 L 1.744 4.367 C 1.88 3.729 2.019 3.067 2.162 2.383 L 2.624 0.239 L 4.982 0.106 L 4.821 1.329 L 5.044 1.329 C 5.269 1.057 5.518 0.821 5.791 0.62 C 6.064 0.419 6.355 0.266 6.663 0.159 C 6.971 0.053 7.292 0 7.624 0 C 8.448 0 9.097 0.236 9.572 0.709 C 10.046 1.175 10.352 1.792 10.488 2.56 C 10.624 3.327 10.601 4.157 10.417 5.049 C 10.261 5.828 9.982 6.579 9.59 7.272 C 9.249 7.873 8.775 8.388 8.202 8.777 C 7.648 9.14 6.997 9.328 6.334 9.318 C 5.978 9.318 5.634 9.267 5.302 9.167 C 4.976 9.073 4.679 8.931 4.412 8.742 C 4.153 8.555 3.935 8.317 3.772 8.042 L 3.612 8.042 L 3.452 8.795 C 3.196 10.024 2.935 11.253 2.669 12.48 Z M 5.569 7.032 C 5.966 7.032 6.31 6.938 6.601 6.749 C 6.891 6.554 7.128 6.291 7.312 5.961 C 7.509 5.613 7.65 5.236 7.73 4.845 C 7.825 4.396 7.837 3.974 7.766 3.578 C 7.718 3.218 7.556 2.883 7.303 2.622 C 7.06 2.374 6.728 2.25 6.307 2.25 C 6.1 2.25 5.898 2.288 5.702 2.365 C 5.5 2.44 5.313 2.551 5.151 2.693 C 4.969 2.844 4.802 3.013 4.652 3.197 L 4.03 6.138 C 4.221 6.508 4.545 6.792 4.937 6.935 C 5.127 7 5.337 7.032 5.569 7.032 Z\" fill=\"rgb(201, 201, 201)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w01vlk\",layoutDependency:layoutDependency,layoutId:\"NA42Kh8yk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.575 12.559\" overflow=\"visible\"><path d=\"M 0 12.559 C 0.136 11.927 0.27 11.302 0.4 10.682 C 0.531 10.062 0.676 9.386 0.836 8.653 L 1.744 4.367 C 1.88 3.729 2.019 3.067 2.162 2.383 L 2.624 0.239 L 4.982 0.106 L 4.821 1.329 L 5.044 1.329 C 5.269 1.057 5.518 0.821 5.791 0.62 C 6.064 0.419 6.355 0.266 6.663 0.159 C 6.971 0.053 7.292 0 7.624 0 C 8.448 0 9.097 0.236 9.572 0.709 C 10.046 1.175 10.352 1.792 10.488 2.56 C 10.624 3.327 10.601 4.157 10.417 5.049 C 10.261 5.828 9.982 6.579 9.59 7.272 C 9.249 7.873 8.775 8.388 8.202 8.777 C 7.648 9.14 6.997 9.328 6.334 9.318 C 5.978 9.318 5.634 9.267 5.302 9.167 C 4.976 9.073 4.679 8.931 4.412 8.742 C 4.153 8.555 3.935 8.317 3.772 8.042 L 3.612 8.042 L 3.452 8.795 C 3.196 10.024 2.935 11.253 2.669 12.48 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9u2n2k\",layoutDependency:layoutDependency,layoutId:\"ftxB1sqAr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.782 4.783\" overflow=\"visible\"><path d=\"M 1.539 4.783 C 1.936 4.783 2.28 4.688 2.571 4.499 C 2.861 4.305 3.099 4.042 3.283 3.711 C 3.479 3.363 3.62 2.986 3.701 2.595 C 3.796 2.146 3.807 1.724 3.736 1.329 C 3.688 0.969 3.526 0.634 3.274 0.372 C 3.03 0.124 2.698 0 2.277 0 C 2.07 0 1.868 0.038 1.672 0.115 C 1.47 0.19 1.283 0.301 1.121 0.443 C 0.939 0.595 0.772 0.764 0.623 0.948 L 0 3.888 C 0.191 4.258 0.515 4.543 0.907 4.685 C 1.097 4.75 1.308 4.783 1.539 4.783 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12v4j6c\",layoutDependency:layoutDependency,layoutId:\"ihDZUuwUw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.41 12.869\" overflow=\"visible\"><path d=\"M 4.733 12.869 C 3.422 12.869 2.393 12.618 1.646 12.116 C 0.922 11.647 0.399 10.928 0.178 10.097 C -0.053 9.247 -0.059 8.305 0.16 7.272 C 0.208 7.059 0.264 6.793 0.329 6.475 C 0.491 5.731 0.652 4.987 0.81 4.243 C 0.993 3.422 1.154 2.684 1.29 2.028 L 1.726 0 L 4.653 0 L 4.217 2.019 C 4.08 2.675 3.923 3.413 3.745 4.234 L 3.078 7.36 C 2.953 7.957 2.93 8.491 3.007 8.963 C 3.084 9.43 3.28 9.799 3.594 10.07 C 3.914 10.336 4.365 10.469 4.946 10.469 C 5.533 10.469 6.017 10.36 6.396 10.141 C 6.782 9.923 7.084 9.616 7.304 9.22 C 7.529 8.819 7.701 8.346 7.819 7.803 L 8.576 4.251 C 8.876 2.834 9.179 1.417 9.483 0 L 12.41 0 L 11.974 2.019 C 11.713 3.281 11.449 4.541 11.182 5.801 L 10.871 7.236 L 10.657 8.255 C 10.487 9.097 10.171 9.903 9.723 10.637 C 9.296 11.328 8.682 11.874 7.882 12.276 C 7.081 12.671 6.031 12.869 4.733 12.869 Z\" fill=\"rgb(201, 201, 201)\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tj21a4\",\"data-framer-name\":\"Widget Wrapper\",layoutDependency:layoutDependency,layoutId:\"wUne1GwMg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g81j8u\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"vOorqhDoe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(54, 51, 69))\"},children:\"Pages\"})}),className:\"framer-1e5bwro\",\"data-framer-name\":\"Title\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"lXep7rqHK\",style:{\"--extracted-r6o4lv\":\"rgb(54, 51, 69)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pfrk4p\",\"data-framer-name\":\"Nav\",layoutDependency:layoutDependency,layoutId:\"z4C4dHx8i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"zWClMGCXq\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Home\"})})})}),className:\"framer-3mzz1j\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"zWClMGCXq\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a0ov4BgkL\"},motionChild:true,nodeId:\"DvrEu_tC9\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"About\"})})})}),className:\"framer-ehm52s\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"DvrEu_tC9\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HuACH1EbC\"},motionChild:true,nodeId:\"EkGtoI8DP\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Blog\"})})})}),className:\"framer-1wv2l63\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"EkGtoI8DP\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yLro6MXLB\"},motionChild:true,nodeId:\"HuTElIr9H\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Contact\"})})})}),className:\"framer-96xnal\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"HuTElIr9H\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wCYZ0XTdl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Iu0r0owdq\"},motionChild:true,nodeId:\"HuTElIr9H\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"Contact\"})})})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xw024m\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"HyhKqi4MF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(54, 51, 69))\"},children:\"Service\"})}),className:\"framer-wxmxxz\",\"data-framer-name\":\"Title\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"Ltk1bRY3c\",style:{\"--extracted-r6o4lv\":\"rgb(54, 51, 69)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1902r2h\",\"data-framer-name\":\"Nav\",layoutDependency:layoutDependency,layoutId:\"UJ_lf_6_C\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B88qbdZyx\"},motionChild:true,nodeId:\"qV1r4ZF1_\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"웹사이트 SEO\"})})})}),className:\"framer-1p84gtm\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"qV1r4ZF1_\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tt3x4Yh21\"},motionChild:true,nodeId:\"ufhCQZ4Ig\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"유튜브 SEO\"})})})}),className:\"framer-wjh9mi\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ufhCQZ4Ig\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n5p3dKNwd\"},motionChild:true,nodeId:\"G9vEBTYDs\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"AEO\"})})})}),className:\"framer-pxr800\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"G9vEBTYDs\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mjWjwPpwl\"},motionChild:true,nodeId:\"D0ZvjqV0z\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"로컬 SEO\"})})})}),className:\"framer-8a9pi0\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"D0ZvjqV0z\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IZ_Tm2Uw6\"},motionChild:true,nodeId:\"lohpVMYAU\",openInNewTab:false,relValues:[],scopeId:\"WSNHRJGJm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-l1ivrb\",\"data-styles-preset\":\"hCBayZJTk\",children:\"온서프 SEO\"})})})}),className:\"framer-g49s2a\",\"data-framer-name\":\"Link\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"lohpVMYAU\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hsmMh.framer-1by2zu9, .framer-hsmMh .framer-1by2zu9 { display: block; }\",\".framer-hsmMh.framer-lrpyik { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1440px; }\",\".framer-hsmMh .framer-1hvt7q4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: flex-start; max-width: 1170px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hsmMh .framer-1lszwbs { align-content: flex-start; align-items: flex-start; 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: min-content; }\",\".framer-hsmMh .framer-1jwozsd { height: 17px; position: relative; width: 85px; }\",\".framer-hsmMh .framer-9l8ny5 { height: 14px; left: 22px; position: absolute; top: 0px; width: 64px; }\",\".framer-hsmMh .framer-c0bs1m { height: 13px; left: 54px; position: absolute; top: 0px; width: 10px; }\",\".framer-hsmMh .framer-110pu9i { height: 10px; left: 46px; position: absolute; top: 4px; width: 9px; }\",\".framer-hsmMh .framer-wlzx8t { height: 9px; left: 39px; position: absolute; top: 4px; width: 8px; }\",\".framer-hsmMh .framer-1trpiok { height: 10px; left: 29px; position: absolute; top: 4px; width: 9px; }\",\".framer-hsmMh .framer-1tfx09n { height: 3px; left: 32px; position: absolute; top: 9px; width: 3px; }\",\".framer-hsmMh .framer-cv6e2e { height: 10px; left: 20px; position: absolute; top: 4px; width: 9px; }\",\".framer-hsmMh .framer-mz22la { height: 2px; left: 21px; position: absolute; top: 8px; width: 8px; }\",\".framer-hsmMh .framer-dmz15d { height: 13px; left: 9px; position: absolute; top: 1px; width: 11px; }\",\".framer-hsmMh .framer-1r4n234 { height: 13px; left: 0px; position: absolute; top: 1px; width: 10px; }\",\".framer-hsmMh .framer-1ogynl6 { height: 13px; left: 11px; position: absolute; top: 5px; width: 11px; }\",\".framer-hsmMh .framer-1w01vlk { height: 13px; left: 0px; position: absolute; top: 0px; width: 11px; }\",\".framer-hsmMh .framer-9u2n2k { height: 5px; left: 4px; position: absolute; top: 2px; width: 4px; }\",\".framer-hsmMh .framer-12v4j6c { height: 13px; left: 0px; position: absolute; top: 1px; width: 13px; }\",\".framer-hsmMh .framer-1tj21a4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-hsmMh .framer-g81j8u, .framer-hsmMh .framer-xw024m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hsmMh .framer-1e5bwro, .framer-hsmMh .framer-wxmxxz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hsmMh .framer-pfrk4p, .framer-hsmMh .framer-1902r2h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hsmMh .framer-3mzz1j, .framer-hsmMh .framer-ehm52s, .framer-hsmMh .framer-1wv2l63, .framer-hsmMh .framer-96xnal, .framer-hsmMh .framer-1p84gtm, .framer-hsmMh .framer-wjh9mi, .framer-hsmMh .framer-pxr800, .framer-hsmMh .framer-8a9pi0, .framer-hsmMh .framer-g49s2a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hsmMh.framer-v-156tsfo.framer-lrpyik { padding: 80px 40px 80px 40px; width: 810px; }\",\".framer-hsmMh.framer-v-156tsfo .framer-1hvt7q4 { flex-direction: column; gap: 80px; }\",\".framer-hsmMh.framer-v-156tsfo .framer-1lszwbs { order: 0; width: 100%; }\",\".framer-hsmMh.framer-v-156tsfo .framer-1tj21a4 { order: 1; }\",\".framer-hsmMh.framer-v-1ccaq1t.framer-lrpyik { padding: 60px 20px 60px 20px; width: 390px; }\",\".framer-hsmMh.framer-v-1ccaq1t .framer-1hvt7q4 { flex-direction: column; gap: 60px; }\",\".framer-hsmMh.framer-v-1ccaq1t .framer-1tj21a4 { align-content: unset; align-items: unset; display: grid; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(160px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: start; width: 100%; }\",\".framer-hsmMh.framer-v-1ccaq1t .framer-g81j8u, .framer-hsmMh.framer-v-1ccaq1t .framer-xw024m { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 420\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wCYZ0XTdl\":{\"layout\":[\"fixed\",\"auto\"]},\"WMUOn3Bay\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerWSNHRJGJm=withCSS(Component,css,\"framer-hsmMh\");export default FramerWSNHRJGJm;FramerWSNHRJGJm.displayName=\"Component/Footer\";FramerWSNHRJGJm.defaultProps={height:420,width:1440};addPropertyControls(FramerWSNHRJGJm,{variant:{options:[\"NyoAqQSiC\",\"wCYZ0XTdl\",\"WMUOn3Bay\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWSNHRJGJm,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWSNHRJGJm\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"420\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wCYZ0XTdl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WMUOn3Bay\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WSNHRJGJm.map"],"mappings":"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"}